Hello,
1.
pkg upgrade show this result:
New packages to be INSTALLED:
postgresql13-client: 13.7
postgresql15-client: 15.b1_1
Installed packages to be UPGRADED:
firefox: 103.0.1,2 -> 103.0.2,2
nspr: 4.34 -> 4.34.1
opencore-amr: 0.1.5 -> 0.1.6
py39-p
Hallo,
there is a postgresql bug
/usr/local/bin/postgres -V
ld-elf.so.1: Shared object "libicui18n.so.70" not found, required by
"postgres"
Installed Version:
postgresql14-server-14.1
find / -name "*libicui*"
/usr/local/lib/libicuio.a
/usr/local/lib/libicui18n.so.71
/usr/local/lib/libicuio.so.
On Wed, 2021-10-06 at 00:21 -0500, Ron wrote:
>
> What version of Postgresql do you think has the bug?
> Where did you get the Postgresql binaries from?
> What platform?
FreeBSD
pkg install postgresql ...
Version 13.3
a friend use Debian unstable with PG version 14 and have the same
problem.
>
Hello,
there is a bug with types in functions. Here is an example:
--drop type xyz;
create type xyz as ( x numeric, y numeric, z numeric );
--drop table test_xyz ;
create table test_xyz ( a int, b xyz, c xyz );
insert into test_xyz values
( 1,(11.1, 12.3, 14.5 ), (22.2, 22.3, 24.5 ) ) ;