Strange assertion in procarray.c
Hello, everyone!
While working on stabilization of tests for [0]https://commitfest.postgresql.org/50/5160/ I noticed a strange assert
happens in procarray.c [1]https://github.com/postgres/postgres/blob/478846e7688c9ab73d2695a66822e9ae0574b551/src/backend/storage/ipc/procarray.c#L677.
It looks like this:
[562801]: [client backend] [isolation/two-ids/s2][50/0:536136] WARNING: AbortTransaction while in ABORT state TRAP: failed Assert("TransactionIdIsValid(proc->xid)"), File: "../src/backend/storage/ipc/procarray.c", Line: 677, PID: 562801
ERROR: could not serialize access due to read/write dependencies among
transactions
[562801]: [client backend] [isolation/two-ids/s2][50/0:536136] WARNING: AbortTransaction while in ABORT state TRAP: failed Assert("TransactionIdIsValid(proc->xid)"), File: "../src/backend/storage/ipc/procarray.c", Line: 677, PID: 562801
DETAIL: Reason code: Canceled on identification as a pivot, during commit
attempt.
[562801]: [client backend] [isolation/two-ids/s2][50/0:536136] WARNING: AbortTransaction while in ABORT state TRAP: failed Assert("TransactionIdIsValid(proc->xid)"), File: "../src/backend/storage/ipc/procarray.c", Line: 677, PID: 562801
HINT: The transaction might succeed if retried.
[562801]: [client backend] [isolation/two-ids/s2][50/0:536136] WARNING: AbortTransaction while in ABORT state TRAP: failed Assert("TransactionIdIsValid(proc->xid)"), File: "../src/backend/storage/ipc/procarray.c", Line: 677, PID: 562801
STATEMENT: COMMIT;
[562801]: [client backend] [isolation/two-ids/s2][50/0:536136] WARNING: AbortTransaction while in ABORT state TRAP: failed Assert("TransactionIdIsValid(proc->xid)"), File: "../src/backend/storage/ipc/procarray.c", Line: 677, PID: 562801
ResourceOwnerEnlarge called after release started
[562801]: [client backend] [isolation/two-ids/s2][50/0:536136] WARNING: AbortTransaction while in ABORT state TRAP: failed Assert("TransactionIdIsValid(proc->xid)"), File: "../src/backend/storage/ipc/procarray.c", Line: 677, PID: 562801
WARNING: AbortTransaction while in ABORT state
TRAP: failed Assert("TransactionIdIsValid(proc->xid)"), File:
"../src/backend/storage/ipc/procarray.c", Line: 677, PID: 562801
[562819]: [client backend] [pg_regress/test_parser][:0] LOG: disconnection: session time: 0:00:00.011 user=someone database=regression_test_parser host=[local] postgres: someone isolation_regression [local] COMMIT(ExceptionalCondition+0xbe)[0x55f2a101f185] postgres: someone isolation_regression [local] COMMIT(ProcArrayEndTransaction+0x46)[0x55f2a0ddf7b3] postgres: someone isolation_regression [local] COMMIT(+0x1e29b1)[0x55f2a09e59b1] postgres: someone isolation_regression [local] COMMIT(+0x1e347b)[0x55f2a09e647b] postgres: someone isolation_regression [local] COMMIT(AbortCurrentTransaction+0xe)[0x55f2a09e63a3] postgres: someone isolation_regression [local] COMMIT(PostgresMain+0x538)[0x55f2a0e20ff1] postgres: someone isolation_regression [local] COMMIT(+0x61457b)[0x55f2a0e1757b] postgres: someone isolation_regression [local] COMMIT(postmaster_child_launch+0x137)[0x55f2a0d295bf] postgres: someone isolation_regression [local] COMMIT(+0x52cff5)[0x55f2a0d2fff5] postgres: someone isolation_regression [local] COMMIT(+0x52a6cd)[0x55f2a0d2d6cd] postgres: someone isolation_regression [local] COMMIT(PostmasterMain+0x1629)[0x55f2a0d2cfae] postgres: someone isolation_regression [local] COMMIT(+0x404ba2)[0x55f2a0c07ba2] /lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca)[0x7f6afbe7e1ca]
disconnection: session time: 0:00:00.011 user=someone
database=regression_test_parser host=[local]
postgres: someone isolation_regression [local]
COMMIT(ExceptionalCondition+0xbe)[0x55f2a101f185]
postgres: someone isolation_regression [local]
COMMIT(ProcArrayEndTransaction+0x46)[0x55f2a0ddf7b3]
postgres: someone isolation_regression [local]
COMMIT(+0x1e29b1)[0x55f2a09e59b1]
postgres: someone isolation_regression [local]
COMMIT(+0x1e347b)[0x55f2a09e647b]
postgres: someone isolation_regression [local]
COMMIT(AbortCurrentTransaction+0xe)[0x55f2a09e63a3]
postgres: someone isolation_regression [local]
COMMIT(PostgresMain+0x538)[0x55f2a0e20ff1]
postgres: someone isolation_regression [local]
COMMIT(+0x61457b)[0x55f2a0e1757b]
postgres: someone isolation_regression [local]
COMMIT(postmaster_child_launch+0x137)[0x55f2a0d295bf]
postgres: someone isolation_regression [local]
COMMIT(+0x52cff5)[0x55f2a0d2fff5]
postgres: someone isolation_regression [local]
COMMIT(+0x52a6cd)[0x55f2a0d2d6cd]
postgres: someone isolation_regression [local]
COMMIT(PostmasterMain+0x1629)[0x55f2a0d2cfae]
postgres: someone isolation_regression [local]
COMMIT(+0x404ba2)[0x55f2a0c07ba2]
/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca)[0x7f6afbe7e1ca]
/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b)[0x7f6afbe7e28b]
postgres: someone isolation_regression [local]
COMMIT(_start+0x25)[0x55f2a08e3ab5]
I made a reproducer for that. Ignore index_concurrently_upsert - it should
fail. Also, some source files are changed - but it is only injection points.
But in several cases of "meson test --print-errorlogs --num-processes=8
--setup running" build backend crashes. I was unable to reproduce it during
"non-running" tests.
A full backend log for the crash run is attached.
There are some helpful commands to reproduce locally:
cd build
ninja && meson test --suite setup
cd ../
export
LD_LIBRARY_PATH="$(pwd)/build/tmp_install/usr/local/pgsql/lib/x86_64-linux-gnu:$LD_LIBRARY_PATH"
build/tmp_install/usr/local/pgsql/bin/initdb -N build/runningcheck
--no-instructions -A trust
echo "include '$(pwd)/src/tools/ci/pg_ci_base.conf'" >>
build/runningcheck/postgresql.conf
build/tmp_install/usr/local/pgsql/bin/pg_ctl -c -o '-c fsync=off'
-D build/runningcheck -l build/testrun/runningcheck.log start
cd build
meson test --print-errorlogs --num-processes=8 --setup running
Best regards,
Mikhail.
[0]: https://commitfest.postgresql.org/50/5160/
[1]: https://github.com/postgres/postgres/blob/478846e7688c9ab73d2695a66822e9ae0574b551/src/backend/storage/ipc/procarray.c#L677
https://github.com/postgres/postgres/blob/478846e7688c9ab73d2695a66822e9ae0574b551/src/backend/storage/ipc/procarray.c#L677
Attachments:
v1-0001-meson-test-print-errorlogs-num-processes-8-setup-.patchtext/plain; charset=US-ASCII; name=v1-0001-meson-test-print-errorlogs-num-processes-8-setup-.patchDownload
From 7ed9e2409d6b0fc4e4a915ba45232a10326c778b Mon Sep 17 00:00:00 2001
From: nkey <michail.nikolaev@gmail.com>
Date: Mon, 25 Nov 2024 19:13:40 +0100
Subject: [PATCH v1] meson test --print-errorlogs --num-processes=8 --setup
running
reproducer for strange assert:
2024-11-25 19:08:12.063 CET [562801][client backend] [isolation/two-ids/s2][50/131:536136] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:12.063 CET [562801][client backend] [isolation/two-ids/s2][50/131:536136] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:12.063 CET [562801][client backend] [isolation/two-ids/s2][50/131:536136] HINT: The transaction might succeed if retried.
2024-11-25 19:08:12.063 CET [562801][client backend] [isolation/two-ids/s2][50/131:536136] STATEMENT: COMMIT;
2024-11-25 19:08:12.063 CET [562801][client backend] [isolation/two-ids/s2][50/0:536136] ERROR: ResourceOwnerEnlarge called after release started
2024-11-25 19:08:12.063 CET [562801][client backend] [isolation/two-ids/s2][50/0:536136] WARNING: AbortTransaction while in ABORT state
TRAP: failed Assert("TransactionIdIsValid(proc->xid)"), File: "../src/backend/storage/ipc/procarray.c", Line: 677, PID: 562801
2024-11-25 19:08:12.064 CET [562819][client backend] [pg_regress/test_parser][:0] LOG: disconnection: session time: 0:00:00.011 user=nkey database=regression_test_parser host=[local]
postgres: nkey isolation_regression [local] COMMIT(ExceptionalCondition+0xbe)[0x55f2a101f185]
postgres: nkey isolation_regression [local] COMMIT(ProcArrayEndTransaction+0x46)[0x55f2a0ddf7b3]
postgres: nkey isolation_regression [local] COMMIT(+0x1e29b1)[0x55f2a09e59b1]
postgres: nkey isolation_regression [local] COMMIT(+0x1e347b)[0x55f2a09e647b]
postgres: nkey isolation_regression [local] COMMIT(AbortCurrentTransaction+0xe)[0x55f2a09e63a3]
postgres: nkey isolation_regression [local] COMMIT(PostgresMain+0x538)[0x55f2a0e20ff1]
postgres: nkey isolation_regression [local] COMMIT(+0x61457b)[0x55f2a0e1757b]
postgres: nkey isolation_regression [local] COMMIT(postmaster_child_launch+0x137)[0x55f2a0d295bf]
postgres: nkey isolation_regression [local] COMMIT(+0x52cff5)[0x55f2a0d2fff5]
postgres: nkey isolation_regression [local] COMMIT(+0x52a6cd)[0x55f2a0d2d6cd]
postgres: nkey isolation_regression [local] COMMIT(PostmasterMain+0x1629)[0x55f2a0d2cfae]
postgres: nkey isolation_regression [local] COMMIT(+0x404ba2)[0x55f2a0c07ba2]
/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca)[0x7f6afbe7e1ca]
/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b)[0x7f6afbe7e28b]
postgres: nkey isolation_regression [local] COMMIT(_start+0x25)[0x55f2a08e3ab5]
---
src/backend/commands/indexcmds.c | 4 +-
src/backend/executor/execIndexing.c | 3 +
src/backend/executor/nodeModifyTable.c | 2 +
src/backend/utils/time/snapmgr.c | 2 +
src/test/modules/injection_points/Makefile | 2 +-
.../expected/index_concurrently_upsert.out | 80 +++++++++++++++++++
src/test/modules/injection_points/meson.build | 1 +
.../specs/index_concurrently_upsert.spec | 68 ++++++++++++++++
8 files changed, 160 insertions(+), 2 deletions(-)
create mode 100644 src/test/modules/injection_points/expected/index_concurrently_upsert.out
create mode 100644 src/test/modules/injection_points/specs/index_concurrently_upsert.spec
diff --git a/src/backend/commands/indexcmds.c b/src/backend/commands/indexcmds.c
index d1134733c17..8f48f14eddd 100644
--- a/src/backend/commands/indexcmds.c
+++ b/src/backend/commands/indexcmds.c
@@ -1766,6 +1766,7 @@ DefineIndex(Oid tableId,
* before the reference snap was taken, we have to wait out any
* transactions that might have older snapshots.
*/
+ INJECTION_POINT("define_index_before_set_valid");
pgstat_progress_update_param(PROGRESS_CREATEIDX_PHASE,
PROGRESS_CREATEIDX_PHASE_WAIT_3);
WaitForOlderSnapshots(limitXmin, true);
@@ -4206,7 +4207,7 @@ ReindexRelationConcurrently(const ReindexStmt *stmt, Oid relationOid, const Rein
* the same time to make sure we only get constraint violations from the
* indexes with the correct names.
*/
-
+ INJECTION_POINT("reindex_relation_concurrently_before_swap");
StartTransactionCommand();
/*
@@ -4285,6 +4286,7 @@ ReindexRelationConcurrently(const ReindexStmt *stmt, Oid relationOid, const Rein
* index_drop() for more details.
*/
+ INJECTION_POINT("reindex_relation_concurrently_before_set_dead");
pgstat_progress_update_param(PROGRESS_CREATEIDX_PHASE,
PROGRESS_CREATEIDX_PHASE_WAIT_4);
WaitForLockersMultiple(lockTags, AccessExclusiveLock, true);
diff --git a/src/backend/executor/execIndexing.c b/src/backend/executor/execIndexing.c
index f9a2fac79e4..5d04f189340 100644
--- a/src/backend/executor/execIndexing.c
+++ b/src/backend/executor/execIndexing.c
@@ -117,6 +117,7 @@
#include "utils/multirangetypes.h"
#include "utils/rangetypes.h"
#include "utils/snapmgr.h"
+#include "utils/injection_point.h"
/* waitMode argument to check_exclusion_or_unique_constraint() */
typedef enum
@@ -936,6 +937,8 @@ retry:
econtext->ecxt_scantuple = save_scantuple;
ExecDropSingleTupleTableSlot(existing_slot);
+ if (!conflict)
+ INJECTION_POINT("check_exclusion_or_unique_constraint_no_conflict");
return !conflict;
}
diff --git a/src/backend/executor/nodeModifyTable.c b/src/backend/executor/nodeModifyTable.c
index 1161520f76b..23cf4c6b540 100644
--- a/src/backend/executor/nodeModifyTable.c
+++ b/src/backend/executor/nodeModifyTable.c
@@ -69,6 +69,7 @@
#include "utils/datum.h"
#include "utils/rel.h"
#include "utils/snapmgr.h"
+#include "utils/injection_point.h"
typedef struct MTTargetRelLookup
@@ -1087,6 +1088,7 @@ ExecInsert(ModifyTableContext *context,
return NULL;
}
}
+ INJECTION_POINT("exec_insert_before_insert_speculative");
/*
* Before we start insertion proper, acquire our "speculative
diff --git a/src/backend/utils/time/snapmgr.c b/src/backend/utils/time/snapmgr.c
index 7d2b34d4f20..3a7357a050d 100644
--- a/src/backend/utils/time/snapmgr.c
+++ b/src/backend/utils/time/snapmgr.c
@@ -64,6 +64,7 @@
#include "utils/resowner.h"
#include "utils/snapmgr.h"
#include "utils/syscache.h"
+#include "utils/injection_point.h"
/*
@@ -426,6 +427,7 @@ InvalidateCatalogSnapshot(void)
pairingheap_remove(&RegisteredSnapshots, &CatalogSnapshot->ph_node);
CatalogSnapshot = NULL;
SnapshotResetXmin();
+ INJECTION_POINT("invalidate_catalog_snapshot_end");
}
}
diff --git a/src/test/modules/injection_points/Makefile b/src/test/modules/injection_points/Makefile
index 0753a9df58c..3bde3e67503 100644
--- a/src/test/modules/injection_points/Makefile
+++ b/src/test/modules/injection_points/Makefile
@@ -13,7 +13,7 @@ PGFILEDESC = "injection_points - facility for injection points"
REGRESS = injection_points reindex_conc
REGRESS_OPTS = --dlpath=$(top_builddir)/src/test/regress
-ISOLATION = basic inplace
+ISOLATION = basic inplace index_concurrently_upsert
TAP_TESTS = 1
diff --git a/src/test/modules/injection_points/expected/index_concurrently_upsert.out b/src/test/modules/injection_points/expected/index_concurrently_upsert.out
new file mode 100644
index 00000000000..42dd059d985
--- /dev/null
+++ b/src/test/modules/injection_points/expected/index_concurrently_upsert.out
@@ -0,0 +1,80 @@
+Parsed test spec with 4 sessions
+
+starting permutation: s3_start_create_index s1_start_upsert s4_wakeup_define_index_before_set_valid s2_start_upsert s4_wakeup_s1_from_invalidate_catalog_snapshot s4_wakeup_s2 s4_wakeup_s1
+injection_points_attach
+-----------------------
+
+(1 row)
+
+injection_points_attach
+-----------------------
+
+(1 row)
+
+injection_points_attach
+-----------------------
+
+(1 row)
+
+step s3_start_create_index: CREATE UNIQUE INDEX CONCURRENTLY tbl_pkey_duplicate ON test.tbl(i); <waiting ...>
+step s1_start_upsert: INSERT INTO test.tbl VALUES(13,now()) on conflict(i) do update set updated_at = now(); <waiting ...>
+step s4_wakeup_define_index_before_set_valid:
+ SELECT injection_points_detach('define_index_before_set_valid');
+ SELECT injection_points_wakeup('define_index_before_set_valid');
+
+injection_points_detach
+-----------------------
+
+(1 row)
+
+injection_points_wakeup
+-----------------------
+
+(1 row)
+
+step s2_start_upsert: INSERT INTO test.tbl VALUES(13,now()) on conflict(i) do update set updated_at = now(); <waiting ...>
+step s4_wakeup_s1_from_invalidate_catalog_snapshot:
+ SELECT injection_points_detach('invalidate_catalog_snapshot_end');
+ SELECT injection_points_wakeup('invalidate_catalog_snapshot_end');
+
+injection_points_detach
+-----------------------
+
+(1 row)
+
+injection_points_wakeup
+-----------------------
+
+(1 row)
+
+step s4_wakeup_s2:
+ SELECT injection_points_detach('exec_insert_before_insert_speculative');
+ SELECT injection_points_wakeup('exec_insert_before_insert_speculative');
+
+injection_points_detach
+-----------------------
+
+(1 row)
+
+injection_points_wakeup
+-----------------------
+
+(1 row)
+
+step s2_start_upsert: <... completed>
+step s4_wakeup_s1:
+ SELECT injection_points_detach('check_exclusion_or_unique_constraint_no_conflict');
+ SELECT injection_points_wakeup('check_exclusion_or_unique_constraint_no_conflict');
+
+injection_points_detach
+-----------------------
+
+(1 row)
+
+injection_points_wakeup
+-----------------------
+
+(1 row)
+
+step s3_start_create_index: <... completed>
+step s1_start_upsert: <... completed>
diff --git a/src/test/modules/injection_points/meson.build b/src/test/modules/injection_points/meson.build
index 58f19001157..b50140bcf4a 100644
--- a/src/test/modules/injection_points/meson.build
+++ b/src/test/modules/injection_points/meson.build
@@ -44,6 +44,7 @@ tests += {
'specs': [
'basic',
'inplace',
+ 'index_concurrently_upsert',
],
},
'tap': {
diff --git a/src/test/modules/injection_points/specs/index_concurrently_upsert.spec b/src/test/modules/injection_points/specs/index_concurrently_upsert.spec
new file mode 100644
index 00000000000..075450935b6
--- /dev/null
+++ b/src/test/modules/injection_points/specs/index_concurrently_upsert.spec
@@ -0,0 +1,68 @@
+# Test race conditions involving:
+# - s1: UPSERT a tuple
+# - s2: UPSERT the same tuple
+# - s3: CREATE UNIQUE INDEX CONCURRENTLY
+# - s4: operations with injection points
+
+setup
+{
+ CREATE EXTENSION injection_points;
+ CREATE SCHEMA test;
+ CREATE UNLOGGED TABLE test.tbl(i int primary key, updated_at timestamp);
+ ALTER TABLE test.tbl SET (parallel_workers=0);
+}
+
+teardown
+{
+ DROP SCHEMA test CASCADE;
+ DROP EXTENSION injection_points;
+}
+
+session s1
+setup {
+ SELECT injection_points_set_local();
+ SELECT injection_points_attach('check_exclusion_or_unique_constraint_no_conflict', 'wait');
+ SELECT injection_points_attach('invalidate_catalog_snapshot_end', 'wait');
+}
+step s1_start_upsert { INSERT INTO test.tbl VALUES(13,now()) on conflict(i) do update set updated_at = now(); }
+
+session s2
+setup {
+ SELECT injection_points_set_local();
+ SELECT injection_points_attach('exec_insert_before_insert_speculative', 'wait');
+}
+step s2_start_upsert { INSERT INTO test.tbl VALUES(13,now()) on conflict(i) do update set updated_at = now(); }
+
+session s3
+setup {
+ SELECT injection_points_set_local();
+ SELECT injection_points_attach('define_index_before_set_valid', 'wait');
+}
+step s3_start_create_index { CREATE UNIQUE INDEX CONCURRENTLY tbl_pkey_duplicate ON test.tbl(i); }
+
+session s4
+step s4_wakeup_s1 {
+ SELECT injection_points_detach('check_exclusion_or_unique_constraint_no_conflict');
+ SELECT injection_points_wakeup('check_exclusion_or_unique_constraint_no_conflict');
+}
+step s4_wakeup_s1_from_invalidate_catalog_snapshot {
+ SELECT injection_points_detach('invalidate_catalog_snapshot_end');
+ SELECT injection_points_wakeup('invalidate_catalog_snapshot_end');
+}
+step s4_wakeup_s2 {
+ SELECT injection_points_detach('exec_insert_before_insert_speculative');
+ SELECT injection_points_wakeup('exec_insert_before_insert_speculative');
+}
+step s4_wakeup_define_index_before_set_valid {
+ SELECT injection_points_detach('define_index_before_set_valid');
+ SELECT injection_points_wakeup('define_index_before_set_valid');
+}
+
+permutation
+ s3_start_create_index
+ s1_start_upsert
+ s4_wakeup_define_index_before_set_valid
+ s2_start_upsert
+ s4_wakeup_s1_from_invalidate_catalog_snapshot
+ s4_wakeup_s2
+ s4_wakeup_s1
\ No newline at end of file
--
2.43.0
runningcheck.logapplication/octet-stream; name=runningcheck.logDownload
2024-11-25 19:08:03.770 CET [561022][postmaster] LOG: starting PostgreSQL 18devel on x86_64-linux, compiled by gcc-13.2.0, 64-bit
2024-11-25 19:08:03.770 CET [561022][postmaster] LOG: listening on IPv4 address "127.0.0.1", port 5432
2024-11-25 19:08:03.770 CET [561022][postmaster] LOG: listening on Unix socket "/tmp/.s.PGSQL.5432"
2024-11-25 19:08:03.776 CET [561025][startup] LOG: database system was shut down at 2024-11-25 19:08:03 CET
2024-11-25 19:08:03.783 CET [561022][postmaster] LOG: database system is ready to accept connections
2024-11-25 19:08:05.586 CET [561048][autovacuum worker] LOG: automatic vacuum of table "isolation_regression.pg_catalog.pg_type": index scans: 1
pages: 14 removed, 59 remain, 73 scanned (100.00% of total)
tuples: 892 removed, 629 remain, 0 are dead but not yet removable
removable cutoff: 525659, which was 1 XIDs old when operation ended
new relfrozenxid: 525659, which is 12066 XIDs ahead of previous value
new relminmxid: 2899, which is 148 MXIDs ahead of previous value
frozen: 1 pages from table (1.37% of total) had 2 tuples frozen
index scan needed: 59 pages from table (80.82% of total) had 3496 dead item identifiers removed
index "pg_type_oid_index": pages: 24 in total, 8 newly deleted, 17 currently deleted, 9 reusable
index "pg_type_typname_nsp_index": pages: 9 in total, 0 newly deleted, 0 currently deleted, 0 reusable
avg read rate: 36.242 MB/s, avg write rate: 27.261 MB/s
buffer usage: 250 hits, 113 reads, 85 dirtied
WAL usage: 246 records, 86 full page images, 270277 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.02 s
2024-11-25 19:08:05.604 CET [561048][autovacuum worker] LOG: automatic analyze of table "isolation_regression.pg_catalog.pg_type"
avg read rate: 17.361 MB/s, avg write rate: 4.340 MB/s
buffer usage: 1090 hits, 40 reads, 10 dirtied
WAL usage: 99 records, 7 full page images, 71485 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.01 s
2024-11-25 19:08:05.835 CET [561048][autovacuum worker] LOG: automatic vacuum of table "isolation_regression.pg_catalog.pg_attribute": index scans: 1
pages: 173 removed, 299 remain, 330 scanned (69.92% of total)
tuples: 11601 removed, 2004 remain, 0 are dead but not yet removable
removable cutoff: 525661, which was 1 XIDs old when operation ended
new relfrozenxid: 525661, which is 12068 XIDs ahead of previous value
new relminmxid: 2899, which is 148 MXIDs ahead of previous value
frozen: 1 pages from table (0.21% of total) had 19 tuples frozen
index scan needed: 314 pages from table (66.53% of total) had 23181 dead item identifiers removed
index "pg_attribute_relid_attnam_index": pages: 192 in total, 82 newly deleted, 173 currently deleted, 91 reusable
index "pg_attribute_relid_attnum_index": pages: 139 in total, 59 newly deleted, 125 currently deleted, 66 reusable
avg read rate: 35.729 MB/s, avg write rate: 26.485 MB/s
buffer usage: 1601 hits, 1059 reads, 785 dirtied
WAL usage: 1683 records, 472 full page images, 2954065 bytes
system usage: CPU: user: 0.00 s, system: 0.01 s, elapsed: 0.23 s
2024-11-25 19:08:05.865 CET [561048][autovacuum worker] LOG: automatic analyze of table "isolation_regression.pg_catalog.pg_attribute"
avg read rate: 69.792 MB/s, avg write rate: 1.302 MB/s
buffer usage: 496 hits, 268 reads, 5 dirtied
WAL usage: 84 records, 4 full page images, 35305 bytes
system usage: CPU: user: 0.01 s, system: 0.00 s, elapsed: 0.02 s
2024-11-25 19:08:05.915 CET [561048][autovacuum worker] LOG: automatic vacuum of table "isolation_regression.pg_catalog.pg_class": index scans: 1
pages: 23 removed, 89 remain, 112 scanned (100.00% of total)
tuples: 1482 removed, 426 remain, 0 are dead but not yet removable
removable cutoff: 525663, which was 1 XIDs old when operation ended
new relfrozenxid: 525663, which is 12070 XIDs ahead of previous value
new relminmxid: 2899, which is 148 MXIDs ahead of previous value
frozen: 1 pages from table (0.89% of total) had 3 tuples frozen
index scan needed: 107 pages from table (95.54% of total) had 4598 dead item identifiers removed
index "pg_class_oid_index": pages: 18 in total, 6 newly deleted, 12 currently deleted, 6 reusable
index "pg_class_relname_nsp_index": pages: 33 in total, 13 newly deleted, 23 currently deleted, 10 reusable
index "pg_class_tblspc_relfilenode_index": pages: 27 in total, 10 newly deleted, 20 currently deleted, 10 reusable
avg read rate: 12.565 MB/s, avg write rate: 24.653 MB/s
buffer usage: 651 hits, 79 reads, 155 dirtied
WAL usage: 430 records, 156 full page images, 391744 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.04 s
2024-11-25 19:08:05.923 CET [561048][autovacuum worker] LOG: automatic analyze of table "isolation_regression.pg_catalog.pg_class"
avg read rate: 6.076 MB/s, avg write rate: 7.813 MB/s
buffer usage: 620 hits, 7 reads, 9 dirtied
WAL usage: 103 records, 6 full page images, 54523 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:05.951 CET [561048][autovacuum worker] LOG: automatic vacuum of table "isolation_regression.pg_catalog.pg_constraint": index scans: 1
pages: 0 removed, 51 remain, 51 scanned (100.00% of total)
tuples: 702 removed, 204 remain, 0 are dead but not yet removable
removable cutoff: 525665, which was 0 XIDs old when operation ended
new relfrozenxid: 525665, which is 12072 XIDs ahead of previous value
new relminmxid: 2899, which is 148 MXIDs ahead of previous value
frozen: 0 pages from table (0.00% of total) had 0 tuples frozen
index scan needed: 48 pages from table (94.12% of total) had 1803 dead item identifiers removed
index "pg_constraint_conparentid_index": pages: 7 in total, 0 newly deleted, 2 currently deleted, 2 reusable
index "pg_constraint_conname_nsp_index": pages: 6 in total, 0 newly deleted, 0 currently deleted, 0 reusable
index "pg_constraint_conrelid_contypid_conname_index": pages: 33 in total, 9 newly deleted, 26 currently deleted, 17 reusable
index "pg_constraint_contypid_index": pages: 6 in total, 0 newly deleted, 0 currently deleted, 0 reusable
index "pg_constraint_oid_index": pages: 16 in total, 4 newly deleted, 11 currently deleted, 7 reusable
avg read rate: 35.676 MB/s, avg write rate: 25.814 MB/s
buffer usage: 318 hits, 123 reads, 89 dirtied
WAL usage: 209 records, 86 full page images, 228959 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.02 s
2024-11-25 19:08:05.958 CET [561048][autovacuum worker] LOG: automatic analyze of table "isolation_regression.pg_catalog.pg_constraint"
avg read rate: 0.977 MB/s, avg write rate: 1.953 MB/s
buffer usage: 544 hits, 1 reads, 2 dirtied
WAL usage: 70 records, 1 full page images, 23002 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:05.959 CET [561048][autovacuum worker] LOG: automatic vacuum of table "isolation_regression.pg_catalog.pg_inherits": index scans: 1
pages: 1 removed, 1 remain, 2 scanned (100.00% of total)
tuples: 108 removed, 4 remain, 0 are dead but not yet removable
removable cutoff: 525666, which was 1 XIDs old when operation ended
new relfrozenxid: 525666, which is 12073 XIDs ahead of previous value
new relminmxid: 2899, which is 148 MXIDs ahead of previous value
frozen: 0 pages from table (0.00% of total) had 0 tuples frozen
index scan needed: 2 pages from table (100.00% of total) had 392 dead item identifiers removed
index "pg_inherits_parent_index": pages: 2 in total, 0 newly deleted, 0 currently deleted, 0 reusable
index "pg_inherits_relid_seqno_index": pages: 2 in total, 0 newly deleted, 0 currently deleted, 0 reusable
avg read rate: 144.142 MB/s, avg write rate: 115.314 MB/s
buffer usage: 58 hits, 10 reads, 8 dirtied
WAL usage: 18 records, 10 full page images, 57679 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:05.962 CET [561048][autovacuum worker] LOG: automatic analyze of table "isolation_regression.pg_catalog.pg_inherits"
avg read rate: 0.000 MB/s, avg write rate: 0.000 MB/s
buffer usage: 50 hits, 0 reads, 0 dirtied
WAL usage: 8 records, 0 full page images, 1088 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:05.973 CET [561048][autovacuum worker] LOG: automatic vacuum of table "isolation_regression.pg_catalog.pg_index": index scans: 1
pages: 0 removed, 21 remain, 21 scanned (100.00% of total)
tuples: 384 removed, 168 remain, 0 are dead but not yet removable
removable cutoff: 525668, which was 0 XIDs old when operation ended
new relfrozenxid: 525668, which is 12075 XIDs ahead of previous value
new relminmxid: 2899, which is 148 MXIDs ahead of previous value
frozen: 1 pages from table (4.76% of total) had 1 tuples frozen
index scan needed: 21 pages from table (100.00% of total) had 1713 dead item identifiers removed
index "pg_index_indrelid_index": pages: 11 in total, 3 newly deleted, 5 currently deleted, 2 reusable
index "pg_index_indexrelid_index": pages: 11 in total, 4 newly deleted, 6 currently deleted, 2 reusable
avg read rate: 21.776 MB/s, avg write rate: 33.040 MB/s
buffer usage: 144 hits, 29 reads, 44 dirtied
WAL usage: 113 records, 42 full page images, 231214 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.01 s
2024-11-25 19:08:05.980 CET [561048][autovacuum worker] LOG: automatic analyze of table "isolation_regression.pg_catalog.pg_index"
avg read rate: 2.232 MB/s, avg write rate: 2.232 MB/s
buffer usage: 333 hits, 2 reads, 2 dirtied
WAL usage: 34 records, 1 full page images, 15131 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:05.983 CET [561048][autovacuum worker] LOG: automatic analyze of table "isolation_regression.pg_catalog.pg_trigger"
avg read rate: 23.438 MB/s, avg write rate: 15.625 MB/s
buffer usage: 250 hits, 9 reads, 6 dirtied
WAL usage: 47 records, 6 full page images, 27371 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:06.098 CET [561048][autovacuum worker] LOG: automatic vacuum of table "isolation_regression.pg_catalog.pg_depend": index scans: 1
pages: 0 removed, 123 remain, 123 scanned (100.00% of total)
tuples: 3989 removed, 1776 remain, 0 are dead but not yet removable
removable cutoff: 525670, which was 0 XIDs old when operation ended
new relfrozenxid: 525670, which is 12077 XIDs ahead of previous value
new relminmxid: 2899, which is 148 MXIDs ahead of previous value
frozen: 2 pages from table (1.63% of total) had 11 tuples frozen
index scan needed: 113 pages from table (91.87% of total) had 13640 dead item identifiers removed
index "pg_depend_depender_index": pages: 164 in total, 60 newly deleted, 141 currently deleted, 81 reusable
index "pg_depend_reference_index": pages: 138 in total, 53 newly deleted, 120 currently deleted, 67 reusable
avg read rate: 36.698 MB/s, avg write rate: 25.255 MB/s
buffer usage: 1131 hits, 542 reads, 373 dirtied
WAL usage: 811 records, 258 full page images, 1009550 bytes
system usage: CPU: user: 0.01 s, system: 0.00 s, elapsed: 0.11 s
2024-11-25 19:08:06.106 CET [561048][autovacuum worker] LOG: automatic analyze of table "isolation_regression.pg_catalog.pg_depend"
avg read rate: 10.742 MB/s, avg write rate: 1.953 MB/s
buffer usage: 223 hits, 11 reads, 2 dirtied
WAL usage: 21 records, 1 full page images, 14013 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:06.107 CET [561048][autovacuum worker] LOG: automatic vacuum of table "isolation_regression.pg_catalog.pg_partitioned_table": index scans: 1
pages: 0 removed, 1 remain, 1 scanned (100.00% of total)
tuples: 10 removed, 1 remain, 0 are dead but not yet removable
removable cutoff: 525671, which was 0 XIDs old when operation ended
new relfrozenxid: 525671, which is 12078 XIDs ahead of previous value
new relminmxid: 2899, which is 148 MXIDs ahead of previous value
frozen: 0 pages from table (0.00% of total) had 0 tuples frozen
index scan needed: 1 pages from table (100.00% of total) had 142 dead item identifiers removed
index "pg_partitioned_table_partrelid_index": pages: 2 in total, 0 newly deleted, 0 currently deleted, 0 reusable
avg read rate: 244.141 MB/s, avg write rate: 139.509 MB/s
buffer usage: 20 hits, 7 reads, 4 dirtied
WAL usage: 6 records, 4 full page images, 19055 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:06.107 CET [561048][autovacuum worker] LOG: automatic analyze of table "isolation_regression.pg_catalog.pg_partitioned_table"
avg read rate: 0.000 MB/s, avg write rate: 0.000 MB/s
buffer usage: 79 hits, 0 reads, 0 dirtied
WAL usage: 16 records, 0 full page images, 1592 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:06.396 CET [561085][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.397 CET [561087][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.397 CET [561089][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.397 CET [561085][client backend] [[unknown]][0/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.397 CET [561087][client backend] [[unknown]][1/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.397 CET [561085][client backend] [[unknown]][0/1:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:06.397 CET [561087][client backend] [[unknown]][1/1:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:06.398 CET [561089][client backend] [[unknown]][2/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.398 CET [561089][client backend] [[unknown]][2/1:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:06.399 CET [561093][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.399 CET [561093][client backend] [[unknown]][3/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.399 CET [561093][client backend] [[unknown]][3/1:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:06.400 CET [561094][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.400 CET [561094][client backend] [[unknown]][4/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.400 CET [561094][client backend] [[unknown]][4/1:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:06.401 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:06.404 CET [561099][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.404 CET [561099][client backend] [[unknown]][5/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.404 CET [561099][client backend] [[unknown]][5/1:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:06.407 CET [561102][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.407 CET [561102][client backend] [[unknown]][6/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.407 CET [561102][client backend] [[unknown]][6/1:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:06.410 CET [561023][checkpointer] LOG: checkpoint complete: wrote 670 buffers (4.1%), wrote 2 SLRU buffers; 0 WAL file(s) added, 1 removed, 0 recycled; write=0.007 s, sync=0.001 s, total=0.009 s; sync files=0, longest=0.000 s, average=0.000 s; distance=5384 kB, estimate=5384 kB; lsn=4/3B45E240, redo lsn=4/3B45A800
2024-11-25 19:08:06.410 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:06.411 CET [561023][checkpointer] LOG: checkpoint complete: wrote 6 buffers (0.0%), wrote 0 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.001 s, sync=0.001 s, total=0.001 s; sync files=0, longest=0.000 s, average=0.000 s; distance=17 kB, estimate=4847 kB; lsn=4/3B45F3A0, redo lsn=4/3B45EE50
2024-11-25 19:08:06.417 CET [561106][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.418 CET [561087][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.022 user=nkey database=postgres host=[local]
2024-11-25 19:08:06.419 CET [561106][client backend] [[unknown]][7/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.419 CET [561106][client backend] [[unknown]][7/1:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:06.419 CET [561085][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.022 user=nkey database=postgres host=[local]
2024-11-25 19:08:06.421 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:06.421 CET [561109][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.421 CET [561023][checkpointer] LOG: checkpoint complete: wrote 8 buffers (0.0%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.001 s, sync=0.001 s, total=0.001 s; sync files=0, longest=0.000 s, average=0.000 s; distance=17 kB, estimate=4364 kB; lsn=4/3B463658, redo lsn=4/3B4635E8
2024-11-25 19:08:06.422 CET [561109][client backend] [[unknown]][8/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.422 CET [561109][client backend] [[unknown]][8/1:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:06.424 CET [561112][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.424 CET [561112][client backend] [[unknown]][9/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.424 CET [561112][client backend] [[unknown]][9/1:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:06.426 CET [561093][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.026 user=nkey database=postgres host=[local]
2024-11-25 19:08:06.427 CET [561102][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.020 user=nkey database=postgres host=[local]
2024-11-25 19:08:06.428 CET [561116][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.429 CET [561116][client backend] [[unknown]][10/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.429 CET [561116][client backend] [[unknown]][10/1:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:06.429 CET [561099][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.025 user=nkey database=postgres host=[local]
2024-11-25 19:08:06.429 CET [561094][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.029 user=nkey database=postgres host=[local]
2024-11-25 19:08:06.431 CET [561122][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.431 CET [561123][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.432 CET [561122][client backend] [[unknown]][11/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.432 CET [561122][client backend] [[unknown]][11/1:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:06.432 CET [561123][client backend] [[unknown]][12/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.432 CET [561123][client backend] [[unknown]][12/1:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:06.436 CET [561124][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.436 CET [561124][client backend] [[unknown]][13/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.437 CET [561124][client backend] [[unknown]][13/1:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:06.462 CET [561109][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.040 user=nkey database=postgres host=[local]
2024-11-25 19:08:06.464 CET [561112][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.040 user=nkey database=postgres host=[local]
2024-11-25 19:08:06.464 CET [561127][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.465 CET [561127][client backend] [[unknown]][14/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.465 CET [561127][client backend] [[unknown]][14/1:0] LOG: connection authorized: user=nkey database=regression_plpgsql application_name=pg_regress/plpgsql_array
2024-11-25 19:08:06.466 CET [561122][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.034 user=nkey database=postgres host=[local]
2024-11-25 19:08:06.466 CET [561123][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.034 user=nkey database=postgres host=[local]
2024-11-25 19:08:06.466 CET [561128][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.467 CET [561128][client backend] [[unknown]][15/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.467 CET [561128][client backend] [[unknown]][15/1:0] LOG: connection authorized: user=nkey database=regression_bloom application_name=pg_regress/bloom
2024-11-25 19:08:06.467 CET [561116][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.038 user=nkey database=postgres host=[local]
2024-11-25 19:08:06.468 CET [561132][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.468 CET [561133][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.469 CET [561132][client backend] [[unknown]][16/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.469 CET [561132][client backend] [[unknown]][16/1:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/install_btree_gin
2024-11-25 19:08:06.469 CET [561133][client backend] [[unknown]][17/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.469 CET [561133][client backend] [[unknown]][17/1:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/init
2024-11-25 19:08:06.469 CET [561134][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.470 CET [561134][client backend] [[unknown]][18/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.470 CET [561134][client backend] [[unknown]][18/1:0] LOG: connection authorized: user=nkey database=regression_amcheck application_name=pg_regress/check
2024-11-25 19:08:06.470 CET [561124][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.034 user=nkey database=postgres host=[local]
2024-11-25 19:08:06.472 CET [561136][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.473 CET [561136][client backend] [[unknown]][19/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.473 CET [561136][client backend] [[unknown]][19/1:0] LOG: connection authorized: user=nkey database=regression_citext application_name=pg_regress/create_index_acl
2024-11-25 19:08:06.475 CET [561127][client backend] [pg_regress/plpgsql_array][14/11:0] ERROR: malformed array literal: "4"
2024-11-25 19:08:06.475 CET [561127][client backend] [pg_regress/plpgsql_array][14/11:0] DETAIL: Array value must start with "{" or dimension information.
2024-11-25 19:08:06.475 CET [561127][client backend] [pg_regress/plpgsql_array][14/11:0] CONTEXT: PL/pgSQL function inline_code_block line 2 at assignment
2024-11-25 19:08:06.475 CET [561127][client backend] [pg_regress/plpgsql_array][14/11:0] STATEMENT: do $$ declare a int[];
begin a[1:2] := 4; raise notice 'a = %', a; end$$;
2024-11-25 19:08:06.476 CET [561127][client backend] [pg_regress/plpgsql_array][14/14:0] ERROR: cannot assign to field "i" of column "a" because its type complex[] is not a composite type at character 1
2024-11-25 19:08:06.476 CET [561127][client backend] [pg_regress/plpgsql_array][14/14:0] QUERY: a[1:2].i := array[11,12]
2024-11-25 19:08:06.476 CET [561127][client backend] [pg_regress/plpgsql_array][14/14:0] CONTEXT: PL/pgSQL function inline_code_block line 2 at assignment
2024-11-25 19:08:06.476 CET [561127][client backend] [pg_regress/plpgsql_array][14/14:0] STATEMENT: do $$ declare a complex[];
begin a[1:2].i := array[11,12]; raise notice 'a = %', a; end$$;
2024-11-25 19:08:06.479 CET [561134][client backend] [pg_regress/check][:0] LOG: disconnection: session time: 0:00:00.010 user=nkey database=regression_amcheck host=[local]
2024-11-25 19:08:06.479 CET [561127][client backend] [pg_regress/plpgsql_array][14/20:0] ERROR: assignment source returned 0 columns
2024-11-25 19:08:06.479 CET [561127][client backend] [pg_regress/plpgsql_array][14/20:0] CONTEXT: PL/pgSQL assignment "a := from onecol"
PL/pgSQL function inline_code_block line 2 at assignment
2024-11-25 19:08:06.479 CET [561127][client backend] [pg_regress/plpgsql_array][14/20:0] STATEMENT: do $$ declare a int[];
begin a := from onecol; raise notice 'a = %', a; end$$;
2024-11-25 19:08:06.479 CET [561127][client backend] [pg_regress/plpgsql_array][14/21:0] ERROR: assignment source returned 2 columns
2024-11-25 19:08:06.479 CET [561127][client backend] [pg_regress/plpgsql_array][14/21:0] CONTEXT: PL/pgSQL assignment "a := f1, f1 from onecol"
PL/pgSQL function inline_code_block line 2 at assignment
2024-11-25 19:08:06.479 CET [561127][client backend] [pg_regress/plpgsql_array][14/21:0] STATEMENT: do $$ declare a int[];
begin a := f1, f1 from onecol; raise notice 'a = %', a; end$$;
2024-11-25 19:08:06.479 CET [561127][client backend] [pg_regress/plpgsql_array][14/23:0] ERROR: query returned more than one row
2024-11-25 19:08:06.479 CET [561127][client backend] [pg_regress/plpgsql_array][14/23:0] CONTEXT: query: a := f1 from onecol
PL/pgSQL function inline_code_block line 2 at assignment
2024-11-25 19:08:06.479 CET [561127][client backend] [pg_regress/plpgsql_array][14/23:0] STATEMENT: do $$ declare a int[];
begin a := f1 from onecol; raise notice 'a = %', a; end$$;
2024-11-25 19:08:06.480 CET [561127][client backend] [pg_regress/plpgsql_array][14/25:0] ERROR: cannot subscript type real because it does not support subscripting at character 1
2024-11-25 19:08:06.480 CET [561127][client backend] [pg_regress/plpgsql_array][14/25:0] QUERY: a[1] := 2
2024-11-25 19:08:06.480 CET [561127][client backend] [pg_regress/plpgsql_array][14/25:0] CONTEXT: PL/pgSQL function inline_code_block line 2 at assignment
2024-11-25 19:08:06.480 CET [561127][client backend] [pg_regress/plpgsql_array][14/25:0] STATEMENT: do $$ declare a real;
begin a[1] := 2; raise notice 'a = %', a; end$$;
2024-11-25 19:08:06.480 CET [561127][client backend] [pg_regress/plpgsql_array][14/26:0] ERROR: cannot subscript type double precision because it does not support subscripting at character 1
2024-11-25 19:08:06.480 CET [561127][client backend] [pg_regress/plpgsql_array][14/26:0] QUERY: a.r[1] := 2
2024-11-25 19:08:06.480 CET [561127][client backend] [pg_regress/plpgsql_array][14/26:0] CONTEXT: PL/pgSQL function inline_code_block line 2 at assignment
2024-11-25 19:08:06.480 CET [561127][client backend] [pg_regress/plpgsql_array][14/26:0] STATEMENT: do $$ declare a complex;
begin a.r[1] := 2; raise notice 'a = %', a; end$$;
2024-11-25 19:08:06.481 CET [561127][client backend] [pg_regress/plpgsql_array][14/28:0] ERROR: could not find array type for data type pg_node_tree
2024-11-25 19:08:06.481 CET [561127][client backend] [pg_regress/plpgsql_array][14/28:0] CONTEXT: compilation of PL/pgSQL function "inline_code_block" near line 4
2024-11-25 19:08:06.481 CET [561127][client backend] [pg_regress/plpgsql_array][14/28:0] STATEMENT: do $$
declare
v pg_node_tree;
v1 v%type[];
begin
end;
$$;
2024-11-25 19:08:06.482 CET [561140][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.483 CET [561140][client backend] [[unknown]][20/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.483 CET [561140][client backend] [[unknown]][20/1:0] LOG: connection authorized: user=nkey database=regression_amcheck application_name=pg_regress/check_btree
2024-11-25 19:08:06.484 CET [561127][client backend] [pg_regress/plpgsql_array][:0] LOG: disconnection: session time: 0:00:00.019 user=nkey database=regression_plpgsql host=[local]
2024-11-25 19:08:06.486 CET [561144][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.487 CET [561144][client backend] [[unknown]][21/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.487 CET [561144][client backend] [[unknown]][21/1:0] LOG: connection authorized: user=nkey database=regression_plpgsql application_name=pg_regress/plpgsql_cache
2024-11-25 19:08:06.491 CET [561089][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.094 user=nkey database=postgres host=[local]
2024-11-25 19:08:06.493 CET [561144][client backend] [pg_regress/plpgsql_cache][21/7:0] ERROR: type of parameter 4 (double precision) does not match that when preparing the plan (integer)
2024-11-25 19:08:06.493 CET [561144][client backend] [pg_regress/plpgsql_cache][21/7:0] CONTEXT: PL/pgSQL function c_sillyaddone(integer) line 1 at RETURN
2024-11-25 19:08:06.493 CET [561144][client backend] [pg_regress/plpgsql_cache][21/7:0] STATEMENT: select c_sillyaddone(42);
2024-11-25 19:08:06.494 CET [561147][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.495 CET [561147][client backend] [[unknown]][22/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.495 CET [561147][client backend] [[unknown]][22/1:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:06.495 CET [561144][client backend] [pg_regress/plpgsql_cache][21/12:0] ERROR: type of parameter 5 (numeric) does not match that when preparing the plan (integer)
2024-11-25 19:08:06.495 CET [561144][client backend] [pg_regress/plpgsql_cache][21/12:0] CONTEXT: SQL statement "select pg_typeof(r.a)"
PL/pgSQL function show_result_type(text) line 7 at SQL statement
2024-11-25 19:08:06.495 CET [561144][client backend] [pg_regress/plpgsql_cache][21/12:0] STATEMENT: select show_result_type('select 2.0 as a');
2024-11-25 19:08:06.495 CET [561144][client backend] [pg_regress/plpgsql_cache][:0] LOG: disconnection: session time: 0:00:00.009 user=nkey database=regression_plpgsql host=[local]
2024-11-25 19:08:06.499 CET [561151][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.499 CET [561151][client backend] [[unknown]][23/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.499 CET [561151][client backend] [[unknown]][23/1:0] LOG: connection authorized: user=nkey database=regression_plpgsql application_name=pg_regress/plpgsql_call
2024-11-25 19:08:06.502 CET [561151][client backend] [pg_regress/plpgsql_call][23/4:525727] ERROR: RETURN cannot have a parameter in a procedure at character 71
2024-11-25 19:08:06.502 CET [561151][client backend] [pg_regress/plpgsql_call][23/4:525727] STATEMENT: CREATE PROCEDURE test_proc2()
LANGUAGE plpgsql
AS $$
BEGIN
RETURN 5;
END;
$$;
2024-11-25 19:08:06.510 CET [561136][client backend] [pg_regress/create_index_acl][19/5:525702] ERROR: collation "coll" for encoding "UTF8" does not exist
2024-11-25 19:08:06.510 CET [561136][client backend] [pg_regress/create_index_acl][19/5:525702] STATEMENT: ALTER TABLE s.x ADD CONSTRAINT underqualified EXCLUDE USING btree
((s.index_this_expr(y, s.const())) COLLATE coll WITH s.=)
USING INDEX TABLESPACE regress_create_idx_tblspace
WHERE (s.index_row_if(y));
2024-11-25 19:08:06.511 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:06.514 CET [561151][client backend] [pg_regress/plpgsql_call][23/26:0] ERROR: procedure parameter "b" is an output parameter but corresponding argument is not writable
2024-11-25 19:08:06.514 CET [561151][client backend] [pg_regress/plpgsql_call][23/26:0] CONTEXT: PL/pgSQL function inline_code_block line 6 at CALL
2024-11-25 19:08:06.514 CET [561151][client backend] [pg_regress/plpgsql_call][23/26:0] STATEMENT: DO
LANGUAGE plpgsql
$$
DECLARE
x int := 3;
y int := 4;
BEGIN
CALL test_proc6(2, x + 1, y); -- error
RAISE INFO 'x = %, y = %', x, y;
END;
$$;
2024-11-25 19:08:06.515 CET [561151][client backend] [pg_regress/plpgsql_call][23/27:0] ERROR: variable "x" is declared CONSTANT
2024-11-25 19:08:06.515 CET [561151][client backend] [pg_regress/plpgsql_call][23/27:0] CONTEXT: PL/pgSQL function inline_code_block line 6 at CALL
2024-11-25 19:08:06.515 CET [561151][client backend] [pg_regress/plpgsql_call][23/27:0] STATEMENT: DO
LANGUAGE plpgsql
$$
DECLARE
x constant int := 3;
y int := 4;
BEGIN
CALL test_proc6(2, x, y); -- error because x is constant
END;
$$;
2024-11-25 19:08:06.516 CET [561132][client backend] [pg_regress/install_btree_gin][:0] LOG: disconnection: session time: 0:00:00.047 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:06.516 CET [561106][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.099 user=nkey database=postgres host=[local]
2024-11-25 19:08:06.520 CET [561157][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.520 CET [561158][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.521 CET [561147][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.026 user=nkey database=postgres host=[local]
2024-11-25 19:08:06.521 CET [561157][client backend] [[unknown]][24/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.521 CET [561158][client backend] [[unknown]][25/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.521 CET [561157][client backend] [[unknown]][24/1:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/int2
2024-11-25 19:08:06.521 CET [561158][client backend] [[unknown]][25/1:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:06.523 CET [561161][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.524 CET [561161][client backend] [[unknown]][26/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.524 CET [561161][client backend] [[unknown]][26/1:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/test_setup
2024-11-25 19:08:06.532 CET [561151][client backend] [pg_regress/plpgsql_call][23/43:0] ERROR: procedure parameter "c" is an output parameter but corresponding argument is not writable
2024-11-25 19:08:06.532 CET [561151][client backend] [pg_regress/plpgsql_call][23/43:0] CONTEXT: PL/pgSQL function inline_code_block line 5 at CALL
2024-11-25 19:08:06.532 CET [561151][client backend] [pg_regress/plpgsql_call][23/43:0] STATEMENT: DO $$
DECLARE _a int; _b int; _c int;
BEGIN
_a := 10; _b := 30; _c := 50;
CALL test_proc8c(_a, _b); -- fail, no output argument for c
RAISE NOTICE '_a: %, _b: %, _c: %', _a, _b, _c;
END
$$;
2024-11-25 19:08:06.532 CET [561160][autovacuum worker] LOG: automatic analyze of table "regression_plpgsql.pg_catalog.pg_db_role_setting"
avg read rate: 0.000 MB/s, avg write rate: 1.953 MB/s
buffer usage: 323 hits, 0 reads, 2 dirtied
WAL usage: 8 records, 4 full page images, 30754 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:06.533 CET [561151][client backend] [pg_regress/plpgsql_call][23/44:0] ERROR: procedure parameter "c" is an output parameter but corresponding argument is not writable
2024-11-25 19:08:06.533 CET [561151][client backend] [pg_regress/plpgsql_call][23/44:0] CONTEXT: PL/pgSQL function inline_code_block line 5 at CALL
2024-11-25 19:08:06.533 CET [561151][client backend] [pg_regress/plpgsql_call][23/44:0] STATEMENT: DO $$
DECLARE _a int; _b int; _c int;
BEGIN
_a := 10; _b := 30; _c := 50;
CALL test_proc8c(_a, b => _b); -- fail, no output argument for c
RAISE NOTICE '_a: %, _b: %, _c: %', _a, _b, _c;
END
$$;
2024-11-25 19:08:06.533 CET [561157][client backend] [pg_regress/int2][:0] LOG: disconnection: session time: 0:00:00.012 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:06.536 CET [561165][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.537 CET [561165][client backend] [[unknown]][27/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.537 CET [561165][client backend] [[unknown]][27/1:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/int4
2024-11-25 19:08:06.539 CET [561151][client backend] [pg_regress/plpgsql_call][23/53:0] ERROR: procedure test_proc12(integer, integer, text[]) does not exist at character 6
2024-11-25 19:08:06.539 CET [561151][client backend] [pg_regress/plpgsql_call][23/53:0] HINT: No procedure matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:06.539 CET [561151][client backend] [pg_regress/plpgsql_call][23/53:0] QUERY: CALL test_proc12(_a, _b, _c)
2024-11-25 19:08:06.539 CET [561151][client backend] [pg_regress/plpgsql_call][23/53:0] CONTEXT: PL/pgSQL function inline_code_block line 5 at CALL
2024-11-25 19:08:06.539 CET [561151][client backend] [pg_regress/plpgsql_call][23/53:0] STATEMENT: DO $$
DECLARE _a int; _b int; _c text[];
BEGIN
_a := 10;
CALL test_proc12(_a, _b, _c); -- error
RAISE NOTICE '_a: %, _b: %, _c: %', _a, _b, _c;
END
$$;
2024-11-25 19:08:06.544 CET [561165][client backend] [pg_regress/int4][:0] LOG: disconnection: session time: 0:00:00.007 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:06.546 CET [561151][client backend] [pg_regress/plpgsql_call][23/65:0] ERROR: procedure parameter "v_text" is an output parameter but corresponding argument is not writable
2024-11-25 19:08:06.546 CET [561151][client backend] [pg_regress/plpgsql_call][23/65:0] CONTEXT: PL/pgSQL function inline_code_block line 6 at CALL
2024-11-25 19:08:06.546 CET [561151][client backend] [pg_regress/plpgsql_call][23/65:0] STATEMENT: DO $$
DECLARE
v_Text text;
v_cnt integer := 42;
BEGIN
CALL p1(v_cnt := v_cnt); -- error, must supply something for v_Text
RAISE NOTICE '%', v_Text;
END;
$$;
2024-11-25 19:08:06.549 CET [561158][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.028 user=nkey database=postgres host=[local]
2024-11-25 19:08:06.549 CET [561169][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.549 CET [561169][client backend] [[unknown]][28/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.550 CET [561169][client backend] [[unknown]][28/1:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/int8
2024-11-25 19:08:06.552 CET [561133][client backend] [pg_regress/init][:0] LOG: disconnection: session time: 0:00:00.083 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:06.553 CET [561175][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.554 CET [561175][client backend] [[unknown]][29/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.554 CET [561175][client backend] [[unknown]][29/1:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/read-only-anomaly
2024-11-25 19:08:06.555 CET [561151][client backend] [pg_regress/plpgsql_call][:0] LOG: disconnection: session time: 0:00:00.056 user=nkey database=regression_plpgsql host=[local]
2024-11-25 19:08:06.556 CET [561179][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.557 CET [561179][client backend] [[unknown]][30/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.557 CET [561179][client backend] [[unknown]][30/1:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/int2
2024-11-25 19:08:06.557 CET [561169][client backend] [pg_regress/int8][:0] LOG: disconnection: session time: 0:00:00.008 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:06.559 CET [561184][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.559 CET [561184][client backend] [[unknown]][31/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.559 CET [561184][client backend] [[unknown]][31/1:0] LOG: connection authorized: user=nkey database=regression_plpgsql application_name=pg_regress/plpgsql_control
2024-11-25 19:08:06.561 CET [561185][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.561 CET [561185][client backend] [[unknown]][32/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.561 CET [561185][client backend] [[unknown]][32/1:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/float4
2024-11-25 19:08:06.562 CET [561186][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.562 CET [561184][client backend] [pg_regress/plpgsql_control][31/3:0] ERROR: BY value of FOR loop must be greater than zero
2024-11-25 19:08:06.562 CET [561184][client backend] [pg_regress/plpgsql_control][31/3:0] CONTEXT: PL/pgSQL function inline_code_block line 3 at FOR with integer loop variable
2024-11-25 19:08:06.562 CET [561184][client backend] [pg_regress/plpgsql_control][31/3:0] STATEMENT: do $$
begin
for i in 1..3 by 0 loop
raise notice '1..3 by 0: i = %', i;
end loop;
end$$;
2024-11-25 19:08:06.562 CET [561186][client backend] [[unknown]][33/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.562 CET [561186][client backend] [[unknown]][33/1:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/read-only-anomaly
2024-11-25 19:08:06.562 CET [561184][client backend] [pg_regress/plpgsql_control][31/4:0] ERROR: BY value of FOR loop must be greater than zero
2024-11-25 19:08:06.562 CET [561184][client backend] [pg_regress/plpgsql_control][31/4:0] CONTEXT: PL/pgSQL function inline_code_block line 3 at FOR with integer loop variable
2024-11-25 19:08:06.562 CET [561184][client backend] [pg_regress/plpgsql_control][31/4:0] STATEMENT: do $$
begin
for i in 1..3 by -1 loop
raise notice '1..3 by -1: i = %', i;
end loop;
end$$;
2024-11-25 19:08:06.562 CET [561184][client backend] [pg_regress/plpgsql_control][31/5:0] ERROR: BY value of FOR loop must be greater than zero
2024-11-25 19:08:06.562 CET [561184][client backend] [pg_regress/plpgsql_control][31/5:0] CONTEXT: PL/pgSQL function inline_code_block line 3 at FOR with integer loop variable
2024-11-25 19:08:06.562 CET [561184][client backend] [pg_regress/plpgsql_control][31/5:0] STATEMENT: do $$
begin
for i in reverse 1..3 by -1 loop
raise notice 'reverse 1..3 by -1: i = %', i;
end loop;
end$$;
2024-11-25 19:08:06.564 CET [561187][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.565 CET [561187][client backend] [[unknown]][34/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.565 CET [561187][client backend] [[unknown]][34/1:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/read-only-anomaly
2024-11-25 19:08:06.567 CET [561188][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.568 CET [561188][client backend] [[unknown]][35/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.568 CET [561188][client backend] [[unknown]][35/1:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/read-only-anomaly
2024-11-25 19:08:06.568 CET [561185][client backend] [pg_regress/float4][:0] LOG: disconnection: session time: 0:00:00.007 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:06.570 CET [561184][client backend] [pg_regress/plpgsql_control][31/13:525826] ERROR: CONTINUE cannot be used outside a loop at character 78
2024-11-25 19:08:06.570 CET [561184][client backend] [pg_regress/plpgsql_control][31/13:525826] STATEMENT: create function continue_error1() returns void as $$
begin
begin
continue;
end;
end;
$$ language plpgsql;
2024-11-25 19:08:06.570 CET [561184][client backend] [pg_regress/plpgsql_control][31/14:525828] ERROR: EXIT cannot be used outside a loop, unless it has a label at character 74
2024-11-25 19:08:06.570 CET [561184][client backend] [pg_regress/plpgsql_control][31/14:525828] STATEMENT: create function exit_error1() returns void as $$
begin
begin
exit;
end;
end;
$$ language plpgsql;
2024-11-25 19:08:06.570 CET [561184][client backend] [pg_regress/plpgsql_control][31/15:525830] ERROR: there is no label "no_such_label" attached to any block or loop enclosing this statement at character 104
2024-11-25 19:08:06.570 CET [561184][client backend] [pg_regress/plpgsql_control][31/15:525830] STATEMENT: create function continue_error2() returns void as $$
begin
begin
loop
continue no_such_label;
end loop;
end;
end;
$$ language plpgsql;
2024-11-25 19:08:06.570 CET [561184][client backend] [pg_regress/plpgsql_control][31/16:525831] ERROR: there is no label "no_such_label" attached to any block or loop enclosing this statement at character 96
2024-11-25 19:08:06.570 CET [561184][client backend] [pg_regress/plpgsql_control][31/16:525831] STATEMENT: create function exit_error2() returns void as $$
begin
begin
loop
exit no_such_label;
end loop;
end;
end;
$$ language plpgsql;
2024-11-25 19:08:06.571 CET [561184][client backend] [pg_regress/plpgsql_control][31/17:525832] ERROR: block label "begin_block1" cannot be used in CONTINUE at character 125
2024-11-25 19:08:06.571 CET [561184][client backend] [pg_regress/plpgsql_control][31/17:525832] STATEMENT: create function continue_error3() returns void as $$
begin
<<begin_block1>>
begin
loop
continue begin_block1;
end loop;
end;
end;
$$ language plpgsql;
2024-11-25 19:08:06.572 CET [561192][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.572 CET [561184][client backend] [pg_regress/plpgsql_control][31/22:525837] ERROR: end label "flbl1" specified for unlabeled block at character 101
2024-11-25 19:08:06.572 CET [561184][client backend] [pg_regress/plpgsql_control][31/22:525837] STATEMENT: create function end_label2() returns void as $$
begin
for _i in 1 .. 10 loop
exit;
end loop flbl1;
end;
$$ language plpgsql;
2024-11-25 19:08:06.573 CET [561184][client backend] [pg_regress/plpgsql_control][31/23:525838] ERROR: end label "outer_label" differs from block's label "inner_label" at character 135
2024-11-25 19:08:06.573 CET [561184][client backend] [pg_regress/plpgsql_control][31/23:525838] STATEMENT: create function end_label3() returns void as $$
<<outer_label>>
begin
<<inner_label>>
for _i in 1 .. 10 loop
exit;
end loop outer_label;
end;
$$ language plpgsql;
2024-11-25 19:08:06.573 CET [561192][client backend] [[unknown]][36/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.573 CET [561192][client backend] [[unknown]][36/1:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/float8
2024-11-25 19:08:06.573 CET [561184][client backend] [pg_regress/plpgsql_control][31/24:525839] ERROR: end label "outer_label" specified for unlabeled block at character 117
2024-11-25 19:08:06.573 CET [561184][client backend] [pg_regress/plpgsql_control][31/24:525839] STATEMENT: create function end_label4() returns void as $$
<<outer_label>>
begin
for _i in 1 .. 10 loop
exit;
end loop outer_label;
end;
$$ language plpgsql;
2024-11-25 19:08:06.579 CET [561184][client backend] [pg_regress/plpgsql_control][31/40:0] ERROR: case not found
2024-11-25 19:08:06.579 CET [561184][client backend] [pg_regress/plpgsql_control][31/40:0] HINT: CASE statement is missing ELSE part.
2024-11-25 19:08:06.579 CET [561184][client backend] [pg_regress/plpgsql_control][31/40:0] CONTEXT: PL/pgSQL function case_test(bigint) line 5 at CASE
2024-11-25 19:08:06.579 CET [561184][client backend] [pg_regress/plpgsql_control][31/40:0] STATEMENT: select case_test(5);
2024-11-25 19:08:06.580 CET [561192][client backend] [pg_regress/float8][:0] LOG: disconnection: session time: 0:00:00.007 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:06.580 CET [561184][client backend] [pg_regress/plpgsql_control][31/45:0] ERROR: case not found
2024-11-25 19:08:06.580 CET [561184][client backend] [pg_regress/plpgsql_control][31/45:0] HINT: CASE statement is missing ELSE part.
2024-11-25 19:08:06.580 CET [561184][client backend] [pg_regress/plpgsql_control][31/45:0] CONTEXT: PL/pgSQL function case_test(bigint) line 5 at CASE
2024-11-25 19:08:06.580 CET [561184][client backend] [pg_regress/plpgsql_control][31/45:0] STATEMENT: select case_test(13);
2024-11-25 19:08:06.581 CET [561175][client backend] [isolation/read-only-anomaly/control connection][:0] LOG: disconnection: session time: 0:00:00.028 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:06.581 CET [561179][client backend] [pg_regress/int2][:0] LOG: disconnection: session time: 0:00:00.024 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:06.581 CET [561186][client backend] [isolation/read-only-anomaly/s1][:0] LOG: disconnection: session time: 0:00:00.019 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:06.581 CET [561187][client backend] [isolation/read-only-anomaly/s2][:0] LOG: disconnection: session time: 0:00:00.016 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:06.581 CET [561188][client backend] [isolation/read-only-anomaly/s3][:0] LOG: disconnection: session time: 0:00:00.014 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:06.584 CET [561201][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.585 CET [561184][client backend] [pg_regress/plpgsql_control][:0] LOG: disconnection: session time: 0:00:00.026 user=nkey database=regression_plpgsql host=[local]
2024-11-25 19:08:06.585 CET [561202][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.585 CET [561201][client backend] [[unknown]][37/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.585 CET [561201][client backend] [[unknown]][37/1:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/money
2024-11-25 19:08:06.585 CET [561202][client backend] [[unknown]][38/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.585 CET [561202][client backend] [[unknown]][38/1:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/read-only-anomaly-2
2024-11-25 19:08:06.587 CET [561128][client backend] [pg_regress/bloom][15/67:0] ERROR: value 0 out of bounds for option "length"
2024-11-25 19:08:06.587 CET [561128][client backend] [pg_regress/bloom][15/67:0] DETAIL: Valid values are between "1" and "4096".
2024-11-25 19:08:06.587 CET [561128][client backend] [pg_regress/bloom][15/67:0] STATEMENT: CREATE INDEX bloomidx2 ON tst USING bloom (i, t) WITH (length=0);
2024-11-25 19:08:06.587 CET [561207][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.587 CET [561128][client backend] [pg_regress/bloom][15/68:0] ERROR: value 0 out of bounds for option "col1"
2024-11-25 19:08:06.587 CET [561128][client backend] [pg_regress/bloom][15/68:0] DETAIL: Valid values are between "1" and "4095".
2024-11-25 19:08:06.587 CET [561128][client backend] [pg_regress/bloom][15/68:0] STATEMENT: CREATE INDEX bloomidx2 ON tst USING bloom (i, t) WITH (col1=0);
2024-11-25 19:08:06.587 CET [561128][client backend] [pg_regress/bloom][:0] LOG: disconnection: session time: 0:00:00.121 user=nkey database=regression_bloom host=[local]
2024-11-25 19:08:06.587 CET [561207][client backend] [[unknown]][39/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.587 CET [561207][client backend] [[unknown]][39/1:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/int4
2024-11-25 19:08:06.588 CET [561209][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.588 CET [561209][client backend] [[unknown]][40/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.588 CET [561209][client backend] [[unknown]][40/1:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/read-only-anomaly-2
2024-11-25 19:08:06.589 CET [561211][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.589 CET [561211][client backend] [[unknown]][41/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.589 CET [561211][client backend] [[unknown]][41/1:0] LOG: connection authorized: user=nkey database=regression_plpgsql application_name=pg_regress/plpgsql_copy
2024-11-25 19:08:06.591 CET [561212][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.591 CET [561212][client backend] [[unknown]][42/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.591 CET [561212][client backend] [[unknown]][42/1:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/read-only-anomaly-2
2024-11-25 19:08:06.592 CET [561201][client backend] [pg_regress/money][:0] LOG: disconnection: session time: 0:00:00.008 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:06.592 CET [561211][client backend] [pg_regress/plpgsql_copy][41/3:0] ERROR: cannot COPY to/from client in PL/pgSQL
2024-11-25 19:08:06.592 CET [561211][client backend] [pg_regress/plpgsql_copy][41/3:0] CONTEXT: PL/pgSQL function inline_code_block line 3 at SQL statement
2024-11-25 19:08:06.592 CET [561211][client backend] [pg_regress/plpgsql_copy][41/3:0] STATEMENT: DO LANGUAGE plpgsql $$
BEGIN
COPY copy1 TO stdout;
END;
$$;
2024-11-25 19:08:06.593 CET [561211][client backend] [pg_regress/plpgsql_copy][41/4:0] ERROR: cannot COPY to/from client in PL/pgSQL
2024-11-25 19:08:06.593 CET [561211][client backend] [pg_regress/plpgsql_copy][41/4:0] CONTEXT: PL/pgSQL function inline_code_block line 3 at SQL statement
2024-11-25 19:08:06.593 CET [561211][client backend] [pg_regress/plpgsql_copy][41/4:0] STATEMENT: DO LANGUAGE plpgsql $$
BEGIN
COPY copy1 FROM stdin;
END;
$$;
2024-11-25 19:08:06.593 CET [561211][client backend] [pg_regress/plpgsql_copy][41/5:0] ERROR: cannot COPY to/from client in PL/pgSQL
2024-11-25 19:08:06.593 CET [561211][client backend] [pg_regress/plpgsql_copy][41/5:0] CONTEXT: PL/pgSQL function inline_code_block line 3 at EXECUTE
2024-11-25 19:08:06.593 CET [561211][client backend] [pg_regress/plpgsql_copy][41/5:0] STATEMENT: DO LANGUAGE plpgsql $$
BEGIN
EXECUTE 'COPY copy1 TO stdout';
END;
$$;
2024-11-25 19:08:06.593 CET [561211][client backend] [pg_regress/plpgsql_copy][41/6:0] ERROR: cannot COPY to/from client in PL/pgSQL
2024-11-25 19:08:06.593 CET [561211][client backend] [pg_regress/plpgsql_copy][41/6:0] CONTEXT: PL/pgSQL function inline_code_block line 3 at EXECUTE
2024-11-25 19:08:06.593 CET [561211][client backend] [pg_regress/plpgsql_copy][41/6:0] STATEMENT: DO LANGUAGE plpgsql $$
BEGIN
EXECUTE 'COPY copy1 FROM stdin';
END;
$$;
2024-11-25 19:08:06.593 CET [561023][checkpointer] LOG: checkpoint complete: wrote 6373 buffers (38.9%), wrote 1 SLRU buffers; 0 WAL file(s) added, 2 removed, 0 recycled; write=0.081 s, sync=0.001 s, total=0.082 s; sync files=0, longest=0.000 s, average=0.000 s; distance=30437 kB, estimate=30437 kB; lsn=4/3DFA85D8, redo lsn=4/3D21CD18
2024-11-25 19:08:06.594 CET [561215][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.595 CET [561215][client backend] [[unknown]][43/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.595 CET [561215][client backend] [[unknown]][43/1:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/read-only-anomaly-2
2024-11-25 19:08:06.597 CET [561136][client backend] [pg_regress/create_index_acl][:0] LOG: disconnection: session time: 0:00:00.125 user=nkey database=regression_citext host=[local]
2024-11-25 19:08:06.598 CET [561218][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.598 CET [561218][client backend] [[unknown]][44/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.598 CET [561218][client backend] [[unknown]][44/1:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/oid
2024-11-25 19:08:06.602 CET [561211][client backend] [pg_regress/plpgsql_copy][:0] LOG: disconnection: session time: 0:00:00.013 user=nkey database=regression_plpgsql host=[local]
2024-11-25 19:08:06.602 CET [561222][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.602 CET [561222][client backend] [[unknown]][45/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.602 CET [561222][client backend] [[unknown]][45/1:0] LOG: connection authorized: user=nkey database=regression_citext application_name=pg_regress/citext
2024-11-25 19:08:06.606 CET [561226][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.606 CET [561226][client backend] [[unknown]][46/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.606 CET [561226][client backend] [[unknown]][46/1:0] LOG: connection authorized: user=nkey database=regression_plpgsql application_name=pg_regress/plpgsql_domain
2024-11-25 19:08:06.607 CET [561218][client backend] [pg_regress/oid][:0] LOG: disconnection: session time: 0:00:00.009 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:06.607 CET [561207][client backend] [pg_regress/int4][:0] LOG: disconnection: session time: 0:00:00.020 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:06.611 CET [561226][client backend] [pg_regress/plpgsql_domain][46/5:0] ERROR: value for domain booltrue violates check constraint "booltrue_check"
2024-11-25 19:08:06.611 CET [561226][client backend] [pg_regress/plpgsql_domain][46/5:0] STATEMENT: SELECT * FROM test_argresult_booltrue(false, true);
2024-11-25 19:08:06.612 CET [561226][client backend] [pg_regress/plpgsql_domain][46/6:0] ERROR: value for domain booltrue violates check constraint "booltrue_check"
2024-11-25 19:08:06.612 CET [561226][client backend] [pg_regress/plpgsql_domain][46/6:0] CONTEXT: PL/pgSQL function test_argresult_booltrue(booltrue,boolean) while casting return value to function's return type
2024-11-25 19:08:06.612 CET [561226][client backend] [pg_regress/plpgsql_domain][46/6:0] STATEMENT: SELECT * FROM test_argresult_booltrue(true, false);
2024-11-25 19:08:06.612 CET [561233][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.612 CET [561234][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.612 CET [561233][client backend] [[unknown]][47/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.612 CET [561233][client backend] [[unknown]][47/1:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/timestamp
2024-11-25 19:08:06.613 CET [561226][client backend] [pg_regress/plpgsql_domain][46/9:0] ERROR: value for domain booltrue violates check constraint "booltrue_check"
2024-11-25 19:08:06.613 CET [561226][client backend] [pg_regress/plpgsql_domain][46/9:0] CONTEXT: PL/pgSQL function test_assign_booltrue(boolean,boolean) line 2 during statement block local variable initialization
2024-11-25 19:08:06.613 CET [561226][client backend] [pg_regress/plpgsql_domain][46/9:0] STATEMENT: SELECT * FROM test_assign_booltrue(false, true);
2024-11-25 19:08:06.613 CET [561234][client backend] [[unknown]][48/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.613 CET [561234][client backend] [[unknown]][48/1:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/int8
2024-11-25 19:08:06.613 CET [561226][client backend] [pg_regress/plpgsql_domain][46/10:0] ERROR: value for domain booltrue violates check constraint "booltrue_check"
2024-11-25 19:08:06.613 CET [561226][client backend] [pg_regress/plpgsql_domain][46/10:0] CONTEXT: PL/pgSQL function test_assign_booltrue(boolean,boolean) line 4 at assignment
2024-11-25 19:08:06.613 CET [561226][client backend] [pg_regress/plpgsql_domain][46/10:0] STATEMENT: SELECT * FROM test_assign_booltrue(true, false);
2024-11-25 19:08:06.614 CET [561226][client backend] [pg_regress/plpgsql_domain][46/14:0] ERROR: value for domain uint2 violates check constraint "uint2_check"
2024-11-25 19:08:06.614 CET [561226][client backend] [pg_regress/plpgsql_domain][46/14:0] CONTEXT: PL/pgSQL function test_argresult_uint2(uint2,integer) while casting return value to function's return type
2024-11-25 19:08:06.614 CET [561226][client backend] [pg_regress/plpgsql_domain][46/14:0] STATEMENT: SELECT * FROM test_argresult_uint2(100::uint2, -50);
2024-11-25 19:08:06.615 CET [561226][client backend] [pg_regress/plpgsql_domain][46/18:0] ERROR: value for domain uint2 violates check constraint "uint2_check"
2024-11-25 19:08:06.615 CET [561226][client backend] [pg_regress/plpgsql_domain][46/18:0] CONTEXT: PL/pgSQL function test_assign_uint2(integer,integer) line 4 at assignment
2024-11-25 19:08:06.615 CET [561226][client backend] [pg_regress/plpgsql_domain][46/18:0] STATEMENT: SELECT * FROM test_assign_uint2(100, -50);
2024-11-25 19:08:06.616 CET [561226][client backend] [pg_regress/plpgsql_domain][46/19:0] ERROR: value for domain uint2 violates check constraint "uint2_check"
2024-11-25 19:08:06.616 CET [561226][client backend] [pg_regress/plpgsql_domain][46/19:0] CONTEXT: PL/pgSQL function test_assign_uint2(integer,integer) line 2 during statement block local variable initialization
2024-11-25 19:08:06.616 CET [561226][client backend] [pg_regress/plpgsql_domain][46/19:0] STATEMENT: SELECT * FROM test_assign_uint2(-100, 50);
2024-11-25 19:08:06.617 CET [561226][client backend] [pg_regress/plpgsql_domain][46/24:0] ERROR: domain nnint does not allow null values
2024-11-25 19:08:06.617 CET [561226][client backend] [pg_regress/plpgsql_domain][46/24:0] STATEMENT: SELECT * FROM test_argresult_nnint(null, 20);
2024-11-25 19:08:06.617 CET [561226][client backend] [pg_regress/plpgsql_domain][46/25:0] ERROR: domain nnint does not allow null values
2024-11-25 19:08:06.617 CET [561226][client backend] [pg_regress/plpgsql_domain][46/25:0] CONTEXT: PL/pgSQL function test_argresult_nnint(nnint,integer) while casting return value to function's return type
2024-11-25 19:08:06.617 CET [561226][client backend] [pg_regress/plpgsql_domain][46/25:0] STATEMENT: SELECT * FROM test_argresult_nnint(10, null);
2024-11-25 19:08:06.619 CET [561226][client backend] [pg_regress/plpgsql_domain][46/28:0] ERROR: domain nnint does not allow null values
2024-11-25 19:08:06.619 CET [561226][client backend] [pg_regress/plpgsql_domain][46/28:0] CONTEXT: PL/pgSQL function test_assign_nnint(integer,integer) line 2 during statement block local variable initialization
2024-11-25 19:08:06.619 CET [561226][client backend] [pg_regress/plpgsql_domain][46/28:0] STATEMENT: SELECT * FROM test_assign_nnint(null, 20);
2024-11-25 19:08:06.619 CET [561226][client backend] [pg_regress/plpgsql_domain][46/29:0] ERROR: domain nnint does not allow null values
2024-11-25 19:08:06.619 CET [561226][client backend] [pg_regress/plpgsql_domain][46/29:0] CONTEXT: PL/pgSQL function test_assign_nnint(integer,integer) line 4 at assignment
2024-11-25 19:08:06.619 CET [561226][client backend] [pg_regress/plpgsql_domain][46/29:0] STATEMENT: SELECT * FROM test_assign_nnint(10, null);
2024-11-25 19:08:06.619 CET [561212][client backend] [isolation/read-only-anomaly-2/s2][42/4:525899] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:06.619 CET [561212][client backend] [isolation/read-only-anomaly-2/s2][42/4:525899] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:06.619 CET [561212][client backend] [isolation/read-only-anomaly-2/s2][42/4:525899] HINT: The transaction might succeed if retried.
2024-11-25 19:08:06.619 CET [561212][client backend] [isolation/read-only-anomaly-2/s2][42/4:525899] STATEMENT: UPDATE bank_account SET balance = -11 WHERE id = 'X';
2024-11-25 19:08:06.620 CET [561233][client backend] [pg_regress/timestamp][:0] LOG: disconnection: session time: 0:00:00.007 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:06.620 CET [561226][client backend] [pg_regress/plpgsql_domain][46/35:0] ERROR: value for domain ordered_pair_domain violates check constraint "ordered_pair_domain_check"
2024-11-25 19:08:06.620 CET [561226][client backend] [pg_regress/plpgsql_domain][46/35:0] CONTEXT: PL/pgSQL function test_argresult_array_domain_check_violation() while casting return value to function's return type
2024-11-25 19:08:06.620 CET [561226][client backend] [pg_regress/plpgsql_domain][46/35:0] STATEMENT: SELECT * FROM test_argresult_array_domain_check_violation();
2024-11-25 19:08:06.621 CET [561202][client backend] [isolation/read-only-anomaly-2/control connection][:0] LOG: disconnection: session time: 0:00:00.036 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:06.621 CET [561209][client backend] [isolation/read-only-anomaly-2/s1][:0] LOG: disconnection: session time: 0:00:00.033 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:06.621 CET [561226][client backend] [pg_regress/plpgsql_domain][46/38:0] ERROR: value for domain ordered_pair_domain violates check constraint "ordered_pair_domain_check"
2024-11-25 19:08:06.621 CET [561226][client backend] [pg_regress/plpgsql_domain][46/38:0] CONTEXT: PL/pgSQL function test_assign_ordered_pair_domain(integer,integer,integer) line 4 at assignment
2024-11-25 19:08:06.621 CET [561226][client backend] [pg_regress/plpgsql_domain][46/38:0] STATEMENT: SELECT * FROM test_assign_ordered_pair_domain(1,2,0);
2024-11-25 19:08:06.621 CET [561226][client backend] [pg_regress/plpgsql_domain][46/39:0] ERROR: value for domain ordered_pair_domain violates check constraint "ordered_pair_domain_check"
2024-11-25 19:08:06.621 CET [561226][client backend] [pg_regress/plpgsql_domain][46/39:0] CONTEXT: PL/pgSQL function test_assign_ordered_pair_domain(integer,integer,integer) line 2 during statement block local variable initialization
2024-11-25 19:08:06.621 CET [561226][client backend] [pg_regress/plpgsql_domain][46/39:0] STATEMENT: SELECT * FROM test_assign_ordered_pair_domain(2,1,3);
2024-11-25 19:08:06.623 CET [561212][client backend] [isolation/read-only-anomaly-2/s2][:0] LOG: disconnection: session time: 0:00:00.031 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:06.623 CET [561215][client backend] [isolation/read-only-anomaly-2/s3][:0] LOG: disconnection: session time: 0:00:00.028 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:06.623 CET [561226][client backend] [pg_regress/plpgsql_domain][46/44:0] ERROR: value for domain uint2 violates check constraint "uint2_check"
2024-11-25 19:08:06.623 CET [561226][client backend] [pg_regress/plpgsql_domain][46/44:0] CONTEXT: PL/pgSQL function test_build_uint2_array(smallint) while casting return value to function's return type
2024-11-25 19:08:06.623 CET [561226][client backend] [pg_regress/plpgsql_domain][46/44:0] STATEMENT: select test_build_uint2_array(-1::int2);
2024-11-25 19:08:06.624 CET [561226][client backend] [pg_regress/plpgsql_domain][46/47:0] ERROR: value for domain ordered_pair_domain violates check constraint "ordered_pair_domain_check"
2024-11-25 19:08:06.624 CET [561226][client backend] [pg_regress/plpgsql_domain][46/47:0] CONTEXT: PL/pgSQL function test_argresult_domain_array(integer[]) line 3 at RETURN
2024-11-25 19:08:06.624 CET [561226][client backend] [pg_regress/plpgsql_domain][46/47:0] STATEMENT: select test_argresult_domain_array(array[4,2]);
2024-11-25 19:08:06.624 CET [561240][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.625 CET [561226][client backend] [pg_regress/plpgsql_domain][46/50:0] ERROR: value for domain ordered_pair_domain violates check constraint "ordered_pair_domain_check"
2024-11-25 19:08:06.625 CET [561226][client backend] [pg_regress/plpgsql_domain][46/50:0] STATEMENT: select test_argresult_domain_array2(array[4,2]);
2024-11-25 19:08:06.625 CET [561240][client backend] [[unknown]][49/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.625 CET [561240][client backend] [[unknown]][49/1:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/timestamptz
2024-11-25 19:08:06.627 CET [561226][client backend] [pg_regress/plpgsql_domain][46/56:0] ERROR: domain nnint does not allow null values
2024-11-25 19:08:06.627 CET [561226][client backend] [pg_regress/plpgsql_domain][46/56:0] CONTEXT: PL/pgSQL function test_result_nnint_container(integer,integer) line 3 at RETURN
2024-11-25 19:08:06.627 CET [561226][client backend] [pg_regress/plpgsql_domain][46/56:0] STATEMENT: SELECT test_result_nnint_container(3, null);
2024-11-25 19:08:06.628 CET [561226][client backend] [pg_regress/plpgsql_domain][46/59:0] ERROR: domain nnint does not allow null values
2024-11-25 19:08:06.628 CET [561226][client backend] [pg_regress/plpgsql_domain][46/59:0] CONTEXT: PL/pgSQL function test_assign_nnint_container(integer,integer,integer) line 4 at assignment
2024-11-25 19:08:06.628 CET [561226][client backend] [pg_regress/plpgsql_domain][46/59:0] STATEMENT: SELECT * FROM test_assign_nnint_container(1,2,null);
2024-11-25 19:08:06.628 CET [561226][client backend] [pg_regress/plpgsql_domain][46/60:0] ERROR: domain nnint does not allow null values
2024-11-25 19:08:06.628 CET [561226][client backend] [pg_regress/plpgsql_domain][46/60:0] CONTEXT: PL/pgSQL function test_assign_nnint_container(integer,integer,integer) line 2 during statement block local variable initialization
2024-11-25 19:08:06.628 CET [561226][client backend] [pg_regress/plpgsql_domain][46/60:0] STATEMENT: SELECT * FROM test_assign_nnint_container(1,null,3);
2024-11-25 19:08:06.628 CET [561242][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.629 CET [561226][client backend] [pg_regress/plpgsql_domain][46/64:0] ERROR: domain nnint does not allow null values
2024-11-25 19:08:06.629 CET [561226][client backend] [pg_regress/plpgsql_domain][46/64:0] CONTEXT: PL/pgSQL function test_assign_nnint_container2(integer,integer,integer) line 4 at assignment
2024-11-25 19:08:06.629 CET [561226][client backend] [pg_regress/plpgsql_domain][46/64:0] STATEMENT: SELECT * FROM test_assign_nnint_container2(1,2,null);
2024-11-25 19:08:06.629 CET [561234][client backend] [pg_regress/int8][:0] LOG: disconnection: session time: 0:00:00.016 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:06.629 CET [561242][client backend] [[unknown]][50/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.629 CET [561242][client backend] [[unknown]][50/1:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/read-only-anomaly-3
2024-11-25 19:08:06.632 CET [561226][client backend] [pg_regress/plpgsql_domain][46/69:0] ERROR: value for domain ordered_named_pair violates check constraint "ordered_named_pair_check"
2024-11-25 19:08:06.632 CET [561226][client backend] [pg_regress/plpgsql_domain][46/69:0] STATEMENT: SELECT read_ordered_named_pair(row(2, 1));
2024-11-25 19:08:06.633 CET [561226][client backend] [pg_regress/plpgsql_domain][46/72:0] ERROR: value for domain ordered_named_pair violates check constraint "ordered_named_pair_check"
2024-11-25 19:08:06.633 CET [561226][client backend] [pg_regress/plpgsql_domain][46/72:0] CONTEXT: PL/pgSQL function build_ordered_named_pair(integer,integer) while casting return value to function's return type
2024-11-25 19:08:06.633 CET [561226][client backend] [pg_regress/plpgsql_domain][46/72:0] STATEMENT: SELECT build_ordered_named_pair(2,1);
2024-11-25 19:08:06.633 CET [561240][client backend] [pg_regress/timestamptz][:0] LOG: disconnection: session time: 0:00:00.009 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:06.633 CET [561247][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.633 CET [561248][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.634 CET [561247][client backend] [[unknown]][51/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.634 CET [561247][client backend] [[unknown]][51/1:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/read-only-anomaly-3
2024-11-25 19:08:06.634 CET [561226][client backend] [pg_regress/plpgsql_domain][46/75:0] ERROR: value for domain ordered_named_pair violates check constraint "ordered_named_pair_check"
2024-11-25 19:08:06.634 CET [561226][client backend] [pg_regress/plpgsql_domain][46/75:0] CONTEXT: PL/pgSQL function test_assign_ordered_named_pair(integer,integer,integer) line 4 at assignment
2024-11-25 19:08:06.634 CET [561226][client backend] [pg_regress/plpgsql_domain][46/75:0] STATEMENT: SELECT * FROM test_assign_ordered_named_pair(1,2,0);
2024-11-25 19:08:06.634 CET [561248][client backend] [[unknown]][52/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.634 CET [561248][client backend] [[unknown]][52/1:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/float4
2024-11-25 19:08:06.634 CET [561226][client backend] [pg_regress/plpgsql_domain][46/76:0] ERROR: value for domain ordered_named_pair violates check constraint "ordered_named_pair_check"
2024-11-25 19:08:06.634 CET [561226][client backend] [pg_regress/plpgsql_domain][46/76:0] CONTEXT: PL/pgSQL function test_assign_ordered_named_pair(integer,integer,integer) line 2 during statement block local variable initialization
2024-11-25 19:08:06.634 CET [561226][client backend] [pg_regress/plpgsql_domain][46/76:0] STATEMENT: SELECT * FROM test_assign_ordered_named_pair(2,1,3);
2024-11-25 19:08:06.635 CET [561226][client backend] [pg_regress/plpgsql_domain][46/79:0] ERROR: value for domain ordered_named_pair violates check constraint "ordered_named_pair_check"
2024-11-25 19:08:06.635 CET [561226][client backend] [pg_regress/plpgsql_domain][46/79:0] CONTEXT: PL/pgSQL function build_ordered_named_pairs(integer,integer) while casting return value to function's return type
2024-11-25 19:08:06.635 CET [561226][client backend] [pg_regress/plpgsql_domain][46/79:0] STATEMENT: SELECT build_ordered_named_pairs(2,1);
2024-11-25 19:08:06.637 CET [561226][client backend] [pg_regress/plpgsql_domain][46/82:0] ERROR: value for domain ordered_named_pair violates check constraint "ordered_named_pair_check"
2024-11-25 19:08:06.637 CET [561226][client backend] [pg_regress/plpgsql_domain][46/82:0] CONTEXT: PL/pgSQL function test_assign_ordered_named_pairs(integer,integer,integer) line 2 during statement block local variable initialization
2024-11-25 19:08:06.637 CET [561226][client backend] [pg_regress/plpgsql_domain][46/82:0] STATEMENT: SELECT * FROM test_assign_ordered_named_pairs(2,1,3);
2024-11-25 19:08:06.637 CET [561254][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.637 CET [561255][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.637 CET [561226][client backend] [pg_regress/plpgsql_domain][:0] LOG: disconnection: session time: 0:00:00.031 user=nkey database=regression_plpgsql host=[local]
2024-11-25 19:08:06.638 CET [561254][client backend] [[unknown]][53/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.638 CET [561254][client backend] [[unknown]][53/1:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:06.638 CET [561257][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.638 CET [561255][client backend] [[unknown]][54/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.638 CET [561255][client backend] [[unknown]][54/1:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/read-only-anomaly-3
2024-11-25 19:08:06.638 CET [561257][client backend] [[unknown]][55/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.638 CET [561257][client backend] [[unknown]][55/1:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/time
2024-11-25 19:08:06.640 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:06.640 CET [561260][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.641 CET [561260][client backend] [[unknown]][56/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.641 CET [561260][client backend] [[unknown]][56/1:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/read-only-anomaly-3
2024-11-25 19:08:06.641 CET [561261][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.642 CET [561261][client backend] [[unknown]][57/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.642 CET [561261][client backend] [[unknown]][57/1:0] LOG: connection authorized: user=nkey database=regression_plpgsql application_name=pg_regress/plpgsql_misc
2024-11-25 19:08:06.646 CET [561257][client backend] [pg_regress/time][:0] LOG: disconnection: session time: 0:00:00.008 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:06.647 CET [561222][client backend] [pg_regress/citext][45/42:525936] ERROR: duplicate key value violates unique constraint "try_pkey"
2024-11-25 19:08:06.647 CET [561222][client backend] [pg_regress/citext][45/42:525936] DETAIL: Key (name)=(a) already exists.
2024-11-25 19:08:06.647 CET [561222][client backend] [pg_regress/citext][45/42:525936] STATEMENT: INSERT INTO try (name) VALUES ('a');
2024-11-25 19:08:06.647 CET [561222][client backend] [pg_regress/citext][45/43:525937] ERROR: duplicate key value violates unique constraint "try_pkey"
2024-11-25 19:08:06.647 CET [561222][client backend] [pg_regress/citext][45/43:525937] DETAIL: Key (name)=(A) already exists.
2024-11-25 19:08:06.647 CET [561222][client backend] [pg_regress/citext][45/43:525937] STATEMENT: INSERT INTO try (name) VALUES ('A');
2024-11-25 19:08:06.647 CET [561222][client backend] [pg_regress/citext][45/44:525938] ERROR: duplicate key value violates unique constraint "try_pkey"
2024-11-25 19:08:06.647 CET [561222][client backend] [pg_regress/citext][45/44:525938] DETAIL: Key (name)=(aB) already exists.
2024-11-25 19:08:06.647 CET [561222][client backend] [pg_regress/citext][45/44:525938] STATEMENT: INSERT INTO try (name) VALUES ('aB');
2024-11-25 19:08:06.648 CET [561261][client backend] [pg_regress/plpgsql_misc][57/8:0] ERROR: variable "foo" does not exist
2024-11-25 19:08:06.648 CET [561261][client backend] [pg_regress/plpgsql_misc][57/8:0] CONTEXT: compilation of PL/pgSQL function "inline_code_block" near line 1
2024-11-25 19:08:06.648 CET [561261][client backend] [pg_regress/plpgsql_misc][57/8:0] STATEMENT: do $$ declare x foo%type; begin end $$;
2024-11-25 19:08:06.648 CET [561261][client backend] [pg_regress/plpgsql_misc][57/9:0] ERROR: variable "notice" does not exist
2024-11-25 19:08:06.648 CET [561261][client backend] [pg_regress/plpgsql_misc][57/9:0] CONTEXT: compilation of PL/pgSQL function "inline_code_block" near line 1
2024-11-25 19:08:06.648 CET [561261][client backend] [pg_regress/plpgsql_misc][57/9:0] STATEMENT: do $$ declare x notice%type; begin end $$;
2024-11-25 19:08:06.648 CET [561261][client backend] [pg_regress/plpgsql_misc][57/10:0] ERROR: relation "foo" does not exist
2024-11-25 19:08:06.648 CET [561261][client backend] [pg_regress/plpgsql_misc][57/10:0] CONTEXT: compilation of PL/pgSQL function "inline_code_block" near line 1
2024-11-25 19:08:06.648 CET [561261][client backend] [pg_regress/plpgsql_misc][57/10:0] STATEMENT: do $$ declare x foo.bar%type; begin end $$;
2024-11-25 19:08:06.648 CET [561261][client backend] [pg_regress/plpgsql_misc][57/11:0] ERROR: schema "foo" does not exist
2024-11-25 19:08:06.648 CET [561261][client backend] [pg_regress/plpgsql_misc][57/11:0] CONTEXT: compilation of PL/pgSQL function "inline_code_block" near line 1
2024-11-25 19:08:06.648 CET [561261][client backend] [pg_regress/plpgsql_misc][57/11:0] STATEMENT: do $$ declare x foo.bar.baz%type; begin end $$;
2024-11-25 19:08:06.648 CET [561261][client backend] [pg_regress/plpgsql_misc][57/12:0] ERROR: relation "public.foo" does not exist
2024-11-25 19:08:06.648 CET [561261][client backend] [pg_regress/plpgsql_misc][57/12:0] CONTEXT: compilation of PL/pgSQL function "inline_code_block" near line 1
2024-11-25 19:08:06.648 CET [561261][client backend] [pg_regress/plpgsql_misc][57/12:0] STATEMENT: do $$ declare x public.foo.bar%type; begin end $$;
2024-11-25 19:08:06.648 CET [561261][client backend] [pg_regress/plpgsql_misc][57/13:0] ERROR: column "zed" of relation "misc_table" does not exist
2024-11-25 19:08:06.648 CET [561261][client backend] [pg_regress/plpgsql_misc][57/13:0] CONTEXT: compilation of PL/pgSQL function "inline_code_block" near line 1
2024-11-25 19:08:06.648 CET [561261][client backend] [pg_regress/plpgsql_misc][57/13:0] STATEMENT: do $$ declare x public.misc_table.zed%type; begin end $$;
2024-11-25 19:08:06.648 CET [561261][client backend] [pg_regress/plpgsql_misc][57/14:0] ERROR: relation "foo" does not exist
2024-11-25 19:08:06.648 CET [561261][client backend] [pg_regress/plpgsql_misc][57/14:0] CONTEXT: compilation of PL/pgSQL function "inline_code_block" near line 1
2024-11-25 19:08:06.648 CET [561261][client backend] [pg_regress/plpgsql_misc][57/14:0] STATEMENT: do $$ declare x foo%rowtype; begin end $$;
2024-11-25 19:08:06.648 CET [561261][client backend] [pg_regress/plpgsql_misc][57/15:0] ERROR: relation "notice" does not exist
2024-11-25 19:08:06.648 CET [561261][client backend] [pg_regress/plpgsql_misc][57/15:0] CONTEXT: compilation of PL/pgSQL function "inline_code_block" near line 1
2024-11-25 19:08:06.648 CET [561261][client backend] [pg_regress/plpgsql_misc][57/15:0] STATEMENT: do $$ declare x notice%rowtype; begin end $$;
2024-11-25 19:08:06.648 CET [561261][client backend] [pg_regress/plpgsql_misc][57/16:0] ERROR: schema "foo" does not exist
2024-11-25 19:08:06.648 CET [561261][client backend] [pg_regress/plpgsql_misc][57/16:0] CONTEXT: compilation of PL/pgSQL function "inline_code_block" near line 1
2024-11-25 19:08:06.648 CET [561261][client backend] [pg_regress/plpgsql_misc][57/16:0] STATEMENT: do $$ declare x foo.bar%rowtype; begin end $$;
2024-11-25 19:08:06.649 CET [561261][client backend] [pg_regress/plpgsql_misc][57/17:0] ERROR: cross-database references are not implemented: "foo.bar.baz"
2024-11-25 19:08:06.649 CET [561261][client backend] [pg_regress/plpgsql_misc][57/17:0] CONTEXT: compilation of PL/pgSQL function "inline_code_block" near line 1
2024-11-25 19:08:06.649 CET [561261][client backend] [pg_regress/plpgsql_misc][57/17:0] STATEMENT: do $$ declare x foo.bar.baz%rowtype; begin end $$;
2024-11-25 19:08:06.649 CET [561261][client backend] [pg_regress/plpgsql_misc][57/18:0] ERROR: relation "public.foo" does not exist
2024-11-25 19:08:06.649 CET [561261][client backend] [pg_regress/plpgsql_misc][57/18:0] CONTEXT: compilation of PL/pgSQL function "inline_code_block" near line 1
2024-11-25 19:08:06.649 CET [561261][client backend] [pg_regress/plpgsql_misc][57/18:0] STATEMENT: do $$ declare x public.foo%rowtype; begin end $$;
2024-11-25 19:08:06.650 CET [561261][client backend] [pg_regress/plpgsql_misc][:0] LOG: disconnection: session time: 0:00:00.008 user=nkey database=regression_plpgsql host=[local]
2024-11-25 19:08:06.650 CET [561266][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.651 CET [561266][client backend] [[unknown]][58/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.651 CET [561266][client backend] [[unknown]][58/1:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/timetz
2024-11-25 19:08:06.654 CET [561248][client backend] [pg_regress/float4][:0] LOG: disconnection: session time: 0:00:00.020 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:06.655 CET [561270][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.656 CET [561270][client backend] [[unknown]][59/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.656 CET [561270][client backend] [[unknown]][59/1:0] LOG: connection authorized: user=nkey database=regression_plpgsql application_name=pg_regress/plpgsql_record
2024-11-25 19:08:06.658 CET [561273][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.659 CET [561273][client backend] [[unknown]][60/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.659 CET [561273][client backend] [[unknown]][60/1:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/float8
2024-11-25 19:08:06.660 CET [561266][client backend] [pg_regress/timetz][:0] LOG: disconnection: session time: 0:00:00.010 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:06.665 CET [561277][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.665 CET [561277][client backend] [[unknown]][61/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.665 CET [561277][client backend] [[unknown]][61/1:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/date
2024-11-25 19:08:06.665 CET [561270][client backend] [pg_regress/plpgsql_record][59/11:0] ERROR: returned record type does not match expected record type
2024-11-25 19:08:06.665 CET [561270][client backend] [pg_regress/plpgsql_record][59/11:0] DETAIL: Returned type integer does not match expected type bigint in column 1.
2024-11-25 19:08:06.665 CET [561270][client backend] [pg_regress/plpgsql_record][59/11:0] CONTEXT: PL/pgSQL function retc(integer) while casting return value to function's return type
2024-11-25 19:08:06.665 CET [561270][client backend] [pg_regress/plpgsql_record][59/11:0] STATEMENT: select retc(42);
2024-11-25 19:08:06.666 CET [561270][client backend] [pg_regress/plpgsql_record][59/13:0] ERROR: returned record type does not match expected record type
2024-11-25 19:08:06.666 CET [561270][client backend] [pg_regress/plpgsql_record][59/13:0] DETAIL: Number of returned columns (3) does not match expected column count (2).
2024-11-25 19:08:06.666 CET [561270][client backend] [pg_regress/plpgsql_record][59/13:0] CONTEXT: PL/pgSQL function retc(integer) while casting return value to function's return type
2024-11-25 19:08:06.666 CET [561270][client backend] [pg_regress/plpgsql_record][59/13:0] STATEMENT: select retc(42);
2024-11-25 19:08:06.667 CET [561270][client backend] [pg_regress/plpgsql_record][59/17:0] ERROR: returned record type does not match expected record type
2024-11-25 19:08:06.667 CET [561270][client backend] [pg_regress/plpgsql_record][59/17:0] DETAIL: Returned type integer does not match expected type bigint in column 1.
2024-11-25 19:08:06.667 CET [561270][client backend] [pg_regress/plpgsql_record][59/17:0] CONTEXT: PL/pgSQL function retc(integer) while casting return value to function's return type
2024-11-25 19:08:06.667 CET [561270][client backend] [pg_regress/plpgsql_record][59/17:0] STATEMENT: select retc(42);
2024-11-25 19:08:06.668 CET [561270][client backend] [pg_regress/plpgsql_record][59/19:0] ERROR: returned record type does not match expected record type
2024-11-25 19:08:06.668 CET [561270][client backend] [pg_regress/plpgsql_record][59/19:0] DETAIL: Number of returned columns (3) does not match expected column count (2).
2024-11-25 19:08:06.668 CET [561270][client backend] [pg_regress/plpgsql_record][59/19:0] CONTEXT: PL/pgSQL function retc(integer) while casting return value to function's return type
2024-11-25 19:08:06.668 CET [561270][client backend] [pg_regress/plpgsql_record][59/19:0] STATEMENT: select retc(42);
2024-11-25 19:08:06.671 CET [561270][client backend] [pg_regress/plpgsql_record][59/27:0] ERROR: record "c" has no field "x"
2024-11-25 19:08:06.671 CET [561270][client backend] [pg_regress/plpgsql_record][59/27:0] CONTEXT: PL/pgSQL assignment "c.x = 1"
PL/pgSQL function inline_code_block line 1 at assignment
2024-11-25 19:08:06.671 CET [561270][client backend] [pg_regress/plpgsql_record][59/27:0] STATEMENT: do $$ declare c two_int8s; begin c.x = 1; end $$;
2024-11-25 19:08:06.671 CET [561270][client backend] [pg_regress/plpgsql_record][59/28:0] ERROR: record "c" has no field "x"
2024-11-25 19:08:06.671 CET [561270][client backend] [pg_regress/plpgsql_record][59/28:0] CONTEXT: PL/pgSQL assignment "c.x = 1"
PL/pgSQL function inline_code_block line 1 at assignment
2024-11-25 19:08:06.671 CET [561270][client backend] [pg_regress/plpgsql_record][59/28:0] STATEMENT: do $$ declare c nested_int8s; begin c.x = 1; end $$;
2024-11-25 19:08:06.671 CET [561270][client backend] [pg_regress/plpgsql_record][59/29:0] ERROR: record "c" has no field "x"
2024-11-25 19:08:06.671 CET [561270][client backend] [pg_regress/plpgsql_record][59/29:0] CONTEXT: PL/pgSQL assignment "c.x.q1 = 1"
PL/pgSQL function inline_code_block line 1 at assignment
2024-11-25 19:08:06.671 CET [561270][client backend] [pg_regress/plpgsql_record][59/29:0] STATEMENT: do $$ declare c nested_int8s; begin c.x.q1 = 1; end $$;
2024-11-25 19:08:06.671 CET [561270][client backend] [pg_regress/plpgsql_record][59/30:0] ERROR: cannot assign to field "x" of column "c" because there is no such column in data type two_int8s at character 1
2024-11-25 19:08:06.671 CET [561270][client backend] [pg_regress/plpgsql_record][59/30:0] QUERY: c.c2.x = 1
2024-11-25 19:08:06.671 CET [561270][client backend] [pg_regress/plpgsql_record][59/30:0] CONTEXT: PL/pgSQL function inline_code_block line 1 at assignment
2024-11-25 19:08:06.671 CET [561270][client backend] [pg_regress/plpgsql_record][59/30:0] STATEMENT: do $$ declare c nested_int8s; begin c.c2.x = 1; end $$;
2024-11-25 19:08:06.671 CET [561270][client backend] [pg_regress/plpgsql_record][59/31:0] ERROR: "d.c2.x" is not a known variable at character 37
2024-11-25 19:08:06.671 CET [561270][client backend] [pg_regress/plpgsql_record][59/31:0] STATEMENT: do $$ declare c nested_int8s; begin d.c2.x = 1; end $$;
2024-11-25 19:08:06.672 CET [561270][client backend] [pg_regress/plpgsql_record][59/32:0] ERROR: record "c" has no field "x"
2024-11-25 19:08:06.672 CET [561270][client backend] [pg_regress/plpgsql_record][59/32:0] CONTEXT: PL/pgSQL assignment "b.c.x = 1"
PL/pgSQL function inline_code_block line 1 at assignment
2024-11-25 19:08:06.672 CET [561270][client backend] [pg_regress/plpgsql_record][59/32:0] STATEMENT: do $$ <<b>> declare c two_int8s; begin b.c.x = 1; end $$;
2024-11-25 19:08:06.672 CET [561270][client backend] [pg_regress/plpgsql_record][59/33:0] ERROR: record "c" has no field "x"
2024-11-25 19:08:06.672 CET [561270][client backend] [pg_regress/plpgsql_record][59/33:0] CONTEXT: PL/pgSQL assignment "b.c.x = 1"
PL/pgSQL function inline_code_block line 1 at assignment
2024-11-25 19:08:06.672 CET [561270][client backend] [pg_regress/plpgsql_record][59/33:0] STATEMENT: do $$ <<b>> declare c nested_int8s; begin b.c.x = 1; end $$;
2024-11-25 19:08:06.672 CET [561270][client backend] [pg_regress/plpgsql_record][59/34:0] ERROR: record "c" has no field "x"
2024-11-25 19:08:06.672 CET [561270][client backend] [pg_regress/plpgsql_record][59/34:0] CONTEXT: PL/pgSQL assignment "b.c.x.q1 = 1"
PL/pgSQL function inline_code_block line 1 at assignment
2024-11-25 19:08:06.672 CET [561270][client backend] [pg_regress/plpgsql_record][59/34:0] STATEMENT: do $$ <<b>> declare c nested_int8s; begin b.c.x.q1 = 1; end $$;
2024-11-25 19:08:06.672 CET [561270][client backend] [pg_regress/plpgsql_record][59/35:0] ERROR: cannot assign to field "x" of column "b" because there is no such column in data type two_int8s at character 1
2024-11-25 19:08:06.672 CET [561270][client backend] [pg_regress/plpgsql_record][59/35:0] QUERY: b.c.c2.x = 1
2024-11-25 19:08:06.672 CET [561270][client backend] [pg_regress/plpgsql_record][59/35:0] CONTEXT: PL/pgSQL function inline_code_block line 1 at assignment
2024-11-25 19:08:06.672 CET [561270][client backend] [pg_regress/plpgsql_record][59/35:0] STATEMENT: do $$ <<b>> declare c nested_int8s; begin b.c.c2.x = 1; end $$;
2024-11-25 19:08:06.673 CET [561277][client backend] [pg_regress/date][:0] LOG: disconnection: session time: 0:00:00.008 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:06.673 CET [561270][client backend] [pg_regress/plpgsql_record][59/36:0] ERROR: "b.d.c2" is not a known variable at character 43
2024-11-25 19:08:06.673 CET [561270][client backend] [pg_regress/plpgsql_record][59/36:0] STATEMENT: do $$ <<b>> declare c nested_int8s; begin b.d.c2.x = 1; end $$;
2024-11-25 19:08:06.674 CET [561023][checkpointer] LOG: checkpoint complete: wrote 2441 buffers (14.9%), wrote 2 SLRU buffers; 0 WAL file(s) added, 1 removed, 0 recycled; write=0.030 s, sync=0.001 s, total=0.034 s; sync files=0, longest=0.000 s, average=0.000 s; distance=17595 kB, estimate=29153 kB; lsn=4/3E537378, redo lsn=4/3E34BC90
2024-11-25 19:08:06.677 CET [561270][client backend] [pg_regress/plpgsql_record][59/43:0] ERROR: record "r1" has no field "nosuchfield"
2024-11-25 19:08:06.677 CET [561270][client backend] [pg_regress/plpgsql_record][59/43:0] CONTEXT: PL/pgSQL expression "r1.nosuchfield"
PL/pgSQL function inline_code_block line 7 at RAISE
2024-11-25 19:08:06.677 CET [561270][client backend] [pg_regress/plpgsql_record][59/43:0] STATEMENT: do $$
declare r1 two_int8s;
begin
raise notice 'r1.q1 = %', r1.q1;
raise notice 'r1.q2 = %', r1.q2;
raise notice 'r1 = %', r1;
raise notice 'r1.nosuchfield = %', r1.nosuchfield;
end$$;
2024-11-25 19:08:06.677 CET [561270][client backend] [pg_regress/plpgsql_record][59/44:0] ERROR: record "r1" is not assigned yet
2024-11-25 19:08:06.677 CET [561270][client backend] [pg_regress/plpgsql_record][59/44:0] DETAIL: The tuple structure of a not-yet-assigned record is indeterminate.
2024-11-25 19:08:06.677 CET [561270][client backend] [pg_regress/plpgsql_record][59/44:0] CONTEXT: PL/pgSQL expression "r1.f1"
PL/pgSQL function inline_code_block line 5 at RAISE
2024-11-25 19:08:06.677 CET [561270][client backend] [pg_regress/plpgsql_record][59/44:0] STATEMENT: do $$
declare r1 record;
begin
raise notice 'r1 = %', r1;
raise notice 'r1.f1 = %', r1.f1;
raise notice 'r1.f2 = %', r1.f2;
raise notice 'r1 = %', r1;
end$$;
2024-11-25 19:08:06.677 CET [561273][client backend] [pg_regress/float8][:0] LOG: disconnection: session time: 0:00:00.019 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:06.678 CET [561270][client backend] [pg_regress/plpgsql_record][59/45:0] ERROR: record "r1" has no field "nosuchfield"
2024-11-25 19:08:06.678 CET [561270][client backend] [pg_regress/plpgsql_record][59/45:0] CONTEXT: PL/pgSQL expression "r1.nosuchfield"
PL/pgSQL function inline_code_block line 9 at RAISE
2024-11-25 19:08:06.678 CET [561270][client backend] [pg_regress/plpgsql_record][59/45:0] STATEMENT: do $$
declare r1 record;
begin
raise notice 'r1 = %', r1;
r1 := row(1,2);
raise notice 'r1.f1 = %', r1.f1;
raise notice 'r1.f2 = %', r1.f2;
raise notice 'r1 = %', r1;
raise notice 'r1.nosuchfield = %', r1.nosuchfield;
end$$;
2024-11-25 19:08:06.678 CET [561282][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.678 CET [561270][client backend] [pg_regress/plpgsql_record][59/48:0] ERROR: variable "r1" has pseudo-type record[]
2024-11-25 19:08:06.678 CET [561270][client backend] [pg_regress/plpgsql_record][59/48:0] CONTEXT: compilation of PL/pgSQL function "inline_code_block" near line 2
2024-11-25 19:08:06.678 CET [561270][client backend] [pg_regress/plpgsql_record][59/48:0] STATEMENT: do $$
declare r1 record[];
begin
end$$;
2024-11-25 19:08:06.679 CET [561282][client backend] [[unknown]][62/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.679 CET [561270][client backend] [pg_regress/plpgsql_record][59/49:0] ERROR: variable "r2" has pseudo-type record[]
2024-11-25 19:08:06.679 CET [561270][client backend] [pg_regress/plpgsql_record][59/49:0] CONTEXT: compilation of PL/pgSQL function "inline_code_block" near line 3
2024-11-25 19:08:06.679 CET [561270][client backend] [pg_regress/plpgsql_record][59/49:0] STATEMENT: do $$
declare r1 record;
r2 r1%type[];
begin
end$$;
2024-11-25 19:08:06.679 CET [561282][client backend] [[unknown]][62/1:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/interval
2024-11-25 19:08:06.681 CET [561285][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.682 CET [561285][client backend] [[unknown]][63/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.682 CET [561285][client backend] [[unknown]][63/1:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/cash
2024-11-25 19:08:06.685 CET [561242][client backend] [isolation/read-only-anomaly-3/control connection][:0] LOG: disconnection: session time: 0:00:00.057 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:06.685 CET [561247][client backend] [isolation/read-only-anomaly-3/s1][:0] LOG: disconnection: session time: 0:00:00.051 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:06.685 CET [561255][client backend] [isolation/read-only-anomaly-3/s2][:0] LOG: disconnection: session time: 0:00:00.047 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:06.685 CET [561260][client backend] [isolation/read-only-anomaly-3/s3][:0] LOG: disconnection: session time: 0:00:00.044 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:06.685 CET [561270][client backend] [pg_regress/plpgsql_record][59/55:0] ERROR: returned record type does not match expected record type
2024-11-25 19:08:06.685 CET [561270][client backend] [pg_regress/plpgsql_record][59/55:0] DETAIL: Number of returned columns (2) does not match expected column count (3).
2024-11-25 19:08:06.685 CET [561270][client backend] [pg_regress/plpgsql_record][59/55:0] CONTEXT: PL/pgSQL function returnsrecord(integer) while casting return value to function's return type
2024-11-25 19:08:06.685 CET [561270][client backend] [pg_regress/plpgsql_record][59/55:0] STATEMENT: select * from returnsrecord(42) as r(x int, y int, z int);
2024-11-25 19:08:06.685 CET [561270][client backend] [pg_regress/plpgsql_record][59/56:0] ERROR: returned record type does not match expected record type
2024-11-25 19:08:06.685 CET [561270][client backend] [pg_regress/plpgsql_record][59/56:0] DETAIL: Returned type integer does not match expected type bigint in column 2.
2024-11-25 19:08:06.685 CET [561270][client backend] [pg_regress/plpgsql_record][59/56:0] CONTEXT: PL/pgSQL function returnsrecord(integer) while casting return value to function's return type
2024-11-25 19:08:06.685 CET [561270][client backend] [pg_regress/plpgsql_record][59/56:0] STATEMENT: select * from returnsrecord(42) as r(x int, y bigint);
2024-11-25 19:08:06.686 CET [561254][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.048 user=nkey database=postgres host=[local]
2024-11-25 19:08:06.686 CET [561270][client backend] [pg_regress/plpgsql_record][59/60:0] ERROR: returned record type does not match expected record type
2024-11-25 19:08:06.686 CET [561270][client backend] [pg_regress/plpgsql_record][59/60:0] DETAIL: Number of returned columns (2) does not match expected column count (3).
2024-11-25 19:08:06.686 CET [561270][client backend] [pg_regress/plpgsql_record][59/60:0] CONTEXT: PL/pgSQL function returnsrecord(integer) while casting return value to function's return type
2024-11-25 19:08:06.686 CET [561270][client backend] [pg_regress/plpgsql_record][59/60:0] STATEMENT: select * from returnsrecord(42) as r(x int, y int, z int);
2024-11-25 19:08:06.686 CET [561270][client backend] [pg_regress/plpgsql_record][59/61:0] ERROR: returned record type does not match expected record type
2024-11-25 19:08:06.686 CET [561270][client backend] [pg_regress/plpgsql_record][59/61:0] DETAIL: Returned type integer does not match expected type bigint in column 2.
2024-11-25 19:08:06.686 CET [561270][client backend] [pg_regress/plpgsql_record][59/61:0] CONTEXT: PL/pgSQL function returnsrecord(integer) while casting return value to function's return type
2024-11-25 19:08:06.686 CET [561270][client backend] [pg_regress/plpgsql_record][59/61:0] STATEMENT: select * from returnsrecord(42) as r(x int, y bigint);
2024-11-25 19:08:06.686 CET [561282][client backend] [pg_regress/interval][:0] LOG: disconnection: session time: 0:00:00.008 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:06.688 CET [561293][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.689 CET [561293][client backend] [[unknown]][64/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.689 CET [561293][client backend] [[unknown]][64/1:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/read-write-unique
2024-11-25 19:08:06.690 CET [561270][client backend] [pg_regress/plpgsql_record][59/67:0] ERROR: returned record type does not match expected record type
2024-11-25 19:08:06.690 CET [561270][client backend] [pg_regress/plpgsql_record][59/67:0] DETAIL: Number of returned columns (2) does not match expected column count (3).
2024-11-25 19:08:06.690 CET [561270][client backend] [pg_regress/plpgsql_record][59/67:0] CONTEXT: PL/pgSQL function returnsrecord(integer) while casting return value to function's return type
2024-11-25 19:08:06.690 CET [561270][client backend] [pg_regress/plpgsql_record][59/67:0] STATEMENT: select * from returnsrecord(42) as r(x int, y int, z int);
2024-11-25 19:08:06.690 CET [561270][client backend] [pg_regress/plpgsql_record][59/68:0] ERROR: returned record type does not match expected record type
2024-11-25 19:08:06.690 CET [561270][client backend] [pg_regress/plpgsql_record][59/68:0] DETAIL: Returned type integer does not match expected type bigint in column 2.
2024-11-25 19:08:06.690 CET [561270][client backend] [pg_regress/plpgsql_record][59/68:0] CONTEXT: PL/pgSQL function returnsrecord(integer) while casting return value to function's return type
2024-11-25 19:08:06.690 CET [561270][client backend] [pg_regress/plpgsql_record][59/68:0] STATEMENT: select * from returnsrecord(42) as r(x int, y bigint);
2024-11-25 19:08:06.690 CET [561295][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.690 CET [561296][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.691 CET [561295][client backend] [[unknown]][65/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.691 CET [561295][client backend] [[unknown]][65/1:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/macaddr
2024-11-25 19:08:06.691 CET [561296][client backend] [[unknown]][66/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.691 CET [561270][client backend] [pg_regress/plpgsql_record][59/72:0] ERROR: returned record type does not match expected record type
2024-11-25 19:08:06.691 CET [561270][client backend] [pg_regress/plpgsql_record][59/72:0] DETAIL: Number of returned columns (2) does not match expected column count (3).
2024-11-25 19:08:06.691 CET [561270][client backend] [pg_regress/plpgsql_record][59/72:0] CONTEXT: PL/pgSQL function returnsrecord(integer) while casting return value to function's return type
2024-11-25 19:08:06.691 CET [561270][client backend] [pg_regress/plpgsql_record][59/72:0] STATEMENT: select * from returnsrecord(42) as r(x int, y int, z int);
2024-11-25 19:08:06.691 CET [561296][client backend] [[unknown]][66/1:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:06.691 CET [561270][client backend] [pg_regress/plpgsql_record][59/73:0] ERROR: returned record type does not match expected record type
2024-11-25 19:08:06.691 CET [561270][client backend] [pg_regress/plpgsql_record][59/73:0] DETAIL: Returned type integer does not match expected type bigint in column 2.
2024-11-25 19:08:06.691 CET [561270][client backend] [pg_regress/plpgsql_record][59/73:0] CONTEXT: PL/pgSQL function returnsrecord(integer) while casting return value to function's return type
2024-11-25 19:08:06.691 CET [561270][client backend] [pg_regress/plpgsql_record][59/73:0] STATEMENT: select * from returnsrecord(42) as r(x int, y bigint);
2024-11-25 19:08:06.691 CET [561270][client backend] [pg_regress/plpgsql_record][59/75:0] ERROR: function getf1(integer) does not exist at character 8
2024-11-25 19:08:06.691 CET [561270][client backend] [pg_regress/plpgsql_record][59/75:0] HINT: No function matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:06.691 CET [561270][client backend] [pg_regress/plpgsql_record][59/75:0] STATEMENT: select getf1(1);
2024-11-25 19:08:06.692 CET [561297][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.692 CET [561297][client backend] [[unknown]][67/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.692 CET [561297][client backend] [[unknown]][67/1:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/read-write-unique
2024-11-25 19:08:06.692 CET [561270][client backend] [pg_regress/plpgsql_record][59/79:0] ERROR: record "x" has no field "f1"
2024-11-25 19:08:06.692 CET [561270][client backend] [pg_regress/plpgsql_record][59/79:0] CONTEXT: PL/pgSQL expression "x.f1"
PL/pgSQL function getf1(record) line 1 at RETURN
2024-11-25 19:08:06.692 CET [561270][client backend] [pg_regress/plpgsql_record][59/79:0] STATEMENT: select getf1(row(1,2)::two_int8s);
2024-11-25 19:08:06.693 CET [561270][client backend] [pg_regress/plpgsql_record][59/82:0] ERROR: could not identify column "f2" in record data type at character 1
2024-11-25 19:08:06.693 CET [561270][client backend] [pg_regress/plpgsql_record][59/82:0] QUERY: $1.f2
2024-11-25 19:08:06.693 CET [561270][client backend] [pg_regress/plpgsql_record][59/82:0] CONTEXT: PL/pgSQL function getf2(record) line 1 at RETURN
2024-11-25 19:08:06.693 CET [561270][client backend] [pg_regress/plpgsql_record][59/82:0] STATEMENT: select getf2(row(1,2));
2024-11-25 19:08:06.694 CET [561298][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.695 CET [561298][client backend] [[unknown]][68/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.695 CET [561298][client backend] [[unknown]][68/1:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/read-write-unique
2024-11-25 19:08:06.697 CET [561270][client backend] [pg_regress/plpgsql_record][59/89:0] ERROR: record "r" is not assigned yet
2024-11-25 19:08:06.697 CET [561270][client backend] [pg_regress/plpgsql_record][59/89:0] DETAIL: The tuple structure of a not-yet-assigned record is indeterminate.
2024-11-25 19:08:06.697 CET [561270][client backend] [pg_regress/plpgsql_record][59/89:0] CONTEXT: PL/pgSQL function returnssetofholes() line 4 at RETURN NEXT
2024-11-25 19:08:06.697 CET [561270][client backend] [pg_regress/plpgsql_record][59/89:0] STATEMENT: select returnssetofholes();
2024-11-25 19:08:06.698 CET [561270][client backend] [pg_regress/plpgsql_record][59/91:0] ERROR: returned record type does not match expected record type
2024-11-25 19:08:06.698 CET [561270][client backend] [pg_regress/plpgsql_record][59/91:0] DETAIL: Number of returned columns (3) does not match expected column count (2).
2024-11-25 19:08:06.698 CET [561270][client backend] [pg_regress/plpgsql_record][59/91:0] CONTEXT: PL/pgSQL function returnssetofholes() line 3 at RETURN NEXT
2024-11-25 19:08:06.698 CET [561270][client backend] [pg_regress/plpgsql_record][59/91:0] STATEMENT: select returnssetofholes();
2024-11-25 19:08:06.699 CET [561295][client backend] [pg_regress/macaddr][:0] LOG: disconnection: session time: 0:00:00.009 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:06.700 CET [561285][client backend] [pg_regress/cash][:0] LOG: disconnection: session time: 0:00:00.018 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:06.700 CET [561270][client backend] [pg_regress/plpgsql_record][59/96:0] ERROR: record "r" has no field "f1"
2024-11-25 19:08:06.700 CET [561270][client backend] [pg_regress/plpgsql_record][59/96:0] CONTEXT: PL/pgSQL function sillyaddone(integer) line 1 at assignment
2024-11-25 19:08:06.700 CET [561270][client backend] [pg_regress/plpgsql_record][59/96:0] STATEMENT: select sillyaddone(42);
2024-11-25 19:08:06.701 CET [561270][client backend] [pg_regress/plpgsql_record][59/98:0] ERROR: record "x" has no field "f3"
2024-11-25 19:08:06.701 CET [561270][client backend] [pg_regress/plpgsql_record][59/98:0] CONTEXT: PL/pgSQL expression "x.f3"
PL/pgSQL function getf3(mutable) line 1 at RETURN
2024-11-25 19:08:06.701 CET [561270][client backend] [pg_regress/plpgsql_record][59/98:0] STATEMENT: select getf3(null::mutable);
2024-11-25 19:08:06.702 CET [561222][client backend] [pg_regress/citext][45/189:0] ERROR: column "chr" is of type "char" but expression is of type citext at character 44
2024-11-25 19:08:06.702 CET [561222][client backend] [pg_regress/citext][45/189:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.702 CET [561222][client backend] [pg_regress/citext][45/189:0] STATEMENT: INSERT INTO caster (chr) VALUES ('f'::citext);
2024-11-25 19:08:06.702 CET [561270][client backend] [pg_regress/plpgsql_record][59/102:0] ERROR: record "x" has no field "f3"
2024-11-25 19:08:06.702 CET [561270][client backend] [pg_regress/plpgsql_record][59/102:0] CONTEXT: PL/pgSQL function getf3(mutable) line 1 at RETURN
2024-11-25 19:08:06.702 CET [561270][client backend] [pg_regress/plpgsql_record][59/102:0] STATEMENT: select getf3(null::mutable);
2024-11-25 19:08:06.703 CET [561270][client backend] [pg_regress/plpgsql_record][59/106:0] ERROR: type "mutable2" does not exist at character 12
2024-11-25 19:08:06.703 CET [561270][client backend] [pg_regress/plpgsql_record][59/106:0] QUERY: declare r mutable2; begin r.f1 := $1; return r.f1 + 2; end
2024-11-25 19:08:06.703 CET [561270][client backend] [pg_regress/plpgsql_record][59/106:0] CONTEXT: compilation of PL/pgSQL function "sillyaddtwo" near line 1
2024-11-25 19:08:06.703 CET [561270][client backend] [pg_regress/plpgsql_record][59/106:0] STATEMENT: select sillyaddtwo(42);
2024-11-25 19:08:06.703 CET [561305][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.704 CET [561305][client backend] [[unknown]][69/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.704 CET [561305][client backend] [[unknown]][69/1:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/macaddr8
2024-11-25 19:08:06.704 CET [561222][client backend] [pg_regress/citext][45/196:0] ERROR: column "bytea" is of type bytea but expression is of type text at character 44
2024-11-25 19:08:06.704 CET [561222][client backend] [pg_regress/citext][45/196:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.704 CET [561222][client backend] [pg_regress/citext][45/196:0] STATEMENT: INSERT INTO caster (bytea) VALUES ('foo'::text);
2024-11-25 19:08:06.704 CET [561222][client backend] [pg_regress/citext][45/198:0] ERROR: column "bytea" is of type bytea but expression is of type citext at character 44
2024-11-25 19:08:06.704 CET [561222][client backend] [pg_regress/citext][45/198:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.704 CET [561222][client backend] [pg_regress/citext][45/198:0] STATEMENT: INSERT INTO caster (bytea) VALUES ('foo'::citext);
2024-11-25 19:08:06.705 CET [561222][client backend] [pg_regress/citext][45/200:0] ERROR: column "boolean" is of type boolean but expression is of type text at character 44
2024-11-25 19:08:06.705 CET [561222][client backend] [pg_regress/citext][45/200:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.705 CET [561222][client backend] [pg_regress/citext][45/200:0] STATEMENT: INSERT INTO caster (boolean) VALUES ('t'::text);
2024-11-25 19:08:06.705 CET [561222][client backend] [pg_regress/citext][45/202:0] ERROR: column "boolean" is of type boolean but expression is of type citext at character 44
2024-11-25 19:08:06.705 CET [561222][client backend] [pg_regress/citext][45/202:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.705 CET [561222][client backend] [pg_regress/citext][45/202:0] STATEMENT: INSERT INTO caster (boolean) VALUES ('t'::citext);
2024-11-25 19:08:06.705 CET [561270][client backend] [pg_regress/plpgsql_record][59/110:0] ERROR: type "mutable2" does not exist
2024-11-25 19:08:06.705 CET [561270][client backend] [pg_regress/plpgsql_record][59/110:0] CONTEXT: PL/pgSQL function sillyaddtwo(integer) line 1 at assignment
2024-11-25 19:08:06.705 CET [561270][client backend] [pg_regress/plpgsql_record][59/110:0] STATEMENT: select sillyaddtwo(42);
2024-11-25 19:08:06.705 CET [561222][client backend] [pg_regress/citext][45/204:0] ERROR: column "float8" is of type double precision but expression is of type text at character 44
2024-11-25 19:08:06.705 CET [561222][client backend] [pg_regress/citext][45/204:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.705 CET [561222][client backend] [pg_regress/citext][45/204:0] STATEMENT: INSERT INTO caster (float8) VALUES ('12.42'::text);
2024-11-25 19:08:06.705 CET [561222][client backend] [pg_regress/citext][45/206:0] ERROR: column "float8" is of type double precision but expression is of type citext at character 44
2024-11-25 19:08:06.705 CET [561222][client backend] [pg_regress/citext][45/206:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.705 CET [561222][client backend] [pg_regress/citext][45/206:0] STATEMENT: INSERT INTO caster (float8) VALUES ('12.42'::citext);
2024-11-25 19:08:06.706 CET [561222][client backend] [pg_regress/citext][45/208:0] ERROR: column "float4" is of type real but expression is of type text at character 44
2024-11-25 19:08:06.706 CET [561222][client backend] [pg_regress/citext][45/208:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.706 CET [561222][client backend] [pg_regress/citext][45/208:0] STATEMENT: INSERT INTO caster (float4) VALUES ('12.42'::text);
2024-11-25 19:08:06.707 CET [561222][client backend] [pg_regress/citext][45/210:0] ERROR: column "float4" is of type real but expression is of type citext at character 44
2024-11-25 19:08:06.707 CET [561222][client backend] [pg_regress/citext][45/210:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.707 CET [561222][client backend] [pg_regress/citext][45/210:0] STATEMENT: INSERT INTO caster (float4) VALUES ('12.42'::citext);
2024-11-25 19:08:06.707 CET [561222][client backend] [pg_regress/citext][45/212:0] ERROR: column "numeric" is of type numeric but expression is of type text at character 44
2024-11-25 19:08:06.707 CET [561222][client backend] [pg_regress/citext][45/212:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.707 CET [561222][client backend] [pg_regress/citext][45/212:0] STATEMENT: INSERT INTO caster (numeric) VALUES ('12.42'::text);
2024-11-25 19:08:06.708 CET [561222][client backend] [pg_regress/citext][45/214:0] ERROR: column "numeric" is of type numeric but expression is of type citext at character 44
2024-11-25 19:08:06.708 CET [561222][client backend] [pg_regress/citext][45/214:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.708 CET [561222][client backend] [pg_regress/citext][45/214:0] STATEMENT: INSERT INTO caster (numeric) VALUES ('12.42'::citext);
2024-11-25 19:08:06.708 CET [561222][client backend] [pg_regress/citext][45/216:0] ERROR: column "int8" is of type bigint but expression is of type text at character 44
2024-11-25 19:08:06.708 CET [561222][client backend] [pg_regress/citext][45/216:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.708 CET [561222][client backend] [pg_regress/citext][45/216:0] STATEMENT: INSERT INTO caster (int8) VALUES ('12'::text);
2024-11-25 19:08:06.709 CET [561222][client backend] [pg_regress/citext][45/218:0] ERROR: column "int8" is of type bigint but expression is of type citext at character 44
2024-11-25 19:08:06.709 CET [561222][client backend] [pg_regress/citext][45/218:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.709 CET [561222][client backend] [pg_regress/citext][45/218:0] STATEMENT: INSERT INTO caster (int8) VALUES ('12'::citext);
2024-11-25 19:08:06.709 CET [561222][client backend] [pg_regress/citext][45/220:0] ERROR: column "int4" is of type integer but expression is of type text at character 44
2024-11-25 19:08:06.709 CET [561222][client backend] [pg_regress/citext][45/220:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.709 CET [561222][client backend] [pg_regress/citext][45/220:0] STATEMENT: INSERT INTO caster (int4) VALUES ('12'::text);
2024-11-25 19:08:06.709 CET [561306][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.709 CET [561222][client backend] [pg_regress/citext][45/222:0] ERROR: column "int4" is of type integer but expression is of type citext at character 44
2024-11-25 19:08:06.709 CET [561222][client backend] [pg_regress/citext][45/222:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.709 CET [561222][client backend] [pg_regress/citext][45/222:0] STATEMENT: INSERT INTO caster (int4) VALUES ('12'::citext);
2024-11-25 19:08:06.710 CET [561306][client backend] [[unknown]][70/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.710 CET [561306][client backend] [[unknown]][70/1:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/oid
2024-11-25 19:08:06.710 CET [561305][client backend] [pg_regress/macaddr8][:0] LOG: disconnection: session time: 0:00:00.006 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:06.710 CET [561222][client backend] [pg_regress/citext][45/224:0] ERROR: column "int2" is of type smallint but expression is of type text at character 44
2024-11-25 19:08:06.710 CET [561222][client backend] [pg_regress/citext][45/224:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.710 CET [561222][client backend] [pg_regress/citext][45/224:0] STATEMENT: INSERT INTO caster (int2) VALUES ('12'::text);
2024-11-25 19:08:06.710 CET [561222][client backend] [pg_regress/citext][45/226:0] ERROR: column "int2" is of type smallint but expression is of type citext at character 44
2024-11-25 19:08:06.710 CET [561222][client backend] [pg_regress/citext][45/226:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.710 CET [561222][client backend] [pg_regress/citext][45/226:0] STATEMENT: INSERT INTO caster (int2) VALUES ('12'::citext);
2024-11-25 19:08:06.711 CET [561222][client backend] [pg_regress/citext][45/228:0] ERROR: column "cidr" is of type cidr but expression is of type text at character 44
2024-11-25 19:08:06.711 CET [561222][client backend] [pg_regress/citext][45/228:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.711 CET [561222][client backend] [pg_regress/citext][45/228:0] STATEMENT: INSERT INTO caster (cidr) VALUES ('192.168.100.128/25'::text);
2024-11-25 19:08:06.711 CET [561222][client backend] [pg_regress/citext][45/230:0] ERROR: column "cidr" is of type cidr but expression is of type citext at character 44
2024-11-25 19:08:06.711 CET [561222][client backend] [pg_regress/citext][45/230:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.711 CET [561222][client backend] [pg_regress/citext][45/230:0] STATEMENT: INSERT INTO caster (cidr) VALUES ('192.168.100.128/25'::citext);
2024-11-25 19:08:06.711 CET [561222][client backend] [pg_regress/citext][45/232:0] ERROR: column "inet" is of type inet but expression is of type text at character 44
2024-11-25 19:08:06.711 CET [561222][client backend] [pg_regress/citext][45/232:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.711 CET [561222][client backend] [pg_regress/citext][45/232:0] STATEMENT: INSERT INTO caster (inet) VALUES ('192.168.100.128'::text);
2024-11-25 19:08:06.712 CET [561222][client backend] [pg_regress/citext][45/234:0] ERROR: column "inet" is of type inet but expression is of type citext at character 44
2024-11-25 19:08:06.712 CET [561222][client backend] [pg_regress/citext][45/234:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.712 CET [561222][client backend] [pg_regress/citext][45/234:0] STATEMENT: INSERT INTO caster (inet) VALUES ('192.168.100.128'::citext);
2024-11-25 19:08:06.712 CET [561222][client backend] [pg_regress/citext][45/236:0] ERROR: column "macaddr" is of type macaddr but expression is of type text at character 44
2024-11-25 19:08:06.712 CET [561222][client backend] [pg_regress/citext][45/236:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.712 CET [561222][client backend] [pg_regress/citext][45/236:0] STATEMENT: INSERT INTO caster (macaddr) VALUES ('08:00:2b:01:02:03'::text);
2024-11-25 19:08:06.712 CET [561298][client backend] [isolation/read-write-unique/s2][68/3:526016] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:06.712 CET [561298][client backend] [isolation/read-write-unique/s2][68/3:526016] DETAIL: Reason code: Canceled on identification as a pivot, during conflict in checking.
2024-11-25 19:08:06.712 CET [561298][client backend] [isolation/read-write-unique/s2][68/3:526016] HINT: The transaction might succeed if retried.
2024-11-25 19:08:06.712 CET [561298][client backend] [isolation/read-write-unique/s2][68/3:526016] STATEMENT: INSERT INTO test VALUES (42);
2024-11-25 19:08:06.712 CET [561222][client backend] [pg_regress/citext][45/238:0] ERROR: column "macaddr" is of type macaddr but expression is of type citext at character 44
2024-11-25 19:08:06.712 CET [561222][client backend] [pg_regress/citext][45/238:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.712 CET [561222][client backend] [pg_regress/citext][45/238:0] STATEMENT: INSERT INTO caster (macaddr) VALUES ('08:00:2b:01:02:03'::citext);
2024-11-25 19:08:06.713 CET [561222][client backend] [pg_regress/citext][45/240:0] ERROR: column "money" is of type money but expression is of type text at character 44
2024-11-25 19:08:06.713 CET [561222][client backend] [pg_regress/citext][45/240:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.713 CET [561222][client backend] [pg_regress/citext][45/240:0] STATEMENT: INSERT INTO caster (money) VALUES ('12'::text);
2024-11-25 19:08:06.713 CET [561270][client backend] [pg_regress/plpgsql_record][59/128:0] ERROR: value for domain ordered_int8s violates check constraint "ordered_int8s_check"
2024-11-25 19:08:06.713 CET [561270][client backend] [pg_regress/plpgsql_record][59/128:0] STATEMENT: select read_ordered_int8s(row(2, 1));
2024-11-25 19:08:06.713 CET [561222][client backend] [pg_regress/citext][45/242:0] ERROR: column "money" is of type money but expression is of type citext at character 44
2024-11-25 19:08:06.713 CET [561222][client backend] [pg_regress/citext][45/242:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.713 CET [561222][client backend] [pg_regress/citext][45/242:0] STATEMENT: INSERT INTO caster (money) VALUES ('12'::citext);
2024-11-25 19:08:06.713 CET [561222][client backend] [pg_regress/citext][45/244:0] ERROR: column "timestamp" is of type timestamp without time zone but expression is of type text at character 44
2024-11-25 19:08:06.713 CET [561222][client backend] [pg_regress/citext][45/244:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.713 CET [561222][client backend] [pg_regress/citext][45/244:0] STATEMENT: INSERT INTO caster (timestamp) VALUES ('1999-01-08 04:05:06'::text);
2024-11-25 19:08:06.714 CET [561310][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.714 CET [561270][client backend] [pg_regress/plpgsql_record][59/131:0] ERROR: value for domain ordered_int8s violates check constraint "ordered_int8s_check"
2024-11-25 19:08:06.714 CET [561270][client backend] [pg_regress/plpgsql_record][59/131:0] CONTEXT: PL/pgSQL function build_ordered_int8s(bigint,bigint) while casting return value to function's return type
2024-11-25 19:08:06.714 CET [561270][client backend] [pg_regress/plpgsql_record][59/131:0] STATEMENT: select build_ordered_int8s(2,1);
2024-11-25 19:08:06.714 CET [561222][client backend] [pg_regress/citext][45/246:0] ERROR: column "timestamp" is of type timestamp without time zone but expression is of type citext at character 44
2024-11-25 19:08:06.714 CET [561222][client backend] [pg_regress/citext][45/246:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.714 CET [561222][client backend] [pg_regress/citext][45/246:0] STATEMENT: INSERT INTO caster (timestamp) VALUES ('1999-01-08 04:05:06'::citext);
2024-11-25 19:08:06.714 CET [561310][client backend] [[unknown]][71/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.714 CET [561310][client backend] [[unknown]][71/1:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/inet
2024-11-25 19:08:06.714 CET [561222][client backend] [pg_regress/citext][45/248:0] ERROR: column "timestamptz" is of type timestamp with time zone but expression is of type text at character 44
2024-11-25 19:08:06.714 CET [561222][client backend] [pg_regress/citext][45/248:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.714 CET [561222][client backend] [pg_regress/citext][45/248:0] STATEMENT: INSERT INTO caster (timestamptz) VALUES ('1999-01-08 04:05:06'::text);
2024-11-25 19:08:06.714 CET [561270][client backend] [pg_regress/plpgsql_record][59/134:0] ERROR: value for domain ordered_int8s violates check constraint "ordered_int8s_check"
2024-11-25 19:08:06.714 CET [561270][client backend] [pg_regress/plpgsql_record][59/134:0] CONTEXT: PL/pgSQL function build_ordered_int8s_2(bigint,bigint) while casting return value to function's return type
2024-11-25 19:08:06.714 CET [561270][client backend] [pg_regress/plpgsql_record][59/134:0] STATEMENT: select build_ordered_int8s_2(2,1);
2024-11-25 19:08:06.715 CET [561222][client backend] [pg_regress/citext][45/250:0] ERROR: column "timestamptz" is of type timestamp with time zone but expression is of type citext at character 44
2024-11-25 19:08:06.715 CET [561222][client backend] [pg_regress/citext][45/250:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.715 CET [561222][client backend] [pg_regress/citext][45/250:0] STATEMENT: INSERT INTO caster (timestamptz) VALUES ('1999-01-08 04:05:06'::citext);
2024-11-25 19:08:06.715 CET [561222][client backend] [pg_regress/citext][45/252:0] ERROR: column "interval" is of type interval but expression is of type text at character 44
2024-11-25 19:08:06.715 CET [561222][client backend] [pg_regress/citext][45/252:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.715 CET [561222][client backend] [pg_regress/citext][45/252:0] STATEMENT: INSERT INTO caster (interval) VALUES ('1 hour'::text);
2024-11-25 19:08:06.715 CET [561270][client backend] [pg_regress/plpgsql_record][59/137:0] ERROR: value for domain ordered_int8s violates check constraint "ordered_int8s_check"
2024-11-25 19:08:06.715 CET [561270][client backend] [pg_regress/plpgsql_record][59/137:0] CONTEXT: PL/pgSQL function build_ordered_int8s_3(bigint,bigint) while casting return value to function's return type
2024-11-25 19:08:06.715 CET [561270][client backend] [pg_regress/plpgsql_record][59/137:0] STATEMENT: select build_ordered_int8s_3(2,1);
2024-11-25 19:08:06.715 CET [561222][client backend] [pg_regress/citext][45/254:0] ERROR: column "interval" is of type interval but expression is of type citext at character 44
2024-11-25 19:08:06.715 CET [561222][client backend] [pg_regress/citext][45/254:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.715 CET [561222][client backend] [pg_regress/citext][45/254:0] STATEMENT: INSERT INTO caster (interval) VALUES ('1 hour'::citext);
2024-11-25 19:08:06.716 CET [561222][client backend] [pg_regress/citext][45/256:0] ERROR: column "date" is of type date but expression is of type text at character 44
2024-11-25 19:08:06.716 CET [561222][client backend] [pg_regress/citext][45/256:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.716 CET [561222][client backend] [pg_regress/citext][45/256:0] STATEMENT: INSERT INTO caster (date) VALUES ('1999-01-08'::text);
2024-11-25 19:08:06.716 CET [561270][client backend] [pg_regress/plpgsql_record][59/140:0] ERROR: value for domain ordered_int8s violates check constraint "ordered_int8s_check"
2024-11-25 19:08:06.716 CET [561270][client backend] [pg_regress/plpgsql_record][59/140:0] CONTEXT: PL/pgSQL function build_ordered_int8s_4(bigint,bigint) line 2 at assignment
2024-11-25 19:08:06.716 CET [561270][client backend] [pg_regress/plpgsql_record][59/140:0] STATEMENT: select build_ordered_int8s_4(2,1);
2024-11-25 19:08:06.716 CET [561222][client backend] [pg_regress/citext][45/258:0] ERROR: column "date" is of type date but expression is of type citext at character 44
2024-11-25 19:08:06.716 CET [561222][client backend] [pg_regress/citext][45/258:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.716 CET [561222][client backend] [pg_regress/citext][45/258:0] STATEMENT: INSERT INTO caster (date) VALUES ('1999-01-08'::citext);
2024-11-25 19:08:06.716 CET [561222][client backend] [pg_regress/citext][45/260:0] ERROR: column "time" is of type time without time zone but expression is of type text at character 44
2024-11-25 19:08:06.716 CET [561222][client backend] [pg_regress/citext][45/260:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.716 CET [561222][client backend] [pg_regress/citext][45/260:0] STATEMENT: INSERT INTO caster (time) VALUES ('04:05:06'::text);
2024-11-25 19:08:06.716 CET [561270][client backend] [pg_regress/plpgsql_record][59/143:0] ERROR: value for domain ordered_int8s violates check constraint "ordered_int8s_check"
2024-11-25 19:08:06.716 CET [561270][client backend] [pg_regress/plpgsql_record][59/143:0] CONTEXT: PL/pgSQL function build_ordered_int8s_a(bigint,bigint) while casting return value to function's return type
2024-11-25 19:08:06.716 CET [561270][client backend] [pg_regress/plpgsql_record][59/143:0] STATEMENT: select build_ordered_int8s_a(2,1);
2024-11-25 19:08:06.717 CET [561270][client backend] [pg_regress/plpgsql_record][59/144:0] ERROR: value for domain ordered_int8s violates check constraint "ordered_int8s_check"
2024-11-25 19:08:06.717 CET [561270][client backend] [pg_regress/plpgsql_record][59/144:0] CONTEXT: PL/pgSQL function inline_code_block line 7 at assignment
2024-11-25 19:08:06.717 CET [561270][client backend] [pg_regress/plpgsql_record][59/144:0] STATEMENT: do $$
declare r ordered_int8s;
begin
r.q1 := null;
r.q2 := 43;
r.q1 := 42;
r.q2 := 41; -- fail
end$$;
2024-11-25 19:08:06.717 CET [561222][client backend] [pg_regress/citext][45/262:0] ERROR: column "time" is of type time without time zone but expression is of type citext at character 44
2024-11-25 19:08:06.717 CET [561222][client backend] [pg_regress/citext][45/262:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.717 CET [561222][client backend] [pg_regress/citext][45/262:0] STATEMENT: INSERT INTO caster (time) VALUES ('04:05:06'::citext);
2024-11-25 19:08:06.717 CET [561270][client backend] [pg_regress/plpgsql_record][59/145:0] ERROR: value for domain ordered_int8s violates check constraint "ordered_int8s_check"
2024-11-25 19:08:06.717 CET [561270][client backend] [pg_regress/plpgsql_record][59/145:0] CONTEXT: PL/pgSQL function inline_code_block line 7 at assignment
2024-11-25 19:08:06.717 CET [561270][client backend] [pg_regress/plpgsql_record][59/145:0] STATEMENT: do $$
declare r ordered_int8s;
begin
r := null;
r := row(null,null);
r := row(1,2);
r := row(2,1); -- fail
end$$;
2024-11-25 19:08:06.717 CET [561270][client backend] [pg_regress/plpgsql_record][59/146:0] ERROR: value for domain ordered_int8s violates check constraint "ordered_int8s_check"
2024-11-25 19:08:06.717 CET [561270][client backend] [pg_regress/plpgsql_record][59/146:0] CONTEXT: PL/pgSQL function inline_code_block line 4 at FOR over SELECT rows
2024-11-25 19:08:06.717 CET [561270][client backend] [pg_regress/plpgsql_record][59/146:0] STATEMENT: do $$
declare r ordered_int8s;
begin
for r in values (1,2),(3,4),(6,5) loop
raise notice 'r = %', r;
end loop;
end$$;
2024-11-25 19:08:06.717 CET [561222][client backend] [pg_regress/citext][45/264:0] ERROR: column "timetz" is of type time with time zone but expression is of type text at character 44
2024-11-25 19:08:06.717 CET [561222][client backend] [pg_regress/citext][45/264:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.717 CET [561222][client backend] [pg_regress/citext][45/264:0] STATEMENT: INSERT INTO caster (timetz) VALUES ('04:05:06'::text);
2024-11-25 19:08:06.717 CET [561298][client backend] [isolation/read-write-unique/s2][68/4:526087] ERROR: duplicate key value violates unique constraint "test_pkey"
2024-11-25 19:08:06.717 CET [561298][client backend] [isolation/read-write-unique/s2][68/4:526087] DETAIL: Key (i)=(42) already exists.
2024-11-25 19:08:06.717 CET [561298][client backend] [isolation/read-write-unique/s2][68/4:526087] STATEMENT: INSERT INTO test VALUES (42);
2024-11-25 19:08:06.718 CET [561222][client backend] [pg_regress/citext][45/266:0] ERROR: column "timetz" is of type time with time zone but expression is of type citext at character 44
2024-11-25 19:08:06.718 CET [561222][client backend] [pg_regress/citext][45/266:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.718 CET [561222][client backend] [pg_regress/citext][45/266:0] STATEMENT: INSERT INTO caster (timetz) VALUES ('04:05:06'::citext);
2024-11-25 19:08:06.718 CET [561222][client backend] [pg_regress/citext][45/268:0] ERROR: column "point" is of type point but expression is of type text at character 44
2024-11-25 19:08:06.718 CET [561222][client backend] [pg_regress/citext][45/268:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.718 CET [561222][client backend] [pg_regress/citext][45/268:0] STATEMENT: INSERT INTO caster (point) VALUES ('( 1 , 1)'::text);
2024-11-25 19:08:06.718 CET [561222][client backend] [pg_regress/citext][45/270:0] ERROR: column "point" is of type point but expression is of type citext at character 44
2024-11-25 19:08:06.718 CET [561222][client backend] [pg_regress/citext][45/270:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.718 CET [561222][client backend] [pg_regress/citext][45/270:0] STATEMENT: INSERT INTO caster (point) VALUES ('( 1 , 1)'::citext);
2024-11-25 19:08:06.719 CET [561293][client backend] [isolation/read-write-unique/control connection][:0] LOG: disconnection: session time: 0:00:00.030 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:06.719 CET [561298][client backend] [isolation/read-write-unique/s2][:0] LOG: disconnection: session time: 0:00:00.024 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:06.719 CET [561297][client backend] [isolation/read-write-unique/s1][:0] LOG: disconnection: session time: 0:00:00.027 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:06.719 CET [561222][client backend] [pg_regress/citext][45/272:0] ERROR: column "lseg" is of type lseg but expression is of type text at character 44
2024-11-25 19:08:06.719 CET [561222][client backend] [pg_regress/citext][45/272:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.719 CET [561222][client backend] [pg_regress/citext][45/272:0] STATEMENT: INSERT INTO caster (lseg) VALUES ('( 1 , 1 ) , ( 2 , 2 )'::text);
2024-11-25 19:08:06.719 CET [561222][client backend] [pg_regress/citext][45/274:0] ERROR: column "lseg" is of type lseg but expression is of type citext at character 44
2024-11-25 19:08:06.719 CET [561222][client backend] [pg_regress/citext][45/274:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.719 CET [561222][client backend] [pg_regress/citext][45/274:0] STATEMENT: INSERT INTO caster (lseg) VALUES ('( 1 , 1 ) , ( 2 , 2 )'::citext);
2024-11-25 19:08:06.719 CET [561296][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.029 user=nkey database=postgres host=[local]
2024-11-25 19:08:06.720 CET [561222][client backend] [pg_regress/citext][45/276:0] ERROR: column "box" is of type box but expression is of type text at character 44
2024-11-25 19:08:06.720 CET [561222][client backend] [pg_regress/citext][45/276:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.720 CET [561222][client backend] [pg_regress/citext][45/276:0] STATEMENT: INSERT INTO caster (box) VALUES ('(0,0),(1,1)'::text);
2024-11-25 19:08:06.720 CET [561222][client backend] [pg_regress/citext][45/278:0] ERROR: column "box" is of type box but expression is of type citext at character 44
2024-11-25 19:08:06.720 CET [561222][client backend] [pg_regress/citext][45/278:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.720 CET [561222][client backend] [pg_regress/citext][45/278:0] STATEMENT: INSERT INTO caster (box) VALUES ('(0,0),(1,1)'::citext);
2024-11-25 19:08:06.720 CET [561222][client backend] [pg_regress/citext][45/280:0] ERROR: column "path" is of type path but expression is of type text at character 44
2024-11-25 19:08:06.720 CET [561222][client backend] [pg_regress/citext][45/280:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.720 CET [561222][client backend] [pg_regress/citext][45/280:0] STATEMENT: INSERT INTO caster (path) VALUES ('((0,0),(1,1),(2,0))'::text);
2024-11-25 19:08:06.721 CET [561222][client backend] [pg_regress/citext][45/282:0] ERROR: column "path" is of type path but expression is of type citext at character 44
2024-11-25 19:08:06.721 CET [561222][client backend] [pg_regress/citext][45/282:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.721 CET [561222][client backend] [pg_regress/citext][45/282:0] STATEMENT: INSERT INTO caster (path) VALUES ('((0,0),(1,1),(2,0))'::citext);
2024-11-25 19:08:06.721 CET [561222][client backend] [pg_regress/citext][45/284:0] ERROR: column "polygon" is of type polygon but expression is of type text at character 44
2024-11-25 19:08:06.721 CET [561222][client backend] [pg_regress/citext][45/284:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.721 CET [561222][client backend] [pg_regress/citext][45/284:0] STATEMENT: INSERT INTO caster (polygon) VALUES ('((0,0),(1,1))'::text);
2024-11-25 19:08:06.722 CET [561222][client backend] [pg_regress/citext][45/286:0] ERROR: column "polygon" is of type polygon but expression is of type citext at character 44
2024-11-25 19:08:06.722 CET [561222][client backend] [pg_regress/citext][45/286:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.722 CET [561222][client backend] [pg_regress/citext][45/286:0] STATEMENT: INSERT INTO caster (polygon) VALUES ('((0,0),(1,1))'::citext);
2024-11-25 19:08:06.722 CET [561315][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.722 CET [561222][client backend] [pg_regress/citext][45/288:0] ERROR: column "circle" is of type circle but expression is of type text at character 44
2024-11-25 19:08:06.722 CET [561222][client backend] [pg_regress/citext][45/288:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.722 CET [561222][client backend] [pg_regress/citext][45/288:0] STATEMENT: INSERT INTO caster (circle) VALUES ('((0,0),2)'::text);
2024-11-25 19:08:06.722 CET [561310][client backend] [pg_regress/inet][:0] LOG: disconnection: session time: 0:00:00.008 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:06.722 CET [561222][client backend] [pg_regress/citext][45/290:0] ERROR: column "circle" is of type circle but expression is of type citext at character 44
2024-11-25 19:08:06.722 CET [561222][client backend] [pg_regress/citext][45/290:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.722 CET [561222][client backend] [pg_regress/citext][45/290:0] STATEMENT: INSERT INTO caster (circle) VALUES ('((0,0),2)'::citext);
2024-11-25 19:08:06.722 CET [561316][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.723 CET [561315][client backend] [[unknown]][72/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.723 CET [561315][client backend] [[unknown]][72/1:0] LOG: connection authorized: user=nkey database=regression_cube application_name=pg_regress/cube
2024-11-25 19:08:06.723 CET [561222][client backend] [pg_regress/citext][45/292:0] ERROR: column "bit" is of type bit but expression is of type text at character 44
2024-11-25 19:08:06.723 CET [561222][client backend] [pg_regress/citext][45/292:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.723 CET [561222][client backend] [pg_regress/citext][45/292:0] STATEMENT: INSERT INTO caster (bit) VALUES ('101'::text);
2024-11-25 19:08:06.723 CET [561316][client backend] [[unknown]][73/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.723 CET [561316][client backend] [[unknown]][73/1:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/read-write-unique-2
2024-11-25 19:08:06.723 CET [561222][client backend] [pg_regress/citext][45/294:0] ERROR: column "bit" is of type bit but expression is of type citext at character 44
2024-11-25 19:08:06.723 CET [561222][client backend] [pg_regress/citext][45/294:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.723 CET [561222][client backend] [pg_regress/citext][45/294:0] STATEMENT: INSERT INTO caster (bit) VALUES ('101'::citext);
2024-11-25 19:08:06.724 CET [561222][client backend] [pg_regress/citext][45/296:0] ERROR: column "bitv" is of type bit varying but expression is of type text at character 44
2024-11-25 19:08:06.724 CET [561222][client backend] [pg_regress/citext][45/296:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.724 CET [561222][client backend] [pg_regress/citext][45/296:0] STATEMENT: INSERT INTO caster (bitv) VALUES ('101'::text);
2024-11-25 19:08:06.724 CET [561222][client backend] [pg_regress/citext][45/298:0] ERROR: column "bitv" is of type bit varying but expression is of type citext at character 44
2024-11-25 19:08:06.724 CET [561222][client backend] [pg_regress/citext][45/298:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.724 CET [561222][client backend] [pg_regress/citext][45/298:0] STATEMENT: INSERT INTO caster (bitv) VALUES ('101'::citext);
2024-11-25 19:08:06.724 CET [561222][client backend] [pg_regress/citext][45/300:0] ERROR: column "tsvector" is of type tsvector but expression is of type text at character 44
2024-11-25 19:08:06.724 CET [561222][client backend] [pg_regress/citext][45/300:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.724 CET [561222][client backend] [pg_regress/citext][45/300:0] STATEMENT: INSERT INTO caster (tsvector) VALUES ('the fat cat'::text);
2024-11-25 19:08:06.725 CET [561306][client backend] [pg_regress/oid][:0] LOG: disconnection: session time: 0:00:00.015 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:06.725 CET [561222][client backend] [pg_regress/citext][45/302:0] ERROR: column "tsvector" is of type tsvector but expression is of type citext at character 44
2024-11-25 19:08:06.725 CET [561222][client backend] [pg_regress/citext][45/302:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.725 CET [561222][client backend] [pg_regress/citext][45/302:0] STATEMENT: INSERT INTO caster (tsvector) VALUES ('the fat cat'::citext);
2024-11-25 19:08:06.725 CET [561222][client backend] [pg_regress/citext][45/304:0] ERROR: column "tsquery" is of type tsquery but expression is of type text at character 44
2024-11-25 19:08:06.725 CET [561222][client backend] [pg_regress/citext][45/304:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.725 CET [561222][client backend] [pg_regress/citext][45/304:0] STATEMENT: INSERT INTO caster (tsquery) VALUES ('fat & rat'::text);
2024-11-25 19:08:06.725 CET [561323][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.726 CET [561222][client backend] [pg_regress/citext][45/306:0] ERROR: column "tsquery" is of type tsquery but expression is of type citext at character 44
2024-11-25 19:08:06.726 CET [561222][client backend] [pg_regress/citext][45/306:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.726 CET [561222][client backend] [pg_regress/citext][45/306:0] STATEMENT: INSERT INTO caster (tsquery) VALUES ('fat & rat'::citext);
2024-11-25 19:08:06.726 CET [561323][client backend] [[unknown]][74/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.726 CET [561323][client backend] [[unknown]][74/1:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/read-write-unique-2
2024-11-25 19:08:06.726 CET [561324][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.726 CET [561222][client backend] [pg_regress/citext][45/308:0] ERROR: column "uuid" is of type uuid but expression is of type text at character 44
2024-11-25 19:08:06.726 CET [561222][client backend] [pg_regress/citext][45/308:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.726 CET [561222][client backend] [pg_regress/citext][45/308:0] STATEMENT: INSERT INTO caster (uuid) VALUES ('a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11'::text);
2024-11-25 19:08:06.726 CET [561324][client backend] [[unknown]][75/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.726 CET [561324][client backend] [[unknown]][75/1:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/cidr
2024-11-25 19:08:06.727 CET [561325][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.728 CET [561325][client backend] [[unknown]][76/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.728 CET [561325][client backend] [[unknown]][76/1:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/timestamp
2024-11-25 19:08:06.728 CET [561222][client backend] [pg_regress/citext][45/310:0] ERROR: column "uuid" is of type uuid but expression is of type citext at character 44
2024-11-25 19:08:06.728 CET [561222][client backend] [pg_regress/citext][45/310:0] HINT: You will need to rewrite or cast the expression.
2024-11-25 19:08:06.728 CET [561222][client backend] [pg_regress/citext][45/310:0] STATEMENT: INSERT INTO caster (uuid) VALUES ('a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11'::citext);
2024-11-25 19:08:06.729 CET [561326][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.729 CET [561326][client backend] [[unknown]][77/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.729 CET [561326][client backend] [[unknown]][77/1:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/read-write-unique-2
2024-11-25 19:08:06.731 CET [561270][client backend] [pg_regress/plpgsql_record][59/153:0] ERROR: value for domain ordered_texts violates check constraint "ordered_texts_check"
2024-11-25 19:08:06.731 CET [561270][client backend] [pg_regress/plpgsql_record][59/153:0] CONTEXT: PL/pgSQL function inline_code_block line 4 at FOR over SELECT rows
2024-11-25 19:08:06.731 CET [561270][client backend] [pg_regress/plpgsql_record][59/153:0] STATEMENT: do $$
declare d ordered_texts;
begin
for d in select a, b from sometable loop
raise notice 'succeeded at "%"', d.f1;
end loop;
end$$;
2024-11-25 19:08:06.733 CET [561270][client backend] [pg_regress/plpgsql_record][59/154:0] ERROR: value for domain ordered_texts violates check constraint "ordered_texts_check"
2024-11-25 19:08:06.733 CET [561270][client backend] [pg_regress/plpgsql_record][59/154:0] CONTEXT: PL/pgSQL function inline_code_block line 6 at assignment
2024-11-25 19:08:06.733 CET [561270][client backend] [pg_regress/plpgsql_record][59/154:0] STATEMENT: do $$
declare r record; d ordered_texts;
begin
for r in select * from sometable loop
raise notice 'processing row %', r.id;
d := row(r.a, r.b);
end loop;
end$$;
2024-11-25 19:08:06.734 CET [561270][client backend] [pg_regress/plpgsql_record][59/155:0] ERROR: value for domain ordered_texts violates check constraint "ordered_texts_check"
2024-11-25 19:08:06.734 CET [561270][client backend] [pg_regress/plpgsql_record][59/155:0] CONTEXT: PL/pgSQL function inline_code_block line 8 at assignment
2024-11-25 19:08:06.734 CET [561270][client backend] [pg_regress/plpgsql_record][59/155:0] STATEMENT: do $$
declare r record; d ordered_texts;
begin
for r in select * from sometable loop
raise notice 'processing row %', r.id;
d := null;
d.f1 := r.a;
d.f2 := r.b;
end loop;
end$$;
2024-11-25 19:08:06.735 CET [561324][client backend] [pg_regress/cidr][:0] LOG: disconnection: session time: 0:00:00.009 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:06.736 CET [561329][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.737 CET [561329][client backend] [[unknown]][78/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.737 CET [561329][client backend] [[unknown]][78/1:0] LOG: connection authorized: user=nkey database=regression_plpgsql application_name=pg_regress/plpgsql_record
2024-11-25 19:08:06.738 CET [561270][client backend] [pg_regress/plpgsql_record][:0] LOG: disconnection: session time: 0:00:00.083 user=nkey database=regression_plpgsql host=[local]
2024-11-25 19:08:06.739 CET [561329][client backend] [pg_regress/plpgsql_record][:0] LOG: disconnection: session time: 0:00:00.002 user=nkey database=regression_plpgsql host=[local]
2024-11-25 19:08:06.739 CET [561331][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.740 CET [561331][client backend] [[unknown]][79/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.740 CET [561331][client backend] [[unknown]][79/1:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/text
2024-11-25 19:08:06.740 CET [561325][client backend] [pg_regress/timestamp][:0] LOG: disconnection: session time: 0:00:00.013 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:06.742 CET [561222][client backend] [pg_regress/citext][45/364:0] ERROR: regexp_match() does not support the "global" option
2024-11-25 19:08:06.742 CET [561222][client backend] [pg_regress/citext][45/364:0] HINT: Use the regexp_matches function instead.
2024-11-25 19:08:06.742 CET [561222][client backend] [pg_regress/citext][45/364:0] CONTEXT: SQL function "regexp_match" statement 1
2024-11-25 19:08:06.742 CET [561222][client backend] [pg_regress/citext][45/364:0] STATEMENT: SELECT regexp_match('foobarbequebazmorebarbequetoo'::citext, '(BAR)(BEQUE)'::citext, 'g') AS "error";
2024-11-25 19:08:06.743 CET [561338][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.743 CET [561338][client backend] [[unknown]][80/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.743 CET [561338][client backend] [[unknown]][80/1:0] LOG: connection authorized: user=nkey database=regression_plpgsql application_name=pg_regress/plpgsql_simple
2024-11-25 19:08:06.744 CET [561339][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.744 CET [561339][client backend] [[unknown]][81/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.744 CET [561339][client backend] [[unknown]][81/1:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/timestamptz
2024-11-25 19:08:06.747 CET [561331][client backend] [pg_regress/text][:0] LOG: disconnection: session time: 0:00:00.007 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:06.747 CET [561326][client backend] [isolation/read-write-unique-2/s2][77/3:526137] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:06.747 CET [561326][client backend] [isolation/read-write-unique-2/s2][77/3:526137] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:06.747 CET [561326][client backend] [isolation/read-write-unique-2/s2][77/3:526137] HINT: The transaction might succeed if retried.
2024-11-25 19:08:06.747 CET [561326][client backend] [isolation/read-write-unique-2/s2][77/3:526137] STATEMENT: INSERT INTO test VALUES (42);
2024-11-25 19:08:06.749 CET [561343][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.750 CET [561343][client backend] [[unknown]][82/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.750 CET [561343][client backend] [[unknown]][82/1:0] LOG: connection authorized: user=nkey database=regression_plpgsql application_name=pg_regress/plpgsql_simple
2024-11-25 19:08:06.751 CET [561338][client backend] [pg_regress/plpgsql_simple][:0] LOG: disconnection: session time: 0:00:00.008 user=nkey database=regression_plpgsql host=[local]
2024-11-25 19:08:06.751 CET [561315][client backend] [pg_regress/cube][72/32:0] ERROR: invalid input syntax for cube at character 8
2024-11-25 19:08:06.751 CET [561315][client backend] [pg_regress/cube][72/32:0] DETAIL: syntax error at end of input
2024-11-25 19:08:06.751 CET [561315][client backend] [pg_regress/cube][72/32:0] STATEMENT: SELECT ''::cube AS cube;
2024-11-25 19:08:06.751 CET [561315][client backend] [pg_regress/cube][72/33:0] ERROR: invalid input syntax for cube at character 8
2024-11-25 19:08:06.751 CET [561315][client backend] [pg_regress/cube][72/33:0] DETAIL: syntax error at or near "A"
2024-11-25 19:08:06.751 CET [561315][client backend] [pg_regress/cube][72/33:0] STATEMENT: SELECT 'ABC'::cube AS cube;
2024-11-25 19:08:06.751 CET [561315][client backend] [pg_regress/cube][72/34:0] ERROR: invalid input syntax for cube at character 8
2024-11-25 19:08:06.751 CET [561315][client backend] [pg_regress/cube][72/34:0] DETAIL: syntax error at or near "]"
2024-11-25 19:08:06.751 CET [561315][client backend] [pg_regress/cube][72/34:0] STATEMENT: SELECT '[]'::cube AS cube;
2024-11-25 19:08:06.751 CET [561344][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.751 CET [561315][client backend] [pg_regress/cube][72/35:0] ERROR: invalid input syntax for cube at character 8
2024-11-25 19:08:06.751 CET [561315][client backend] [pg_regress/cube][72/35:0] DETAIL: syntax error at or near "]"
2024-11-25 19:08:06.751 CET [561315][client backend] [pg_regress/cube][72/35:0] STATEMENT: SELECT '[()]'::cube AS cube;
2024-11-25 19:08:06.751 CET [561315][client backend] [pg_regress/cube][72/36:0] ERROR: invalid input syntax for cube at character 8
2024-11-25 19:08:06.751 CET [561315][client backend] [pg_regress/cube][72/36:0] DETAIL: syntax error at or near "]"
2024-11-25 19:08:06.751 CET [561315][client backend] [pg_regress/cube][72/36:0] STATEMENT: SELECT '[(1)]'::cube AS cube;
2024-11-25 19:08:06.751 CET [561315][client backend] [pg_regress/cube][72/37:0] ERROR: invalid input syntax for cube at character 8
2024-11-25 19:08:06.751 CET [561315][client backend] [pg_regress/cube][72/37:0] DETAIL: syntax error at or near "]"
2024-11-25 19:08:06.751 CET [561315][client backend] [pg_regress/cube][72/37:0] STATEMENT: SELECT '[(1),]'::cube AS cube;
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/38:0] ERROR: invalid input syntax for cube at character 8
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/38:0] DETAIL: syntax error at or near "2"
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/38:0] STATEMENT: SELECT '[(1),2]'::cube AS cube;
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/39:0] ERROR: invalid input syntax for cube at character 8
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/39:0] DETAIL: syntax error at or near ","
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/39:0] STATEMENT: SELECT '[(1),(2),(3)]'::cube AS cube;
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/40:0] ERROR: invalid input syntax for cube at character 8
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/40:0] DETAIL: syntax error at end of input
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/40:0] STATEMENT: SELECT '1,'::cube AS cube;
2024-11-25 19:08:06.752 CET [561326][client backend] [isolation/read-write-unique-2/s2][77/4:526155] ERROR: duplicate key value violates unique constraint "test_pkey"
2024-11-25 19:08:06.752 CET [561326][client backend] [isolation/read-write-unique-2/s2][77/4:526155] DETAIL: Key (i)=(42) already exists.
2024-11-25 19:08:06.752 CET [561326][client backend] [isolation/read-write-unique-2/s2][77/4:526155] STATEMENT: INSERT INTO test VALUES (42);
2024-11-25 19:08:06.752 CET [561344][client backend] [[unknown]][83/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/41:0] ERROR: invalid input syntax for cube at character 8
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/41:0] DETAIL: syntax error at end of input
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/41:0] STATEMENT: SELECT '1,2,'::cube AS cube;
2024-11-25 19:08:06.752 CET [561344][client backend] [[unknown]][83/1:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/varchar
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/42:0] ERROR: invalid input syntax for cube at character 8
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/42:0] DETAIL: syntax error at or near ","
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/42:0] STATEMENT: SELECT '1,,2'::cube AS cube;
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/43:0] ERROR: invalid input syntax for cube at character 8
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/43:0] DETAIL: syntax error at or near ")"
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/43:0] STATEMENT: SELECT '(1,)'::cube AS cube;
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/44:0] ERROR: invalid input syntax for cube at character 8
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/44:0] DETAIL: syntax error at or near ")"
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/44:0] STATEMENT: SELECT '(1,2,)'::cube AS cube;
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/45:0] ERROR: invalid input syntax for cube at character 8
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/45:0] DETAIL: syntax error at or near ","
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/45:0] STATEMENT: SELECT '(1,,2)'::cube AS cube;
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/46:0] ERROR: invalid input syntax for cube at character 8
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/46:0] DETAIL: syntax error at or near ","
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/46:0] STATEMENT: SELECT '[(1),(2)],'::cube AS cube;
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/47:0] ERROR: invalid input syntax for cube at character 8
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/47:0] DETAIL: Different point dimensions in (1,2,3) and (2,3).
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/47:0] STATEMENT: SELECT '[(1,2,3),(2,3)]'::cube AS cube;
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/48:0] ERROR: invalid input syntax for cube at character 8
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/48:0] DETAIL: Different point dimensions in (1,2) and (1,2,3).
2024-11-25 19:08:06.752 CET [561315][client backend] [pg_regress/cube][72/48:0] STATEMENT: SELECT '[(1,2),(1,2,3)]'::cube AS cube;
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/49:0] ERROR: invalid input syntax for cube at character 8
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/49:0] DETAIL: syntax error at or near ","
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/49:0] STATEMENT: SELECT '(1),(2),'::cube AS cube;
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/50:0] ERROR: invalid input syntax for cube at character 8
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/50:0] DETAIL: Different point dimensions in (1,2,3) and (2,3).
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/50:0] STATEMENT: SELECT '(1,2,3),(2,3)'::cube AS cube;
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/51:0] ERROR: invalid input syntax for cube at character 8
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/51:0] DETAIL: Different point dimensions in (1,2) and (1,2,3).
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/51:0] STATEMENT: SELECT '(1,2),(1,2,3)'::cube AS cube;
2024-11-25 19:08:06.753 CET [561316][client backend] [isolation/read-write-unique-2/control connection][:0] LOG: disconnection: session time: 0:00:00.030 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/52:0] ERROR: invalid input syntax for cube at character 8
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/52:0] DETAIL: syntax error at or near "a"
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/52:0] STATEMENT: SELECT '(1,2,3)ab'::cube AS cube;
2024-11-25 19:08:06.753 CET [561323][client backend] [isolation/read-write-unique-2/s1][:0] LOG: disconnection: session time: 0:00:00.027 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:06.753 CET [561326][client backend] [isolation/read-write-unique-2/s2][:0] LOG: disconnection: session time: 0:00:00.024 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/53:0] ERROR: invalid input syntax for cube at character 8
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/53:0] DETAIL: syntax error at or near "a"
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/53:0] STATEMENT: SELECT '(1,2,3)a'::cube AS cube;
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/54:0] ERROR: invalid input syntax for cube at character 8
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/54:0] DETAIL: syntax error at or near "("
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/54:0] STATEMENT: SELECT '(1,2)('::cube AS cube;
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/55:0] ERROR: invalid input syntax for cube at character 8
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/55:0] DETAIL: syntax error at or near "a"
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/55:0] STATEMENT: SELECT '1,2ab'::cube AS cube;
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/56:0] ERROR: invalid input syntax for cube at character 8
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/56:0] DETAIL: syntax error at or near "e"
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/56:0] STATEMENT: SELECT '1 e7'::cube AS cube;
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/57:0] ERROR: invalid input syntax for cube at character 8
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/57:0] DETAIL: syntax error at or near "a"
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/57:0] STATEMENT: SELECT '1,2a'::cube AS cube;
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/58:0] ERROR: invalid input syntax for cube at character 8
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/58:0] DETAIL: syntax error at or near ".2"
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/58:0] STATEMENT: SELECT '1..2'::cube AS cube;
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/59:0] ERROR: "-1e-700" is out of range for type double precision at character 8
2024-11-25 19:08:06.753 CET [561315][client backend] [pg_regress/cube][72/59:0] STATEMENT: SELECT '-1e-700'::cube AS cube;
2024-11-25 19:08:06.754 CET [561343][client backend] [pg_regress/plpgsql_simple][82/5:0] ERROR: division by zero
2024-11-25 19:08:06.754 CET [561343][client backend] [pg_regress/plpgsql_simple][82/5:0] CONTEXT: SQL function "simplesql" during inlining
SQL statement "select simplesql()"
PL/pgSQL function simplecaller() line 4 at SQL statement
2024-11-25 19:08:06.754 CET [561343][client backend] [pg_regress/plpgsql_simple][82/5:0] STATEMENT: select simplecaller();
2024-11-25 19:08:06.756 CET [561343][client backend] [pg_regress/plpgsql_simple][:0] LOG: disconnection: session time: 0:00:00.006 user=nkey database=regression_plpgsql host=[local]
2024-11-25 19:08:06.756 CET [561348][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.756 CET [561315][client backend] [pg_regress/cube][72/73:0] ERROR: UR and LL arrays must be of same length
2024-11-25 19:08:06.756 CET [561315][client backend] [pg_regress/cube][72/73:0] STATEMENT: SELECT cube('{0,1,2}'::float[], '{3}'::float[]);
2024-11-25 19:08:06.757 CET [561348][client backend] [[unknown]][84/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.757 CET [561348][client backend] [[unknown]][84/1:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/read-write-unique-3
2024-11-25 19:08:06.757 CET [561315][client backend] [pg_regress/cube][72/78:0] ERROR: Index out of bounds
2024-11-25 19:08:06.757 CET [561315][client backend] [pg_regress/cube][72/78:0] STATEMENT: SELECT cube_subset(cube('(1,3,5),(6,7,8)'), ARRAY[4,0]);
2024-11-25 19:08:06.757 CET [561315][client backend] [pg_regress/cube][72/79:0] ERROR: Index out of bounds
2024-11-25 19:08:06.757 CET [561315][client backend] [pg_regress/cube][72/79:0] STATEMENT: SELECT cube_subset(cube('(6,7,8),(6,7,8)'), ARRAY[4,0]);
2024-11-25 19:08:06.758 CET [561315][client backend] [pg_regress/cube][72/81:0] ERROR: array is too long
2024-11-25 19:08:06.758 CET [561315][client backend] [pg_regress/cube][72/81:0] DETAIL: A cube cannot have more than 100 dimensions.
2024-11-25 19:08:06.758 CET [561315][client backend] [pg_regress/cube][72/81:0] STATEMENT: SELECT cube_subset(cube('(6,7,8),(6,7,8)'), array(SELECT 1 as a FROM generate_series(1,101)));
2024-11-25 19:08:06.759 CET [561352][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.759 CET [561352][client backend] [[unknown]][85/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.759 CET [561352][client backend] [[unknown]][85/1:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/read-write-unique-3
2024-11-25 19:08:06.760 CET [561353][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.760 CET [561344][client backend] [pg_regress/varchar][:0] LOG: disconnection: session time: 0:00:00.008 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:06.760 CET [561315][client backend] [pg_regress/cube][72/93:0] ERROR: invalid input syntax for cube at character 8
2024-11-25 19:08:06.760 CET [561315][client backend] [pg_regress/cube][72/93:0] DETAIL: A cube cannot have more than 100 dimensions.
2024-11-25 19:08:06.760 CET [561315][client backend] [pg_regress/cube][72/93:0] STATEMENT: select '(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)'::cube;
2024-11-25 19:08:06.760 CET [561315][client backend] [pg_regress/cube][72/94:0] ERROR: invalid input syntax for cube at character 8
2024-11-25 19:08:06.760 CET [561315][client backend] [pg_regress/cube][72/94:0] DETAIL: A cube cannot have more than 100 dimensions.
2024-11-25 19:08:06.760 CET [561315][client backend] [pg_regress/cube][72/94:0] STATEMENT: select '(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)'::cube;
2024-11-25 19:08:06.761 CET [561353][client backend] [[unknown]][86/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.761 CET [561353][client backend] [[unknown]][86/1:0] LOG: connection authorized: user=nkey database=regression_plpgsql application_name=pg_regress/plpgsql_transaction
2024-11-25 19:08:06.761 CET [561315][client backend] [pg_regress/cube][72/95:0] ERROR: array is too long
2024-11-25 19:08:06.761 CET [561315][client backend] [pg_regress/cube][72/95:0] DETAIL: A cube cannot have more than 100 dimensions.
2024-11-25 19:08:06.761 CET [561315][client backend] [pg_regress/cube][72/95:0] STATEMENT: select cube(array(SELECT 0 as a FROM generate_series(1,101)));
2024-11-25 19:08:06.761 CET [561315][client backend] [pg_regress/cube][72/96:0] ERROR: can't extend cube
2024-11-25 19:08:06.761 CET [561315][client backend] [pg_regress/cube][72/96:0] DETAIL: A cube cannot have more than 100 dimensions.
2024-11-25 19:08:06.761 CET [561315][client backend] [pg_regress/cube][72/96:0] STATEMENT: select cube(array(SELECT 0 as a FROM generate_series(1,101)),array(SELECT 0 as a FROM generate_series(1,101)));
2024-11-25 19:08:06.762 CET [561315][client backend] [pg_regress/cube][72/99:0] ERROR: can't extend cube
2024-11-25 19:08:06.762 CET [561315][client backend] [pg_regress/cube][72/99:0] DETAIL: A cube cannot have more than 100 dimensions.
2024-11-25 19:08:06.762 CET [561315][client backend] [pg_regress/cube][72/99:0] STATEMENT: select cube(cube(array(SELECT 0 as a FROM generate_series(1,100))), 0);
2024-11-25 19:08:06.762 CET [561357][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.762 CET [561315][client backend] [pg_regress/cube][72/100:0] ERROR: can't extend cube
2024-11-25 19:08:06.762 CET [561315][client backend] [pg_regress/cube][72/100:0] DETAIL: A cube cannot have more than 100 dimensions.
2024-11-25 19:08:06.762 CET [561315][client backend] [pg_regress/cube][72/100:0] STATEMENT: select cube(cube(array(SELECT 0 as a FROM generate_series(1,100)),array(SELECT 0 as a FROM generate_series(1,100))), 0, 0);
2024-11-25 19:08:06.762 CET [561357][client backend] [[unknown]][87/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.762 CET [561357][client backend] [[unknown]][87/1:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/read-write-unique-3
2024-11-25 19:08:06.763 CET [561358][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.764 CET [561358][client backend] [[unknown]][88/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.764 CET [561358][client backend] [[unknown]][88/1:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/char
2024-11-25 19:08:06.766 CET [561339][client backend] [pg_regress/timestamptz][:0] LOG: disconnection: session time: 0:00:00.022 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:06.768 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/29:526198] ERROR: invalid transaction termination
2024-11-25 19:08:06.768 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/29:526198] CONTEXT: PL/pgSQL function transaction_test1(integer,text) line 6 at COMMIT
2024-11-25 19:08:06.768 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/29:526198] STATEMENT: CALL transaction_test1(9, 'error');
2024-11-25 19:08:06.769 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/30:0] ERROR: invalid transaction termination
2024-11-25 19:08:06.769 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/30:0] CONTEXT: PL/pgSQL function inline_code_block line 1 at COMMIT
2024-11-25 19:08:06.769 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/30:0] STATEMENT: DO LANGUAGE plpgsql $$ BEGIN COMMIT; END $$;
2024-11-25 19:08:06.770 CET [561362][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.770 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/33:526202] ERROR: invalid transaction termination
2024-11-25 19:08:06.770 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/33:526202] CONTEXT: PL/pgSQL function transaction_test2() line 6 at COMMIT
2024-11-25 19:08:06.770 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/33:526202] STATEMENT: SELECT transaction_test2();
2024-11-25 19:08:06.771 CET [561358][client backend] [pg_regress/char][:0] LOG: disconnection: session time: 0:00:00.007 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:06.771 CET [561362][client backend] [[unknown]][89/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.771 CET [561362][client backend] [[unknown]][89/1:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/time
2024-11-25 19:08:06.771 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/36:526205] ERROR: invalid transaction termination
2024-11-25 19:08:06.771 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/36:526205] CONTEXT: PL/pgSQL function transaction_test1(integer,text) line 6 at COMMIT
SQL statement "CALL transaction_test1(9, 'error')"
PL/pgSQL function transaction_test3() line 3 at CALL
2024-11-25 19:08:06.771 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/36:526205] STATEMENT: SELECT transaction_test3();
2024-11-25 19:08:06.772 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/39:0] ERROR: invalid transaction termination
2024-11-25 19:08:06.772 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/39:0] CONTEXT: PL/pgSQL function inline_code_block line 1 at COMMIT
SQL statement "DO LANGUAGE plpgsql $x$ BEGIN COMMIT; END $x$"
PL/pgSQL function transaction_test4() line 3 at EXECUTE
2024-11-25 19:08:06.772 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/39:0] STATEMENT: SELECT transaction_test4();
2024-11-25 19:08:06.772 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/41:0] ERROR: invalid transaction termination
2024-11-25 19:08:06.772 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/41:0] CONTEXT: PL/pgSQL function transaction_test5() line 3 at COMMIT
2024-11-25 19:08:06.772 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/41:0] STATEMENT: CALL transaction_test5();
2024-11-25 19:08:06.773 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/43:0] ERROR: invalid transaction termination
2024-11-25 19:08:06.773 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/43:0] CONTEXT: PL/pgSQL function transaction_test5b() line 3 at COMMIT
2024-11-25 19:08:06.773 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/43:0] STATEMENT: CALL transaction_test5b();
2024-11-25 19:08:06.774 CET [561366][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.775 CET [561366][client backend] [[unknown]][90/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.775 CET [561366][client backend] [[unknown]][90/1:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/bytea
2024-11-25 19:08:06.777 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/73:526240] ERROR: invalid transaction termination
2024-11-25 19:08:06.777 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/73:526240] CONTEXT: PL/pgSQL function transaction_test1(integer,text) line 6 at COMMIT
SQL statement "CALL transaction_test1(10, $x$baz$x$)"
PL/pgSQL function transaction_test8() line 3 at EXECUTE
2024-11-25 19:08:06.777 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/73:526240] STATEMENT: CALL transaction_test8();
2024-11-25 19:08:06.781 CET [561357][client backend] [isolation/read-write-unique-3/s2][87/3:526203] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:06.781 CET [561357][client backend] [isolation/read-write-unique-3/s2][87/3:526203] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:06.781 CET [561357][client backend] [isolation/read-write-unique-3/s2][87/3:526203] HINT: The transaction might succeed if retried.
2024-11-25 19:08:06.781 CET [561357][client backend] [isolation/read-write-unique-3/s2][87/3:526203] CONTEXT: SQL function "insert_unique" statement 1
2024-11-25 19:08:06.781 CET [561357][client backend] [isolation/read-write-unique-3/s2][87/3:526203] STATEMENT: SELECT insert_unique(1, '2');
2024-11-25 19:08:06.782 CET [561366][client backend] [pg_regress/bytea][:0] LOG: disconnection: session time: 0:00:00.007 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:06.783 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/88:0] ERROR: division by zero
2024-11-25 19:08:06.783 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/88:0] CONTEXT: SQL statement "INSERT INTO test1 (a) VALUES (12/(r.x-2))"
PL/pgSQL function inline_code_block line 6 at SQL statement
2024-11-25 19:08:06.783 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/88:0] STATEMENT: DO LANGUAGE plpgsql $$
DECLARE
r RECORD;
BEGIN
FOR r IN SELECT * FROM test2 ORDER BY x LOOP
INSERT INTO test1 (a) VALUES (12/(r.x-2));
COMMIT;
END LOOP;
END;
$$;
2024-11-25 19:08:06.783 CET [561348][client backend] [isolation/read-write-unique-3/control connection][:0] LOG: disconnection: session time: 0:00:00.027 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:06.783 CET [561352][client backend] [isolation/read-write-unique-3/s1][:0] LOG: disconnection: session time: 0:00:00.024 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:06.783 CET [561357][client backend] [isolation/read-write-unique-3/s2][:0] LOG: disconnection: session time: 0:00:00.021 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:06.784 CET [561362][client backend] [pg_regress/time][:0] LOG: disconnection: session time: 0:00:00.014 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:06.786 CET [561375][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.786 CET [561375][client backend] [[unknown]][91/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.786 CET [561375][client backend] [[unknown]][91/1:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/bit
2024-11-25 19:08:06.789 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/111:0] ERROR: cannot perform transaction commands inside a cursor loop that is not read-only
2024-11-25 19:08:06.789 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/111:0] CONTEXT: PL/pgSQL function inline_code_block line 7 at ROLLBACK
2024-11-25 19:08:06.789 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/111:0] STATEMENT: DO LANGUAGE plpgsql $$
DECLARE
r RECORD;
BEGIN
FOR r IN UPDATE test2 SET x = x * 2 RETURNING x LOOP
INSERT INTO test1 (a) VALUES (r.x);
ROLLBACK;
END LOOP;
END;
$$;
2024-11-25 19:08:06.790 CET [561378][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.790 CET [561315][client backend] [pg_regress/cube][72/245:0] ERROR: cube index 0 is out of bounds
2024-11-25 19:08:06.790 CET [561315][client backend] [pg_regress/cube][72/245:0] STATEMENT: SELECT cube(array[10,20,30], array[40,50,60])->0;
2024-11-25 19:08:06.790 CET [561315][client backend] [pg_regress/cube][72/246:0] ERROR: cube index 7 is out of bounds
2024-11-25 19:08:06.790 CET [561315][client backend] [pg_regress/cube][72/246:0] STATEMENT: SELECT cube(array[10,20,30], array[40,50,60])->7;
2024-11-25 19:08:06.790 CET [561315][client backend] [pg_regress/cube][72/247:0] ERROR: cube index -1 is out of bounds
2024-11-25 19:08:06.790 CET [561315][client backend] [pg_regress/cube][72/247:0] STATEMENT: SELECT cube(array[10,20,30], array[40,50,60])->-1;
2024-11-25 19:08:06.790 CET [561377][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.790 CET [561315][client backend] [pg_regress/cube][72/248:0] ERROR: cube index -6 is out of bounds
2024-11-25 19:08:06.790 CET [561315][client backend] [pg_regress/cube][72/248:0] STATEMENT: SELECT cube(array[10,20,30], array[40,50,60])->-6;
2024-11-25 19:08:06.790 CET [561378][client backend] [[unknown]][92/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.790 CET [561378][client backend] [[unknown]][92/1:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/read-write-unique-4
2024-11-25 19:08:06.791 CET [561315][client backend] [pg_regress/cube][72/251:0] ERROR: cube index -6 is out of bounds
2024-11-25 19:08:06.791 CET [561315][client backend] [pg_regress/cube][72/251:0] STATEMENT: SELECT cube(array[10,20,30])->-6;
2024-11-25 19:08:06.792 CET [561315][client backend] [pg_regress/cube][72/258:0] ERROR: zero cube index is not defined
2024-11-25 19:08:06.792 CET [561315][client backend] [pg_regress/cube][72/258:0] STATEMENT: SELECT cube(array[40,50,60], array[10,20,30])~>0;
2024-11-25 19:08:06.793 CET [561377][client backend] [[unknown]][93/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.793 CET [561377][client backend] [[unknown]][93/1:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/timetz
2024-11-25 19:08:06.793 CET [561375][client backend] [pg_regress/bit][:0] LOG: disconnection: session time: 0:00:00.007 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:06.794 CET [561380][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.794 CET [561380][client backend] [[unknown]][94/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.794 CET [561380][client backend] [[unknown]][94/1:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/read-write-unique-4
2024-11-25 19:08:06.796 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/132:526288] ERROR: cannot commit while a subtransaction is active
2024-11-25 19:08:06.796 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/132:526288] CONTEXT: PL/pgSQL function inline_code_block line 5 at COMMIT
2024-11-25 19:08:06.796 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/132:526288] STATEMENT: DO LANGUAGE plpgsql $$
BEGIN
BEGIN
INSERT INTO test1 (a) VALUES (1);
COMMIT;
INSERT INTO test1 (a) VALUES (1/0);
COMMIT;
EXCEPTION
WHEN division_by_zero THEN
RAISE NOTICE 'caught division_by_zero';
END;
END;
$$;
2024-11-25 19:08:06.797 CET [561384][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.798 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/135:526293] ERROR: cannot roll back while a subtransaction is active
2024-11-25 19:08:06.798 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/135:526293] CONTEXT: PL/pgSQL function inline_code_block line 5 at ROLLBACK
2024-11-25 19:08:06.798 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/135:526293] STATEMENT: DO LANGUAGE plpgsql $$
BEGIN
BEGIN
INSERT INTO test1 (a) VALUES (1);
ROLLBACK;
INSERT INTO test1 (a) VALUES (1/0);
ROLLBACK;
EXCEPTION
WHEN division_by_zero THEN
RAISE NOTICE 'caught division_by_zero';
END;
END;
$$;
2024-11-25 19:08:06.798 CET [561384][client backend] [[unknown]][95/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.798 CET [561383][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.798 CET [561384][client backend] [[unknown]][95/1:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/varbit
2024-11-25 19:08:06.798 CET [561383][client backend] [[unknown]][96/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.798 CET [561383][client backend] [[unknown]][96/1:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/read-write-unique-4
2024-11-25 19:08:06.801 CET [561222][client backend] [pg_regress/citext][:0] LOG: disconnection: session time: 0:00:00.199 user=nkey database=regression_citext host=[local]
2024-11-25 19:08:06.803 CET [561388][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.804 CET [561388][client backend] [[unknown]][97/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.804 CET [561388][client backend] [[unknown]][97/1:0] LOG: connection authorized: user=nkey database=regression_citext application_name=pg_regress/citext_utf8
2024-11-25 19:08:06.806 CET [561384][client backend] [pg_regress/varbit][:0] LOG: disconnection: session time: 0:00:00.008 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:06.807 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/168:0] ERROR: duplicate key value violates unique constraint "test3_y_key"
2024-11-25 19:08:06.807 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/168:0] DETAIL: Key (y)=(1) already exists.
2024-11-25 19:08:06.807 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/168:0] CONTEXT: PL/pgSQL function inline_code_block line 9 at COMMIT
2024-11-25 19:08:06.807 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/168:0] STATEMENT: DO LANGUAGE plpgsql $$
BEGIN
CREATE TABLE test3 (y int UNIQUE DEFERRABLE INITIALLY DEFERRED);
COMMIT;
INSERT INTO test3 (y) VALUES (1);
COMMIT;
INSERT INTO test3 (y) VALUES (1);
INSERT INTO test3 (y) VALUES (2);
COMMIT;
INSERT INTO test3 (y) VALUES (3); -- won't get here
END;
$$;
2024-11-25 19:08:06.810 CET [561392][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.810 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/173:0] ERROR: division by zero
2024-11-25 19:08:06.810 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/173:0] CONTEXT: PL/pgSQL function cursor_fail_during_commit() line 6 at COMMIT
2024-11-25 19:08:06.810 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/173:0] STATEMENT: CALL cursor_fail_during_commit();
2024-11-25 19:08:06.811 CET [561392][client backend] [[unknown]][98/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.811 CET [561392][client backend] [[unknown]][98/1:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/numeric
2024-11-25 19:08:06.813 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/178:0] ERROR: division by zero
2024-11-25 19:08:06.813 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/178:0] CONTEXT: PL/pgSQL function cursor_fail_during_rollback() line 6 at ROLLBACK
2024-11-25 19:08:06.813 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/178:0] STATEMENT: CALL cursor_fail_during_rollback();
2024-11-25 19:08:06.813 CET [561388][client backend] [pg_regress/citext_utf8][:0] LOG: disconnection: session time: 0:00:00.010 user=nkey database=regression_citext host=[local]
2024-11-25 19:08:06.814 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/184:0] ERROR: SET TRANSACTION ISOLATION LEVEL must be called before any query
2024-11-25 19:08:06.814 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/184:0] CONTEXT: SQL statement "SET TRANSACTION ISOLATION LEVEL REPEATABLE READ"
PL/pgSQL function inline_code_block line 3 at SQL statement
2024-11-25 19:08:06.814 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/184:0] STATEMENT: DO LANGUAGE plpgsql $$
BEGIN
SET TRANSACTION ISOLATION LEVEL REPEATABLE READ;
END;
$$;
2024-11-25 19:08:06.814 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/185:0] ERROR: unsupported transaction command in PL/pgSQL
2024-11-25 19:08:06.814 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/185:0] CONTEXT: PL/pgSQL function inline_code_block line 3 at SQL statement
2024-11-25 19:08:06.814 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/185:0] STATEMENT: DO LANGUAGE plpgsql $$
BEGIN
SAVEPOINT foo;
END;
$$;
2024-11-25 19:08:06.814 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/186:0] ERROR: EXECUTE of transaction commands is not implemented
2024-11-25 19:08:06.814 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/186:0] CONTEXT: PL/pgSQL function inline_code_block line 3 at EXECUTE
2024-11-25 19:08:06.814 CET [561353][client backend] [pg_regress/plpgsql_transaction][86/186:0] STATEMENT: DO LANGUAGE plpgsql $$
BEGIN
EXECUTE 'COMMIT';
END;
$$;
2024-11-25 19:08:06.816 CET [561377][client backend] [pg_regress/timetz][:0] LOG: disconnection: session time: 0:00:00.027 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:06.817 CET [561383][client backend] [isolation/read-write-unique-4/s2][96/3:526354] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:06.817 CET [561383][client backend] [isolation/read-write-unique-4/s2][96/3:526354] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:06.817 CET [561383][client backend] [isolation/read-write-unique-4/s2][96/3:526354] HINT: The transaction might succeed if retried.
2024-11-25 19:08:06.817 CET [561383][client backend] [isolation/read-write-unique-4/s2][96/3:526354] STATEMENT: INSERT INTO invoice VALUES (2016, 3);
2024-11-25 19:08:06.817 CET [561392][client backend] [pg_regress/numeric][:0] LOG: disconnection: session time: 0:00:00.007 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:06.823 CET [561402][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.824 CET [561403][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.824 CET [561402][client backend] [[unknown]][99/1:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.824 CET [561402][client backend] [[unknown]][99/1:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/date
2024-11-25 19:08:06.824 CET [561403][client backend] [[unknown]][1/4:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.824 CET [561403][client backend] [[unknown]][1/4:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/enum
2024-11-25 19:08:06.829 CET [561353][client backend] [pg_regress/plpgsql_transaction][:0] LOG: disconnection: session time: 0:00:00.069 user=nkey database=regression_plpgsql host=[local]
2024-11-25 19:08:06.834 CET [561407][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.834 CET [561407][client backend] [[unknown]][0/4:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.834 CET [561407][client backend] [[unknown]][0/4:0] LOG: connection authorized: user=nkey database=regression_plpgsql application_name=pg_regress/plpgsql_trap
2024-11-25 19:08:06.838 CET [561407][client backend] [pg_regress/plpgsql_trap][0/9:0] ERROR: -100 is less than zero
2024-11-25 19:08:06.838 CET [561407][client backend] [pg_regress/plpgsql_trap][0/9:0] CONTEXT: PL/pgSQL function trap_zero_divide(integer) line 12 at RAISE
2024-11-25 19:08:06.838 CET [561407][client backend] [pg_regress/plpgsql_trap][0/9:0] STATEMENT: select trap_zero_divide(-100);
2024-11-25 19:08:06.839 CET [561383][client backend] [isolation/read-write-unique-4/s2][96/4:526398] ERROR: duplicate key value violates unique constraint "invoice_pkey"
2024-11-25 19:08:06.839 CET [561383][client backend] [isolation/read-write-unique-4/s2][96/4:526398] DETAIL: Key (year, invoice_number)=(2016, 3) already exists.
2024-11-25 19:08:06.839 CET [561383][client backend] [isolation/read-write-unique-4/s2][96/4:526398] STATEMENT: INSERT INTO invoice VALUES (2016, 3);
2024-11-25 19:08:06.845 CET [561402][client backend] [pg_regress/date][:0] LOG: disconnection: session time: 0:00:00.022 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:06.850 CET [561414][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.850 CET [561415][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.851 CET [561415][client backend] [[unknown]][6/4:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.851 CET [561414][client backend] [[unknown]][3/4:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.851 CET [561415][client backend] [[unknown]][6/4:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/interval
2024-11-25 19:08:06.851 CET [561414][client backend] [[unknown]][3/4:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:06.852 CET [561161][client backend] [pg_regress/test_setup][:0] LOG: disconnection: session time: 0:00:00.329 user=nkey database=regression host=[local]
2024-11-25 19:08:06.853 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:06.855 CET [561383][client backend] [isolation/read-write-unique-4/s2][96/5:526435] ERROR: duplicate key value violates unique constraint "invoice_pkey"
2024-11-25 19:08:06.855 CET [561383][client backend] [isolation/read-write-unique-4/s2][96/5:526435] DETAIL: Key (year, invoice_number)=(2016, 3) already exists.
2024-11-25 19:08:06.855 CET [561383][client backend] [isolation/read-write-unique-4/s2][96/5:526435] STATEMENT: INSERT INTO invoice VALUES (2016, 3);
2024-11-25 19:08:06.857 CET [561380][client backend] [isolation/read-write-unique-4/s1][:0] LOG: disconnection: session time: 0:00:00.063 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:06.858 CET [561438][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.858 CET [561383][client backend] [isolation/read-write-unique-4/s2][:0] LOG: disconnection: session time: 0:00:00.060 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:06.858 CET [561438][client backend] [[unknown]][5/4:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.858 CET [561438][client backend] [[unknown]][5/4:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/boolean
2024-11-25 19:08:06.859 CET [561441][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.859 CET [561444][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.859 CET [561443][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.859 CET [561445][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.859 CET [561441][client backend] [[unknown]][4/4:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.859 CET [561441][client backend] [[unknown]][4/4:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/text
2024-11-25 19:08:06.859 CET [561443][client backend] [[unknown]][9/4:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.859 CET [561443][client backend] [[unknown]][9/4:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/name
2024-11-25 19:08:06.859 CET [561378][client backend] [isolation/read-write-unique-4/control connection][:0] LOG: disconnection: session time: 0:00:00.069 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:06.859 CET [561448][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.860 CET [561444][client backend] [[unknown]][8/4:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.860 CET [561444][client backend] [[unknown]][8/4:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/int2
2024-11-25 19:08:06.860 CET [561448][client backend] [[unknown]][12/4:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.860 CET [561448][client backend] [[unknown]][12/4:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/float4
2024-11-25 19:08:06.860 CET [561440][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.860 CET [561445][client backend] [[unknown]][11/4:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.860 CET [561445][client backend] [[unknown]][11/4:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/txid
2024-11-25 19:08:06.861 CET [561438][client backend] [pg_regress/boolean][5/11:0] ERROR: invalid input syntax for type boolean: "test" at character 13
2024-11-25 19:08:06.861 CET [561438][client backend] [pg_regress/boolean][5/11:0] STATEMENT: SELECT bool 'test' AS error;
2024-11-25 19:08:06.861 CET [561440][client backend] [[unknown]][10/4:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.861 CET [561440][client backend] [[unknown]][10/4:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/char
2024-11-25 19:08:06.861 CET [561438][client backend] [pg_regress/boolean][5/13:0] ERROR: invalid input syntax for type boolean: "foo" at character 13
2024-11-25 19:08:06.861 CET [561438][client backend] [pg_regress/boolean][5/13:0] STATEMENT: SELECT bool 'foo' AS error;
2024-11-25 19:08:06.861 CET [561438][client backend] [pg_regress/boolean][5/16:0] ERROR: invalid input syntax for type boolean: "yeah" at character 13
2024-11-25 19:08:06.861 CET [561438][client backend] [pg_regress/boolean][5/16:0] STATEMENT: SELECT bool 'yeah' AS error;
2024-11-25 19:08:06.862 CET [561449][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.862 CET [561438][client backend] [pg_regress/boolean][5/19:0] ERROR: invalid input syntax for type boolean: "nay" at character 13
2024-11-25 19:08:06.862 CET [561438][client backend] [pg_regress/boolean][5/19:0] STATEMENT: SELECT bool 'nay' AS error;
2024-11-25 19:08:06.862 CET [561444][client backend] [pg_regress/int2][8/5:0] ERROR: invalid input syntax for type smallint: "34.5" at character 34
2024-11-25 19:08:06.862 CET [561444][client backend] [pg_regress/int2][8/5:0] STATEMENT: INSERT INTO INT2_TBL(f1) VALUES ('34.5');
2024-11-25 19:08:06.862 CET [561446][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.862 CET [561444][client backend] [pg_regress/int2][8/6:0] ERROR: value "100000" is out of range for type smallint at character 34
2024-11-25 19:08:06.862 CET [561444][client backend] [pg_regress/int2][8/6:0] STATEMENT: INSERT INTO INT2_TBL(f1) VALUES ('100000');
2024-11-25 19:08:06.862 CET [561444][client backend] [pg_regress/int2][8/7:0] ERROR: invalid input syntax for type smallint: "asdf" at character 34
2024-11-25 19:08:06.862 CET [561444][client backend] [pg_regress/int2][8/7:0] STATEMENT: INSERT INTO INT2_TBL(f1) VALUES ('asdf');
2024-11-25 19:08:06.862 CET [561438][client backend] [pg_regress/boolean][5/23:0] ERROR: invalid input syntax for type boolean: "o" at character 13
2024-11-25 19:08:06.862 CET [561438][client backend] [pg_regress/boolean][5/23:0] STATEMENT: SELECT bool 'o' AS error;
2024-11-25 19:08:06.862 CET [561444][client backend] [pg_regress/int2][8/8:0] ERROR: invalid input syntax for type smallint: " " at character 34
2024-11-25 19:08:06.862 CET [561444][client backend] [pg_regress/int2][8/8:0] STATEMENT: INSERT INTO INT2_TBL(f1) VALUES (' ');
2024-11-25 19:08:06.862 CET [561438][client backend] [pg_regress/boolean][5/24:0] ERROR: invalid input syntax for type boolean: "on_" at character 13
2024-11-25 19:08:06.862 CET [561438][client backend] [pg_regress/boolean][5/24:0] STATEMENT: SELECT bool 'on_' AS error;
2024-11-25 19:08:06.862 CET [561438][client backend] [pg_regress/boolean][5/25:0] ERROR: invalid input syntax for type boolean: "off_" at character 13
2024-11-25 19:08:06.862 CET [561438][client backend] [pg_regress/boolean][5/25:0] STATEMENT: SELECT bool 'off_' AS error;
2024-11-25 19:08:06.862 CET [561456][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.862 CET [561446][client backend] [[unknown]][18/3:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.862 CET [561446][client backend] [[unknown]][18/3:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/int4
2024-11-25 19:08:06.862 CET [561438][client backend] [pg_regress/boolean][5/27:0] ERROR: invalid input syntax for type boolean: "11" at character 13
2024-11-25 19:08:06.862 CET [561438][client backend] [pg_regress/boolean][5/27:0] STATEMENT: SELECT bool '11' AS error;
2024-11-25 19:08:06.863 CET [561439][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.863 CET [561452][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.863 CET [561438][client backend] [pg_regress/boolean][5/29:0] ERROR: invalid input syntax for type boolean: "000" at character 13
2024-11-25 19:08:06.863 CET [561438][client backend] [pg_regress/boolean][5/29:0] STATEMENT: SELECT bool '000' AS error;
2024-11-25 19:08:06.863 CET [561438][client backend] [pg_regress/boolean][5/30:0] ERROR: invalid input syntax for type boolean: "" at character 13
2024-11-25 19:08:06.863 CET [561438][client backend] [pg_regress/boolean][5/30:0] STATEMENT: SELECT bool '' AS error;
2024-11-25 19:08:06.863 CET [561456][client backend] [[unknown]][14/34:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.863 CET [561456][client backend] [[unknown]][14/34:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/regproc
2024-11-25 19:08:06.863 CET [561439][client backend] [[unknown]][2/4:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.863 CET [561439][client backend] [[unknown]][2/4:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/varchar
2024-11-25 19:08:06.863 CET [561452][client backend] [[unknown]][21/15:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.863 CET [561452][client backend] [[unknown]][21/15:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/int8
2024-11-25 19:08:06.864 CET [561441][client backend] [pg_regress/text][4/8:0] ERROR: function length(integer) does not exist at character 8
2024-11-25 19:08:06.864 CET [561441][client backend] [pg_regress/text][4/8:0] HINT: No function matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:06.864 CET [561441][client backend] [pg_regress/text][4/8:0] STATEMENT: select length(42);
2024-11-25 19:08:06.864 CET [561445][client backend] [pg_regress/txid][11/8:0] ERROR: invalid input syntax for type pg_snapshot: "31:12:" at character 8
2024-11-25 19:08:06.864 CET [561445][client backend] [pg_regress/txid][11/8:0] STATEMENT: select '31:12:'::txid_snapshot;
2024-11-25 19:08:06.864 CET [561445][client backend] [pg_regress/txid][11/9:0] ERROR: invalid input syntax for type pg_snapshot: "0:1:" at character 8
2024-11-25 19:08:06.864 CET [561445][client backend] [pg_regress/txid][11/9:0] STATEMENT: select '0:1:'::txid_snapshot;
2024-11-25 19:08:06.864 CET [561445][client backend] [pg_regress/txid][11/10:0] ERROR: invalid input syntax for type pg_snapshot: "12:13:0" at character 8
2024-11-25 19:08:06.864 CET [561445][client backend] [pg_regress/txid][11/10:0] STATEMENT: select '12:13:0'::txid_snapshot;
2024-11-25 19:08:06.864 CET [561445][client backend] [pg_regress/txid][11/11:0] ERROR: invalid input syntax for type pg_snapshot: "12:16:14,13" at character 8
2024-11-25 19:08:06.864 CET [561445][client backend] [pg_regress/txid][11/11:0] STATEMENT: select '12:16:14,13'::txid_snapshot;
2024-11-25 19:08:06.864 CET [561444][client backend] [pg_regress/int2][8/9:0] ERROR: invalid input syntax for type smallint: "- 1234" at character 34
2024-11-25 19:08:06.864 CET [561444][client backend] [pg_regress/int2][8/9:0] STATEMENT: INSERT INTO INT2_TBL(f1) VALUES ('- 1234');
2024-11-25 19:08:06.864 CET [561446][client backend] [pg_regress/int4][18/4:0] ERROR: invalid input syntax for type integer: "34.5" at character 34
2024-11-25 19:08:06.864 CET [561446][client backend] [pg_regress/int4][18/4:0] STATEMENT: INSERT INTO INT4_TBL(f1) VALUES ('34.5');
2024-11-25 19:08:06.864 CET [561441][client backend] [pg_regress/text][4/11:0] ERROR: operator does not exist: integer || numeric at character 10
2024-11-25 19:08:06.864 CET [561441][client backend] [pg_regress/text][4/11:0] HINT: No operator matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:06.864 CET [561441][client backend] [pg_regress/text][4/11:0] STATEMENT: select 3 || 4.0;
2024-11-25 19:08:06.865 CET [561444][client backend] [pg_regress/int2][8/10:0] ERROR: invalid input syntax for type smallint: "4 444" at character 34
2024-11-25 19:08:06.865 CET [561444][client backend] [pg_regress/int2][8/10:0] STATEMENT: INSERT INTO INT2_TBL(f1) VALUES ('4 444');
2024-11-25 19:08:06.865 CET [561444][client backend] [pg_regress/int2][8/11:0] ERROR: invalid input syntax for type smallint: "123 dt" at character 34
2024-11-25 19:08:06.865 CET [561444][client backend] [pg_regress/int2][8/11:0] STATEMENT: INSERT INTO INT2_TBL(f1) VALUES ('123 dt');
2024-11-25 19:08:06.865 CET [561457][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.865 CET [561447][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.865 CET [561444][client backend] [pg_regress/int2][8/12:0] ERROR: invalid input syntax for type smallint: "" at character 34
2024-11-25 19:08:06.865 CET [561444][client backend] [pg_regress/int2][8/12:0] STATEMENT: INSERT INTO INT2_TBL(f1) VALUES ('');
2024-11-25 19:08:06.865 CET [561449][client backend] [[unknown]][13/4:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.865 CET [561449][client backend] [[unknown]][13/4:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/oid
2024-11-25 19:08:06.865 CET [561457][client backend] [[unknown]][16/4:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.865 CET [561457][client backend] [[unknown]][16/4:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/numeric
2024-11-25 19:08:06.865 CET [561438][client backend] [pg_regress/boolean][5/46:0] ERROR: invalid input syntax for type boolean: " tru e "
2024-11-25 19:08:06.865 CET [561438][client backend] [pg_regress/boolean][5/46:0] STATEMENT: SELECT ' tru e '::text::boolean AS invalid;
2024-11-25 19:08:06.865 CET [561438][client backend] [pg_regress/boolean][5/47:0] ERROR: invalid input syntax for type boolean: ""
2024-11-25 19:08:06.865 CET [561438][client backend] [pg_regress/boolean][5/47:0] STATEMENT: SELECT ''::text::boolean AS invalid;
2024-11-25 19:08:06.866 CET [561453][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.866 CET [561458][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.866 CET [561455][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.866 CET [561451][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.866 CET [561446][client backend] [pg_regress/int4][18/5:0] ERROR: value "1000000000000" is out of range for type integer at character 34
2024-11-25 19:08:06.866 CET [561446][client backend] [pg_regress/int4][18/5:0] STATEMENT: INSERT INTO INT4_TBL(f1) VALUES ('1000000000000');
2024-11-25 19:08:06.866 CET [561453][client backend] [[unknown]][7/4:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.866 CET [561453][client backend] [[unknown]][7/4:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/uuid
2024-11-25 19:08:06.867 CET [561458][client backend] [[unknown]][22/4:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.867 CET [561458][client backend] [[unknown]][22/4:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/money
2024-11-25 19:08:06.867 CET [561447][client backend] [[unknown]][25/4:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.867 CET [561459][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.867 CET [561447][client backend] [[unknown]][25/4:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/bit
2024-11-25 19:08:06.867 CET [561448][client backend] [pg_regress/float4][12/11:0] ERROR: "10e70" is out of range for type real at character 36
2024-11-25 19:08:06.867 CET [561448][client backend] [pg_regress/float4][12/11:0] STATEMENT: INSERT INTO FLOAT4_TBL(f1) VALUES ('10e70');
2024-11-25 19:08:06.867 CET [561448][client backend] [pg_regress/float4][12/12:0] ERROR: "-10e70" is out of range for type real at character 36
2024-11-25 19:08:06.867 CET [561448][client backend] [pg_regress/float4][12/12:0] STATEMENT: INSERT INTO FLOAT4_TBL(f1) VALUES ('-10e70');
2024-11-25 19:08:06.867 CET [561448][client backend] [pg_regress/float4][12/13:0] ERROR: "10e-70" is out of range for type real at character 36
2024-11-25 19:08:06.867 CET [561448][client backend] [pg_regress/float4][12/13:0] STATEMENT: INSERT INTO FLOAT4_TBL(f1) VALUES ('10e-70');
2024-11-25 19:08:06.867 CET [561448][client backend] [pg_regress/float4][12/14:0] ERROR: "-10e-70" is out of range for type real at character 36
2024-11-25 19:08:06.867 CET [561448][client backend] [pg_regress/float4][12/14:0] STATEMENT: INSERT INTO FLOAT4_TBL(f1) VALUES ('-10e-70');
2024-11-25 19:08:06.867 CET [561446][client backend] [pg_regress/int4][18/6:0] ERROR: invalid input syntax for type integer: "asdf" at character 34
2024-11-25 19:08:06.867 CET [561446][client backend] [pg_regress/int4][18/6:0] STATEMENT: INSERT INTO INT4_TBL(f1) VALUES ('asdf');
2024-11-25 19:08:06.867 CET [561446][client backend] [pg_regress/int4][18/7:0] ERROR: invalid input syntax for type integer: " " at character 34
2024-11-25 19:08:06.867 CET [561446][client backend] [pg_regress/int4][18/7:0] STATEMENT: INSERT INTO INT4_TBL(f1) VALUES (' ');
2024-11-25 19:08:06.867 CET [561448][client backend] [pg_regress/float4][12/15:0] ERROR: value out of range: overflow
2024-11-25 19:08:06.867 CET [561448][client backend] [pg_regress/float4][12/15:0] STATEMENT: INSERT INTO FLOAT4_TBL(f1) VALUES ('10e70'::float8);
2024-11-25 19:08:06.867 CET [561448][client backend] [pg_regress/float4][12/16:0] ERROR: value out of range: overflow
2024-11-25 19:08:06.867 CET [561448][client backend] [pg_regress/float4][12/16:0] STATEMENT: INSERT INTO FLOAT4_TBL(f1) VALUES ('-10e70'::float8);
2024-11-25 19:08:06.867 CET [561446][client backend] [pg_regress/int4][18/8:0] ERROR: invalid input syntax for type integer: " asdf " at character 34
2024-11-25 19:08:06.867 CET [561446][client backend] [pg_regress/int4][18/8:0] STATEMENT: INSERT INTO INT4_TBL(f1) VALUES (' asdf ');
2024-11-25 19:08:06.867 CET [561448][client backend] [pg_regress/float4][12/17:0] ERROR: value out of range: underflow
2024-11-25 19:08:06.867 CET [561448][client backend] [pg_regress/float4][12/17:0] STATEMENT: INSERT INTO FLOAT4_TBL(f1) VALUES ('10e-70'::float8);
2024-11-25 19:08:06.867 CET [561446][client backend] [pg_regress/int4][18/9:0] ERROR: invalid input syntax for type integer: "- 1234" at character 34
2024-11-25 19:08:06.867 CET [561446][client backend] [pg_regress/int4][18/9:0] STATEMENT: INSERT INTO INT4_TBL(f1) VALUES ('- 1234');
2024-11-25 19:08:06.867 CET [561455][client backend] [[unknown]][24/11:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.867 CET [561454][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.867 CET [561455][client backend] [[unknown]][24/11:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/rangetypes
2024-11-25 19:08:06.867 CET [561448][client backend] [pg_regress/float4][12/18:0] ERROR: value out of range: underflow
2024-11-25 19:08:06.867 CET [561448][client backend] [pg_regress/float4][12/18:0] STATEMENT: INSERT INTO FLOAT4_TBL(f1) VALUES ('-10e-70'::float8);
2024-11-25 19:08:06.868 CET [561446][client backend] [pg_regress/int4][18/10:0] ERROR: invalid input syntax for type integer: "123 5" at character 34
2024-11-25 19:08:06.868 CET [561446][client backend] [pg_regress/int4][18/10:0] STATEMENT: INSERT INTO INT4_TBL(f1) VALUES ('123 5');
2024-11-25 19:08:06.868 CET [561448][client backend] [pg_regress/float4][12/19:0] ERROR: "10e400" is out of range for type real at character 36
2024-11-25 19:08:06.868 CET [561448][client backend] [pg_regress/float4][12/19:0] STATEMENT: INSERT INTO FLOAT4_TBL(f1) VALUES ('10e400');
2024-11-25 19:08:06.868 CET [561446][client backend] [pg_regress/int4][18/11:0] ERROR: invalid input syntax for type integer: "" at character 34
2024-11-25 19:08:06.868 CET [561446][client backend] [pg_regress/int4][18/11:0] STATEMENT: INSERT INTO INT4_TBL(f1) VALUES ('');
2024-11-25 19:08:06.868 CET [561448][client backend] [pg_regress/float4][12/20:0] ERROR: "-10e400" is out of range for type real at character 36
2024-11-25 19:08:06.868 CET [561448][client backend] [pg_regress/float4][12/20:0] STATEMENT: INSERT INTO FLOAT4_TBL(f1) VALUES ('-10e400');
2024-11-25 19:08:06.868 CET [561448][client backend] [pg_regress/float4][12/21:0] ERROR: "10e-400" is out of range for type real at character 36
2024-11-25 19:08:06.868 CET [561448][client backend] [pg_regress/float4][12/21:0] STATEMENT: INSERT INTO FLOAT4_TBL(f1) VALUES ('10e-400');
2024-11-25 19:08:06.868 CET [561448][client backend] [pg_regress/float4][12/22:0] ERROR: "-10e-400" is out of range for type real at character 36
2024-11-25 19:08:06.868 CET [561448][client backend] [pg_regress/float4][12/22:0] STATEMENT: INSERT INTO FLOAT4_TBL(f1) VALUES ('-10e-400');
2024-11-25 19:08:06.868 CET [561448][client backend] [pg_regress/float4][12/23:0] ERROR: invalid input syntax for type real: "" at character 36
2024-11-25 19:08:06.868 CET [561448][client backend] [pg_regress/float4][12/23:0] STATEMENT: INSERT INTO FLOAT4_TBL(f1) VALUES ('');
2024-11-25 19:08:06.868 CET [561454][client backend] [[unknown]][23/89:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.868 CET [561454][client backend] [[unknown]][23/89:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/float8
2024-11-25 19:08:06.868 CET [561448][client backend] [pg_regress/float4][12/24:0] ERROR: invalid input syntax for type real: " " at character 36
2024-11-25 19:08:06.868 CET [561448][client backend] [pg_regress/float4][12/24:0] STATEMENT: INSERT INTO FLOAT4_TBL(f1) VALUES (' ');
2024-11-25 19:08:06.868 CET [561444][client backend] [pg_regress/int2][8/21:0] ERROR: table "f" has 1 columns available but 2 columns specified
2024-11-25 19:08:06.868 CET [561444][client backend] [pg_regress/int2][8/21:0] STATEMENT: SELECT * FROM INT2_TBL AS f(a, b);
2024-11-25 19:08:06.868 CET [561444][client backend] [pg_regress/int2][8/22:0] ERROR: table "s" has 1 columns available but 2 columns specified
2024-11-25 19:08:06.868 CET [561444][client backend] [pg_regress/int2][8/22:0] STATEMENT: SELECT * FROM (TABLE int2_tbl) AS s (a, b);
2024-11-25 19:08:06.868 CET [561448][client backend] [pg_regress/float4][12/25:0] ERROR: invalid input syntax for type real: "xyz" at character 36
2024-11-25 19:08:06.868 CET [561448][client backend] [pg_regress/float4][12/25:0] STATEMENT: INSERT INTO FLOAT4_TBL(f1) VALUES ('xyz');
2024-11-25 19:08:06.868 CET [561448][client backend] [pg_regress/float4][12/26:0] ERROR: invalid input syntax for type real: "5.0.0" at character 36
2024-11-25 19:08:06.868 CET [561448][client backend] [pg_regress/float4][12/26:0] STATEMENT: INSERT INTO FLOAT4_TBL(f1) VALUES ('5.0.0');
2024-11-25 19:08:06.869 CET [561448][client backend] [pg_regress/float4][12/27:0] ERROR: invalid input syntax for type real: "5 . 0" at character 36
2024-11-25 19:08:06.869 CET [561448][client backend] [pg_regress/float4][12/27:0] STATEMENT: INSERT INTO FLOAT4_TBL(f1) VALUES ('5 . 0');
2024-11-25 19:08:06.869 CET [561448][client backend] [pg_regress/float4][12/28:0] ERROR: invalid input syntax for type real: "5. 0" at character 36
2024-11-25 19:08:06.869 CET [561448][client backend] [pg_regress/float4][12/28:0] STATEMENT: INSERT INTO FLOAT4_TBL(f1) VALUES ('5. 0');
2024-11-25 19:08:06.869 CET [561448][client backend] [pg_regress/float4][12/29:0] ERROR: invalid input syntax for type real: " - 3.0" at character 36
2024-11-25 19:08:06.869 CET [561448][client backend] [pg_regress/float4][12/29:0] STATEMENT: INSERT INTO FLOAT4_TBL(f1) VALUES (' - 3.0');
2024-11-25 19:08:06.869 CET [561448][client backend] [pg_regress/float4][12/30:0] ERROR: invalid input syntax for type real: "123 5" at character 36
2024-11-25 19:08:06.869 CET [561448][client backend] [pg_regress/float4][12/30:0] STATEMENT: INSERT INTO FLOAT4_TBL(f1) VALUES ('123 5');
2024-11-25 19:08:06.869 CET [561459][client backend] [[unknown]][17/4:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.869 CET [561459][client backend] [[unknown]][17/4:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/pg_lsn
2024-11-25 19:08:06.870 CET [561441][client backend] [pg_regress/text][4/29:0] ERROR: VARIADIC argument must be an array at character 32
2024-11-25 19:08:06.870 CET [561441][client backend] [pg_regress/text][4/29:0] STATEMENT: select concat_ws(',', variadic 10);
2024-11-25 19:08:06.871 CET [561452][client backend] [pg_regress/int8][21/16:0] ERROR: invalid input syntax for type bigint: " " at character 34
2024-11-25 19:08:06.871 CET [561452][client backend] [pg_regress/int8][21/16:0] STATEMENT: INSERT INTO INT8_TBL(q1) VALUES (' ');
2024-11-25 19:08:06.871 CET [561441][client backend] [pg_regress/text][4/35:0] ERROR: too few arguments for format()
2024-11-25 19:08:06.871 CET [561441][client backend] [pg_regress/text][4/35:0] STATEMENT: select format('Hello %s %s', 'World');
2024-11-25 19:08:06.871 CET [561441][client backend] [pg_regress/text][4/36:0] ERROR: too few arguments for format()
2024-11-25 19:08:06.871 CET [561441][client backend] [pg_regress/text][4/36:0] STATEMENT: select format('Hello %s');
2024-11-25 19:08:06.871 CET [561441][client backend] [pg_regress/text][4/37:0] ERROR: unrecognized format() type specifier "x"
2024-11-25 19:08:06.871 CET [561441][client backend] [pg_regress/text][4/37:0] HINT: For a single "%" use "%%".
2024-11-25 19:08:06.871 CET [561441][client backend] [pg_regress/text][4/37:0] STATEMENT: select format('Hello %x', 20);
2024-11-25 19:08:06.872 CET [561452][client backend] [pg_regress/int8][21/17:0] ERROR: invalid input syntax for type bigint: "xxx" at character 34
2024-11-25 19:08:06.872 CET [561452][client backend] [pg_regress/int8][21/17:0] STATEMENT: INSERT INTO INT8_TBL(q1) VALUES ('xxx');
2024-11-25 19:08:06.872 CET [561415][client backend] [pg_regress/interval][:0] LOG: disconnection: session time: 0:00:00.021 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:06.872 CET [561451][client backend] [[unknown]][27/11:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.872 CET [561451][client backend] [[unknown]][27/11:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/enum
2024-11-25 19:08:06.872 CET [561441][client backend] [pg_regress/text][4/42:0] ERROR: null values cannot be formatted as an SQL identifier
2024-11-25 19:08:06.872 CET [561441][client backend] [pg_regress/text][4/42:0] STATEMENT: select format('INSERT INTO %I VALUES(%L,%L)', NULL, 10, 'Hello');
2024-11-25 19:08:06.872 CET [561448][client backend] [pg_regress/float4][12/40:0] ERROR: invalid input syntax for type real: "N A N" at character 8
2024-11-25 19:08:06.872 CET [561448][client backend] [pg_regress/float4][12/40:0] STATEMENT: SELECT 'N A N'::float4;
2024-11-25 19:08:06.872 CET [561448][client backend] [pg_regress/float4][12/41:0] ERROR: invalid input syntax for type real: "NaN x" at character 8
2024-11-25 19:08:06.872 CET [561448][client backend] [pg_regress/float4][12/41:0] STATEMENT: SELECT 'NaN x'::float4;
2024-11-25 19:08:06.872 CET [561441][client backend] [pg_regress/text][4/45:0] ERROR: too few arguments for format()
2024-11-25 19:08:06.872 CET [561441][client backend] [pg_regress/text][4/45:0] STATEMENT: select format('%1$s %4$s', 1, 2, 3);
2024-11-25 19:08:06.873 CET [561441][client backend] [pg_regress/text][4/46:0] ERROR: too few arguments for format()
2024-11-25 19:08:06.873 CET [561441][client backend] [pg_regress/text][4/46:0] STATEMENT: select format('%1$s %13$s', 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12);
2024-11-25 19:08:06.873 CET [561441][client backend] [pg_regress/text][4/47:0] ERROR: format specifies argument 0, but arguments are numbered from 1
2024-11-25 19:08:06.873 CET [561441][client backend] [pg_regress/text][4/47:0] STATEMENT: select format('%0$s', 'Hello');
2024-11-25 19:08:06.873 CET [561441][client backend] [pg_regress/text][4/48:0] ERROR: format specifies argument 0, but arguments are numbered from 1
2024-11-25 19:08:06.873 CET [561441][client backend] [pg_regress/text][4/48:0] STATEMENT: select format('%*0$s', 'Hello');
2024-11-25 19:08:06.873 CET [561441][client backend] [pg_regress/text][4/49:0] ERROR: unterminated format() type specifier
2024-11-25 19:08:06.873 CET [561441][client backend] [pg_regress/text][4/49:0] HINT: For a single "%" use "%%".
2024-11-25 19:08:06.873 CET [561441][client backend] [pg_regress/text][4/49:0] STATEMENT: select format('%1$', 1);
2024-11-25 19:08:06.873 CET [561448][client backend] [pg_regress/float4][12/42:0] ERROR: invalid input syntax for type real: " INFINITY x" at character 8
2024-11-25 19:08:06.873 CET [561448][client backend] [pg_regress/float4][12/42:0] STATEMENT: SELECT ' INFINITY x'::float4;
2024-11-25 19:08:06.873 CET [561441][client backend] [pg_regress/text][4/50:0] ERROR: unterminated format() type specifier
2024-11-25 19:08:06.873 CET [561441][client backend] [pg_regress/text][4/50:0] HINT: For a single "%" use "%%".
2024-11-25 19:08:06.873 CET [561441][client backend] [pg_regress/text][4/50:0] STATEMENT: select format('%1$1', 1);
2024-11-25 19:08:06.873 CET [561444][client backend] [pg_regress/int2][8/37:0] ERROR: smallint out of range
2024-11-25 19:08:06.873 CET [561444][client backend] [pg_regress/int2][8/37:0] STATEMENT: SELECT i.f1, i.f1 * int2 '2' AS x FROM INT2_TBL i;
2024-11-25 19:08:06.873 CET [561452][client backend] [pg_regress/int8][21/18:0] ERROR: value "3908203590239580293850293850329485" is out of range for type bigint at character 34
2024-11-25 19:08:06.873 CET [561452][client backend] [pg_regress/int8][21/18:0] STATEMENT: INSERT INTO INT8_TBL(q1) VALUES ('3908203590239580293850293850329485');
2024-11-25 19:08:06.874 CET [561444][client backend] [pg_regress/int2][8/40:0] ERROR: smallint out of range
2024-11-25 19:08:06.874 CET [561444][client backend] [pg_regress/int2][8/40:0] STATEMENT: SELECT i.f1, i.f1 + int2 '2' AS x FROM INT2_TBL i;
2024-11-25 19:08:06.874 CET [561446][client backend] [pg_regress/int4][18/31:0] ERROR: integer out of range
2024-11-25 19:08:06.874 CET [561446][client backend] [pg_regress/int4][18/31:0] STATEMENT: SELECT i.f1, i.f1 * int2 '2' AS x FROM INT4_TBL i;
2024-11-25 19:08:06.874 CET [561446][client backend] [pg_regress/int4][18/33:0] ERROR: integer out of range
2024-11-25 19:08:06.874 CET [561446][client backend] [pg_regress/int4][18/33:0] STATEMENT: SELECT i.f1, i.f1 * int4 '2' AS x FROM INT4_TBL i;
2024-11-25 19:08:06.874 CET [561444][client backend] [pg_regress/int2][8/43:0] ERROR: smallint out of range
2024-11-25 19:08:06.874 CET [561444][client backend] [pg_regress/int2][8/43:0] STATEMENT: SELECT i.f1, i.f1 - int2 '2' AS x FROM INT2_TBL i;
2024-11-25 19:08:06.874 CET [561446][client backend] [pg_regress/int4][18/35:0] ERROR: integer out of range
2024-11-25 19:08:06.874 CET [561446][client backend] [pg_regress/int4][18/35:0] STATEMENT: SELECT i.f1, i.f1 + int2 '2' AS x FROM INT4_TBL i;
2024-11-25 19:08:06.875 CET [561452][client backend] [pg_regress/int8][21/19:0] ERROR: value "-1204982019841029840928340329840934" is out of range for type bigint at character 34
2024-11-25 19:08:06.875 CET [561452][client backend] [pg_regress/int8][21/19:0] STATEMENT: INSERT INTO INT8_TBL(q1) VALUES ('-1204982019841029840928340329840934');
2024-11-25 19:08:06.875 CET [561452][client backend] [pg_regress/int8][21/20:0] ERROR: invalid input syntax for type bigint: "- 123" at character 34
2024-11-25 19:08:06.875 CET [561452][client backend] [pg_regress/int8][21/20:0] STATEMENT: INSERT INTO INT8_TBL(q1) VALUES ('- 123');
2024-11-25 19:08:06.875 CET [561446][client backend] [pg_regress/int4][18/37:0] ERROR: integer out of range
2024-11-25 19:08:06.875 CET [561446][client backend] [pg_regress/int4][18/37:0] STATEMENT: SELECT i.f1, i.f1 + int4 '2' AS x FROM INT4_TBL i;
2024-11-25 19:08:06.875 CET [561452][client backend] [pg_regress/int8][21/21:0] ERROR: invalid input syntax for type bigint: " 345 5" at character 34
2024-11-25 19:08:06.875 CET [561452][client backend] [pg_regress/int8][21/21:0] STATEMENT: INSERT INTO INT8_TBL(q1) VALUES (' 345 5');
2024-11-25 19:08:06.875 CET [561452][client backend] [pg_regress/int8][21/22:0] ERROR: invalid input syntax for type bigint: "" at character 34
2024-11-25 19:08:06.875 CET [561452][client backend] [pg_regress/int8][21/22:0] STATEMENT: INSERT INTO INT8_TBL(q1) VALUES ('');
2024-11-25 19:08:06.875 CET [561446][client backend] [pg_regress/int4][18/39:0] ERROR: integer out of range
2024-11-25 19:08:06.875 CET [561446][client backend] [pg_regress/int4][18/39:0] STATEMENT: SELECT i.f1, i.f1 - int2 '2' AS x FROM INT4_TBL i;
2024-11-25 19:08:06.875 CET [561445][client backend] [pg_regress/txid][11/27:0] ERROR: invalid input syntax for type pg_snapshot: "1:9223372036854775808:3" at character 22
2024-11-25 19:08:06.875 CET [561445][client backend] [pg_regress/txid][11/27:0] STATEMENT: SELECT txid_snapshot '1:9223372036854775808:3';
2024-11-25 19:08:06.875 CET [561446][client backend] [pg_regress/int4][18/41:0] ERROR: integer out of range
2024-11-25 19:08:06.875 CET [561446][client backend] [pg_regress/int4][18/41:0] STATEMENT: SELECT i.f1, i.f1 - int4 '2' AS x FROM INT4_TBL i;
2024-11-25 19:08:06.876 CET [561461][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.876 CET [561444][client backend] [pg_regress/int2][8/50:0] ERROR: smallint out of range
2024-11-25 19:08:06.876 CET [561444][client backend] [pg_regress/int2][8/50:0] STATEMENT: SELECT (-32768)::int2 * (-1)::int2;
2024-11-25 19:08:06.876 CET [561444][client backend] [pg_regress/int2][8/51:0] ERROR: smallint out of range
2024-11-25 19:08:06.876 CET [561444][client backend] [pg_regress/int2][8/51:0] STATEMENT: SELECT (-32768)::int2 / (-1)::int2;
2024-11-25 19:08:06.876 CET [561461][client backend] [[unknown]][28/11:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.876 CET [561461][client backend] [[unknown]][28/11:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/simple-write-skew
2024-11-25 19:08:06.876 CET [561459][client backend] [pg_regress/pg_lsn][17/8:0] ERROR: invalid input syntax for type pg_lsn: "G/0" at character 32
2024-11-25 19:08:06.876 CET [561459][client backend] [pg_regress/pg_lsn][17/8:0] STATEMENT: INSERT INTO PG_LSN_TBL VALUES ('G/0');
2024-11-25 19:08:06.876 CET [561459][client backend] [pg_regress/pg_lsn][17/9:0] ERROR: invalid input syntax for type pg_lsn: "-1/0" at character 32
2024-11-25 19:08:06.876 CET [561459][client backend] [pg_regress/pg_lsn][17/9:0] STATEMENT: INSERT INTO PG_LSN_TBL VALUES ('-1/0');
2024-11-25 19:08:06.877 CET [561459][client backend] [pg_regress/pg_lsn][17/10:0] ERROR: invalid input syntax for type pg_lsn: " 0/12345678" at character 32
2024-11-25 19:08:06.877 CET [561459][client backend] [pg_regress/pg_lsn][17/10:0] STATEMENT: INSERT INTO PG_LSN_TBL VALUES (' 0/12345678');
2024-11-25 19:08:06.877 CET [561459][client backend] [pg_regress/pg_lsn][17/11:0] ERROR: invalid input syntax for type pg_lsn: "ABCD/" at character 32
2024-11-25 19:08:06.877 CET [561459][client backend] [pg_regress/pg_lsn][17/11:0] STATEMENT: INSERT INTO PG_LSN_TBL VALUES ('ABCD/');
2024-11-25 19:08:06.877 CET [561459][client backend] [pg_regress/pg_lsn][17/12:0] ERROR: invalid input syntax for type pg_lsn: "/ABCD" at character 32
2024-11-25 19:08:06.877 CET [561459][client backend] [pg_regress/pg_lsn][17/12:0] STATEMENT: INSERT INTO PG_LSN_TBL VALUES ('/ABCD');
2024-11-25 19:08:06.877 CET [561456][client backend] [pg_regress/regproc][14/72:0] ERROR: operator does not exist: ||// at character 16
2024-11-25 19:08:06.877 CET [561456][client backend] [pg_regress/regproc][14/72:0] STATEMENT: SELECT regoper('||//');
2024-11-25 19:08:06.877 CET [561456][client backend] [pg_regress/regproc][14/73:0] ERROR: operator does not exist: ++(int4,int4) at character 20
2024-11-25 19:08:06.877 CET [561456][client backend] [pg_regress/regproc][14/73:0] STATEMENT: SELECT regoperator('++(int4,int4)');
2024-11-25 19:08:06.877 CET [561456][client backend] [pg_regress/regproc][14/74:0] ERROR: function "know" does not exist at character 16
2024-11-25 19:08:06.877 CET [561456][client backend] [pg_regress/regproc][14/74:0] STATEMENT: SELECT regproc('know');
2024-11-25 19:08:06.877 CET [561456][client backend] [pg_regress/regproc][14/75:0] ERROR: function "absinthe(numeric)" does not exist at character 21
2024-11-25 19:08:06.877 CET [561456][client backend] [pg_regress/regproc][14/75:0] STATEMENT: SELECT regprocedure('absinthe(numeric)');
2024-11-25 19:08:06.877 CET [561456][client backend] [pg_regress/regproc][14/76:0] ERROR: relation "pg_classes" does not exist at character 17
2024-11-25 19:08:06.877 CET [561456][client backend] [pg_regress/regproc][14/76:0] STATEMENT: SELECT regclass('pg_classes');
2024-11-25 19:08:06.877 CET [561456][client backend] [pg_regress/regproc][14/77:0] ERROR: type "int3" does not exist at character 16
2024-11-25 19:08:06.877 CET [561456][client backend] [pg_regress/regproc][14/77:0] STATEMENT: SELECT regtype('int3');
2024-11-25 19:08:06.877 CET [561456][client backend] [pg_regress/regproc][14/78:0] ERROR: operator does not exist: ng_catalog.||/ at character 16
2024-11-25 19:08:06.877 CET [561456][client backend] [pg_regress/regproc][14/78:0] STATEMENT: SELECT regoper('ng_catalog.||/');
2024-11-25 19:08:06.877 CET [561456][client backend] [pg_regress/regproc][14/79:0] ERROR: operator does not exist: ng_catalog.+(int4,int4) at character 20
2024-11-25 19:08:06.877 CET [561456][client backend] [pg_regress/regproc][14/79:0] STATEMENT: SELECT regoperator('ng_catalog.+(int4,int4)');
2024-11-25 19:08:06.877 CET [561456][client backend] [pg_regress/regproc][14/80:0] ERROR: function "ng_catalog.now" does not exist at character 16
2024-11-25 19:08:06.877 CET [561456][client backend] [pg_regress/regproc][14/80:0] STATEMENT: SELECT regproc('ng_catalog.now');
2024-11-25 19:08:06.878 CET [561456][client backend] [pg_regress/regproc][14/81:0] ERROR: function "ng_catalog.abs(numeric)" does not exist at character 21
2024-11-25 19:08:06.878 CET [561456][client backend] [pg_regress/regproc][14/81:0] STATEMENT: SELECT regprocedure('ng_catalog.abs(numeric)');
2024-11-25 19:08:06.878 CET [561456][client backend] [pg_regress/regproc][14/82:0] ERROR: relation "ng_catalog.pg_class" does not exist at character 17
2024-11-25 19:08:06.878 CET [561456][client backend] [pg_regress/regproc][14/82:0] STATEMENT: SELECT regclass('ng_catalog.pg_class');
2024-11-25 19:08:06.878 CET [561456][client backend] [pg_regress/regproc][14/83:0] ERROR: schema "ng_catalog" does not exist at character 16
2024-11-25 19:08:06.878 CET [561456][client backend] [pg_regress/regproc][14/83:0] STATEMENT: SELECT regtype('ng_catalog.int4');
2024-11-25 19:08:06.878 CET [561456][client backend] [pg_regress/regproc][14/84:0] ERROR: collation "ng_catalog.POSIX" for encoding "UTF8" does not exist at character 21
2024-11-25 19:08:06.878 CET [561456][client backend] [pg_regress/regproc][14/84:0] STATEMENT: SELECT regcollation('ng_catalog."POSIX"');
2024-11-25 19:08:06.878 CET [561456][client backend] [pg_regress/regproc][14/85:0] ERROR: role "regress_regrole_test" does not exist at character 16
2024-11-25 19:08:06.878 CET [561456][client backend] [pg_regress/regproc][14/85:0] STATEMENT: SELECT regrole('regress_regrole_test');
2024-11-25 19:08:06.878 CET [561456][client backend] [pg_regress/regproc][14/86:0] ERROR: role "regress_regrole_test" does not exist at character 16
2024-11-25 19:08:06.878 CET [561456][client backend] [pg_regress/regproc][14/86:0] STATEMENT: SELECT regrole('"regress_regrole_test"');
2024-11-25 19:08:06.878 CET [561441][client backend] [pg_regress/text][:0] LOG: disconnection: session time: 0:00:00.019 user=nkey database=regression host=[local]
2024-11-25 19:08:06.878 CET [561456][client backend] [pg_regress/regproc][14/87:0] ERROR: role "nonexistent" does not exist at character 16
2024-11-25 19:08:06.878 CET [561456][client backend] [pg_regress/regproc][14/87:0] STATEMENT: SELECT regrole('Nonexistent');
2024-11-25 19:08:06.878 CET [561456][client backend] [pg_regress/regproc][14/88:0] ERROR: role "Nonexistent" does not exist at character 16
2024-11-25 19:08:06.878 CET [561456][client backend] [pg_regress/regproc][14/88:0] STATEMENT: SELECT regrole('"Nonexistent"');
2024-11-25 19:08:06.878 CET [561456][client backend] [pg_regress/regproc][14/89:0] ERROR: invalid name syntax at character 16
2024-11-25 19:08:06.878 CET [561456][client backend] [pg_regress/regproc][14/89:0] STATEMENT: SELECT regrole('foo.bar');
2024-11-25 19:08:06.878 CET [561456][client backend] [pg_regress/regproc][14/90:0] ERROR: schema "nonexistent" does not exist at character 21
2024-11-25 19:08:06.878 CET [561456][client backend] [pg_regress/regproc][14/90:0] STATEMENT: SELECT regnamespace('Nonexistent');
2024-11-25 19:08:06.878 CET [561456][client backend] [pg_regress/regproc][14/91:0] ERROR: schema "Nonexistent" does not exist at character 21
2024-11-25 19:08:06.878 CET [561456][client backend] [pg_regress/regproc][14/91:0] STATEMENT: SELECT regnamespace('"Nonexistent"');
2024-11-25 19:08:06.878 CET [561456][client backend] [pg_regress/regproc][14/92:0] ERROR: invalid name syntax at character 21
2024-11-25 19:08:06.878 CET [561456][client backend] [pg_regress/regproc][14/92:0] STATEMENT: SELECT regnamespace('foo.bar');
2024-11-25 19:08:06.879 CET [561446][client backend] [pg_regress/int4][18/58:0] ERROR: integer out of range
2024-11-25 19:08:06.879 CET [561446][client backend] [pg_regress/int4][18/58:0] STATEMENT: SELECT (-2147483648)::int4 * (-1)::int4;
2024-11-25 19:08:06.879 CET [561446][client backend] [pg_regress/int4][18/59:0] ERROR: integer out of range
2024-11-25 19:08:06.879 CET [561446][client backend] [pg_regress/int4][18/59:0] STATEMENT: SELECT (-2147483648)::int4 / (-1)::int4;
2024-11-25 19:08:06.879 CET [561440][client backend] [pg_regress/char][10/13:0] ERROR: value too long for type character(1)
2024-11-25 19:08:06.879 CET [561440][client backend] [pg_regress/char][10/13:0] STATEMENT: INSERT INTO CHAR_TBL (f1) VALUES ('cd');
2024-11-25 19:08:06.879 CET [561446][client backend] [pg_regress/int4][18/61:0] ERROR: integer out of range
2024-11-25 19:08:06.879 CET [561446][client backend] [pg_regress/int4][18/61:0] STATEMENT: SELECT (-2147483648)::int4 * (-1)::int2;
2024-11-25 19:08:06.879 CET [561446][client backend] [pg_regress/int4][18/62:0] ERROR: integer out of range
2024-11-25 19:08:06.879 CET [561446][client backend] [pg_regress/int4][18/62:0] STATEMENT: SELECT (-2147483648)::int4 / (-1)::int2;
2024-11-25 19:08:06.879 CET [561447][client backend] [pg_regress/bit][25/6:0] ERROR: bit string length 2 does not match type bit(11)
2024-11-25 19:08:06.879 CET [561447][client backend] [pg_regress/bit][25/6:0] STATEMENT: INSERT INTO BIT_TABLE VALUES (B'10');
2024-11-25 19:08:06.879 CET [561443][client backend] [pg_regress/name][9/29:0] ERROR: string is not a valid identifier: "foo.boo[]"
2024-11-25 19:08:06.879 CET [561443][client backend] [pg_regress/name][9/29:0] STATEMENT: SELECT parse_ident('foo.boo[]');
2024-11-25 19:08:06.880 CET [561443][client backend] [pg_regress/name][9/31:0] ERROR: string is not a valid identifier: " "
2024-11-25 19:08:06.880 CET [561443][client backend] [pg_regress/name][9/31:0] STATEMENT: SELECT parse_ident(' ');
2024-11-25 19:08:06.880 CET [561443][client backend] [pg_regress/name][9/32:0] ERROR: string is not a valid identifier: " .aaa"
2024-11-25 19:08:06.880 CET [561443][client backend] [pg_regress/name][9/32:0] DETAIL: No valid identifier before ".".
2024-11-25 19:08:06.880 CET [561443][client backend] [pg_regress/name][9/32:0] STATEMENT: SELECT parse_ident(' .aaa');
2024-11-25 19:08:06.880 CET [561443][client backend] [pg_regress/name][9/33:0] ERROR: string is not a valid identifier: " aaa . "
2024-11-25 19:08:06.880 CET [561443][client backend] [pg_regress/name][9/33:0] DETAIL: No valid identifier after ".".
2024-11-25 19:08:06.880 CET [561443][client backend] [pg_regress/name][9/33:0] STATEMENT: SELECT parse_ident(' aaa . ');
2024-11-25 19:08:06.880 CET [561448][client backend] [pg_regress/float4][12/60:0] ERROR: division by zero
2024-11-25 19:08:06.880 CET [561448][client backend] [pg_regress/float4][12/60:0] STATEMENT: SELECT f.f1 / '0.0' from FLOAT4_TBL f;
2024-11-25 19:08:06.880 CET [561443][client backend] [pg_regress/name][9/34:0] ERROR: string is not a valid identifier: "aaa.a%b"
2024-11-25 19:08:06.880 CET [561443][client backend] [pg_regress/name][9/34:0] STATEMENT: SELECT parse_ident('aaa.a%b');
2024-11-25 19:08:06.880 CET [561443][client backend] [pg_regress/name][9/35:0] ERROR: string is not a valid identifier: "X
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
2024-11-25 19:08:06.880 CET [561443][client backend] [pg_regress/name][9/35:0] STATEMENT: SELECT parse_ident(E'X\rXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX');
2024-11-25 19:08:06.880 CET [561446][client backend] [pg_regress/int4][18/67:0] ERROR: integer out of range
2024-11-25 19:08:06.880 CET [561446][client backend] [pg_regress/int4][18/67:0] STATEMENT: SELECT gcd((-2147483648)::int4, 0::int4);
2024-11-25 19:08:06.880 CET [561446][client backend] [pg_regress/int4][18/68:0] ERROR: integer out of range
2024-11-25 19:08:06.880 CET [561446][client backend] [pg_regress/int4][18/68:0] STATEMENT: SELECT gcd((-2147483648)::int4, (-2147483648)::int4);
2024-11-25 19:08:06.880 CET [561465][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.881 CET [561439][client backend] [pg_regress/varchar][2/12:0] ERROR: value too long for type character varying(1)
2024-11-25 19:08:06.881 CET [561439][client backend] [pg_regress/varchar][2/12:0] STATEMENT: INSERT INTO VARCHAR_TBL (f1) VALUES ('cd');
2024-11-25 19:08:06.881 CET [561446][client backend] [pg_regress/int4][18/70:0] ERROR: integer out of range
2024-11-25 19:08:06.881 CET [561446][client backend] [pg_regress/int4][18/70:0] STATEMENT: SELECT lcm((-2147483648)::int4, 1::int4);
2024-11-25 19:08:06.881 CET [561446][client backend] [pg_regress/int4][18/71:0] ERROR: integer out of range
2024-11-25 19:08:06.881 CET [561446][client backend] [pg_regress/int4][18/71:0] STATEMENT: SELECT lcm(2147483647::int4, 2147483646::int4);
2024-11-25 19:08:06.881 CET [561459][client backend] [pg_regress/pg_lsn][17/27:0] ERROR: pg_lsn out of range
2024-11-25 19:08:06.881 CET [561459][client backend] [pg_regress/pg_lsn][17/27:0] STATEMENT: SELECT 'FFFFFFFF/FFFFFFFE'::pg_lsn + 2::numeric;
2024-11-25 19:08:06.881 CET [561465][client backend] [[unknown]][32/11:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.881 CET [561465][client backend] [[unknown]][32/11:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/simple-write-skew
2024-11-25 19:08:06.881 CET [561454][client backend] [pg_regress/float8][23/96:0] ERROR: "10e400" is out of range for type double precision at character 8
2024-11-25 19:08:06.881 CET [561454][client backend] [pg_regress/float8][23/96:0] STATEMENT: SELECT '10e400'::float8;
2024-11-25 19:08:06.881 CET [561459][client backend] [pg_regress/pg_lsn][17/29:0] ERROR: pg_lsn out of range
2024-11-25 19:08:06.881 CET [561459][client backend] [pg_regress/pg_lsn][17/29:0] STATEMENT: SELECT '0/1'::pg_lsn - 2::numeric;
2024-11-25 19:08:06.881 CET [561446][client backend] [pg_regress/int4][18/75:0] ERROR: invalid input syntax for type integer: "0b" at character 13
2024-11-25 19:08:06.881 CET [561446][client backend] [pg_regress/int4][18/75:0] STATEMENT: SELECT int4 '0b';
2024-11-25 19:08:06.881 CET [561446][client backend] [pg_regress/int4][18/76:0] ERROR: invalid input syntax for type integer: "0o" at character 13
2024-11-25 19:08:06.881 CET [561446][client backend] [pg_regress/int4][18/76:0] STATEMENT: SELECT int4 '0o';
2024-11-25 19:08:06.881 CET [561446][client backend] [pg_regress/int4][18/77:0] ERROR: invalid input syntax for type integer: "0x" at character 13
2024-11-25 19:08:06.881 CET [561446][client backend] [pg_regress/int4][18/77:0] STATEMENT: SELECT int4 '0x';
2024-11-25 19:08:06.882 CET [561454][client backend] [pg_regress/float8][23/97:0] ERROR: "-10e400" is out of range for type double precision at character 8
2024-11-25 19:08:06.882 CET [561454][client backend] [pg_regress/float8][23/97:0] STATEMENT: SELECT '-10e400'::float8;
2024-11-25 19:08:06.882 CET [561446][client backend] [pg_regress/int4][18/79:0] ERROR: value "0b10000000000000000000000000000000" is out of range for type integer at character 13
2024-11-25 19:08:06.882 CET [561446][client backend] [pg_regress/int4][18/79:0] STATEMENT: SELECT int4 '0b10000000000000000000000000000000';
2024-11-25 19:08:06.882 CET [561454][client backend] [pg_regress/float8][23/98:0] ERROR: "10e-400" is out of range for type double precision at character 8
2024-11-25 19:08:06.882 CET [561454][client backend] [pg_regress/float8][23/98:0] STATEMENT: SELECT '10e-400'::float8;
2024-11-25 19:08:06.882 CET [561459][client backend] [pg_regress/pg_lsn][17/32:0] ERROR: cannot add NaN to pg_lsn
2024-11-25 19:08:06.882 CET [561459][client backend] [pg_regress/pg_lsn][17/32:0] STATEMENT: SELECT '0/16AE7F7'::pg_lsn + 'NaN'::numeric;
2024-11-25 19:08:06.882 CET [561454][client backend] [pg_regress/float8][23/99:0] ERROR: "-10e-400" is out of range for type double precision at character 8
2024-11-25 19:08:06.882 CET [561454][client backend] [pg_regress/float8][23/99:0] STATEMENT: SELECT '-10e-400'::float8;
2024-11-25 19:08:06.882 CET [561459][client backend] [pg_regress/pg_lsn][17/33:0] ERROR: cannot subtract NaN from pg_lsn
2024-11-25 19:08:06.882 CET [561459][client backend] [pg_regress/pg_lsn][17/33:0] STATEMENT: SELECT '0/16AE7F7'::pg_lsn - 'NaN'::numeric;
2024-11-25 19:08:06.882 CET [561446][client backend] [pg_regress/int4][18/81:0] ERROR: value "0o20000000000" is out of range for type integer at character 13
2024-11-25 19:08:06.882 CET [561446][client backend] [pg_regress/int4][18/81:0] STATEMENT: SELECT int4 '0o20000000000';
2024-11-25 19:08:06.882 CET [561446][client backend] [pg_regress/int4][18/83:0] ERROR: value "0x80000000" is out of range for type integer at character 13
2024-11-25 19:08:06.882 CET [561446][client backend] [pg_regress/int4][18/83:0] STATEMENT: SELECT int4 '0x80000000';
2024-11-25 19:08:06.882 CET [561443][client backend] [pg_regress/name][9/39:0] ERROR: string is not a valid identifier: ""c".X XXXXXXXXXX"
2024-11-25 19:08:06.882 CET [561443][client backend] [pg_regress/name][9/39:0] STATEMENT: SELECT parse_ident(E'"c".X XXXX\002XXXXXX');
2024-11-25 19:08:06.882 CET [561443][client backend] [pg_regress/name][9/40:0] ERROR: string is not a valid identifier: "1020"
2024-11-25 19:08:06.882 CET [561443][client backend] [pg_regress/name][9/40:0] STATEMENT: SELECT parse_ident('1020');
2024-11-25 19:08:06.882 CET [561446][client backend] [pg_regress/int4][18/85:0] ERROR: value "-0b10000000000000000000000000000001" is out of range for type integer at character 13
2024-11-25 19:08:06.882 CET [561446][client backend] [pg_regress/int4][18/85:0] STATEMENT: SELECT int4 '-0b10000000000000000000000000000001';
2024-11-25 19:08:06.882 CET [561443][client backend] [pg_regress/name][9/41:0] ERROR: string is not a valid identifier: "10.20"
2024-11-25 19:08:06.882 CET [561443][client backend] [pg_regress/name][9/41:0] STATEMENT: SELECT parse_ident('10.20');
2024-11-25 19:08:06.882 CET [561443][client backend] [pg_regress/name][9/42:0] ERROR: string is not a valid identifier: "."
2024-11-25 19:08:06.882 CET [561443][client backend] [pg_regress/name][9/42:0] DETAIL: No valid identifier before ".".
2024-11-25 19:08:06.882 CET [561443][client backend] [pg_regress/name][9/42:0] STATEMENT: SELECT parse_ident('.');
2024-11-25 19:08:06.882 CET [561454][client backend] [pg_regress/float8][23/101:0] ERROR: invalid input syntax for type double precision: "" at character 36
2024-11-25 19:08:06.882 CET [561454][client backend] [pg_regress/float8][23/101:0] STATEMENT: INSERT INTO FLOAT8_TBL(f1) VALUES ('');
2024-11-25 19:08:06.882 CET [561446][client backend] [pg_regress/int4][18/87:0] ERROR: value "-0o20000000001" is out of range for type integer at character 13
2024-11-25 19:08:06.882 CET [561446][client backend] [pg_regress/int4][18/87:0] STATEMENT: SELECT int4 '-0o20000000001';
2024-11-25 19:08:06.882 CET [561443][client backend] [pg_regress/name][9/43:0] ERROR: string is not a valid identifier: ".1020"
2024-11-25 19:08:06.882 CET [561443][client backend] [pg_regress/name][9/43:0] DETAIL: No valid identifier before ".".
2024-11-25 19:08:06.882 CET [561443][client backend] [pg_regress/name][9/43:0] STATEMENT: SELECT parse_ident('.1020');
2024-11-25 19:08:06.882 CET [561454][client backend] [pg_regress/float8][23/102:0] ERROR: invalid input syntax for type double precision: " " at character 36
2024-11-25 19:08:06.882 CET [561454][client backend] [pg_regress/float8][23/102:0] STATEMENT: INSERT INTO FLOAT8_TBL(f1) VALUES (' ');
2024-11-25 19:08:06.883 CET [561443][client backend] [pg_regress/name][9/44:0] ERROR: string is not a valid identifier: "xxx.1020"
2024-11-25 19:08:06.883 CET [561443][client backend] [pg_regress/name][9/44:0] DETAIL: No valid identifier after ".".
2024-11-25 19:08:06.883 CET [561443][client backend] [pg_regress/name][9/44:0] STATEMENT: SELECT parse_ident('xxx.1020');
2024-11-25 19:08:06.883 CET [561446][client backend] [pg_regress/int4][18/89:0] ERROR: value "-0x80000001" is out of range for type integer at character 13
2024-11-25 19:08:06.883 CET [561446][client backend] [pg_regress/int4][18/89:0] STATEMENT: SELECT int4 '-0x80000001';
2024-11-25 19:08:06.883 CET [561454][client backend] [pg_regress/float8][23/103:0] ERROR: invalid input syntax for type double precision: "xyz" at character 36
2024-11-25 19:08:06.883 CET [561454][client backend] [pg_regress/float8][23/103:0] STATEMENT: INSERT INTO FLOAT8_TBL(f1) VALUES ('xyz');
2024-11-25 19:08:06.883 CET [561466][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.883 CET [561454][client backend] [pg_regress/float8][23/104:0] ERROR: invalid input syntax for type double precision: "5.0.0" at character 36
2024-11-25 19:08:06.883 CET [561454][client backend] [pg_regress/float8][23/104:0] STATEMENT: INSERT INTO FLOAT8_TBL(f1) VALUES ('5.0.0');
2024-11-25 19:08:06.883 CET [561446][client backend] [pg_regress/int4][18/95:0] ERROR: invalid input syntax for type integer: "_100" at character 13
2024-11-25 19:08:06.883 CET [561446][client backend] [pg_regress/int4][18/95:0] STATEMENT: SELECT int4 '_100';
2024-11-25 19:08:06.883 CET [561454][client backend] [pg_regress/float8][23/105:0] ERROR: invalid input syntax for type double precision: "5 . 0" at character 36
2024-11-25 19:08:06.883 CET [561454][client backend] [pg_regress/float8][23/105:0] STATEMENT: INSERT INTO FLOAT8_TBL(f1) VALUES ('5 . 0');
2024-11-25 19:08:06.883 CET [561454][client backend] [pg_regress/float8][23/106:0] ERROR: invalid input syntax for type double precision: "5. 0" at character 36
2024-11-25 19:08:06.883 CET [561454][client backend] [pg_regress/float8][23/106:0] STATEMENT: INSERT INTO FLOAT8_TBL(f1) VALUES ('5. 0');
2024-11-25 19:08:06.883 CET [561446][client backend] [pg_regress/int4][18/96:0] ERROR: invalid input syntax for type integer: "100_" at character 13
2024-11-25 19:08:06.883 CET [561446][client backend] [pg_regress/int4][18/96:0] STATEMENT: SELECT int4 '100_';
2024-11-25 19:08:06.884 CET [561446][client backend] [pg_regress/int4][18/97:0] ERROR: invalid input syntax for type integer: "100__000" at character 13
2024-11-25 19:08:06.884 CET [561446][client backend] [pg_regress/int4][18/97:0] STATEMENT: SELECT int4 '100__000';
2024-11-25 19:08:06.884 CET [561454][client backend] [pg_regress/float8][23/107:0] ERROR: invalid input syntax for type double precision: " - 3" at character 36
2024-11-25 19:08:06.884 CET [561454][client backend] [pg_regress/float8][23/107:0] STATEMENT: INSERT INTO FLOAT8_TBL(f1) VALUES (' - 3');
2024-11-25 19:08:06.884 CET [561443][client backend] [pg_regress/name][:0] LOG: disconnection: session time: 0:00:00.024 user=nkey database=regression host=[local]
2024-11-25 19:08:06.884 CET [561466][client backend] [[unknown]][36/11:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.884 CET [561466][client backend] [[unknown]][36/11:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/macaddr
2024-11-25 19:08:06.884 CET [561446][client backend] [pg_regress/int4][:0] LOG: disconnection: session time: 0:00:00.022 user=nkey database=regression host=[local]
2024-11-25 19:08:06.885 CET [561451][client backend] [pg_regress/enum][27/15:0] ERROR: invalid input value for enum rainbow: "mauve" at character 8
2024-11-25 19:08:06.885 CET [561451][client backend] [pg_regress/enum][27/15:0] STATEMENT: SELECT 'mauve'::rainbow;
2024-11-25 19:08:06.885 CET [561445][client backend] [pg_regress/txid][:0] LOG: disconnection: session time: 0:00:00.026 user=nkey database=regression host=[local]
2024-11-25 19:08:06.885 CET [561454][client backend] [pg_regress/float8][23/108:0] ERROR: invalid input syntax for type double precision: "123 5" at character 36
2024-11-25 19:08:06.885 CET [561454][client backend] [pg_regress/float8][23/108:0] STATEMENT: INSERT INTO FLOAT8_TBL(f1) VALUES ('123 5');
2024-11-25 19:08:06.886 CET [561459][client backend] [pg_regress/pg_lsn][:0] LOG: disconnection: session time: 0:00:00.019 user=nkey database=regression host=[local]
2024-11-25 19:08:06.887 CET [561447][client backend] [pg_regress/bit][25/10:0] ERROR: bit string length 12 does not match type bit(11)
2024-11-25 19:08:06.887 CET [561447][client backend] [pg_regress/bit][25/10:0] STATEMENT: INSERT INTO BIT_TABLE VALUES (B'101011111010');
2024-11-25 19:08:06.887 CET [561454][client backend] [pg_regress/float8][23/118:0] ERROR: invalid input syntax for type double precision: "N A N" at character 8
2024-11-25 19:08:06.887 CET [561454][client backend] [pg_regress/float8][23/118:0] STATEMENT: SELECT 'N A N'::float8;
2024-11-25 19:08:06.887 CET [561456][client backend] [pg_regress/regproc][14/136:0] ERROR: syntax error at or near "type" at character 11
2024-11-25 19:08:06.887 CET [561456][client backend] [pg_regress/regproc][14/136:0] CONTEXT: invalid type name "incorrect type name syntax"
2024-11-25 19:08:06.887 CET [561456][client backend] [pg_regress/regproc][14/136:0] STATEMENT: SELECT * FROM pg_input_error_info('incorrect type name syntax', 'regtype');
2024-11-25 19:08:06.887 CET [561454][client backend] [pg_regress/float8][23/119:0] ERROR: invalid input syntax for type double precision: "NaN x" at character 8
2024-11-25 19:08:06.887 CET [561454][client backend] [pg_regress/float8][23/119:0] STATEMENT: SELECT 'NaN x'::float8;
2024-11-25 19:08:06.887 CET [561454][client backend] [pg_regress/float8][23/120:0] ERROR: invalid input syntax for type double precision: " INFINITY x" at character 8
2024-11-25 19:08:06.887 CET [561454][client backend] [pg_regress/float8][23/120:0] STATEMENT: SELECT ' INFINITY x'::float8;
2024-11-25 19:08:06.887 CET [561439][client backend] [pg_regress/varchar][2/22:0] ERROR: value too long for type character varying(4)
2024-11-25 19:08:06.887 CET [561439][client backend] [pg_regress/varchar][2/22:0] STATEMENT: INSERT INTO VARCHAR_TBL (f1) VALUES ('abcde');
2024-11-25 19:08:06.888 CET [561440][client backend] [pg_regress/char][10/23:0] ERROR: value too long for type character(4)
2024-11-25 19:08:06.888 CET [561440][client backend] [pg_regress/char][10/23:0] STATEMENT: INSERT INTO CHAR_TBL (f1) VALUES ('abcde');
2024-11-25 19:08:06.888 CET [561456][client backend] [pg_regress/regproc][14/137:0] ERROR: invalid NUMERIC type modifier
2024-11-25 19:08:06.888 CET [561456][client backend] [pg_regress/regproc][14/137:0] STATEMENT: SELECT * FROM pg_input_error_info('numeric(1,2,3)', 'regtype');
2024-11-25 19:08:06.889 CET [561439][client backend] [pg_regress/varchar][:0] LOG: disconnection: session time: 0:00:00.026 user=nkey database=regression host=[local]
2024-11-25 19:08:06.889 CET [561456][client backend] [pg_regress/regproc][14/138:0] ERROR: improper qualified name (too many dotted names): way.too.many.names
2024-11-25 19:08:06.889 CET [561456][client backend] [pg_regress/regproc][14/138:0] STATEMENT: SELECT * FROM pg_input_error_info('way.too.many.names', 'regtype');
2024-11-25 19:08:06.889 CET [561453][client backend] [pg_regress/uuid][7/7:0] ERROR: invalid input syntax for type uuid: "11111111-1111-1111-1111-111111111111F" at character 38
2024-11-25 19:08:06.889 CET [561453][client backend] [pg_regress/uuid][7/7:0] STATEMENT: INSERT INTO guid1(guid_field) VALUES('11111111-1111-1111-1111-111111111111F');
2024-11-25 19:08:06.889 CET [561456][client backend] [pg_regress/regproc][14/139:0] ERROR: cross-database references are not implemented: no_such_catalog.schema.name
2024-11-25 19:08:06.889 CET [561456][client backend] [pg_regress/regproc][14/139:0] STATEMENT: SELECT * FROM pg_input_error_info('no_such_catalog.schema.name', 'regtype');
2024-11-25 19:08:06.889 CET [561456][client backend] [pg_regress/regproc][:0] LOG: disconnection: session time: 0:00:00.027 user=nkey database=regression host=[local]
2024-11-25 19:08:06.889 CET [561448][client backend] [pg_regress/float4][12/66:0] ERROR: smallint out of range
2024-11-25 19:08:06.889 CET [561448][client backend] [pg_regress/float4][12/66:0] STATEMENT: SELECT '32767.6'::float4::int2;
2024-11-25 19:08:06.890 CET [561448][client backend] [pg_regress/float4][12/68:0] ERROR: smallint out of range
2024-11-25 19:08:06.890 CET [561448][client backend] [pg_regress/float4][12/68:0] STATEMENT: SELECT '-32768.6'::float4::int2;
2024-11-25 19:08:06.890 CET [561447][client backend] [pg_regress/bit][25/17:0] ERROR: bit string too long for type bit varying(11)
2024-11-25 19:08:06.890 CET [561447][client backend] [pg_regress/bit][25/17:0] STATEMENT: INSERT INTO VARBIT_TABLE VALUES (B'101011111010');
2024-11-25 19:08:06.890 CET [561444][client backend] [pg_regress/int2][8/58:0] ERROR: invalid input syntax for type smallint: "0b" at character 13
2024-11-25 19:08:06.890 CET [561444][client backend] [pg_regress/int2][8/58:0] STATEMENT: SELECT int2 '0b';
2024-11-25 19:08:06.890 CET [561444][client backend] [pg_regress/int2][8/59:0] ERROR: invalid input syntax for type smallint: "0o" at character 13
2024-11-25 19:08:06.890 CET [561444][client backend] [pg_regress/int2][8/59:0] STATEMENT: SELECT int2 '0o';
2024-11-25 19:08:06.890 CET [561444][client backend] [pg_regress/int2][8/60:0] ERROR: invalid input syntax for type smallint: "0x" at character 13
2024-11-25 19:08:06.890 CET [561444][client backend] [pg_regress/int2][8/60:0] STATEMENT: SELECT int2 '0x';
2024-11-25 19:08:06.890 CET [561448][client backend] [pg_regress/float4][12/70:0] ERROR: integer out of range
2024-11-25 19:08:06.890 CET [561448][client backend] [pg_regress/float4][12/70:0] STATEMENT: SELECT '2147483647'::float4::int4;
2024-11-25 19:08:06.890 CET [561444][client backend] [pg_regress/int2][8/62:0] ERROR: value "0b1000000000000000" is out of range for type smallint at character 13
2024-11-25 19:08:06.890 CET [561444][client backend] [pg_regress/int2][8/62:0] STATEMENT: SELECT int2 '0b1000000000000000';
2024-11-25 19:08:06.890 CET [561448][client backend] [pg_regress/float4][12/72:0] ERROR: integer out of range
2024-11-25 19:08:06.890 CET [561448][client backend] [pg_regress/float4][12/72:0] STATEMENT: SELECT '-2147483900'::float4::int4;
2024-11-25 19:08:06.890 CET [561455][client backend] [pg_regress/rangetypes][24/12:0] ERROR: malformed range literal: "" at character 8
2024-11-25 19:08:06.890 CET [561455][client backend] [pg_regress/rangetypes][24/12:0] DETAIL: Missing left parenthesis or bracket.
2024-11-25 19:08:06.890 CET [561455][client backend] [pg_regress/rangetypes][24/12:0] STATEMENT: select ''::textrange;
2024-11-25 19:08:06.890 CET [561444][client backend] [pg_regress/int2][8/64:0] ERROR: value "0o100000" is out of range for type smallint at character 13
2024-11-25 19:08:06.890 CET [561444][client backend] [pg_regress/int2][8/64:0] STATEMENT: SELECT int2 '0o100000';
2024-11-25 19:08:06.890 CET [561448][client backend] [pg_regress/float4][12/74:0] ERROR: bigint out of range
2024-11-25 19:08:06.890 CET [561448][client backend] [pg_regress/float4][12/74:0] STATEMENT: SELECT '9223372036854775807'::float4::int8;
2024-11-25 19:08:06.890 CET [561455][client backend] [pg_regress/rangetypes][24/13:0] ERROR: malformed range literal: "-[a,z)" at character 8
2024-11-25 19:08:06.890 CET [561455][client backend] [pg_regress/rangetypes][24/13:0] DETAIL: Missing left parenthesis or bracket.
2024-11-25 19:08:06.890 CET [561455][client backend] [pg_regress/rangetypes][24/13:0] STATEMENT: select '-[a,z)'::textrange;
2024-11-25 19:08:06.890 CET [561444][client backend] [pg_regress/int2][8/66:0] ERROR: value "0x8000" is out of range for type smallint at character 13
2024-11-25 19:08:06.890 CET [561444][client backend] [pg_regress/int2][8/66:0] STATEMENT: SELECT int2 '0x8000';
2024-11-25 19:08:06.890 CET [561455][client backend] [pg_regress/rangetypes][24/14:0] ERROR: malformed range literal: "[a,z) - " at character 8
2024-11-25 19:08:06.890 CET [561455][client backend] [pg_regress/rangetypes][24/14:0] DETAIL: Junk after right parenthesis or bracket.
2024-11-25 19:08:06.890 CET [561455][client backend] [pg_regress/rangetypes][24/14:0] STATEMENT: select '[a,z) - '::textrange;
2024-11-25 19:08:06.890 CET [561447][client backend] [pg_regress/bit][25/19:0] ERROR: " " is not a valid binary digit at character 8
2024-11-25 19:08:06.890 CET [561447][client backend] [pg_regress/bit][25/19:0] STATEMENT: SELECT b' 0';
2024-11-25 19:08:06.890 CET [561455][client backend] [pg_regress/rangetypes][24/15:0] ERROR: malformed range literal: "(",a)" at character 8
2024-11-25 19:08:06.890 CET [561455][client backend] [pg_regress/rangetypes][24/15:0] DETAIL: Unexpected end of input.
2024-11-25 19:08:06.890 CET [561455][client backend] [pg_regress/rangetypes][24/15:0] STATEMENT: select '(",a)'::textrange;
2024-11-25 19:08:06.890 CET [561453][client backend] [pg_regress/uuid][7/8:0] ERROR: invalid input syntax for type uuid: "{11111111-1111-1111-1111-11111111111}" at character 38
2024-11-25 19:08:06.890 CET [561453][client backend] [pg_regress/uuid][7/8:0] STATEMENT: INSERT INTO guid1(guid_field) VALUES('{11111111-1111-1111-1111-11111111111}');
2024-11-25 19:08:06.891 CET [561447][client backend] [pg_regress/bit][25/20:0] ERROR: " " is not a valid binary digit at character 8
2024-11-25 19:08:06.891 CET [561447][client backend] [pg_regress/bit][25/20:0] STATEMENT: SELECT b'0 ';
2024-11-25 19:08:06.891 CET [561455][client backend] [pg_regress/rangetypes][24/16:0] ERROR: malformed range literal: "(,,a)" at character 8
2024-11-25 19:08:06.891 CET [561455][client backend] [pg_regress/rangetypes][24/16:0] DETAIL: Too many commas.
2024-11-25 19:08:06.891 CET [561455][client backend] [pg_regress/rangetypes][24/16:0] STATEMENT: select '(,,a)'::textrange;
2024-11-25 19:08:06.891 CET [561444][client backend] [pg_regress/int2][8/68:0] ERROR: value "-0b1000000000000001" is out of range for type smallint at character 13
2024-11-25 19:08:06.891 CET [561444][client backend] [pg_regress/int2][8/68:0] STATEMENT: SELECT int2 '-0b1000000000000001';
2024-11-25 19:08:06.891 CET [561448][client backend] [pg_regress/float4][12/76:0] ERROR: bigint out of range
2024-11-25 19:08:06.891 CET [561448][client backend] [pg_regress/float4][12/76:0] STATEMENT: SELECT '-9223380000000000000'::float4::int8;
2024-11-25 19:08:06.891 CET [561453][client backend] [pg_regress/uuid][7/9:0] ERROR: invalid input syntax for type uuid: "111-11111-1111-1111-1111-111111111111" at character 38
2024-11-25 19:08:06.891 CET [561453][client backend] [pg_regress/uuid][7/9:0] STATEMENT: INSERT INTO guid1(guid_field) VALUES('111-11111-1111-1111-1111-111111111111');
2024-11-25 19:08:06.891 CET [561447][client backend] [pg_regress/bit][25/21:0] ERROR: " " is not a valid hexadecimal digit at character 8
2024-11-25 19:08:06.891 CET [561447][client backend] [pg_regress/bit][25/21:0] STATEMENT: SELECT x' 0';
2024-11-25 19:08:06.891 CET [561455][client backend] [pg_regress/rangetypes][24/17:0] ERROR: malformed range literal: "(),a)" at character 8
2024-11-25 19:08:06.891 CET [561455][client backend] [pg_regress/rangetypes][24/17:0] DETAIL: Missing comma after lower bound.
2024-11-25 19:08:06.891 CET [561455][client backend] [pg_regress/rangetypes][24/17:0] STATEMENT: select '(),a)'::textrange;
2024-11-25 19:08:06.891 CET [561447][client backend] [pg_regress/bit][25/22:0] ERROR: " " is not a valid hexadecimal digit at character 8
2024-11-25 19:08:06.891 CET [561447][client backend] [pg_regress/bit][25/22:0] STATEMENT: SELECT x'0 ';
2024-11-25 19:08:06.891 CET [561453][client backend] [pg_regress/uuid][7/10:0] ERROR: invalid input syntax for type uuid: "{22222222-2222-2222-2222-222222222222 " at character 38
2024-11-25 19:08:06.891 CET [561453][client backend] [pg_regress/uuid][7/10:0] STATEMENT: INSERT INTO guid1(guid_field) VALUES('{22222222-2222-2222-2222-222222222222 ');
2024-11-25 19:08:06.891 CET [561455][client backend] [pg_regress/rangetypes][24/18:0] ERROR: malformed range literal: "(a,))" at character 8
2024-11-25 19:08:06.891 CET [561455][client backend] [pg_regress/rangetypes][24/18:0] DETAIL: Junk after right parenthesis or bracket.
2024-11-25 19:08:06.891 CET [561455][client backend] [pg_regress/rangetypes][24/18:0] STATEMENT: select '(a,))'::textrange;
2024-11-25 19:08:06.891 CET [561444][client backend] [pg_regress/int2][8/70:0] ERROR: value "-0o100001" is out of range for type smallint at character 13
2024-11-25 19:08:06.891 CET [561444][client backend] [pg_regress/int2][8/70:0] STATEMENT: SELECT int2 '-0o100001';
2024-11-25 19:08:06.891 CET [561453][client backend] [pg_regress/uuid][7/11:0] ERROR: invalid input syntax for type uuid: "11111111-1111-1111-G111-111111111111" at character 38
2024-11-25 19:08:06.891 CET [561453][client backend] [pg_regress/uuid][7/11:0] STATEMENT: INSERT INTO guid1(guid_field) VALUES('11111111-1111-1111-G111-111111111111');
2024-11-25 19:08:06.891 CET [561455][client backend] [pg_regress/rangetypes][24/19:0] ERROR: malformed range literal: "(],a)" at character 8
2024-11-25 19:08:06.891 CET [561455][client backend] [pg_regress/rangetypes][24/19:0] DETAIL: Missing comma after lower bound.
2024-11-25 19:08:06.891 CET [561455][client backend] [pg_regress/rangetypes][24/19:0] STATEMENT: select '(],a)'::textrange;
2024-11-25 19:08:06.891 CET [561453][client backend] [pg_regress/uuid][7/12:0] ERROR: invalid input syntax for type uuid: "11+11111-1111-1111-1111-111111111111" at character 38
2024-11-25 19:08:06.891 CET [561453][client backend] [pg_regress/uuid][7/12:0] STATEMENT: INSERT INTO guid1(guid_field) VALUES('11+11111-1111-1111-1111-111111111111');
2024-11-25 19:08:06.891 CET [561455][client backend] [pg_regress/rangetypes][24/20:0] ERROR: malformed range literal: "(a,])" at character 8
2024-11-25 19:08:06.891 CET [561455][client backend] [pg_regress/rangetypes][24/20:0] DETAIL: Junk after right parenthesis or bracket.
2024-11-25 19:08:06.891 CET [561455][client backend] [pg_regress/rangetypes][24/20:0] STATEMENT: select '(a,])'::textrange;
2024-11-25 19:08:06.891 CET [561440][client backend] [pg_regress/char][:0] LOG: disconnection: session time: 0:00:00.030 user=nkey database=regression host=[local]
2024-11-25 19:08:06.891 CET [561444][client backend] [pg_regress/int2][8/72:0] ERROR: value "-0x8001" is out of range for type smallint at character 13
2024-11-25 19:08:06.891 CET [561444][client backend] [pg_regress/int2][8/72:0] STATEMENT: SELECT int2 '-0x8001';
2024-11-25 19:08:06.891 CET [561455][client backend] [pg_regress/rangetypes][24/21:0] ERROR: range lower bound must be less than or equal to range upper bound at character 8
2024-11-25 19:08:06.891 CET [561455][client backend] [pg_regress/rangetypes][24/21:0] STATEMENT: select '[z,a]'::textrange;
2024-11-25 19:08:06.891 CET [561444][client backend] [pg_regress/int2][8/78:0] ERROR: invalid input syntax for type smallint: "_100" at character 13
2024-11-25 19:08:06.891 CET [561444][client backend] [pg_regress/int2][8/78:0] STATEMENT: SELECT int2 '_100';
2024-11-25 19:08:06.892 CET [561444][client backend] [pg_regress/int2][8/79:0] ERROR: invalid input syntax for type smallint: "100_" at character 13
2024-11-25 19:08:06.892 CET [561444][client backend] [pg_regress/int2][8/79:0] STATEMENT: SELECT int2 '100_';
2024-11-25 19:08:06.892 CET [561444][client backend] [pg_regress/int2][8/80:0] ERROR: invalid input syntax for type smallint: "10__000" at character 13
2024-11-25 19:08:06.892 CET [561444][client backend] [pg_regress/int2][8/80:0] STATEMENT: SELECT int2 '10__000';
2024-11-25 19:08:06.892 CET [561449][client backend] [pg_regress/oid][13/14:0] ERROR: invalid input syntax for type oid: "" at character 33
2024-11-25 19:08:06.892 CET [561449][client backend] [pg_regress/oid][13/14:0] STATEMENT: INSERT INTO OID_TBL(f1) VALUES ('');
2024-11-25 19:08:06.893 CET [561449][client backend] [pg_regress/oid][13/15:0] ERROR: invalid input syntax for type oid: " " at character 33
2024-11-25 19:08:06.893 CET [561449][client backend] [pg_regress/oid][13/15:0] STATEMENT: INSERT INTO OID_TBL(f1) VALUES (' ');
2024-11-25 19:08:06.893 CET [561451][client backend] [pg_regress/enum][27/30:0] ERROR: invalid enum label "plutoplutoplutoplutoplutoplutoplutoplutoplutoplutoplutoplutoplutopluto"
2024-11-25 19:08:06.893 CET [561451][client backend] [pg_regress/enum][27/30:0] DETAIL: Labels must be 63 bytes or less.
2024-11-25 19:08:06.893 CET [561451][client backend] [pg_regress/enum][27/30:0] STATEMENT: ALTER TYPE planets ADD VALUE
'plutoplutoplutoplutoplutoplutoplutoplutoplutoplutoplutoplutoplutopluto';
2024-11-25 19:08:06.893 CET [561449][client backend] [pg_regress/oid][13/16:0] ERROR: invalid input syntax for type oid: "asdfasd" at character 33
2024-11-25 19:08:06.893 CET [561449][client backend] [pg_regress/oid][13/16:0] STATEMENT: INSERT INTO OID_TBL(f1) VALUES ('asdfasd');
2024-11-25 19:08:06.893 CET [561451][client backend] [pg_regress/enum][27/31:0] ERROR: "zeus" is not an existing enum label
2024-11-25 19:08:06.893 CET [561451][client backend] [pg_regress/enum][27/31:0] STATEMENT: ALTER TYPE planets ADD VALUE 'pluto' AFTER 'zeus';
2024-11-25 19:08:06.893 CET [561449][client backend] [pg_regress/oid][13/17:0] ERROR: invalid input syntax for type oid: "99asdfasd" at character 33
2024-11-25 19:08:06.893 CET [561449][client backend] [pg_regress/oid][13/17:0] STATEMENT: INSERT INTO OID_TBL(f1) VALUES ('99asdfasd');
2024-11-25 19:08:06.893 CET [561451][client backend] [pg_regress/enum][27/32:0] ERROR: enum label "mercury" already exists
2024-11-25 19:08:06.893 CET [561451][client backend] [pg_regress/enum][27/32:0] STATEMENT: ALTER TYPE planets ADD VALUE 'mercury';
2024-11-25 19:08:06.893 CET [561449][client backend] [pg_regress/oid][13/18:0] ERROR: invalid input syntax for type oid: "5 d" at character 33
2024-11-25 19:08:06.893 CET [561449][client backend] [pg_regress/oid][13/18:0] STATEMENT: INSERT INTO OID_TBL(f1) VALUES ('5 d');
2024-11-25 19:08:06.893 CET [561449][client backend] [pg_regress/oid][13/19:0] ERROR: invalid input syntax for type oid: " 5d" at character 33
2024-11-25 19:08:06.893 CET [561449][client backend] [pg_regress/oid][13/19:0] STATEMENT: INSERT INTO OID_TBL(f1) VALUES (' 5d');
2024-11-25 19:08:06.893 CET [561449][client backend] [pg_regress/oid][13/20:0] ERROR: invalid input syntax for type oid: "5 5" at character 33
2024-11-25 19:08:06.893 CET [561449][client backend] [pg_regress/oid][13/20:0] STATEMENT: INSERT INTO OID_TBL(f1) VALUES ('5 5');
2024-11-25 19:08:06.893 CET [561447][client backend] [pg_regress/bit][25/30:0] ERROR: negative substring length not allowed
2024-11-25 19:08:06.893 CET [561447][client backend] [pg_regress/bit][25/30:0] STATEMENT: SELECT SUBSTRING('01010101'::bit(8) FROM -10 FOR -2147483646) AS "error";
2024-11-25 19:08:06.894 CET [561449][client backend] [pg_regress/oid][13/21:0] ERROR: invalid input syntax for type oid: " - 500" at character 33
2024-11-25 19:08:06.894 CET [561449][client backend] [pg_regress/oid][13/21:0] STATEMENT: INSERT INTO OID_TBL(f1) VALUES (' - 500');
2024-11-25 19:08:06.894 CET [561447][client backend] [pg_regress/bit][25/33:0] ERROR: negative substring length not allowed
2024-11-25 19:08:06.894 CET [561447][client backend] [pg_regress/bit][25/33:0] STATEMENT: SELECT SUBSTRING('01010101'::varbit FROM -10 FOR -2147483646) AS "error";
2024-11-25 19:08:06.894 CET [561452][client backend] [pg_regress/int8][21/61:0] ERROR: bigint out of range
2024-11-25 19:08:06.894 CET [561452][client backend] [pg_regress/int8][21/61:0] STATEMENT: SELECT q1, q2, q1 * q2 AS multiply FROM INT8_TBL;
2024-11-25 19:08:06.894 CET [561449][client backend] [pg_regress/oid][13/22:0] ERROR: value "32958209582039852935" is out of range for type oid at character 33
2024-11-25 19:08:06.894 CET [561449][client backend] [pg_regress/oid][13/22:0] STATEMENT: INSERT INTO OID_TBL(f1) VALUES ('32958209582039852935');
2024-11-25 19:08:06.894 CET [561449][client backend] [pg_regress/oid][13/23:0] ERROR: value "-23582358720398502385" is out of range for type oid at character 33
2024-11-25 19:08:06.894 CET [561449][client backend] [pg_regress/oid][13/23:0] STATEMENT: INSERT INTO OID_TBL(f1) VALUES ('-23582358720398502385');
2024-11-25 19:08:06.894 CET [561467][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.895 CET [561467][client backend] [[unknown]][29/6:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.895 CET [561467][client backend] [[unknown]][29/6:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/simple-write-skew
2024-11-25 19:08:06.895 CET [561438][client backend] [pg_regress/boolean][5/63:0] ERROR: invalid input syntax for type boolean: "XXX" at character 43
2024-11-25 19:08:06.895 CET [561438][client backend] [pg_regress/boolean][5/63:0] STATEMENT: INSERT INTO BOOLTBL2 (f1)
VALUES (bool 'XXX');
2024-11-25 19:08:06.897 CET [561454][client backend] [pg_regress/float8][23/160:0] ERROR: zero raised to a negative power is undefined
2024-11-25 19:08:06.897 CET [561454][client backend] [pg_regress/float8][23/160:0] STATEMENT: SELECT power(float8 '0', float8 '-inf');
2024-11-25 19:08:06.897 CET [561458][client backend] [pg_regress/money][22/63:0] ERROR: value "123456789012345678" is out of range for type money at character 8
2024-11-25 19:08:06.897 CET [561458][client backend] [pg_regress/money][22/63:0] STATEMENT: SELECT '123456789012345678'::money;
2024-11-25 19:08:06.897 CET [561458][client backend] [pg_regress/money][22/64:0] ERROR: value "9223372036854775807" is out of range for type money at character 8
2024-11-25 19:08:06.897 CET [561458][client backend] [pg_regress/money][22/64:0] STATEMENT: SELECT '9223372036854775807'::money;
2024-11-25 19:08:06.898 CET [561458][client backend] [pg_regress/money][22/68:0] ERROR: value "-123456789012345678" is out of range for type money at character 8
2024-11-25 19:08:06.898 CET [561458][client backend] [pg_regress/money][22/68:0] STATEMENT: SELECT '-123456789012345678'::money;
2024-11-25 19:08:06.898 CET [561458][client backend] [pg_regress/money][22/69:0] ERROR: value "-9223372036854775808" is out of range for type money at character 8
2024-11-25 19:08:06.898 CET [561458][client backend] [pg_regress/money][22/69:0] STATEMENT: SELECT '-9223372036854775808'::money;
2024-11-25 19:08:06.899 CET [561023][checkpointer] LOG: checkpoint complete: wrote 2611 buffers (15.9%), wrote 3 SLRU buffers; 0 WAL file(s) added, 1 removed, 0 recycled; write=0.041 s, sync=0.001 s, total=0.046 s; sync files=0, longest=0.000 s, average=0.000 s; distance=19165 kB, estimate=28154 kB; lsn=4/3F7E3F78, redo lsn=4/3F6033D0
2024-11-25 19:08:06.900 CET [561444][client backend] [pg_regress/int2][:0] LOG: disconnection: session time: 0:00:00.041 user=nkey database=regression host=[local]
2024-11-25 19:08:06.900 CET [561454][client backend] [pg_regress/float8][23/181:0] ERROR: a negative number raised to a non-integer power yields a complex result
2024-11-25 19:08:06.900 CET [561454][client backend] [pg_regress/float8][23/181:0] STATEMENT: SELECT power(float8 '-inf', float8 '3.5');
2024-11-25 19:08:06.902 CET [561449][client backend] [pg_regress/oid][:0] LOG: disconnection: session time: 0:00:00.040 user=nkey database=regression host=[local]
2024-11-25 19:08:06.902 CET [561453][client backend] [pg_regress/uuid][7/30:526628] ERROR: duplicate key value violates unique constraint "guid1_unique_btree"
2024-11-25 19:08:06.902 CET [561453][client backend] [pg_regress/uuid][7/30:526628] DETAIL: Key (guid_field)=(11111111-1111-1111-1111-111111111111) already exists.
2024-11-25 19:08:06.902 CET [561453][client backend] [pg_regress/uuid][7/30:526628] STATEMENT: INSERT INTO guid1(guid_field) VALUES('11111111-1111-1111-1111-111111111111');
2024-11-25 19:08:06.902 CET [561454][client backend] [pg_regress/float8][23/190:0] ERROR: value out of range: overflow
2024-11-25 19:08:06.902 CET [561454][client backend] [pg_regress/float8][23/190:0] STATEMENT: SELECT f.f1 * '1e200' from FLOAT8_TBL f;
2024-11-25 19:08:06.902 CET [561454][client backend] [pg_regress/float8][23/191:0] ERROR: value out of range: overflow
2024-11-25 19:08:06.902 CET [561454][client backend] [pg_regress/float8][23/191:0] STATEMENT: SELECT f.f1 ^ '1e200' from FLOAT8_TBL f;
2024-11-25 19:08:06.903 CET [561454][client backend] [pg_regress/float8][23/193:0] ERROR: cannot take logarithm of zero
2024-11-25 19:08:06.903 CET [561454][client backend] [pg_regress/float8][23/193:0] STATEMENT: SELECT ln(f.f1) from FLOAT8_TBL f where f.f1 = '0.0' ;
2024-11-25 19:08:06.903 CET [561454][client backend] [pg_regress/float8][23/194:0] ERROR: cannot take logarithm of a negative number
2024-11-25 19:08:06.903 CET [561454][client backend] [pg_regress/float8][23/194:0] STATEMENT: SELECT ln(f.f1) from FLOAT8_TBL f where f.f1 < '0.0' ;
2024-11-25 19:08:06.904 CET [561448][client backend] [pg_regress/float4][:0] LOG: disconnection: session time: 0:00:00.044 user=nkey database=regression host=[local]
2024-11-25 19:08:06.904 CET [561454][client backend] [pg_regress/float8][23/195:0] ERROR: value out of range: underflow
2024-11-25 19:08:06.904 CET [561454][client backend] [pg_regress/float8][23/195:0] STATEMENT: SELECT exp(f.f1) from FLOAT8_TBL f;
2024-11-25 19:08:06.904 CET [561454][client backend] [pg_regress/float8][23/196:0] ERROR: division by zero
2024-11-25 19:08:06.904 CET [561454][client backend] [pg_regress/float8][23/196:0] STATEMENT: SELECT f.f1 / '0.0' from FLOAT8_TBL f;
2024-11-25 19:08:06.905 CET [561458][client backend] [pg_regress/money][22/78:0] ERROR: value "-92233720368547758.09" is out of range for type money at character 8
2024-11-25 19:08:06.905 CET [561458][client backend] [pg_regress/money][22/78:0] STATEMENT: SELECT '-92233720368547758.09'::money;
2024-11-25 19:08:06.905 CET [561458][client backend] [pg_regress/money][22/79:0] ERROR: value "92233720368547758.08" is out of range for type money at character 8
2024-11-25 19:08:06.905 CET [561458][client backend] [pg_regress/money][22/79:0] STATEMENT: SELECT '92233720368547758.08'::money;
2024-11-25 19:08:06.905 CET [561458][client backend] [pg_regress/money][22/80:0] ERROR: value "-92233720368547758.085" is out of range for type money at character 8
2024-11-25 19:08:06.905 CET [561458][client backend] [pg_regress/money][22/80:0] STATEMENT: SELECT '-92233720368547758.085'::money;
2024-11-25 19:08:06.905 CET [561458][client backend] [pg_regress/money][22/81:0] ERROR: value "92233720368547758.075" is out of range for type money at character 8
2024-11-25 19:08:06.905 CET [561458][client backend] [pg_regress/money][22/81:0] STATEMENT: SELECT '92233720368547758.075'::money;
2024-11-25 19:08:06.907 CET [561454][client backend] [pg_regress/float8][23/216:0] ERROR: input is out of range
2024-11-25 19:08:06.907 CET [561454][client backend] [pg_regress/float8][23/216:0] STATEMENT: SELECT acosh(float8 '-infinity');
2024-11-25 19:08:06.908 CET [561454][client backend] [pg_regress/float8][23/218:0] ERROR: input is out of range
2024-11-25 19:08:06.908 CET [561454][client backend] [pg_regress/float8][23/218:0] STATEMENT: SELECT atanh(float8 'infinity');
2024-11-25 19:08:06.908 CET [561454][client backend] [pg_regress/float8][23/219:0] ERROR: input is out of range
2024-11-25 19:08:06.908 CET [561454][client backend] [pg_regress/float8][23/219:0] STATEMENT: SELECT atanh(float8 '-infinity');
2024-11-25 19:08:06.908 CET [561452][client backend] [pg_regress/int8][21/102:0] ERROR: value "-9223372036854775809" is out of range for type bigint at character 8
2024-11-25 19:08:06.908 CET [561452][client backend] [pg_regress/int8][21/102:0] STATEMENT: select '-9223372036854775809'::int8;
2024-11-25 19:08:06.908 CET [561452][client backend] [pg_regress/int8][21/104:0] ERROR: value "9223372036854775808" is out of range for type bigint at character 8
2024-11-25 19:08:06.908 CET [561452][client backend] [pg_regress/int8][21/104:0] STATEMENT: select '9223372036854775808'::int8;
2024-11-25 19:08:06.909 CET [561455][client backend] [pg_regress/rangetypes][24/80:0] ERROR: range lower bound must be less than or equal to range upper bound
2024-11-25 19:08:06.909 CET [561455][client backend] [pg_regress/rangetypes][24/80:0] STATEMENT: select numrange(2.0, 1.0);
2024-11-25 19:08:06.909 CET [561452][client backend] [pg_regress/int8][21/106:0] ERROR: bigint out of range
2024-11-25 19:08:06.909 CET [561452][client backend] [pg_regress/int8][21/106:0] STATEMENT: select -('-9223372036854775808'::int8);
2024-11-25 19:08:06.909 CET [561452][client backend] [pg_regress/int8][21/107:0] ERROR: bigint out of range
2024-11-25 19:08:06.909 CET [561452][client backend] [pg_regress/int8][21/107:0] STATEMENT: select 0::int8 - '-9223372036854775808'::int8;
2024-11-25 19:08:06.909 CET [561458][client backend] [pg_regress/money][22/105:0] ERROR: money out of range
2024-11-25 19:08:06.909 CET [561458][client backend] [pg_regress/money][22/105:0] STATEMENT: SELECT '92233720368547758.07'::money + '0.01'::money;
2024-11-25 19:08:06.909 CET [561452][client backend] [pg_regress/int8][21/108:0] ERROR: bigint out of range
2024-11-25 19:08:06.909 CET [561452][client backend] [pg_regress/int8][21/108:0] STATEMENT: select '9223372036854775800'::int8 + '9223372036854775800'::int8;
2024-11-25 19:08:06.909 CET [561458][client backend] [pg_regress/money][22/106:0] ERROR: money out of range
2024-11-25 19:08:06.909 CET [561458][client backend] [pg_regress/money][22/106:0] STATEMENT: SELECT '-92233720368547758.08'::money - '0.01'::money;
2024-11-25 19:08:06.909 CET [561452][client backend] [pg_regress/int8][21/109:0] ERROR: bigint out of range
2024-11-25 19:08:06.909 CET [561452][client backend] [pg_regress/int8][21/109:0] STATEMENT: select '-9223372036854775800'::int8 + '-9223372036854775800'::int8;
2024-11-25 19:08:06.909 CET [561458][client backend] [pg_regress/money][22/107:0] ERROR: money out of range
2024-11-25 19:08:06.909 CET [561458][client backend] [pg_regress/money][22/107:0] STATEMENT: SELECT '92233720368547758.07'::money * 2::float8;
2024-11-25 19:08:06.909 CET [561452][client backend] [pg_regress/int8][21/110:0] ERROR: bigint out of range
2024-11-25 19:08:06.909 CET [561452][client backend] [pg_regress/int8][21/110:0] STATEMENT: select '9223372036854775800'::int8 - '-9223372036854775800'::int8;
2024-11-25 19:08:06.910 CET [561452][client backend] [pg_regress/int8][21/111:0] ERROR: bigint out of range
2024-11-25 19:08:06.910 CET [561452][client backend] [pg_regress/int8][21/111:0] STATEMENT: select '-9223372036854775800'::int8 - '9223372036854775800'::int8;
2024-11-25 19:08:06.910 CET [561458][client backend] [pg_regress/money][22/108:0] ERROR: money out of range
2024-11-25 19:08:06.910 CET [561458][client backend] [pg_regress/money][22/108:0] STATEMENT: SELECT '-1'::money / 1.175494e-38::float4;
2024-11-25 19:08:06.910 CET [561452][client backend] [pg_regress/int8][21/112:0] ERROR: bigint out of range
2024-11-25 19:08:06.910 CET [561452][client backend] [pg_regress/int8][21/112:0] STATEMENT: select '9223372036854775800'::int8 * '9223372036854775800'::int8;
2024-11-25 19:08:06.910 CET [561458][client backend] [pg_regress/money][22/109:0] ERROR: money out of range
2024-11-25 19:08:06.910 CET [561458][client backend] [pg_regress/money][22/109:0] STATEMENT: SELECT '92233720368547758.07'::money * 2::int4;
2024-11-25 19:08:06.910 CET [561452][client backend] [pg_regress/int8][21/113:0] ERROR: division by zero
2024-11-25 19:08:06.910 CET [561452][client backend] [pg_regress/int8][21/113:0] STATEMENT: select '9223372036854775800'::int8 / '0'::int8;
2024-11-25 19:08:06.910 CET [561454][client backend] [pg_regress/float8][23/224:0] ERROR: "10e400" is out of range for type double precision at character 36
2024-11-25 19:08:06.910 CET [561454][client backend] [pg_regress/float8][23/224:0] STATEMENT: INSERT INTO FLOAT8_TBL(f1) VALUES ('10e400');
2024-11-25 19:08:06.910 CET [561458][client backend] [pg_regress/money][22/110:0] ERROR: division by zero
2024-11-25 19:08:06.910 CET [561458][client backend] [pg_regress/money][22/110:0] STATEMENT: SELECT '1'::money / 0::int2;
2024-11-25 19:08:06.910 CET [561452][client backend] [pg_regress/int8][21/114:0] ERROR: division by zero
2024-11-25 19:08:06.910 CET [561452][client backend] [pg_regress/int8][21/114:0] STATEMENT: select '9223372036854775800'::int8 % '0'::int8;
2024-11-25 19:08:06.910 CET [561454][client backend] [pg_regress/float8][23/225:0] ERROR: "-10e400" is out of range for type double precision at character 36
2024-11-25 19:08:06.910 CET [561454][client backend] [pg_regress/float8][23/225:0] STATEMENT: INSERT INTO FLOAT8_TBL(f1) VALUES ('-10e400');
2024-11-25 19:08:06.910 CET [561458][client backend] [pg_regress/money][22/111:0] ERROR: money out of range
2024-11-25 19:08:06.910 CET [561458][client backend] [pg_regress/money][22/111:0] STATEMENT: SELECT '42'::money * 'inf'::float8;
2024-11-25 19:08:06.910 CET [561454][client backend] [pg_regress/float8][23/226:0] ERROR: "10e-400" is out of range for type double precision at character 36
2024-11-25 19:08:06.910 CET [561454][client backend] [pg_regress/float8][23/226:0] STATEMENT: INSERT INTO FLOAT8_TBL(f1) VALUES ('10e-400');
2024-11-25 19:08:06.910 CET [561452][client backend] [pg_regress/int8][21/115:0] ERROR: bigint out of range
2024-11-25 19:08:06.910 CET [561452][client backend] [pg_regress/int8][21/115:0] STATEMENT: select abs('-9223372036854775808'::int8);
2024-11-25 19:08:06.910 CET [561458][client backend] [pg_regress/money][22/112:0] ERROR: money out of range
2024-11-25 19:08:06.910 CET [561458][client backend] [pg_regress/money][22/112:0] STATEMENT: SELECT '42'::money * '-inf'::float8;
2024-11-25 19:08:06.910 CET [561454][client backend] [pg_regress/float8][23/227:0] ERROR: "-10e-400" is out of range for type double precision at character 36
2024-11-25 19:08:06.910 CET [561454][client backend] [pg_regress/float8][23/227:0] STATEMENT: INSERT INTO FLOAT8_TBL(f1) VALUES ('-10e-400');
2024-11-25 19:08:06.910 CET [561452][client backend] [pg_regress/int8][21/116:0] ERROR: bigint out of range
2024-11-25 19:08:06.910 CET [561452][client backend] [pg_regress/int8][21/116:0] STATEMENT: select '9223372036854775800'::int8 + '100'::int4;
2024-11-25 19:08:06.910 CET [561458][client backend] [pg_regress/money][22/113:0] ERROR: money out of range
2024-11-25 19:08:06.910 CET [561458][client backend] [pg_regress/money][22/113:0] STATEMENT: SELECT '42'::money * 'nan'::float4;
2024-11-25 19:08:06.910 CET [561452][client backend] [pg_regress/int8][21/117:0] ERROR: bigint out of range
2024-11-25 19:08:06.910 CET [561452][client backend] [pg_regress/int8][21/117:0] STATEMENT: select '-9223372036854775800'::int8 - '100'::int4;
2024-11-25 19:08:06.910 CET [561452][client backend] [pg_regress/int8][21/118:0] ERROR: bigint out of range
2024-11-25 19:08:06.910 CET [561452][client backend] [pg_regress/int8][21/118:0] STATEMENT: select '9223372036854775800'::int8 * '100'::int4;
2024-11-25 19:08:06.910 CET [561458][client backend] [pg_regress/money][:0] LOG: disconnection: session time: 0:00:00.044 user=nkey database=regression host=[local]
2024-11-25 19:08:06.910 CET [561452][client backend] [pg_regress/int8][21/119:0] ERROR: bigint out of range
2024-11-25 19:08:06.910 CET [561452][client backend] [pg_regress/int8][21/119:0] STATEMENT: select '100'::int4 + '9223372036854775800'::int8;
2024-11-25 19:08:06.911 CET [561452][client backend] [pg_regress/int8][21/120:0] ERROR: bigint out of range
2024-11-25 19:08:06.911 CET [561452][client backend] [pg_regress/int8][21/120:0] STATEMENT: select '-100'::int4 - '9223372036854775800'::int8;
2024-11-25 19:08:06.911 CET [561452][client backend] [pg_regress/int8][21/121:0] ERROR: bigint out of range
2024-11-25 19:08:06.911 CET [561452][client backend] [pg_regress/int8][21/121:0] STATEMENT: select '100'::int4 * '9223372036854775800'::int8;
2024-11-25 19:08:06.911 CET [561452][client backend] [pg_regress/int8][21/122:0] ERROR: bigint out of range
2024-11-25 19:08:06.911 CET [561452][client backend] [pg_regress/int8][21/122:0] STATEMENT: select '9223372036854775800'::int8 + '100'::int2;
2024-11-25 19:08:06.911 CET [561452][client backend] [pg_regress/int8][21/123:0] ERROR: bigint out of range
2024-11-25 19:08:06.911 CET [561452][client backend] [pg_regress/int8][21/123:0] STATEMENT: select '-9223372036854775800'::int8 - '100'::int2;
2024-11-25 19:08:06.911 CET [561452][client backend] [pg_regress/int8][21/124:0] ERROR: bigint out of range
2024-11-25 19:08:06.911 CET [561452][client backend] [pg_regress/int8][21/124:0] STATEMENT: select '9223372036854775800'::int8 * '100'::int2;
2024-11-25 19:08:06.911 CET [561452][client backend] [pg_regress/int8][21/125:0] ERROR: division by zero
2024-11-25 19:08:06.911 CET [561452][client backend] [pg_regress/int8][21/125:0] STATEMENT: select '-9223372036854775808'::int8 / '0'::int2;
2024-11-25 19:08:06.911 CET [561452][client backend] [pg_regress/int8][21/126:0] ERROR: bigint out of range
2024-11-25 19:08:06.911 CET [561452][client backend] [pg_regress/int8][21/126:0] STATEMENT: select '100'::int2 + '9223372036854775800'::int8;
2024-11-25 19:08:06.911 CET [561452][client backend] [pg_regress/int8][21/127:0] ERROR: bigint out of range
2024-11-25 19:08:06.911 CET [561452][client backend] [pg_regress/int8][21/127:0] STATEMENT: select '-100'::int2 - '9223372036854775800'::int8;
2024-11-25 19:08:06.911 CET [561452][client backend] [pg_regress/int8][21/128:0] ERROR: bigint out of range
2024-11-25 19:08:06.911 CET [561452][client backend] [pg_regress/int8][21/128:0] STATEMENT: select '100'::int2 * '9223372036854775800'::int8;
2024-11-25 19:08:06.911 CET [561452][client backend] [pg_regress/int8][21/129:0] ERROR: division by zero
2024-11-25 19:08:06.911 CET [561452][client backend] [pg_regress/int8][21/129:0] STATEMENT: select '100'::int2 / '0'::int8;
2024-11-25 19:08:06.912 CET [561452][client backend] [pg_regress/int8][21/131:0] ERROR: integer out of range
2024-11-25 19:08:06.912 CET [561452][client backend] [pg_regress/int8][21/131:0] STATEMENT: SELECT CAST(q1 AS int4) FROM int8_tbl WHERE q2 <> 456;
2024-11-25 19:08:06.912 CET [561452][client backend] [pg_regress/int8][21/133:0] ERROR: smallint out of range
2024-11-25 19:08:06.912 CET [561452][client backend] [pg_regress/int8][21/133:0] STATEMENT: SELECT CAST(q1 AS int2) FROM int8_tbl WHERE q2 <> 456;
2024-11-25 19:08:06.913 CET [561452][client backend] [pg_regress/int8][21/137:0] ERROR: bigint out of range
2024-11-25 19:08:06.913 CET [561452][client backend] [pg_regress/int8][21/137:0] STATEMENT: SELECT CAST('922337203685477580700.0'::float8 AS int8);
2024-11-25 19:08:06.913 CET [561452][client backend] [pg_regress/int8][21/138:0] ERROR: OID out of range
2024-11-25 19:08:06.913 CET [561452][client backend] [pg_regress/int8][21/138:0] STATEMENT: SELECT CAST(q1 AS oid) FROM INT8_TBL;
2024-11-25 19:08:06.914 CET [561414][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.064 user=nkey database=postgres host=[local]
2024-11-25 19:08:06.915 CET [561454][client backend] [pg_regress/float8][23/231:0] ERROR: smallint out of range
2024-11-25 19:08:06.915 CET [561454][client backend] [pg_regress/float8][23/231:0] STATEMENT: SELECT '32767.6'::float8::int2;
2024-11-25 19:08:06.915 CET [561454][client backend] [pg_regress/float8][23/233:0] ERROR: smallint out of range
2024-11-25 19:08:06.915 CET [561454][client backend] [pg_regress/float8][23/233:0] STATEMENT: SELECT '-32768.6'::float8::int2;
2024-11-25 19:08:06.915 CET [561454][client backend] [pg_regress/float8][23/235:0] ERROR: integer out of range
2024-11-25 19:08:06.915 CET [561454][client backend] [pg_regress/float8][23/235:0] STATEMENT: SELECT '2147483647.6'::float8::int4;
2024-11-25 19:08:06.915 CET [561454][client backend] [pg_regress/float8][23/237:0] ERROR: integer out of range
2024-11-25 19:08:06.915 CET [561454][client backend] [pg_regress/float8][23/237:0] STATEMENT: SELECT '-2147483648.6'::float8::int4;
2024-11-25 19:08:06.915 CET [561452][client backend] [pg_regress/int8][21/143:0] ERROR: step size cannot equal zero
2024-11-25 19:08:06.915 CET [561452][client backend] [pg_regress/int8][21/143:0] STATEMENT: SELECT * FROM generate_series('+4567890123456789'::int8, '+4567890123456799'::int8, 0);
2024-11-25 19:08:06.916 CET [561455][client backend] [pg_regress/rangetypes][24/104:0] ERROR: result of range union would not be contiguous
2024-11-25 19:08:06.916 CET [561455][client backend] [pg_regress/rangetypes][24/104:0] STATEMENT: select numrange(1.0, 2.0) + numrange(2.5, 3.0);
2024-11-25 19:08:06.916 CET [561438][client backend] [pg_regress/boolean][:0] LOG: disconnection: session time: 0:00:00.058 user=nkey database=regression host=[local]
2024-11-25 19:08:06.916 CET [561454][client backend] [pg_regress/float8][23/239:0] ERROR: bigint out of range
2024-11-25 19:08:06.916 CET [561454][client backend] [pg_regress/float8][23/239:0] STATEMENT: SELECT '9223372036854775807'::float8::int8;
2024-11-25 19:08:06.916 CET [561452][client backend] [pg_regress/int8][21/147:0] ERROR: bigint out of range
2024-11-25 19:08:06.916 CET [561452][client backend] [pg_regress/int8][21/147:0] STATEMENT: SELECT (-9223372036854775808)::int8 * (-1)::int8;
2024-11-25 19:08:06.916 CET [561452][client backend] [pg_regress/int8][21/148:0] ERROR: bigint out of range
2024-11-25 19:08:06.916 CET [561452][client backend] [pg_regress/int8][21/148:0] STATEMENT: SELECT (-9223372036854775808)::int8 / (-1)::int8;
2024-11-25 19:08:06.916 CET [561447][client backend] [pg_regress/bit][25/48:0] ERROR: cannot AND bit strings of different sizes
2024-11-25 19:08:06.916 CET [561447][client backend] [pg_regress/bit][25/48:0] STATEMENT: select B'001' & B'10';
2024-11-25 19:08:06.916 CET [561447][client backend] [pg_regress/bit][25/49:0] ERROR: cannot OR bit strings of different sizes
2024-11-25 19:08:06.916 CET [561447][client backend] [pg_regress/bit][25/49:0] STATEMENT: select B'0111' | B'011';
2024-11-25 19:08:06.916 CET [561453][client backend] [pg_regress/uuid][:0] LOG: disconnection: session time: 0:00:00.050 user=nkey database=regression host=[local]
2024-11-25 19:08:06.916 CET [561447][client backend] [pg_regress/bit][25/50:0] ERROR: cannot XOR bit strings of different sizes
2024-11-25 19:08:06.916 CET [561447][client backend] [pg_regress/bit][25/50:0] STATEMENT: select B'0010' # B'011101';
2024-11-25 19:08:06.916 CET [561452][client backend] [pg_regress/int8][21/150:0] ERROR: bigint out of range
2024-11-25 19:08:06.916 CET [561452][client backend] [pg_regress/int8][21/150:0] STATEMENT: SELECT (-9223372036854775808)::int8 * (-1)::int4;
2024-11-25 19:08:06.916 CET [561452][client backend] [pg_regress/int8][21/151:0] ERROR: bigint out of range
2024-11-25 19:08:06.916 CET [561452][client backend] [pg_regress/int8][21/151:0] STATEMENT: SELECT (-9223372036854775808)::int8 / (-1)::int4;
2024-11-25 19:08:06.917 CET [561452][client backend] [pg_regress/int8][21/153:0] ERROR: bigint out of range
2024-11-25 19:08:06.917 CET [561452][client backend] [pg_regress/int8][21/153:0] STATEMENT: SELECT (-9223372036854775808)::int8 * (-1)::int2;
2024-11-25 19:08:06.917 CET [561452][client backend] [pg_regress/int8][21/154:0] ERROR: bigint out of range
2024-11-25 19:08:06.917 CET [561452][client backend] [pg_regress/int8][21/154:0] STATEMENT: SELECT (-9223372036854775808)::int8 / (-1)::int2;
2024-11-25 19:08:06.917 CET [561454][client backend] [pg_regress/float8][23/241:0] ERROR: bigint out of range
2024-11-25 19:08:06.917 CET [561454][client backend] [pg_regress/float8][23/241:0] STATEMENT: SELECT '-9223372036854780000'::float8::int8;
2024-11-25 19:08:06.918 CET [561452][client backend] [pg_regress/int8][21/159:0] ERROR: bigint out of range
2024-11-25 19:08:06.918 CET [561452][client backend] [pg_regress/int8][21/159:0] STATEMENT: SELECT gcd((-9223372036854775808)::int8, 0::int8);
2024-11-25 19:08:06.918 CET [561452][client backend] [pg_regress/int8][21/160:0] ERROR: bigint out of range
2024-11-25 19:08:06.918 CET [561452][client backend] [pg_regress/int8][21/160:0] STATEMENT: SELECT gcd((-9223372036854775808)::int8, (-9223372036854775808)::int8);
2024-11-25 19:08:06.919 CET [561452][client backend] [pg_regress/int8][21/162:0] ERROR: bigint out of range
2024-11-25 19:08:06.919 CET [561452][client backend] [pg_regress/int8][21/162:0] STATEMENT: SELECT lcm((-9223372036854775808)::int8, 1::int8);
2024-11-25 19:08:06.919 CET [561452][client backend] [pg_regress/int8][21/163:0] ERROR: bigint out of range
2024-11-25 19:08:06.919 CET [561452][client backend] [pg_regress/int8][21/163:0] STATEMENT: SELECT lcm(9223372036854775807::int8, 9223372036854775806::int8);
2024-11-25 19:08:06.920 CET [561452][client backend] [pg_regress/int8][21/167:0] ERROR: invalid input syntax for type bigint: "0b" at character 13
2024-11-25 19:08:06.920 CET [561452][client backend] [pg_regress/int8][21/167:0] STATEMENT: SELECT int8 '0b';
2024-11-25 19:08:06.920 CET [561452][client backend] [pg_regress/int8][21/168:0] ERROR: invalid input syntax for type bigint: "0o" at character 13
2024-11-25 19:08:06.920 CET [561452][client backend] [pg_regress/int8][21/168:0] STATEMENT: SELECT int8 '0o';
2024-11-25 19:08:06.920 CET [561452][client backend] [pg_regress/int8][21/169:0] ERROR: invalid input syntax for type bigint: "0x" at character 13
2024-11-25 19:08:06.920 CET [561452][client backend] [pg_regress/int8][21/169:0] STATEMENT: SELECT int8 '0x';
2024-11-25 19:08:06.920 CET [561467][client backend] [isolation/simple-write-skew/s2][29/9:526675] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:06.920 CET [561467][client backend] [isolation/simple-write-skew/s2][29/9:526675] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:06.920 CET [561467][client backend] [isolation/simple-write-skew/s2][29/9:526675] HINT: The transaction might succeed if retried.
2024-11-25 19:08:06.920 CET [561467][client backend] [isolation/simple-write-skew/s2][29/9:526675] STATEMENT: COMMIT;
2024-11-25 19:08:06.920 CET [561452][client backend] [pg_regress/int8][21/171:0] ERROR: value "0b1000000000000000000000000000000000000000000000000000000000000000" is out of range for type bigint at character 13
2024-11-25 19:08:06.920 CET [561452][client backend] [pg_regress/int8][21/171:0] STATEMENT: SELECT int8 '0b1000000000000000000000000000000000000000000000000000000000000000';
2024-11-25 19:08:06.920 CET [561470][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.920 CET [561452][client backend] [pg_regress/int8][21/173:0] ERROR: value "0o1000000000000000000000" is out of range for type bigint at character 13
2024-11-25 19:08:06.920 CET [561452][client backend] [pg_regress/int8][21/173:0] STATEMENT: SELECT int8 '0o1000000000000000000000';
2024-11-25 19:08:06.921 CET [561452][client backend] [pg_regress/int8][21/175:0] ERROR: value "0x8000000000000000" is out of range for type bigint at character 13
2024-11-25 19:08:06.921 CET [561452][client backend] [pg_regress/int8][21/175:0] STATEMENT: SELECT int8 '0x8000000000000000';
2024-11-25 19:08:06.921 CET [561452][client backend] [pg_regress/int8][21/177:0] ERROR: value "-0b1000000000000000000000000000000000000000000000000000000000000001" is out of range for type bigint at character 13
2024-11-25 19:08:06.921 CET [561452][client backend] [pg_regress/int8][21/177:0] STATEMENT: SELECT int8 '-0b1000000000000000000000000000000000000000000000000000000000000001';
2024-11-25 19:08:06.921 CET [561470][client backend] [[unknown]][30/20:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.921 CET [561470][client backend] [[unknown]][30/20:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:06.921 CET [561452][client backend] [pg_regress/int8][21/179:0] ERROR: value "-0o1000000000000000000001" is out of range for type bigint at character 13
2024-11-25 19:08:06.921 CET [561452][client backend] [pg_regress/int8][21/179:0] STATEMENT: SELECT int8 '-0o1000000000000000000001';
2024-11-25 19:08:06.921 CET [561452][client backend] [pg_regress/int8][21/181:0] ERROR: value "-0x8000000000000001" is out of range for type bigint at character 13
2024-11-25 19:08:06.921 CET [561452][client backend] [pg_regress/int8][21/181:0] STATEMENT: SELECT int8 '-0x8000000000000001';
2024-11-25 19:08:06.922 CET [561466][client backend] [pg_regress/macaddr][:0] LOG: disconnection: session time: 0:00:00.038 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:06.923 CET [561452][client backend] [pg_regress/int8][21/187:0] ERROR: invalid input syntax for type bigint: "_100" at character 13
2024-11-25 19:08:06.923 CET [561452][client backend] [pg_regress/int8][21/187:0] STATEMENT: SELECT int8 '_100';
2024-11-25 19:08:06.923 CET [561452][client backend] [pg_regress/int8][21/188:0] ERROR: invalid input syntax for type bigint: "100_" at character 13
2024-11-25 19:08:06.923 CET [561452][client backend] [pg_regress/int8][21/188:0] STATEMENT: SELECT int8 '100_';
2024-11-25 19:08:06.923 CET [561452][client backend] [pg_regress/int8][21/189:0] ERROR: invalid input syntax for type bigint: "100__000" at character 13
2024-11-25 19:08:06.923 CET [561452][client backend] [pg_regress/int8][21/189:0] STATEMENT: SELECT int8 '100__000';
2024-11-25 19:08:06.923 CET [561452][client backend] [pg_regress/int8][:0] LOG: disconnection: session time: 0:00:00.060 user=nkey database=regression host=[local]
2024-11-25 19:08:06.926 CET [561465][client backend] [isolation/simple-write-skew/s1][32/15:526690] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:06.926 CET [561465][client backend] [isolation/simple-write-skew/s1][32/15:526690] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:06.926 CET [561465][client backend] [isolation/simple-write-skew/s1][32/15:526690] HINT: The transaction might succeed if retried.
2024-11-25 19:08:06.926 CET [561465][client backend] [isolation/simple-write-skew/s1][32/15:526690] STATEMENT: COMMIT;
2024-11-25 19:08:06.928 CET [561454][client backend] [pg_regress/float8][:0] LOG: disconnection: session time: 0:00:00.060 user=nkey database=regression host=[local]
2024-11-25 19:08:06.930 CET [561474][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.931 CET [561474][client backend] [[unknown]][33/4:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.931 CET [561474][client backend] [[unknown]][33/4:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/macaddr8
2024-11-25 19:08:06.932 CET [561447][client backend] [pg_regress/bit][25/113:0] ERROR: bit index 16 out of valid range (0..15)
2024-11-25 19:08:06.932 CET [561447][client backend] [pg_regress/bit][25/113:0] STATEMENT: SELECT set_bit(B'0101011000100100', 16, 1);
2024-11-25 19:08:06.933 CET [561467][client backend] [isolation/simple-write-skew/s2][29/11:526718] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:06.933 CET [561467][client backend] [isolation/simple-write-skew/s2][29/11:526718] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:06.933 CET [561467][client backend] [isolation/simple-write-skew/s2][29/11:526718] HINT: The transaction might succeed if retried.
2024-11-25 19:08:06.933 CET [561467][client backend] [isolation/simple-write-skew/s2][29/11:526718] STATEMENT: COMMIT;
2024-11-25 19:08:06.933 CET [561451][client backend] [pg_regress/enum][27/104:0] ERROR: value for domain rgb violates check constraint "rgb_check"
2024-11-25 19:08:06.933 CET [561451][client backend] [pg_regress/enum][27/104:0] STATEMENT: SELECT 'purple'::rgb;
2024-11-25 19:08:06.934 CET [561451][client backend] [pg_regress/enum][27/105:0] ERROR: value for domain rgb violates check constraint "rgb_check"
2024-11-25 19:08:06.934 CET [561451][client backend] [pg_regress/enum][27/105:0] STATEMENT: SELECT 'purple'::rainbow::rgb;
2024-11-25 19:08:06.941 CET [561465][client backend] [isolation/simple-write-skew/s1][32/17:526739] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:06.941 CET [561465][client backend] [isolation/simple-write-skew/s1][32/17:526739] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:06.941 CET [561465][client backend] [isolation/simple-write-skew/s1][32/17:526739] HINT: The transaction might succeed if retried.
2024-11-25 19:08:06.941 CET [561465][client backend] [isolation/simple-write-skew/s1][32/17:526739] STATEMENT: COMMIT;
2024-11-25 19:08:06.944 CET [561451][client backend] [pg_regress/enum][27/131:526748] ERROR: insert or update on table "enumtest_child" violates foreign key constraint "enumtest_child_parent_fkey"
2024-11-25 19:08:06.944 CET [561451][client backend] [pg_regress/enum][27/131:526748] DETAIL: Key (parent)=(blue) is not present in table "enumtest_parent".
2024-11-25 19:08:06.944 CET [561451][client backend] [pg_regress/enum][27/131:526748] STATEMENT: INSERT INTO enumtest_child VALUES ('blue');
2024-11-25 19:08:06.945 CET [561315][client backend] [pg_regress/cube][:0] LOG: disconnection: session time: 0:00:00.222 user=nkey database=regression_cube host=[local]
2024-11-25 19:08:06.945 CET [561451][client backend] [pg_regress/enum][27/132:526749] ERROR: update or delete on table "enumtest_parent" violates foreign key constraint "enumtest_child_parent_fkey" on table "enumtest_child"
2024-11-25 19:08:06.945 CET [561451][client backend] [pg_regress/enum][27/132:526749] DETAIL: Key (id)=(red) is still referenced from table "enumtest_child".
2024-11-25 19:08:06.945 CET [561451][client backend] [pg_regress/enum][27/132:526749] STATEMENT: DELETE FROM enumtest_parent;
2024-11-25 19:08:06.946 CET [561451][client backend] [pg_regress/enum][27/134:526752] ERROR: foreign key constraint "enumtest_bogus_child_parent_fkey" cannot be implemented
2024-11-25 19:08:06.946 CET [561451][client backend] [pg_regress/enum][27/134:526752] DETAIL: Key columns "parent" of the referencing table and "id" of the referenced table are of incompatible types: bogus and rainbow.
2024-11-25 19:08:06.946 CET [561451][client backend] [pg_regress/enum][27/134:526752] STATEMENT: CREATE TABLE enumtest_bogus_child(parent bogus REFERENCES enumtest_parent);
2024-11-25 19:08:06.946 CET [561474][client backend] [pg_regress/macaddr8][:0] LOG: disconnection: session time: 0:00:00.016 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:06.947 CET [561451][client backend] [pg_regress/enum][27/138:0] ERROR: "red" is not an existing enum label
2024-11-25 19:08:06.947 CET [561451][client backend] [pg_regress/enum][27/138:0] STATEMENT: ALTER TYPE rainbow RENAME VALUE 'red' TO 'crimson';
2024-11-25 19:08:06.948 CET [561451][client backend] [pg_regress/enum][27/139:0] ERROR: enum label "green" already exists
2024-11-25 19:08:06.948 CET [561451][client backend] [pg_regress/enum][27/139:0] STATEMENT: ALTER TYPE rainbow RENAME VALUE 'blue' TO 'green';
2024-11-25 19:08:06.948 CET [561461][client backend] [isolation/simple-write-skew/control connection][:0] LOG: disconnection: session time: 0:00:00.076 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:06.948 CET [561465][client backend] [isolation/simple-write-skew/s1][:0] LOG: disconnection: session time: 0:00:00.068 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:06.948 CET [561467][client backend] [isolation/simple-write-skew/s2][:0] LOG: disconnection: session time: 0:00:00.054 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:06.949 CET [561451][client backend] [pg_regress/enum][27/141:526760] ERROR: unsafe use of new value "new" of enum type bogus at character 8
2024-11-25 19:08:06.949 CET [561451][client backend] [pg_regress/enum][27/141:526760] HINT: New enum values must be committed before they can be used.
2024-11-25 19:08:06.949 CET [561451][client backend] [pg_regress/enum][27/141:526760] STATEMENT: SELECT 'new'::bogus;
2024-11-25 19:08:06.949 CET [561451][client backend] [pg_regress/enum][27/141:526760] ERROR: unsafe use of new value "new" of enum type bogus
2024-11-25 19:08:06.949 CET [561451][client backend] [pg_regress/enum][27/141:526760] HINT: New enum values must be committed before they can be used.
2024-11-25 19:08:06.949 CET [561451][client backend] [pg_regress/enum][27/141:526760] STATEMENT: SELECT enum_last(null::bogus);
2024-11-25 19:08:06.949 CET [561483][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.950 CET [561451][client backend] [pg_regress/enum][27/141:526760] ERROR: unsafe use of new value "new" of enum type bogus
2024-11-25 19:08:06.950 CET [561451][client backend] [pg_regress/enum][27/141:526760] HINT: New enum values must be committed before they can be used.
2024-11-25 19:08:06.950 CET [561451][client backend] [pg_regress/enum][27/141:526760] STATEMENT: SELECT enum_range(null::bogus);
2024-11-25 19:08:06.950 CET [561483][client backend] [[unknown]][34/4:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.950 CET [561483][client backend] [[unknown]][34/4:0] LOG: connection authorized: user=nkey database=regression_cube application_name=pg_regress/cube_sci
2024-11-25 19:08:06.950 CET [561485][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.951 CET [561485][client backend] [[unknown]][35/4:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.951 CET [561485][client backend] [[unknown]][35/4:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/inet
2024-11-25 19:08:06.951 CET [561451][client backend] [pg_regress/enum][27/144:526764] ERROR: unsafe use of new value "bad" of enum type bogon at character 8
2024-11-25 19:08:06.951 CET [561451][client backend] [pg_regress/enum][27/144:526764] HINT: New enum values must be committed before they can be used.
2024-11-25 19:08:06.951 CET [561451][client backend] [pg_regress/enum][27/144:526764] STATEMENT: SELECT 'bad'::bogon;
2024-11-25 19:08:06.952 CET [561447][client backend] [pg_regress/bit][:0] LOG: disconnection: session time: 0:00:00.089 user=nkey database=regression host=[local]
2024-11-25 19:08:06.952 CET [561470][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.031 user=nkey database=postgres host=[local]
2024-11-25 19:08:06.952 CET [561486][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.953 CET [561486][client backend] [[unknown]][31/55:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.953 CET [561486][client backend] [[unknown]][31/55:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/receipt-report
2024-11-25 19:08:06.954 CET [561488][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.955 CET [561488][client backend] [[unknown]][15/69:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.955 CET [561488][client backend] [[unknown]][15/69:0] LOG: connection authorized: user=nkey database=regression_dblink application_name=pg_regress/dblink
2024-11-25 19:08:06.955 CET [561489][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.956 CET [561483][client backend] [pg_regress/cube_sci][:0] LOG: disconnection: session time: 0:00:00.006 user=nkey database=regression_cube host=[local]
2024-11-25 19:08:06.956 CET [561489][client backend] [[unknown]][37/11:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.956 CET [561489][client backend] [[unknown]][37/11:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/receipt-report
2024-11-25 19:08:06.958 CET [561492][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.959 CET [561492][client backend] [[unknown]][19/8:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.959 CET [561492][client backend] [[unknown]][19/8:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/receipt-report
2024-11-25 19:08:06.960 CET [561451][client backend] [pg_regress/enum][:0] LOG: disconnection: session time: 0:00:00.094 user=nkey database=regression host=[local]
2024-11-25 19:08:06.961 CET [561493][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.962 CET [561493][client backend] [[unknown]][41/18:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.962 CET [561493][client backend] [[unknown]][41/18:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/receipt-report
2024-11-25 19:08:06.981 CET [561485][client backend] [pg_regress/inet][:0] LOG: disconnection: session time: 0:00:00.030 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:06.986 CET [561488][client backend] [pg_regress/dblink][15/87:0] ERROR: invalid attribute number 4
2024-11-25 19:08:06.986 CET [561488][client backend] [pg_regress/dblink][15/87:0] STATEMENT: SELECT dblink_build_sql_insert('foo','1 2 3 4',4,'{"0", "a", "{a0,b0,c0}"}','{"99", "xyz", "{za0,zb0,zc0}"}');
2024-11-25 19:08:06.986 CET [561488][client backend] [pg_regress/dblink][15/89:0] ERROR: invalid attribute number 4
2024-11-25 19:08:06.986 CET [561488][client backend] [pg_regress/dblink][15/89:0] STATEMENT: SELECT dblink_build_sql_update('foo','1 2 3 4',4,'{"0", "a", "{a0,b0,c0}"}','{"99", "xyz", "{za0,zb0,zc0}"}');
2024-11-25 19:08:06.986 CET [561498][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:06.986 CET [561488][client backend] [pg_regress/dblink][15/91:0] ERROR: invalid attribute number 4
2024-11-25 19:08:06.986 CET [561488][client backend] [pg_regress/dblink][15/91:0] STATEMENT: SELECT dblink_build_sql_delete('foo','1 2 3 4',4,'{"0", "a", "{a0,b0,c0}"}');
2024-11-25 19:08:06.987 CET [561498][client backend] [[unknown]][44/11:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:06.987 CET [561498][client backend] [[unknown]][44/11:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/cidr
2024-11-25 19:08:06.995 CET [561488][client backend] [pg_regress/dblink][15/105:0] ERROR: invalid attribute number 4
2024-11-25 19:08:06.995 CET [561488][client backend] [pg_regress/dblink][15/105:0] STATEMENT: SELECT dblink_build_sql_insert('foo_1','1 2 3 4',4,'{"0", "a", "{a0,b0,c0}"}','{"99", "xyz", "{za0,zb0,zc0}"}');
2024-11-25 19:08:06.997 CET [561488][client backend] [pg_regress/dblink][15/107:0] ERROR: invalid attribute number 4
2024-11-25 19:08:06.997 CET [561488][client backend] [pg_regress/dblink][15/107:0] STATEMENT: SELECT dblink_build_sql_update('foo_1','1 2 3 4',4,'{"0", "a", "{a0,b0,c0}"}','{"99", "xyz", "{za0,zb0,zc0}"}');
2024-11-25 19:08:06.998 CET [561488][client backend] [pg_regress/dblink][15/109:0] ERROR: invalid attribute number 4
2024-11-25 19:08:06.998 CET [561488][client backend] [pg_regress/dblink][15/109:0] STATEMENT: SELECT dblink_build_sql_delete('foo_1','1 2 3 4',4,'{"0", "a", "{a0,b0,c0}"}');
2024-11-25 19:08:07.002 CET [561498][client backend] [pg_regress/cidr][:0] LOG: disconnection: session time: 0:00:00.015 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:07.005 CET [561505][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.006 CET [561505][client backend] [[unknown]][39/20:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.006 CET [561505][client backend] [[unknown]][39/20:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:07.006 CET [561506][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.006 CET [561507][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.007 CET [561506][client backend] [[unknown]][47/11:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.007 CET [561506][client backend] [[unknown]][47/11:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/text
2024-11-25 19:08:07.007 CET [561507][client backend] [[unknown]][38/8:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.007 CET [561507][client backend] [[unknown]][38/8:0] LOG: connection authorized: user=nkey database=regression_dblink
2024-11-25 19:08:07.010 CET [561507][client backend] [[unknown]][:0] LOG: disconnection: session time: 0:00:00.003 user=nkey database=regression_dblink host=[local]
2024-11-25 19:08:07.010 CET [561488][client backend] [pg_regress/dblink][15/120:0] ERROR: connection not available
2024-11-25 19:08:07.010 CET [561488][client backend] [pg_regress/dblink][15/120:0] STATEMENT: SELECT *
FROM dblink('SELECT * FROM foo') AS t(a int, b text, c text[])
WHERE t.a > 7;
2024-11-25 19:08:07.011 CET [561508][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.012 CET [561508][client backend] [[unknown]][40/5:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.012 CET [561508][client backend] [[unknown]][40/5:0] LOG: connection authorized: user=nkey database=regression_dblink
2024-11-25 19:08:07.013 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:07.015 CET [561508][client backend] [[unknown]][40/6:0] ERROR: could not establish connection
2024-11-25 19:08:07.015 CET [561508][client backend] [[unknown]][40/6:0] DETAIL: syntax error in service file "/home/nkey/postgres/contrib/dblink/pg_service.conf", line 7
2024-11-25 19:08:07.015 CET [561508][client backend] [[unknown]][40/6:0] STATEMENT:
SELECT pg_backend_pid() FROM dblink(
'service=test_ldap '||connection_parameters(),
-- This string concatenation is a hack to shoehorn a
-- set_pgservicefile call into the SQL statement.
'SELECT 1' || set_pgservicefile('pg_service.conf')
) t(c int)
2024-11-25 19:08:07.015 CET [561508][client backend] [[unknown]][:0] LOG: disconnection: session time: 0:00:00.004 user=nkey database=regression_dblink host=[local]
2024-11-25 19:08:07.016 CET [561509][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.017 CET [561509][client backend] [[unknown]][42/5:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.017 CET [561509][client backend] [[unknown]][42/5:0] LOG: connection authorized: user=nkey database=regression_dblink
2024-11-25 19:08:07.020 CET [561509][client backend] [[unknown]][42/7:0] ERROR: relation "foobar" does not exist at character 49
2024-11-25 19:08:07.020 CET [561509][client backend] [[unknown]][42/7:0] STATEMENT: DECLARE rmt_foo_cursor CURSOR FOR SELECT * FROM foobar
2024-11-25 19:08:07.023 CET [561509][client backend] [[unknown]][42/9:0] ERROR: cursor "rmt_foobar_cursor" does not exist
2024-11-25 19:08:07.023 CET [561509][client backend] [[unknown]][42/9:0] STATEMENT: FETCH 4 FROM rmt_foobar_cursor
2024-11-25 19:08:07.024 CET [561509][client backend] [[unknown]][42/10:0] ERROR: cursor "rmt_foobar_cursor" does not exist
2024-11-25 19:08:07.024 CET [561509][client backend] [[unknown]][42/10:0] STATEMENT: CLOSE rmt_foobar_cursor
2024-11-25 19:08:07.024 CET [561509][client backend] [[unknown]][42/11:0] ERROR: cursor "rmt_foo_cursor" does not exist
2024-11-25 19:08:07.024 CET [561509][client backend] [[unknown]][42/11:0] STATEMENT: FETCH 4 FROM rmt_foo_cursor
2024-11-25 19:08:07.024 CET [561488][client backend] [pg_regress/dblink][15/135:0] ERROR: cursor "rmt_foo_cursor" does not exist
2024-11-25 19:08:07.024 CET [561488][client backend] [pg_regress/dblink][15/135:0] CONTEXT: while fetching from cursor "rmt_foo_cursor" on unnamed dblink connection
2024-11-25 19:08:07.024 CET [561488][client backend] [pg_regress/dblink][15/135:0] STATEMENT: SELECT *
FROM dblink_fetch('rmt_foo_cursor',4) AS t(a int, b text, c text[]);
2024-11-25 19:08:07.024 CET [561509][client backend] [[unknown]][42/12:0] ERROR: cursor "rmt_foo_cursor" does not exist
2024-11-25 19:08:07.024 CET [561509][client backend] [[unknown]][42/12:0] STATEMENT: FETCH 4 FROM rmt_foo_cursor
2024-11-25 19:08:07.025 CET [561509][client backend] [[unknown]][:0] LOG: disconnection: session time: 0:00:00.008 user=nkey database=regression_dblink host=[local]
2024-11-25 19:08:07.025 CET [561488][client backend] [pg_regress/dblink][15/138:0] ERROR: connection not available
2024-11-25 19:08:07.025 CET [561488][client backend] [pg_regress/dblink][15/138:0] STATEMENT: SELECT *
FROM dblink('SELECT * FROM foo') AS t(a int, b text, c text[])
WHERE t.a > 7;
2024-11-25 19:08:07.026 CET [561510][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.027 CET [561510][client backend] [[unknown]][43/5:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.027 CET [561510][client backend] [[unknown]][43/5:0] LOG: connection authorized: user=nkey database=regression_dblink
2024-11-25 19:08:07.029 CET [561510][client backend] [[unknown]][:0] LOG: disconnection: session time: 0:00:00.002 user=nkey database=regression_dblink host=[local]
2024-11-25 19:08:07.029 CET [561511][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.029 CET [561506][client backend] [pg_regress/text][:0] LOG: disconnection: session time: 0:00:00.023 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:07.030 CET [561511][client backend] [[unknown]][48/20:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.030 CET [561511][client backend] [[unknown]][48/20:0] LOG: connection authorized: user=nkey database=regression_dblink
2024-11-25 19:08:07.033 CET [561511][client backend] [[unknown]][48/23:0] ERROR: relation "foobar" does not exist at character 15
2024-11-25 19:08:07.033 CET [561511][client backend] [[unknown]][48/23:0] STATEMENT: SELECT * FROM foobar
2024-11-25 19:08:07.034 CET [561515][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.034 CET [561515][client backend] [[unknown]][49/11:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.034 CET [561515][client backend] [[unknown]][49/11:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/varchar
2024-11-25 19:08:07.035 CET [561511][client backend] [[unknown]][48/26:0] ERROR: relation "foobar" does not exist at character 8
2024-11-25 19:08:07.035 CET [561511][client backend] [[unknown]][48/26:0] STATEMENT: UPDATE foobar SET f3[2] = 'b99' WHERE f1 = 11
2024-11-25 19:08:07.036 CET [561511][client backend] [[unknown]][:0] LOG: disconnection: session time: 0:00:00.007 user=nkey database=regression_dblink host=[local]
2024-11-25 19:08:07.036 CET [561488][client backend] [pg_regress/dblink][15/150:0] ERROR: could not establish connection
2024-11-25 19:08:07.036 CET [561488][client backend] [pg_regress/dblink][15/150:0] DETAIL: missing "=" after "myconn" in connection info string
2024-11-25 19:08:07.036 CET [561488][client backend] [pg_regress/dblink][15/150:0] STATEMENT: SELECT *
FROM dblink('myconn','SELECT * FROM foo') AS t(a int, b text, c text[])
WHERE t.a > 7;
2024-11-25 19:08:07.037 CET [561457][client backend] [pg_regress/numeric][16/99:0] ERROR: division by zero
2024-11-25 19:08:07.037 CET [561457][client backend] [pg_regress/numeric][16/99:0] STATEMENT: SELECT 'inf'::numeric / '0';
2024-11-25 19:08:07.037 CET [561457][client backend] [pg_regress/numeric][16/100:0] ERROR: division by zero
2024-11-25 19:08:07.037 CET [561457][client backend] [pg_regress/numeric][16/100:0] STATEMENT: SELECT '-inf'::numeric / '0';
2024-11-25 19:08:07.037 CET [561516][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.037 CET [561457][client backend] [pg_regress/numeric][16/102:0] ERROR: division by zero
2024-11-25 19:08:07.037 CET [561457][client backend] [pg_regress/numeric][16/102:0] STATEMENT: SELECT '0'::numeric / '0';
2024-11-25 19:08:07.037 CET [561457][client backend] [pg_regress/numeric][16/103:0] ERROR: division by zero
2024-11-25 19:08:07.037 CET [561457][client backend] [pg_regress/numeric][16/103:0] STATEMENT: SELECT 'inf'::numeric % '0';
2024-11-25 19:08:07.038 CET [561457][client backend] [pg_regress/numeric][16/104:0] ERROR: division by zero
2024-11-25 19:08:07.038 CET [561457][client backend] [pg_regress/numeric][16/104:0] STATEMENT: SELECT '-inf'::numeric % '0';
2024-11-25 19:08:07.038 CET [561516][client backend] [[unknown]][46/84:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.038 CET [561516][client backend] [[unknown]][46/84:0] LOG: connection authorized: user=nkey database=regression_dblink
2024-11-25 19:08:07.038 CET [561023][checkpointer] LOG: checkpoint complete: wrote 1925 buffers (11.7%), wrote 1 SLRU buffers; 0 WAL file(s) added, 1 removed, 0 recycled; write=0.023 s, sync=0.001 s, total=0.026 s; sync files=0, longest=0.000 s, average=0.000 s; distance=15255 kB, estimate=26864 kB; lsn=4/40755EC8, redo lsn=4/404E91A8
2024-11-25 19:08:07.038 CET [561457][client backend] [pg_regress/numeric][16/106:0] ERROR: division by zero
2024-11-25 19:08:07.038 CET [561457][client backend] [pg_regress/numeric][16/106:0] STATEMENT: SELECT '0'::numeric % '0';
2024-11-25 19:08:07.038 CET [561457][client backend] [pg_regress/numeric][16/107:0] ERROR: division by zero
2024-11-25 19:08:07.038 CET [561457][client backend] [pg_regress/numeric][16/107:0] STATEMENT: SELECT div('inf'::numeric, '0');
2024-11-25 19:08:07.038 CET [561457][client backend] [pg_regress/numeric][16/108:0] ERROR: division by zero
2024-11-25 19:08:07.038 CET [561457][client backend] [pg_regress/numeric][16/108:0] STATEMENT: SELECT div('-inf'::numeric, '0');
2024-11-25 19:08:07.038 CET [561457][client backend] [pg_regress/numeric][16/110:0] ERROR: division by zero
2024-11-25 19:08:07.038 CET [561457][client backend] [pg_regress/numeric][16/110:0] STATEMENT: SELECT div('0'::numeric, '0');
2024-11-25 19:08:07.040 CET [561457][client backend] [pg_regress/numeric][16/115:0] ERROR: cannot take square root of a negative number
2024-11-25 19:08:07.040 CET [561457][client backend] [pg_regress/numeric][16/115:0] STATEMENT: SELECT sqrt('-1'::numeric);
2024-11-25 19:08:07.040 CET [561457][client backend] [pg_regress/numeric][16/116:0] ERROR: cannot take square root of a negative number
2024-11-25 19:08:07.040 CET [561457][client backend] [pg_regress/numeric][16/116:0] STATEMENT: SELECT sqrt('-inf'::numeric);
2024-11-25 19:08:07.040 CET [561516][client backend] [[unknown]][46/86:0] ERROR: relation "foobar" does not exist at character 15
2024-11-25 19:08:07.040 CET [561516][client backend] [[unknown]][46/86:0] STATEMENT: SELECT * FROM foobar
2024-11-25 19:08:07.041 CET [561457][client backend] [pg_regress/numeric][16/118:0] ERROR: cannot take logarithm of zero
2024-11-25 19:08:07.041 CET [561457][client backend] [pg_regress/numeric][16/118:0] STATEMENT: SELECT ln('0'::numeric);
2024-11-25 19:08:07.041 CET [561457][client backend] [pg_regress/numeric][16/119:0] ERROR: cannot take logarithm of a negative number
2024-11-25 19:08:07.041 CET [561457][client backend] [pg_regress/numeric][16/119:0] STATEMENT: SELECT ln('-1'::numeric);
2024-11-25 19:08:07.041 CET [561457][client backend] [pg_regress/numeric][16/120:0] ERROR: cannot take logarithm of a negative number
2024-11-25 19:08:07.041 CET [561457][client backend] [pg_regress/numeric][16/120:0] STATEMENT: SELECT ln('-inf'::numeric);
2024-11-25 19:08:07.041 CET [561457][client backend] [pg_regress/numeric][16/122:0] ERROR: cannot take logarithm of zero
2024-11-25 19:08:07.041 CET [561457][client backend] [pg_regress/numeric][16/122:0] STATEMENT: SELECT log('0'::numeric, '10');
2024-11-25 19:08:07.041 CET [561517][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.041 CET [561457][client backend] [pg_regress/numeric][16/123:0] ERROR: cannot take logarithm of zero
2024-11-25 19:08:07.041 CET [561457][client backend] [pg_regress/numeric][16/123:0] STATEMENT: SELECT log('10'::numeric, '0');
2024-11-25 19:08:07.041 CET [561457][client backend] [pg_regress/numeric][16/124:0] ERROR: cannot take logarithm of a negative number
2024-11-25 19:08:07.041 CET [561457][client backend] [pg_regress/numeric][16/124:0] STATEMENT: SELECT log('-inf'::numeric, '10');
2024-11-25 19:08:07.042 CET [561457][client backend] [pg_regress/numeric][16/125:0] ERROR: cannot take logarithm of a negative number
2024-11-25 19:08:07.042 CET [561457][client backend] [pg_regress/numeric][16/125:0] STATEMENT: SELECT log('10'::numeric, '-inf');
2024-11-25 19:08:07.042 CET [561457][client backend] [pg_regress/numeric][16/126:0] ERROR: cannot take logarithm of zero
2024-11-25 19:08:07.042 CET [561457][client backend] [pg_regress/numeric][16/126:0] STATEMENT: SELECT log('inf'::numeric, '0');
2024-11-25 19:08:07.042 CET [561457][client backend] [pg_regress/numeric][16/127:0] ERROR: cannot take logarithm of a negative number
2024-11-25 19:08:07.042 CET [561457][client backend] [pg_regress/numeric][16/127:0] STATEMENT: SELECT log('inf'::numeric, '-inf');
2024-11-25 19:08:07.042 CET [561457][client backend] [pg_regress/numeric][16/128:0] ERROR: cannot take logarithm of a negative number
2024-11-25 19:08:07.042 CET [561457][client backend] [pg_regress/numeric][16/128:0] STATEMENT: SELECT log('-inf'::numeric, 'inf');
2024-11-25 19:08:07.042 CET [561517][client backend] [[unknown]][55/11:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.042 CET [561517][client backend] [[unknown]][55/11:0] LOG: connection authorized: user=nkey database=regression_dblink
2024-11-25 19:08:07.043 CET [561457][client backend] [pg_regress/numeric][16/130:0] ERROR: zero raised to a negative power is undefined
2024-11-25 19:08:07.043 CET [561457][client backend] [pg_regress/numeric][16/130:0] STATEMENT: SELECT power('0'::numeric, '-1');
2024-11-25 19:08:07.043 CET [561457][client backend] [pg_regress/numeric][16/131:0] ERROR: zero raised to a negative power is undefined
2024-11-25 19:08:07.043 CET [561457][client backend] [pg_regress/numeric][16/131:0] STATEMENT: SELECT power('0'::numeric, '-inf');
2024-11-25 19:08:07.043 CET [561488][client backend] [pg_regress/dblink][15/154:0] ERROR: duplicate connection name
2024-11-25 19:08:07.043 CET [561488][client backend] [pg_regress/dblink][15/154:0] STATEMENT: SELECT dblink_connect('myconn',connection_parameters());
2024-11-25 19:08:07.043 CET [561517][client backend] [[unknown]][:0] LOG: disconnection: session time: 0:00:00.002 user=nkey database=regression_dblink host=[local]
2024-11-25 19:08:07.043 CET [561457][client backend] [pg_regress/numeric][16/134:0] ERROR: a negative number raised to a non-integer power yields a complex result
2024-11-25 19:08:07.043 CET [561457][client backend] [pg_regress/numeric][16/134:0] STATEMENT: SELECT power('-2'::numeric, '3.3');
2024-11-25 19:08:07.043 CET [561457][client backend] [pg_regress/numeric][16/136:0] ERROR: a negative number raised to a non-integer power yields a complex result
2024-11-25 19:08:07.043 CET [561457][client backend] [pg_regress/numeric][16/136:0] STATEMENT: SELECT power('-2'::numeric, '-1.5');
2024-11-25 19:08:07.044 CET [561518][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.044 CET [561518][client backend] [[unknown]][57/20:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.044 CET [561518][client backend] [[unknown]][57/20:0] LOG: connection authorized: user=nkey database=regression_dblink
2024-11-25 19:08:07.045 CET [561457][client backend] [pg_regress/numeric][16/143:0] ERROR: a negative number raised to a non-integer power yields a complex result
2024-11-25 19:08:07.045 CET [561457][client backend] [pg_regress/numeric][16/143:0] STATEMENT: SELECT power('-inf'::numeric, '4.5');
2024-11-25 19:08:07.047 CET [561518][client backend] [[unknown]][:0] LOG: disconnection: session time: 0:00:00.003 user=nkey database=regression_dblink host=[local]
2024-11-25 19:08:07.047 CET [561516][client backend] [[unknown]][46/87:0] ERROR: relation "foobar" does not exist at character 49
2024-11-25 19:08:07.047 CET [561516][client backend] [[unknown]][46/87:0] STATEMENT: DECLARE rmt_foo_cursor CURSOR FOR SELECT * FROM foobar
2024-11-25 19:08:07.050 CET [561505][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.044 user=nkey database=postgres host=[local]
2024-11-25 19:08:07.051 CET [561457][client backend] [pg_regress/numeric][16/157:0] ERROR: numeric field overflow
2024-11-25 19:08:07.051 CET [561457][client backend] [pg_regress/numeric][16/157:0] DETAIL: A field with precision 4, scale 4 must round to an absolute value less than 1.
2024-11-25 19:08:07.051 CET [561457][client backend] [pg_regress/numeric][16/157:0] STATEMENT: INSERT INTO fract_only VALUES (3, '1.0');
2024-11-25 19:08:07.051 CET [561516][client backend] [[unknown]][46/90:0] ERROR: DECLARE CURSOR can only be used in transaction blocks
2024-11-25 19:08:07.051 CET [561516][client backend] [[unknown]][46/90:0] STATEMENT: DECLARE xact_test CURSOR FOR SELECT * FROM foo
2024-11-25 19:08:07.051 CET [561488][client backend] [pg_regress/dblink][15/170:0] ERROR: DECLARE CURSOR can only be used in transaction blocks
2024-11-25 19:08:07.051 CET [561488][client backend] [pg_regress/dblink][15/170:0] CONTEXT: while executing command on dblink connection named "myconn"
2024-11-25 19:08:07.051 CET [561488][client backend] [pg_regress/dblink][15/170:0] STATEMENT: SELECT dblink_exec('myconn','DECLARE xact_test CURSOR FOR SELECT * FROM foo');
2024-11-25 19:08:07.051 CET [561457][client backend] [pg_regress/numeric][16/160:0] ERROR: numeric field overflow
2024-11-25 19:08:07.051 CET [561457][client backend] [pg_regress/numeric][16/160:0] DETAIL: A field with precision 4, scale 4 must round to an absolute value less than 1.
2024-11-25 19:08:07.051 CET [561457][client backend] [pg_regress/numeric][16/160:0] STATEMENT: INSERT INTO fract_only VALUES (6, '0.99995');
2024-11-25 19:08:07.051 CET [561516][client backend] [[unknown]][46/91:0] WARNING: there is no transaction in progress
WARNING: there is no transaction in progress
2024-11-25 19:08:07.052 CET [561457][client backend] [pg_regress/numeric][16/164:0] ERROR: numeric field overflow
2024-11-25 19:08:07.052 CET [561457][client backend] [pg_regress/numeric][16/164:0] DETAIL: A field with precision 4, scale 4 cannot hold an infinite value.
2024-11-25 19:08:07.052 CET [561457][client backend] [pg_regress/numeric][16/164:0] STATEMENT: INSERT INTO fract_only VALUES (10, 'Inf');
2024-11-25 19:08:07.052 CET [561457][client backend] [pg_regress/numeric][16/165:0] ERROR: numeric field overflow
2024-11-25 19:08:07.052 CET [561457][client backend] [pg_regress/numeric][16/165:0] DETAIL: A field with precision 4, scale 4 cannot hold an infinite value.
2024-11-25 19:08:07.052 CET [561457][client backend] [pg_regress/numeric][16/165:0] STATEMENT: INSERT INTO fract_only VALUES (11, '-Inf');
2024-11-25 19:08:07.052 CET [561521][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.053 CET [561521][client backend] [[unknown]][52/20:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.053 CET [561521][client backend] [[unknown]][52/20:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:07.053 CET [561516][client backend] [[unknown]][46/92:0] ERROR: cursor "rmt_foobar_cursor" does not exist
2024-11-25 19:08:07.053 CET [561516][client backend] [[unknown]][46/92:0] STATEMENT: FETCH 4 FROM rmt_foobar_cursor
2024-11-25 19:08:07.054 CET [561457][client backend] [pg_regress/numeric][16/168:0] ERROR: bigint out of range
2024-11-25 19:08:07.054 CET [561457][client backend] [pg_regress/numeric][16/168:0] STATEMENT: SELECT (-9223372036854775808.5)::int8;
2024-11-25 19:08:07.054 CET [561516][client backend] [[unknown]][46/93:0] ERROR: cursor "rmt_foo_cursor" does not exist
2024-11-25 19:08:07.054 CET [561516][client backend] [[unknown]][46/93:0] STATEMENT: FETCH 4 FROM rmt_foo_cursor
2024-11-25 19:08:07.054 CET [561488][client backend] [pg_regress/dblink][15/178:0] ERROR: cursor "rmt_foo_cursor" does not exist
2024-11-25 19:08:07.054 CET [561488][client backend] [pg_regress/dblink][15/178:0] CONTEXT: while fetching from cursor "rmt_foo_cursor" on dblink connection named "myconn"
2024-11-25 19:08:07.054 CET [561488][client backend] [pg_regress/dblink][15/178:0] STATEMENT: SELECT *
FROM dblink_fetch('myconn','rmt_foo_cursor',4) AS t(a int, b text, c text[]);
2024-11-25 19:08:07.054 CET [561457][client backend] [pg_regress/numeric][16/171:0] ERROR: bigint out of range
2024-11-25 19:08:07.054 CET [561457][client backend] [pg_regress/numeric][16/171:0] STATEMENT: SELECT 9223372036854775807.5::int8;
2024-11-25 19:08:07.054 CET [561516][client backend] [[unknown]][:0] LOG: disconnection: session time: 0:00:00.017 user=nkey database=regression_dblink host=[local]
2024-11-25 19:08:07.054 CET [561457][client backend] [pg_regress/numeric][16/172:0] ERROR: integer out of range
2024-11-25 19:08:07.054 CET [561457][client backend] [pg_regress/numeric][16/172:0] STATEMENT: SELECT (-2147483648.5)::int4;
2024-11-25 19:08:07.054 CET [561488][client backend] [pg_regress/dblink][15/180:0] ERROR: could not establish connection
2024-11-25 19:08:07.054 CET [561488][client backend] [pg_regress/dblink][15/180:0] DETAIL: missing "=" after "myconn" in connection info string
2024-11-25 19:08:07.054 CET [561488][client backend] [pg_regress/dblink][15/180:0] STATEMENT: SELECT *
FROM dblink('myconn','SELECT * FROM foo') AS t(a int, b text, c text[])
WHERE t.a > 7;
2024-11-25 19:08:07.055 CET [561457][client backend] [pg_regress/numeric][16/175:0] ERROR: integer out of range
2024-11-25 19:08:07.055 CET [561457][client backend] [pg_regress/numeric][16/175:0] STATEMENT: SELECT 2147483647.5::int4;
2024-11-25 19:08:07.055 CET [561457][client backend] [pg_regress/numeric][16/176:0] ERROR: smallint out of range
2024-11-25 19:08:07.055 CET [561457][client backend] [pg_regress/numeric][16/176:0] STATEMENT: SELECT (-32768.5)::int2;
2024-11-25 19:08:07.055 CET [561522][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.055 CET [561515][client backend] [pg_regress/varchar][:0] LOG: disconnection: session time: 0:00:00.021 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:07.055 CET [561457][client backend] [pg_regress/numeric][16/179:0] ERROR: smallint out of range
2024-11-25 19:08:07.055 CET [561457][client backend] [pg_regress/numeric][16/179:0] STATEMENT: SELECT 32767.5::int2;
2024-11-25 19:08:07.055 CET [561522][client backend] [[unknown]][58/11:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.055 CET [561522][client backend] [[unknown]][58/11:0] LOG: connection authorized: user=nkey database=regression_dblink
2024-11-25 19:08:07.058 CET [561457][client backend] [pg_regress/numeric][16/193:0] ERROR: cannot convert NaN to smallint
2024-11-25 19:08:07.058 CET [561457][client backend] [pg_regress/numeric][16/193:0] STATEMENT: SELECT 'NaN'::numeric::int2;
2024-11-25 19:08:07.058 CET [561457][client backend] [pg_regress/numeric][16/194:0] ERROR: cannot convert infinity to smallint
2024-11-25 19:08:07.058 CET [561457][client backend] [pg_regress/numeric][16/194:0] STATEMENT: SELECT 'Infinity'::numeric::int2;
2024-11-25 19:08:07.058 CET [561457][client backend] [pg_regress/numeric][16/195:0] ERROR: cannot convert infinity to smallint
2024-11-25 19:08:07.058 CET [561457][client backend] [pg_regress/numeric][16/195:0] STATEMENT: SELECT '-Infinity'::numeric::int2;
2024-11-25 19:08:07.058 CET [561457][client backend] [pg_regress/numeric][16/196:0] ERROR: cannot convert NaN to integer
2024-11-25 19:08:07.058 CET [561457][client backend] [pg_regress/numeric][16/196:0] STATEMENT: SELECT 'NaN'::numeric::int4;
2024-11-25 19:08:07.058 CET [561457][client backend] [pg_regress/numeric][16/197:0] ERROR: cannot convert infinity to integer
2024-11-25 19:08:07.058 CET [561457][client backend] [pg_regress/numeric][16/197:0] STATEMENT: SELECT 'Infinity'::numeric::int4;
2024-11-25 19:08:07.058 CET [561457][client backend] [pg_regress/numeric][16/198:0] ERROR: cannot convert infinity to integer
2024-11-25 19:08:07.058 CET [561457][client backend] [pg_regress/numeric][16/198:0] STATEMENT: SELECT '-Infinity'::numeric::int4;
2024-11-25 19:08:07.058 CET [561457][client backend] [pg_regress/numeric][16/199:0] ERROR: cannot convert NaN to bigint
2024-11-25 19:08:07.058 CET [561457][client backend] [pg_regress/numeric][16/199:0] STATEMENT: SELECT 'NaN'::numeric::int8;
2024-11-25 19:08:07.058 CET [561457][client backend] [pg_regress/numeric][16/200:0] ERROR: cannot convert infinity to bigint
2024-11-25 19:08:07.058 CET [561457][client backend] [pg_regress/numeric][16/200:0] STATEMENT: SELECT 'Infinity'::numeric::int8;
2024-11-25 19:08:07.058 CET [561457][client backend] [pg_regress/numeric][16/201:0] ERROR: cannot convert infinity to bigint
2024-11-25 19:08:07.058 CET [561457][client backend] [pg_regress/numeric][16/201:0] STATEMENT: SELECT '-Infinity'::numeric::int8;
2024-11-25 19:08:07.059 CET [561526][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.060 CET [561526][client backend] [[unknown]][61/11:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.060 CET [561526][client backend] [[unknown]][61/11:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/char
2024-11-25 19:08:07.061 CET [561522][client backend] [[unknown]][:0] LOG: disconnection: session time: 0:00:00.006 user=nkey database=regression_dblink host=[local]
2024-11-25 19:08:07.061 CET [561488][client backend] [pg_regress/dblink][15/189:0] ERROR: connection "myconn" not available
2024-11-25 19:08:07.061 CET [561488][client backend] [pg_regress/dblink][15/189:0] STATEMENT: SELECT dblink_disconnect('myconn');
2024-11-25 19:08:07.062 CET [561527][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.062 CET [561527][client backend] [[unknown]][60/20:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.062 CET [561527][client backend] [[unknown]][60/20:0] LOG: connection authorized: user=nkey database=regression_dblink
2024-11-25 19:08:07.064 CET [561528][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.064 CET [561457][client backend] [pg_regress/numeric][16/216:0] ERROR: value overflows numeric format
2024-11-25 19:08:07.064 CET [561457][client backend] [pg_regress/numeric][16/216:0] STATEMENT: SELECT round(5.5e131071, -131072);
2024-11-25 19:08:07.065 CET [561528][client backend] [[unknown]][50/8:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.065 CET [561528][client backend] [[unknown]][50/8:0] LOG: connection authorized: user=nkey database=regression_dblink
2024-11-25 19:08:07.066 CET [561529][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.067 CET [561457][client backend] [pg_regress/numeric][16/230:0] ERROR: count must be greater than zero
2024-11-25 19:08:07.067 CET [561457][client backend] [pg_regress/numeric][16/230:0] STATEMENT: SELECT width_bucket(5.0, 3.0, 4.0, 0);
2024-11-25 19:08:07.067 CET [561457][client backend] [pg_regress/numeric][16/231:0] ERROR: count must be greater than zero
2024-11-25 19:08:07.067 CET [561457][client backend] [pg_regress/numeric][16/231:0] STATEMENT: SELECT width_bucket(5.0, 3.0, 4.0, -5);
2024-11-25 19:08:07.067 CET [561457][client backend] [pg_regress/numeric][16/232:0] ERROR: lower bound cannot equal upper bound
2024-11-25 19:08:07.067 CET [561457][client backend] [pg_regress/numeric][16/232:0] STATEMENT: SELECT width_bucket(3.5, 3.0, 3.0, 888);
2024-11-25 19:08:07.067 CET [561529][client backend] [[unknown]][51/4:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.067 CET [561529][client backend] [[unknown]][51/4:0] LOG: connection authorized: user=nkey database=regression_dblink
2024-11-25 19:08:07.067 CET [561457][client backend] [pg_regress/numeric][16/233:0] ERROR: count must be greater than zero
2024-11-25 19:08:07.067 CET [561457][client backend] [pg_regress/numeric][16/233:0] STATEMENT: SELECT width_bucket(5.0::float8, 3.0::float8, 4.0::float8, 0);
2024-11-25 19:08:07.067 CET [561457][client backend] [pg_regress/numeric][16/234:0] ERROR: count must be greater than zero
2024-11-25 19:08:07.067 CET [561457][client backend] [pg_regress/numeric][16/234:0] STATEMENT: SELECT width_bucket(5.0::float8, 3.0::float8, 4.0::float8, -5);
2024-11-25 19:08:07.067 CET [561457][client backend] [pg_regress/numeric][16/235:0] ERROR: lower bound cannot equal upper bound
2024-11-25 19:08:07.067 CET [561457][client backend] [pg_regress/numeric][16/235:0] STATEMENT: SELECT width_bucket(3.5::float8, 3.0::float8, 3.0::float8, 888);
2024-11-25 19:08:07.067 CET [561457][client backend] [pg_regress/numeric][16/236:0] ERROR: operand, lower bound, and upper bound cannot be NaN
2024-11-25 19:08:07.067 CET [561457][client backend] [pg_regress/numeric][16/236:0] STATEMENT: SELECT width_bucket('NaN', 3.0, 4.0, 888);
2024-11-25 19:08:07.067 CET [561457][client backend] [pg_regress/numeric][16/237:0] ERROR: operand, lower bound, and upper bound cannot be NaN
2024-11-25 19:08:07.067 CET [561457][client backend] [pg_regress/numeric][16/237:0] STATEMENT: SELECT width_bucket(0::float8, 'NaN', 4.0::float8, 888);
2024-11-25 19:08:07.068 CET [561457][client backend] [pg_regress/numeric][16/238:0] ERROR: lower and upper bounds must be finite
2024-11-25 19:08:07.068 CET [561457][client backend] [pg_regress/numeric][16/238:0] STATEMENT: SELECT width_bucket(2.0, 3.0, '-inf', 888);
2024-11-25 19:08:07.068 CET [561457][client backend] [pg_regress/numeric][16/239:0] ERROR: lower and upper bounds must be finite
2024-11-25 19:08:07.068 CET [561457][client backend] [pg_regress/numeric][16/239:0] STATEMENT: SELECT width_bucket(0::float8, '-inf', 4.0::float8, 888);
2024-11-25 19:08:07.071 CET [561457][client backend] [pg_regress/numeric][16/244:0] ERROR: lower and upper bounds must be finite
2024-11-25 19:08:07.071 CET [561457][client backend] [pg_regress/numeric][16/244:0] STATEMENT: SELECT width_bucket(0.0::numeric, 'Infinity'::numeric, 5, 10);
2024-11-25 19:08:07.071 CET [561457][client backend] [pg_regress/numeric][16/245:0] ERROR: lower and upper bounds must be finite
2024-11-25 19:08:07.071 CET [561457][client backend] [pg_regress/numeric][16/245:0] STATEMENT: SELECT width_bucket(0.0::numeric, 5, '-Infinity'::numeric, 20);
2024-11-25 19:08:07.073 CET [561527][client backend] [[unknown]][:0] LOG: disconnection: session time: 0:00:00.011 user=nkey database=regression_dblink host=[local]
2024-11-25 19:08:07.073 CET [561528][client backend] [[unknown]][:0] LOG: disconnection: session time: 0:00:00.008 user=nkey database=regression_dblink host=[local]
2024-11-25 19:08:07.073 CET [561529][client backend] [[unknown]][:0] LOG: disconnection: session time: 0:00:00.006 user=nkey database=regression_dblink host=[local]
2024-11-25 19:08:07.073 CET [561457][client backend] [pg_regress/numeric][16/247:0] ERROR: lower and upper bounds must be finite
2024-11-25 19:08:07.073 CET [561457][client backend] [pg_regress/numeric][16/247:0] STATEMENT: SELECT width_bucket(0.0::float8, 'Infinity'::float8, 5, 10);
2024-11-25 19:08:07.074 CET [561530][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.074 CET [561457][client backend] [pg_regress/numeric][16/248:0] ERROR: lower and upper bounds must be finite
2024-11-25 19:08:07.074 CET [561457][client backend] [pg_regress/numeric][16/248:0] STATEMENT: SELECT width_bucket(0.0::float8, 5, '-Infinity'::float8, 20);
2024-11-25 19:08:07.075 CET [561530][client backend] [[unknown]][54/4:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.075 CET [561530][client backend] [[unknown]][54/4:0] LOG: connection authorized: user=nkey database=regression_dblink
2024-11-25 19:08:07.077 CET [561531][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.077 CET [561530][client backend] [[unknown]][54/5:0] ERROR: canceling statement due to user request
2024-11-25 19:08:07.077 CET [561530][client backend] [[unknown]][54/5:0] STATEMENT: select * from foo where f1 < 3
2024-11-25 19:08:07.078 CET [561530][client backend] [[unknown]][:0] LOG: disconnection: session time: 0:00:00.004 user=nkey database=regression_dblink host=[local]
2024-11-25 19:08:07.080 CET [561521][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.028 user=nkey database=postgres host=[local]
2024-11-25 19:08:07.080 CET [561457][client backend] [pg_regress/numeric][16/258:0] ERROR: integer out of range
2024-11-25 19:08:07.080 CET [561457][client backend] [pg_regress/numeric][16/258:0] STATEMENT: SELECT width_bucket(1::float8, 0, 1, 2147483647);
2024-11-25 19:08:07.080 CET [561488][client backend] [pg_regress/dblink][15/211:0] ERROR: invalid option "server"
2024-11-25 19:08:07.080 CET [561488][client backend] [pg_regress/dblink][15/211:0] STATEMENT: CREATE USER MAPPING FOR public SERVER fdtest
OPTIONS (server 'localhost');
2024-11-25 19:08:07.080 CET [561457][client backend] [pg_regress/numeric][16/259:0] ERROR: integer out of range
2024-11-25 19:08:07.080 CET [561457][client backend] [pg_regress/numeric][16/259:0] STATEMENT: SELECT width_bucket(0::float8, 1, 0, 2147483647);
2024-11-25 19:08:07.082 CET [561488][client backend] [pg_regress/dblink][15/216:0] ERROR: password or GSSAPI delegated credentials required
2024-11-25 19:08:07.082 CET [561488][client backend] [pg_regress/dblink][15/216:0] DETAIL: Non-superusers must provide a password in the connection string or send delegated GSSAPI credentials.
2024-11-25 19:08:07.082 CET [561488][client backend] [pg_regress/dblink][15/216:0] STATEMENT: SELECT dblink_connect('myconn', 'fdtest');
2024-11-25 19:08:07.082 CET [561526][client backend] [pg_regress/char][:0] LOG: disconnection: session time: 0:00:00.023 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:07.082 CET [561533][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.083 CET [561533][client backend] [[unknown]][56/4:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.083 CET [561533][client backend] [[unknown]][56/4:0] LOG: connection authorized: user=nkey database=regression_dblink
2024-11-25 19:08:07.083 CET [561536][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.084 CET [561536][client backend] [[unknown]][53/4:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.084 CET [561536][client backend] [[unknown]][53/4:0] LOG: connection authorized: user=nkey database=regression_dict_int application_name=pg_regress/dict_int
2024-11-25 19:08:07.086 CET [561538][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.086 CET [561539][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.087 CET [561538][client backend] [[unknown]][62/11:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.087 CET [561538][client backend] [[unknown]][62/11:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/bytea
2024-11-25 19:08:07.087 CET [561539][client backend] [[unknown]][65/11:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.087 CET [561539][client backend] [[unknown]][65/11:0] LOG: connection authorized: user=nkey database=regression_dblink application_name=pg_regress/dblink
2024-11-25 19:08:07.089 CET [561488][client backend] [pg_regress/dblink][:0] LOG: disconnection: session time: 0:00:00.134 user=nkey database=regression_dblink host=[local]
2024-11-25 19:08:07.091 CET [561533][client backend] [[unknown]][:0] LOG: disconnection: session time: 0:00:00.008 user=nkey database=regression_dblink host=[local]
2024-11-25 19:08:07.091 CET [561539][client backend] [pg_regress/dblink][65/17:0] ERROR: invalid option "nonexistent"
2024-11-25 19:08:07.091 CET [561539][client backend] [pg_regress/dblink][65/17:0] HINT: There are no valid options in this context.
2024-11-25 19:08:07.091 CET [561539][client backend] [pg_regress/dblink][65/17:0] STATEMENT: ALTER FOREIGN DATA WRAPPER dblink_fdw OPTIONS (nonexistent 'fdw');
2024-11-25 19:08:07.093 CET [561540][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.093 CET [561540][client backend] [[unknown]][63/20:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.093 CET [561540][client backend] [[unknown]][63/20:0] LOG: connection authorized: user=nkey database=regression_dblink
2024-11-25 19:08:07.095 CET [561541][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.095 CET [561541][client backend] [[unknown]][69/11:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.095 CET [561541][client backend] [[unknown]][69/11:0] LOG: connection authorized: user=nkey database=regression_dblink
2024-11-25 19:08:07.097 CET [561540][client backend] [[unknown]][:0] LOG: disconnection: session time: 0:00:00.004 user=nkey database=regression_dblink host=[local]
2024-11-25 19:08:07.097 CET [561541][client backend] [[unknown]][:0] LOG: disconnection: session time: 0:00:00.002 user=nkey database=regression_dblink host=[local]
2024-11-25 19:08:07.097 CET [561542][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.098 CET [561542][client backend] [[unknown]][64/9:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.098 CET [561542][client backend] [[unknown]][64/9:0] LOG: connection authorized: user=nkey database=regression_dblink
2024-11-25 19:08:07.101 CET [561536][client backend] [pg_regress/dict_int][53/56:0] ERROR: maxlen value has to be >= 1
2024-11-25 19:08:07.101 CET [561536][client backend] [pg_regress/dict_int][53/56:0] STATEMENT: ALTER TEXT SEARCH DICTIONARY intdict (MAXLEN = -214783648);
2024-11-25 19:08:07.102 CET [561542][client backend] [[unknown]][:0] LOG: disconnection: session time: 0:00:00.004 user=nkey database=regression_dblink host=[local]
2024-11-25 19:08:07.103 CET [561536][client backend] [pg_regress/dict_int][:0] LOG: disconnection: session time: 0:00:00.020 user=nkey database=regression_dict_int host=[local]
2024-11-25 19:08:07.104 CET [561457][client backend] [pg_regress/numeric][16/363:0] ERROR: invalid input syntax for type numeric: " " at character 40
2024-11-25 19:08:07.104 CET [561457][client backend] [pg_regress/numeric][16/363:0] STATEMENT: INSERT INTO num_input_test(n1) VALUES (' ');
2024-11-25 19:08:07.104 CET [561457][client backend] [pg_regress/numeric][16/364:0] ERROR: invalid input syntax for type numeric: " 1234 %" at character 40
2024-11-25 19:08:07.104 CET [561457][client backend] [pg_regress/numeric][16/364:0] STATEMENT: INSERT INTO num_input_test(n1) VALUES (' 1234 %');
2024-11-25 19:08:07.104 CET [561457][client backend] [pg_regress/numeric][16/365:0] ERROR: invalid input syntax for type numeric: "xyz" at character 40
2024-11-25 19:08:07.104 CET [561457][client backend] [pg_regress/numeric][16/365:0] STATEMENT: INSERT INTO num_input_test(n1) VALUES ('xyz');
2024-11-25 19:08:07.104 CET [561457][client backend] [pg_regress/numeric][16/366:0] ERROR: invalid input syntax for type numeric: "- 1234" at character 40
2024-11-25 19:08:07.104 CET [561457][client backend] [pg_regress/numeric][16/366:0] STATEMENT: INSERT INTO num_input_test(n1) VALUES ('- 1234');
2024-11-25 19:08:07.104 CET [561457][client backend] [pg_regress/numeric][16/367:0] ERROR: invalid input syntax for type numeric: "5 . 0" at character 40
2024-11-25 19:08:07.104 CET [561457][client backend] [pg_regress/numeric][16/367:0] STATEMENT: INSERT INTO num_input_test(n1) VALUES ('5 . 0');
2024-11-25 19:08:07.104 CET [561457][client backend] [pg_regress/numeric][16/368:0] ERROR: invalid input syntax for type numeric: "5. 0 " at character 40
2024-11-25 19:08:07.104 CET [561457][client backend] [pg_regress/numeric][16/368:0] STATEMENT: INSERT INTO num_input_test(n1) VALUES ('5. 0 ');
2024-11-25 19:08:07.105 CET [561457][client backend] [pg_regress/numeric][16/369:0] ERROR: invalid input syntax for type numeric: "" at character 40
2024-11-25 19:08:07.105 CET [561457][client backend] [pg_regress/numeric][16/369:0] STATEMENT: INSERT INTO num_input_test(n1) VALUES ('');
2024-11-25 19:08:07.105 CET [561457][client backend] [pg_regress/numeric][16/370:0] ERROR: invalid input syntax for type numeric: " N aN " at character 40
2024-11-25 19:08:07.105 CET [561457][client backend] [pg_regress/numeric][16/370:0] STATEMENT: INSERT INTO num_input_test(n1) VALUES (' N aN ');
2024-11-25 19:08:07.105 CET [561457][client backend] [pg_regress/numeric][16/371:0] ERROR: invalid input syntax for type numeric: "+NaN" at character 40
2024-11-25 19:08:07.105 CET [561457][client backend] [pg_regress/numeric][16/371:0] STATEMENT: INSERT INTO num_input_test(n1) VALUES ('+NaN');
2024-11-25 19:08:07.105 CET [561457][client backend] [pg_regress/numeric][16/372:0] ERROR: invalid input syntax for type numeric: "-NaN" at character 40
2024-11-25 19:08:07.105 CET [561457][client backend] [pg_regress/numeric][16/372:0] STATEMENT: INSERT INTO num_input_test(n1) VALUES ('-NaN');
2024-11-25 19:08:07.105 CET [561457][client backend] [pg_regress/numeric][16/373:0] ERROR: invalid input syntax for type numeric: "+ infinity" at character 40
2024-11-25 19:08:07.105 CET [561457][client backend] [pg_regress/numeric][16/373:0] STATEMENT: INSERT INTO num_input_test(n1) VALUES ('+ infinity');
2024-11-25 19:08:07.105 CET [561457][client backend] [pg_regress/numeric][16/374:0] ERROR: invalid input syntax for type numeric: "_123" at character 40
2024-11-25 19:08:07.105 CET [561457][client backend] [pg_regress/numeric][16/374:0] STATEMENT: INSERT INTO num_input_test(n1) VALUES ('_123');
2024-11-25 19:08:07.105 CET [561457][client backend] [pg_regress/numeric][16/375:0] ERROR: invalid input syntax for type numeric: "123_" at character 40
2024-11-25 19:08:07.105 CET [561457][client backend] [pg_regress/numeric][16/375:0] STATEMENT: INSERT INTO num_input_test(n1) VALUES ('123_');
2024-11-25 19:08:07.105 CET [561457][client backend] [pg_regress/numeric][16/376:0] ERROR: invalid input syntax for type numeric: "12__34" at character 40
2024-11-25 19:08:07.105 CET [561457][client backend] [pg_regress/numeric][16/376:0] STATEMENT: INSERT INTO num_input_test(n1) VALUES ('12__34');
2024-11-25 19:08:07.105 CET [561457][client backend] [pg_regress/numeric][16/377:0] ERROR: invalid input syntax for type numeric: "123_.456" at character 40
2024-11-25 19:08:07.105 CET [561457][client backend] [pg_regress/numeric][16/377:0] STATEMENT: INSERT INTO num_input_test(n1) VALUES ('123_.456');
2024-11-25 19:08:07.105 CET [561457][client backend] [pg_regress/numeric][16/378:0] ERROR: invalid input syntax for type numeric: "123._456" at character 40
2024-11-25 19:08:07.105 CET [561457][client backend] [pg_regress/numeric][16/378:0] STATEMENT: INSERT INTO num_input_test(n1) VALUES ('123._456');
2024-11-25 19:08:07.105 CET [561457][client backend] [pg_regress/numeric][16/379:0] ERROR: invalid input syntax for type numeric: "1.2e_34" at character 40
2024-11-25 19:08:07.105 CET [561457][client backend] [pg_regress/numeric][16/379:0] STATEMENT: INSERT INTO num_input_test(n1) VALUES ('1.2e_34');
2024-11-25 19:08:07.106 CET [561457][client backend] [pg_regress/numeric][16/380:0] ERROR: invalid input syntax for type numeric: "1.2e34_" at character 40
2024-11-25 19:08:07.106 CET [561457][client backend] [pg_regress/numeric][16/380:0] STATEMENT: INSERT INTO num_input_test(n1) VALUES ('1.2e34_');
2024-11-25 19:08:07.106 CET [561457][client backend] [pg_regress/numeric][16/381:0] ERROR: invalid input syntax for type numeric: "1.2e3__4" at character 40
2024-11-25 19:08:07.106 CET [561457][client backend] [pg_regress/numeric][16/381:0] STATEMENT: INSERT INTO num_input_test(n1) VALUES ('1.2e3__4');
2024-11-25 19:08:07.106 CET [561457][client backend] [pg_regress/numeric][16/382:0] ERROR: invalid input syntax for type numeric: "0b1112" at character 40
2024-11-25 19:08:07.106 CET [561457][client backend] [pg_regress/numeric][16/382:0] STATEMENT: INSERT INTO num_input_test(n1) VALUES ('0b1112');
2024-11-25 19:08:07.106 CET [561457][client backend] [pg_regress/numeric][16/383:0] ERROR: invalid input syntax for type numeric: "0c1112" at character 40
2024-11-25 19:08:07.106 CET [561457][client backend] [pg_regress/numeric][16/383:0] STATEMENT: INSERT INTO num_input_test(n1) VALUES ('0c1112');
2024-11-25 19:08:07.106 CET [561457][client backend] [pg_regress/numeric][16/384:0] ERROR: invalid input syntax for type numeric: "0o12345678" at character 40
2024-11-25 19:08:07.106 CET [561457][client backend] [pg_regress/numeric][16/384:0] STATEMENT: INSERT INTO num_input_test(n1) VALUES ('0o12345678');
2024-11-25 19:08:07.106 CET [561457][client backend] [pg_regress/numeric][16/385:0] ERROR: invalid input syntax for type numeric: "0x1eg" at character 40
2024-11-25 19:08:07.106 CET [561457][client backend] [pg_regress/numeric][16/385:0] STATEMENT: INSERT INTO num_input_test(n1) VALUES ('0x1eg');
2024-11-25 19:08:07.106 CET [561457][client backend] [pg_regress/numeric][16/386:0] ERROR: invalid input syntax for type numeric: "0x12.34" at character 40
2024-11-25 19:08:07.106 CET [561457][client backend] [pg_regress/numeric][16/386:0] STATEMENT: INSERT INTO num_input_test(n1) VALUES ('0x12.34');
2024-11-25 19:08:07.106 CET [561457][client backend] [pg_regress/numeric][16/387:0] ERROR: invalid input syntax for type numeric: "0x__1234" at character 40
2024-11-25 19:08:07.106 CET [561457][client backend] [pg_regress/numeric][16/387:0] STATEMENT: INSERT INTO num_input_test(n1) VALUES ('0x__1234');
2024-11-25 19:08:07.106 CET [561457][client backend] [pg_regress/numeric][16/388:0] ERROR: invalid input syntax for type numeric: "0x1234_" at character 40
2024-11-25 19:08:07.106 CET [561457][client backend] [pg_regress/numeric][16/388:0] STATEMENT: INSERT INTO num_input_test(n1) VALUES ('0x1234_');
2024-11-25 19:08:07.106 CET [561457][client backend] [pg_regress/numeric][16/389:0] ERROR: invalid input syntax for type numeric: "0x12__34" at character 40
2024-11-25 19:08:07.106 CET [561457][client backend] [pg_regress/numeric][16/389:0] STATEMENT: INSERT INTO num_input_test(n1) VALUES ('0x12__34');
2024-11-25 19:08:07.110 CET [561538][client backend] [pg_regress/bytea][:0] LOG: disconnection: session time: 0:00:00.023 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:07.111 CET [561547][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.111 CET [561547][client backend] [[unknown]][68/5:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.111 CET [561547][client backend] [[unknown]][68/5:0] LOG: connection authorized: user=nkey database=regression_dblink
2024-11-25 19:08:07.114 CET [561550][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.115 CET [561550][client backend] [[unknown]][67/5:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.115 CET [561550][client backend] [[unknown]][67/5:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/bit
2024-11-25 19:08:07.121 CET [561457][client backend] [pg_regress/numeric][16/418:0] ERROR: numeric field overflow
2024-11-25 19:08:07.121 CET [561457][client backend] [pg_regress/numeric][16/418:0] DETAIL: A field with precision 3, scale -6 cannot hold an infinite value.
2024-11-25 19:08:07.121 CET [561457][client backend] [pg_regress/numeric][16/418:0] STATEMENT: INSERT INTO num_typemod_test (millions) VALUES ('inf');
2024-11-25 19:08:07.122 CET [561457][client backend] [pg_regress/numeric][16/419:0] ERROR: numeric field overflow
2024-11-25 19:08:07.122 CET [561457][client backend] [pg_regress/numeric][16/419:0] DETAIL: A field with precision 3, scale -6 must round to an absolute value less than 10^9.
2024-11-25 19:08:07.122 CET [561457][client backend] [pg_regress/numeric][16/419:0] STATEMENT: INSERT INTO num_typemod_test (millions) VALUES (999500000);
2024-11-25 19:08:07.122 CET [561457][client backend] [pg_regress/numeric][16/420:0] ERROR: numeric field overflow
2024-11-25 19:08:07.122 CET [561457][client backend] [pg_regress/numeric][16/420:0] DETAIL: A field with precision 3, scale -3 must round to an absolute value less than 10^6.
2024-11-25 19:08:07.122 CET [561457][client backend] [pg_regress/numeric][16/420:0] STATEMENT: INSERT INTO num_typemod_test (thousands) VALUES (999500);
2024-11-25 19:08:07.122 CET [561457][client backend] [pg_regress/numeric][16/421:0] ERROR: numeric field overflow
2024-11-25 19:08:07.122 CET [561457][client backend] [pg_regress/numeric][16/421:0] DETAIL: A field with precision 3, scale 0 must round to an absolute value less than 10^3.
2024-11-25 19:08:07.122 CET [561457][client backend] [pg_regress/numeric][16/421:0] STATEMENT: INSERT INTO num_typemod_test (units) VALUES (999.5);
2024-11-25 19:08:07.122 CET [561457][client backend] [pg_regress/numeric][16/422:0] ERROR: numeric field overflow
2024-11-25 19:08:07.122 CET [561457][client backend] [pg_regress/numeric][16/422:0] DETAIL: A field with precision 3, scale 3 must round to an absolute value less than 1.
2024-11-25 19:08:07.122 CET [561457][client backend] [pg_regress/numeric][16/422:0] STATEMENT: INSERT INTO num_typemod_test (thousandths) VALUES (0.9995);
2024-11-25 19:08:07.123 CET [561457][client backend] [pg_regress/numeric][16/423:0] ERROR: numeric field overflow
2024-11-25 19:08:07.123 CET [561457][client backend] [pg_regress/numeric][16/423:0] DETAIL: A field with precision 3, scale 6 must round to an absolute value less than 10^-3.
2024-11-25 19:08:07.123 CET [561457][client backend] [pg_regress/numeric][16/423:0] STATEMENT: INSERT INTO num_typemod_test (millionths) VALUES (0.0009995);
2024-11-25 19:08:07.132 CET [561550][client backend] [pg_regress/bit][:0] LOG: disconnection: session time: 0:00:00.017 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:07.132 CET [561539][client backend] [pg_regress/dblink][65/61:0] ERROR: invalid input syntax for type integer: "not an int"
2024-11-25 19:08:07.132 CET [561539][client backend] [pg_regress/dblink][65/61:0] STATEMENT: SELECT *
FROM dblink_fetch('myconn','error_cursor', 1) AS t(i int);
2024-11-25 19:08:07.132 CET [561547][client backend] [[unknown]][:0] LOG: disconnection: session time: 0:00:00.021 user=nkey database=regression_dblink host=[local]
2024-11-25 19:08:07.135 CET [561539][client backend] [pg_regress/dblink][:0] LOG: disconnection: session time: 0:00:00.049 user=nkey database=regression_dblink host=[local]
2024-11-25 19:08:07.136 CET [561556][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.137 CET [561556][client backend] [[unknown]][66/4:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.137 CET [561556][client backend] [[unknown]][66/4:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/varbit
2024-11-25 19:08:07.144 CET [561493][client backend] [isolation/receipt-report/s3][41/35:0] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:07.144 CET [561493][client backend] [isolation/receipt-report/s3][41/35:0] DETAIL: Reason code: Canceled on conflict out to pivot 527044, during read.
2024-11-25 19:08:07.144 CET [561493][client backend] [isolation/receipt-report/s3][41/35:0] HINT: The transaction might succeed if retried.
2024-11-25 19:08:07.144 CET [561493][client backend] [isolation/receipt-report/s3][41/35:0] STATEMENT: SELECT * FROM receipt WHERE deposit_date = DATE '2008-12-22';
2024-11-25 19:08:07.150 CET [561457][client backend] [pg_regress/numeric][16/455:0] ERROR: value overflows numeric format
2024-11-25 19:08:07.150 CET [561457][client backend] [pg_regress/numeric][16/455:0] STATEMENT: select 10.0 ^ 2147483647 as overflows;
2024-11-25 19:08:07.150 CET [561457][client backend] [pg_regress/numeric][16/456:0] ERROR: value overflows numeric format
2024-11-25 19:08:07.150 CET [561457][client backend] [pg_regress/numeric][16/456:0] STATEMENT: select 117743296169.0 ^ 1000000000 as overflows;
2024-11-25 19:08:07.152 CET [561561][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.154 CET [561561][client backend] [[unknown]][71/11:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.154 CET [561561][client backend] [[unknown]][71/11:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:07.155 CET [561556][client backend] [pg_regress/varbit][:0] LOG: disconnection: session time: 0:00:00.019 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:07.156 CET [561457][client backend] [pg_regress/numeric][16/482:0] ERROR: zero raised to a negative power is undefined
2024-11-25 19:08:07.156 CET [561457][client backend] [pg_regress/numeric][16/482:0] STATEMENT: select 0.0 ^ (-12.34);
2024-11-25 19:08:07.156 CET [561457][client backend] [pg_regress/numeric][16/483:0] ERROR: a negative number raised to a non-integer power yields a complex result
2024-11-25 19:08:07.156 CET [561457][client backend] [pg_regress/numeric][16/483:0] STATEMENT: select (-12.34) ^ 1.2;
2024-11-25 19:08:07.159 CET [561489][client backend] [isolation/receipt-report/s1][37/29:527050] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:07.159 CET [561489][client backend] [isolation/receipt-report/s1][37/29:527050] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:07.159 CET [561489][client backend] [isolation/receipt-report/s1][37/29:527050] HINT: The transaction might succeed if retried.
2024-11-25 19:08:07.159 CET [561489][client backend] [isolation/receipt-report/s1][37/29:527050] STATEMENT: COMMIT;
2024-11-25 19:08:07.159 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:07.159 CET [561565][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.160 CET [561565][client backend] [[unknown]][70/18:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.160 CET [561565][client backend] [[unknown]][70/18:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/numeric
2024-11-25 19:08:07.162 CET [561457][client backend] [pg_regress/numeric][16/505:0] ERROR: step size cannot equal zero
2024-11-25 19:08:07.162 CET [561457][client backend] [pg_regress/numeric][16/505:0] STATEMENT: select * from generate_series(-100::numeric, 100::numeric, 0::numeric);
2024-11-25 19:08:07.162 CET [561457][client backend] [pg_regress/numeric][16/506:0] ERROR: step size cannot be NaN
2024-11-25 19:08:07.162 CET [561457][client backend] [pg_regress/numeric][16/506:0] STATEMENT: select * from generate_series(-100::numeric, 100::numeric, 'nan'::numeric);
2024-11-25 19:08:07.162 CET [561457][client backend] [pg_regress/numeric][16/507:0] ERROR: start value cannot be NaN
2024-11-25 19:08:07.162 CET [561457][client backend] [pg_regress/numeric][16/507:0] STATEMENT: select * from generate_series('nan'::numeric, 100::numeric, 10::numeric);
2024-11-25 19:08:07.162 CET [561457][client backend] [pg_regress/numeric][16/508:0] ERROR: stop value cannot be NaN
2024-11-25 19:08:07.162 CET [561457][client backend] [pg_regress/numeric][16/508:0] STATEMENT: select * from generate_series(0::numeric, 'nan'::numeric, 10::numeric);
2024-11-25 19:08:07.163 CET [561457][client backend] [pg_regress/numeric][16/509:0] ERROR: start value cannot be infinity
2024-11-25 19:08:07.163 CET [561457][client backend] [pg_regress/numeric][16/509:0] STATEMENT: select * from generate_series('inf'::numeric, 'inf'::numeric, 10::numeric);
2024-11-25 19:08:07.163 CET [561457][client backend] [pg_regress/numeric][16/510:0] ERROR: stop value cannot be infinity
2024-11-25 19:08:07.163 CET [561457][client backend] [pg_regress/numeric][16/510:0] STATEMENT: select * from generate_series(0::numeric, 'inf'::numeric, 10::numeric);
2024-11-25 19:08:07.163 CET [561457][client backend] [pg_regress/numeric][16/511:0] ERROR: step size cannot be infinity
2024-11-25 19:08:07.163 CET [561457][client backend] [pg_regress/numeric][16/511:0] STATEMENT: select * from generate_series(0::numeric, '42'::numeric, '-inf'::numeric);
2024-11-25 19:08:07.166 CET [561457][client backend] [pg_regress/numeric][16/516:0] ERROR: cannot take logarithm of a negative number
2024-11-25 19:08:07.166 CET [561457][client backend] [pg_regress/numeric][16/516:0] STATEMENT: select ln(-12.34);
2024-11-25 19:08:07.166 CET [561457][client backend] [pg_regress/numeric][16/517:0] ERROR: cannot take logarithm of zero
2024-11-25 19:08:07.166 CET [561457][client backend] [pg_regress/numeric][16/517:0] STATEMENT: select ln(0.0);
2024-11-25 19:08:07.168 CET [561457][client backend] [pg_regress/numeric][16/526:0] ERROR: cannot take logarithm of a negative number
2024-11-25 19:08:07.168 CET [561457][client backend] [pg_regress/numeric][16/526:0] CONTEXT: SQL function "log" statement 1
2024-11-25 19:08:07.168 CET [561457][client backend] [pg_regress/numeric][16/526:0] STATEMENT: select log(-12.34);
2024-11-25 19:08:07.168 CET [561457][client backend] [pg_regress/numeric][16/527:0] ERROR: cannot take logarithm of zero
2024-11-25 19:08:07.168 CET [561457][client backend] [pg_regress/numeric][16/527:0] CONTEXT: SQL function "log" statement 1
2024-11-25 19:08:07.168 CET [561457][client backend] [pg_regress/numeric][16/527:0] STATEMENT: select log(0.0);
2024-11-25 19:08:07.170 CET [561489][client backend] [isolation/receipt-report/s1][37/30:527058] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:07.170 CET [561489][client backend] [isolation/receipt-report/s1][37/30:527058] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:07.170 CET [561489][client backend] [isolation/receipt-report/s1][37/30:527058] HINT: The transaction might succeed if retried.
2024-11-25 19:08:07.170 CET [561489][client backend] [isolation/receipt-report/s1][37/30:527058] STATEMENT: COMMIT;
2024-11-25 19:08:07.170 CET [561457][client backend] [pg_regress/numeric][16/534:0] ERROR: cannot take logarithm of a negative number
2024-11-25 19:08:07.170 CET [561457][client backend] [pg_regress/numeric][16/534:0] STATEMENT: select log(-12.34, 56.78);
2024-11-25 19:08:07.171 CET [561457][client backend] [pg_regress/numeric][16/535:0] ERROR: cannot take logarithm of a negative number
2024-11-25 19:08:07.171 CET [561457][client backend] [pg_regress/numeric][16/535:0] STATEMENT: select log(-12.34, -56.78);
2024-11-25 19:08:07.171 CET [561457][client backend] [pg_regress/numeric][16/536:0] ERROR: cannot take logarithm of a negative number
2024-11-25 19:08:07.171 CET [561457][client backend] [pg_regress/numeric][16/536:0] STATEMENT: select log(12.34, -56.78);
2024-11-25 19:08:07.171 CET [561457][client backend] [pg_regress/numeric][16/537:0] ERROR: cannot take logarithm of zero
2024-11-25 19:08:07.171 CET [561457][client backend] [pg_regress/numeric][16/537:0] STATEMENT: select log(0.0, 12.34);
2024-11-25 19:08:07.171 CET [561457][client backend] [pg_regress/numeric][16/538:0] ERROR: cannot take logarithm of zero
2024-11-25 19:08:07.171 CET [561457][client backend] [pg_regress/numeric][16/538:0] STATEMENT: select log(12.34, 0.0);
2024-11-25 19:08:07.171 CET [561457][client backend] [pg_regress/numeric][16/539:0] ERROR: division by zero
2024-11-25 19:08:07.171 CET [561457][client backend] [pg_regress/numeric][16/539:0] STATEMENT: select log(1.0, 12.34);
2024-11-25 19:08:07.177 CET [561569][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.178 CET [561569][client backend] [[unknown]][75/11:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.178 CET [561569][client backend] [[unknown]][75/11:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:07.188 CET [561023][checkpointer] LOG: checkpoint complete: wrote 2332 buffers (14.2%), wrote 1 SLRU buffers; 0 WAL file(s) added, 1 removed, 0 recycled; write=0.028 s, sync=0.001 s, total=0.030 s; sync files=0, longest=0.000 s, average=0.000 s; distance=17550 kB, estimate=25933 kB; lsn=4/4186F8C8, redo lsn=4/4160CCB8
2024-11-25 19:08:07.189 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:07.196 CET [561023][checkpointer] LOG: checkpoint complete: wrote 289 buffers (1.8%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.007 s, sync=0.001 s, total=0.008 s; sync files=0, longest=0.000 s, average=0.000 s; distance=2728 kB, estimate=23612 kB; lsn=4/41A2A440, redo lsn=4/418B6F78
2024-11-25 19:08:07.197 CET [561561][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.045 user=nkey database=postgres host=[local]
2024-11-25 19:08:07.201 CET [561572][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.201 CET [561572][client backend] [[unknown]][59/159:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.201 CET [561572][client backend] [[unknown]][59/159:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:07.204 CET [561565][client backend] [pg_regress/numeric][:0] LOG: disconnection: session time: 0:00:00.044 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:07.208 CET [561576][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.208 CET [561576][client backend] [[unknown]][78/3:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.208 CET [561576][client backend] [[unknown]][78/3:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/uuid
2024-11-25 19:08:07.209 CET [561569][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.031 user=nkey database=postgres host=[local]
2024-11-25 19:08:07.213 CET [561579][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.214 CET [561579][client backend] [[unknown]][76/20:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.214 CET [561579][client backend] [[unknown]][76/20:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:07.216 CET [561403][client backend] [pg_regress/enum][:0] LOG: disconnection: session time: 0:00:00.392 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:07.220 CET [561583][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.221 CET [561583][client backend] [[unknown]][79/11:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.221 CET [561583][client backend] [[unknown]][79/11:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/uuid
2024-11-25 19:08:07.226 CET [561576][client backend] [pg_regress/uuid][:0] LOG: disconnection: session time: 0:00:00.018 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:07.229 CET [561572][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.028 user=nkey database=postgres host=[local]
2024-11-25 19:08:07.230 CET [561583][client backend] [pg_regress/uuid][:0] LOG: disconnection: session time: 0:00:00.009 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:07.230 CET [561588][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.231 CET [561588][client backend] [[unknown]][80/13:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.231 CET [561588][client backend] [[unknown]][80/13:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/not_equal
2024-11-25 19:08:07.232 CET [561592][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.233 CET [561592][client backend] [[unknown]][73/9:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.233 CET [561592][client backend] [[unknown]][73/9:0] LOG: connection authorized: user=nkey database=regression_dict_xsyn application_name=pg_regress/dict_xsyn
2024-11-25 19:08:07.234 CET [561593][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.235 CET [561593][client backend] [[unknown]][74/5:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.235 CET [561593][client backend] [[unknown]][74/5:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/name
2024-11-25 19:08:07.241 CET [561579][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.028 user=nkey database=postgres host=[local]
2024-11-25 19:08:07.244 CET [561595][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.245 CET [561595][client backend] [[unknown]][77/5:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.245 CET [561595][client backend] [[unknown]][77/5:0] LOG: connection authorized: user=nkey database=regression_earthdistance application_name=pg_regress/earthdistance
2024-11-25 19:08:07.247 CET [561593][client backend] [pg_regress/name][:0] LOG: disconnection: session time: 0:00:00.012 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:07.251 CET [561599][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.252 CET [561599][client backend] [[unknown]][82/14:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.252 CET [561599][client backend] [[unknown]][82/14:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/bool
2024-11-25 19:08:07.252 CET [561592][client backend] [pg_regress/dict_xsyn][:0] LOG: disconnection: session time: 0:00:00.019 user=nkey database=regression_dict_xsyn host=[local]
2024-11-25 19:08:07.254 CET [561595][client backend] [pg_regress/earthdistance][77/6:0] ERROR: required extension "cube" is not installed
2024-11-25 19:08:07.254 CET [561595][client backend] [pg_regress/earthdistance][77/6:0] HINT: Use CREATE EXTENSION ... CASCADE to install required extensions too.
2024-11-25 19:08:07.254 CET [561595][client backend] [pg_regress/earthdistance][77/6:0] STATEMENT: CREATE EXTENSION earthdistance;
2024-11-25 19:08:07.262 CET [561599][client backend] [pg_regress/bool][:0] LOG: disconnection: session time: 0:00:00.011 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:07.269 CET [561606][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.270 CET [561606][client backend] [[unknown]][83/11:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.270 CET [561606][client backend] [[unknown]][83/11:0] LOG: connection authorized: user=nkey database=regression_btree_gin application_name=pg_regress/bpchar
2024-11-25 19:08:07.273 CET [561588][client backend] [pg_regress/not_equal][80/28:527148] ERROR: conflicting key value violates exclusion constraint "zoo_cage_animal_excl"
2024-11-25 19:08:07.273 CET [561588][client backend] [pg_regress/not_equal][80/28:527148] DETAIL: Key (cage, animal)=(123, lion) conflicts with existing key (cage, animal)=(123, zebra).
2024-11-25 19:08:07.273 CET [561588][client backend] [pg_regress/not_equal][80/28:527148] STATEMENT: INSERT INTO zoo VALUES(123, 'lion');
2024-11-25 19:08:07.276 CET [561588][client backend] [pg_regress/not_equal][:0] LOG: disconnection: session time: 0:00:00.045 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:07.280 CET [561610][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.281 CET [561610][client backend] [[unknown]][81/40:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.281 CET [561610][client backend] [[unknown]][81/40:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/enum
2024-11-25 19:08:07.282 CET [561606][client backend] [pg_regress/bpchar][:0] LOG: disconnection: session time: 0:00:00.013 user=nkey database=regression_btree_gin host=[local]
2024-11-25 19:08:07.298 CET [561610][client backend] [pg_regress/enum][:0] LOG: disconnection: session time: 0:00:00.018 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:07.303 CET [561624][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.303 CET [561624][client backend] [[unknown]][88/11:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.303 CET [561624][client backend] [[unknown]][88/11:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:07.304 CET [561625][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.305 CET [561625][client backend] [[unknown]][90/12:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.306 CET [561625][client backend] [[unknown]][90/12:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/bool
2024-11-25 19:08:07.307 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:07.319 CET [561625][client backend] [pg_regress/bool][:0] LOG: disconnection: session time: 0:00:00.014 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:07.328 CET [561634][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.329 CET [561634][client backend] [[unknown]][84/7:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.329 CET [561634][client backend] [[unknown]][84/7:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/partitions
2024-11-25 19:08:07.333 CET [561637][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.333 CET [561637][client backend] [[unknown]][85/4:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.333 CET [561637][client backend] [[unknown]][85/4:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:07.340 CET [561023][checkpointer] LOG: checkpoint complete: wrote 2798 buffers (17.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 1 removed, 0 recycled; write=0.032 s, sync=0.001 s, total=0.033 s; sync files=0, longest=0.000 s, average=0.000 s; distance=19313 kB, estimate=23183 kB; lsn=4/42E2B7A8, redo lsn=4/42B93750
2024-11-25 19:08:07.340 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:07.347 CET [561023][checkpointer] LOG: checkpoint complete: wrote 302 buffers (1.8%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.007 s, sync=0.001 s, total=0.007 s; sync files=0, longest=0.000 s, average=0.000 s; distance=2815 kB, estimate=21146 kB; lsn=4/42EE72A8, redo lsn=4/42E53450
2024-11-25 19:08:07.348 CET [561634][client backend] [pg_regress/partitions][84/19:527198] ERROR: conflicting key value violates exclusion constraint "parttmp_1_to_10_id_valid_at_excl"
2024-11-25 19:08:07.348 CET [561634][client backend] [pg_regress/partitions][84/19:527198] DETAIL: Key (id, valid_at)=(2, [01-15-2000,02-01-2000)) conflicts with existing key (id, valid_at)=(2, [01-01-2000,02-01-2000)).
2024-11-25 19:08:07.348 CET [561634][client backend] [pg_regress/partitions][84/19:527198] STATEMENT: insert into parttmp (id, valid_at) values
(2, '[2000-01-15, 2000-02-01)');
2024-11-25 19:08:07.350 CET [561624][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.047 user=nkey database=postgres host=[local]
2024-11-25 19:08:07.352 CET [561634][client backend] [pg_regress/partitions][84/21:527202] ERROR: cannot match partition key to index on column "id" using non-equal operator "<>"
2024-11-25 19:08:07.352 CET [561634][client backend] [pg_regress/partitions][84/21:527202] STATEMENT: create table parttmp (id int, valid_at daterange, exclude using gist (id with <>, valid_at with &&)) partition by range (id);
2024-11-25 19:08:07.353 CET [561634][client backend] [pg_regress/partitions][:0] LOG: disconnection: session time: 0:00:00.024 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:07.353 CET [561457][client backend] [pg_regress/numeric][16/593:0] ERROR: value overflows numeric format
2024-11-25 19:08:07.353 CET [561457][client backend] [pg_regress/numeric][16/593:0] STATEMENT: SELECT lcm(9999 * (10::numeric)^131068 + (10::numeric^131068 - 1), 2);
2024-11-25 19:08:07.355 CET [561642][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.356 CET [561457][client backend] [pg_regress/numeric][16/596:0] ERROR: value overflows numeric format
2024-11-25 19:08:07.356 CET [561457][client backend] [pg_regress/numeric][16/596:0] STATEMENT: SELECT factorial(100000);
2024-11-25 19:08:07.356 CET [561642][client backend] [[unknown]][87/4:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.356 CET [561642][client backend] [[unknown]][87/4:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:07.356 CET [561457][client backend] [pg_regress/numeric][16/598:0] ERROR: factorial of a negative number is undefined
2024-11-25 19:08:07.356 CET [561457][client backend] [pg_regress/numeric][16/598:0] STATEMENT: SELECT factorial(-4);
2024-11-25 19:08:07.358 CET [561644][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.358 CET [561637][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.025 user=nkey database=postgres host=[local]
2024-11-25 19:08:07.358 CET [561457][client backend] [pg_regress/numeric][16/602:0] ERROR: pg_lsn out of range
2024-11-25 19:08:07.358 CET [561457][client backend] [pg_regress/numeric][16/602:0] STATEMENT: SELECT pg_lsn(-1::numeric);
2024-11-25 19:08:07.358 CET [561457][client backend] [pg_regress/numeric][16/603:0] ERROR: pg_lsn out of range
2024-11-25 19:08:07.358 CET [561457][client backend] [pg_regress/numeric][16/603:0] STATEMENT: SELECT pg_lsn(18446744073709551616::numeric);
2024-11-25 19:08:07.358 CET [561457][client backend] [pg_regress/numeric][16/604:0] ERROR: cannot convert NaN to pg_lsn
2024-11-25 19:08:07.358 CET [561457][client backend] [pg_regress/numeric][16/604:0] STATEMENT: SELECT pg_lsn('NaN'::numeric);
2024-11-25 19:08:07.358 CET [561644][client backend] [[unknown]][89/20:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.358 CET [561644][client backend] [[unknown]][89/20:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/stratnum
2024-11-25 19:08:07.359 CET [561457][client backend] [pg_regress/numeric][:0] LOG: disconnection: session time: 0:00:00.494 user=nkey database=regression host=[local]
2024-11-25 19:08:07.361 CET [561647][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.361 CET [561644][client backend] [pg_regress/stratnum][:0] LOG: disconnection: session time: 0:00:00.003 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:07.362 CET [561647][client backend] [[unknown]][91/11:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.362 CET [561647][client backend] [[unknown]][91/11:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:07.365 CET [561651][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.366 CET [561651][client backend] [[unknown]][45/505:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.366 CET [561651][client backend] [[unknown]][45/505:0] LOG: connection authorized: user=nkey database=regression_btree_gist application_name=pg_regress/without_overlaps
2024-11-25 19:08:07.383 CET [561642][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.028 user=nkey database=postgres host=[local]
2024-11-25 19:08:07.386 CET [561595][client backend] [pg_regress/earthdistance][77/147:0] ERROR: cannot drop extension cube because other objects depend on it
2024-11-25 19:08:07.386 CET [561595][client backend] [pg_regress/earthdistance][77/147:0] DETAIL: extension earthdistance depends on extension cube
2024-11-25 19:08:07.386 CET [561595][client backend] [pg_regress/earthdistance][77/147:0] HINT: Use DROP ... CASCADE to drop the dependent objects too.
2024-11-25 19:08:07.386 CET [561595][client backend] [pg_regress/earthdistance][77/147:0] STATEMENT: drop extension cube;
2024-11-25 19:08:07.386 CET [561651][client backend] [pg_regress/without_overlaps][45/521:527223] ERROR: conflicting key value violates exclusion constraint "temporal_rng_pk"
2024-11-25 19:08:07.386 CET [561651][client backend] [pg_regress/without_overlaps][45/521:527223] DETAIL: Key (id, valid_at)=(1, [06-01-2000,01-01-2001)) conflicts with existing key (id, valid_at)=(1, [01-01-2000,01-01-2001)).
2024-11-25 19:08:07.386 CET [561651][client backend] [pg_regress/without_overlaps][45/521:527223] STATEMENT: INSERT INTO temporal_rng VALUES
(1, '[2000-06-01,2001-01-01)');
2024-11-25 19:08:07.386 CET [561653][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.387 CET [561653][client backend] [[unknown]][95/11:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.387 CET [561653][client backend] [[unknown]][95/11:0] LOG: connection authorized: user=nkey database=regression_file_fdw application_name=pg_regress/file_fdw
2024-11-25 19:08:07.387 CET [561647][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.026 user=nkey database=postgres host=[local]
2024-11-25 19:08:07.389 CET [561595][client backend] [pg_regress/earthdistance][77/149:0] ERROR: cannot drop type cube because extension cube requires it
2024-11-25 19:08:07.389 CET [561595][client backend] [pg_regress/earthdistance][77/149:0] HINT: You can drop extension cube instead.
2024-11-25 19:08:07.389 CET [561595][client backend] [pg_regress/earthdistance][77/149:0] STATEMENT: drop type cube;
2024-11-25 19:08:07.390 CET [561655][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.391 CET [561655][client backend] [[unknown]][97/25:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.391 CET [561655][client backend] [[unknown]][97/25:0] LOG: connection authorized: user=nkey database=regression_fuzzystrmatch application_name=pg_regress/fuzzystrmatch
2024-11-25 19:08:07.396 CET [561595][client backend] [pg_regress/earthdistance][77/152:527232] ERROR: cannot drop extension cube because other objects depend on it
2024-11-25 19:08:07.396 CET [561595][client backend] [pg_regress/earthdistance][77/152:527232] DETAIL: column f1 of table foo depends on type cube
2024-11-25 19:08:07.396 CET [561595][client backend] [pg_regress/earthdistance][77/152:527232] HINT: Use DROP ... CASCADE to drop the dependent objects too.
2024-11-25 19:08:07.396 CET [561595][client backend] [pg_regress/earthdistance][77/152:527232] STATEMENT: drop extension cube;
2024-11-25 19:08:07.398 CET [561653][client backend] [pg_regress/file_fdw][95/23:0] ERROR: permission denied to create foreign-data wrapper "file_fdw2"
2024-11-25 19:08:07.398 CET [561653][client backend] [pg_regress/file_fdw][95/23:0] HINT: Must be superuser to create a foreign-data wrapper.
2024-11-25 19:08:07.398 CET [561653][client backend] [pg_regress/file_fdw][95/23:0] STATEMENT: CREATE FOREIGN DATA WRAPPER file_fdw2 HANDLER file_fdw_handler VALIDATOR file_fdw_validator;
2024-11-25 19:08:07.398 CET [561653][client backend] [pg_regress/file_fdw][95/24:0] ERROR: permission denied for foreign-data wrapper file_fdw
2024-11-25 19:08:07.398 CET [561653][client backend] [pg_regress/file_fdw][95/24:0] STATEMENT: CREATE SERVER file_server2 FOREIGN DATA WRAPPER file_fdw;
2024-11-25 19:08:07.398 CET [561140][client backend] [pg_regress/check_btree][20/21:0] ERROR: permission denied for function bt_index_check
2024-11-25 19:08:07.398 CET [561140][client backend] [pg_regress/check_btree][20/21:0] STATEMENT: SELECT bt_index_check('bttest_a_idx'::regclass);
2024-11-25 19:08:07.399 CET [561140][client backend] [pg_regress/check_btree][20/22:0] ERROR: permission denied for function bt_index_parent_check
2024-11-25 19:08:07.399 CET [561140][client backend] [pg_regress/check_btree][20/22:0] STATEMENT: SELECT bt_index_parent_check('bttest_a_idx'::regclass);
2024-11-25 19:08:07.400 CET [561653][client backend] [pg_regress/file_fdw][95/25:0] ERROR: permission denied for foreign server file_server
2024-11-25 19:08:07.400 CET [561653][client backend] [pg_regress/file_fdw][95/25:0] STATEMENT: CREATE USER MAPPING FOR regress_file_fdw_user SERVER file_server;
2024-11-25 19:08:07.402 CET [561651][client backend] [pg_regress/without_overlaps][45/538:527256] ERROR: insert or update on table "temporal_fk_rng2rng" violates foreign key constraint "temporal_fk_rng2rng_fk"
2024-11-25 19:08:07.402 CET [561651][client backend] [pg_regress/without_overlaps][45/538:527256] DETAIL: Key (parent_id, valid_at)=(3, [01-01-2000,01-01-2001)) is not present in table "temporal_rng".
2024-11-25 19:08:07.402 CET [561651][client backend] [pg_regress/without_overlaps][45/538:527256] STATEMENT: INSERT INTO temporal_fk_rng2rng VALUES
(3, '[2000-01-01,2001-01-01)', 3);
2024-11-25 19:08:07.402 CET [561653][client backend] [pg_regress/file_fdw][95/33:527255] ERROR: COPY format "xml" not recognized
2024-11-25 19:08:07.402 CET [561653][client backend] [pg_regress/file_fdw][95/33:527255] STATEMENT: CREATE FOREIGN TABLE tbl () SERVER file_server OPTIONS (format 'xml');
2024-11-25 19:08:07.403 CET [561651][client backend] [pg_regress/without_overlaps][45/539:527257] ERROR: insert or update on table "temporal_fk_rng2rng" violates foreign key constraint "temporal_fk_rng2rng_fk"
2024-11-25 19:08:07.403 CET [561651][client backend] [pg_regress/without_overlaps][45/539:527257] DETAIL: Key (parent_id, valid_at)=(2, [01-01-2001,01-01-2002)) is not present in table "temporal_rng".
2024-11-25 19:08:07.403 CET [561651][client backend] [pg_regress/without_overlaps][45/539:527257] STATEMENT: INSERT INTO temporal_fk_rng2rng VALUES
(4, '[2001-01-01,2002-01-01)', 2);
2024-11-25 19:08:07.403 CET [561653][client backend] [pg_regress/file_fdw][95/34:527258] ERROR: COPY QUOTE requires CSV mode
2024-11-25 19:08:07.403 CET [561653][client backend] [pg_regress/file_fdw][95/34:527258] STATEMENT: CREATE FOREIGN TABLE tbl () SERVER file_server OPTIONS (format 'text', quote ':');
2024-11-25 19:08:07.403 CET [561651][client backend] [pg_regress/without_overlaps][45/540:527259] ERROR: insert or update on table "temporal_fk_rng2rng" violates foreign key constraint "temporal_fk_rng2rng_fk"
2024-11-25 19:08:07.403 CET [561651][client backend] [pg_regress/without_overlaps][45/540:527259] DETAIL: Key (parent_id, valid_at)=(2, [01-01-2000,01-01-2002)) is not present in table "temporal_rng".
2024-11-25 19:08:07.403 CET [561651][client backend] [pg_regress/without_overlaps][45/540:527259] STATEMENT: INSERT INTO temporal_fk_rng2rng VALUES
(5, '[2000-01-01,2002-01-01)', 2);
2024-11-25 19:08:07.403 CET [561653][client backend] [pg_regress/file_fdw][95/35:527260] ERROR: COPY ESCAPE requires CSV mode
2024-11-25 19:08:07.403 CET [561653][client backend] [pg_regress/file_fdw][95/35:527260] STATEMENT: CREATE FOREIGN TABLE tbl () SERVER file_server OPTIONS (format 'text', escape ':');
2024-11-25 19:08:07.403 CET [561651][client backend] [pg_regress/without_overlaps][:0] LOG: disconnection: session time: 0:00:00.037 user=nkey database=regression_btree_gist host=[local]
2024-11-25 19:08:07.403 CET [561653][client backend] [pg_regress/file_fdw][95/36:527261] ERROR: cannot specify HEADER in BINARY mode
2024-11-25 19:08:07.403 CET [561653][client backend] [pg_regress/file_fdw][95/36:527261] STATEMENT: CREATE FOREIGN TABLE tbl () SERVER file_server OPTIONS (format 'binary', header 'true');
2024-11-25 19:08:07.404 CET [561653][client backend] [pg_regress/file_fdw][95/37:527263] ERROR: COPY QUOTE requires CSV mode
2024-11-25 19:08:07.404 CET [561653][client backend] [pg_regress/file_fdw][95/37:527263] STATEMENT: CREATE FOREIGN TABLE tbl () SERVER file_server OPTIONS (format 'binary', quote ':');
2024-11-25 19:08:07.404 CET [561653][client backend] [pg_regress/file_fdw][95/38:527264] ERROR: COPY ESCAPE requires CSV mode
2024-11-25 19:08:07.404 CET [561653][client backend] [pg_regress/file_fdw][95/38:527264] STATEMENT: CREATE FOREIGN TABLE tbl () SERVER file_server OPTIONS (format 'binary', escape ':');
2024-11-25 19:08:07.405 CET [561653][client backend] [pg_regress/file_fdw][95/39:527266] ERROR: COPY delimiter cannot be "a"
2024-11-25 19:08:07.405 CET [561653][client backend] [pg_regress/file_fdw][95/39:527266] STATEMENT: CREATE FOREIGN TABLE tbl () SERVER file_server OPTIONS (format 'text', delimiter 'a');
2024-11-25 19:08:07.405 CET [561653][client backend] [pg_regress/file_fdw][95/40:527267] ERROR: COPY ESCAPE requires CSV mode
2024-11-25 19:08:07.405 CET [561653][client backend] [pg_regress/file_fdw][95/40:527267] STATEMENT: CREATE FOREIGN TABLE tbl () SERVER file_server OPTIONS (format 'text', escape '-');
2024-11-25 19:08:07.406 CET [561653][client backend] [pg_regress/file_fdw][95/41:527268] ERROR: CSV quote character must not appear in the NULL specification
2024-11-25 19:08:07.406 CET [561653][client backend] [pg_regress/file_fdw][95/41:527268] STATEMENT: CREATE FOREIGN TABLE tbl () SERVER file_server OPTIONS (format 'csv', quote '-', null '=-=');
2024-11-25 19:08:07.406 CET [561653][client backend] [pg_regress/file_fdw][95/42:527270] ERROR: COPY delimiter character must not appear in the NULL specification
2024-11-25 19:08:07.406 CET [561653][client backend] [pg_regress/file_fdw][95/42:527270] STATEMENT: CREATE FOREIGN TABLE tbl () SERVER file_server OPTIONS (format 'csv', delimiter '-', null '=-=');
2024-11-25 19:08:07.406 CET [561653][client backend] [pg_regress/file_fdw][95/43:527271] ERROR: COPY delimiter and quote must be different
2024-11-25 19:08:07.406 CET [561653][client backend] [pg_regress/file_fdw][95/43:527271] STATEMENT: CREATE FOREIGN TABLE tbl () SERVER file_server OPTIONS (format 'csv', delimiter '-', quote '-');
2024-11-25 19:08:07.407 CET [561653][client backend] [pg_regress/file_fdw][95/44:527272] ERROR: COPY delimiter must be a single one-byte character
2024-11-25 19:08:07.407 CET [561653][client backend] [pg_regress/file_fdw][95/44:527272] STATEMENT: CREATE FOREIGN TABLE tbl () SERVER file_server OPTIONS (format 'csv', delimiter '---');
2024-11-25 19:08:07.407 CET [561653][client backend] [pg_regress/file_fdw][95/45:527273] ERROR: COPY quote must be a single one-byte character
2024-11-25 19:08:07.407 CET [561653][client backend] [pg_regress/file_fdw][95/45:527273] STATEMENT: CREATE FOREIGN TABLE tbl () SERVER file_server OPTIONS (format 'csv', quote '---');
2024-11-25 19:08:07.408 CET [561653][client backend] [pg_regress/file_fdw][95/46:527274] ERROR: COPY escape must be a single one-byte character
2024-11-25 19:08:07.408 CET [561653][client backend] [pg_regress/file_fdw][95/46:527274] STATEMENT: CREATE FOREIGN TABLE tbl () SERVER file_server OPTIONS (format 'csv', escape '---');
2024-11-25 19:08:07.408 CET [561653][client backend] [pg_regress/file_fdw][95/47:527275] ERROR: COPY delimiter cannot be "\"
2024-11-25 19:08:07.408 CET [561653][client backend] [pg_regress/file_fdw][95/47:527275] STATEMENT: CREATE FOREIGN TABLE tbl () SERVER file_server OPTIONS (format 'text', delimiter '\');
2024-11-25 19:08:07.408 CET [561653][client backend] [pg_regress/file_fdw][95/48:527276] ERROR: COPY delimiter cannot be "."
2024-11-25 19:08:07.408 CET [561653][client backend] [pg_regress/file_fdw][95/48:527276] STATEMENT: CREATE FOREIGN TABLE tbl () SERVER file_server OPTIONS (format 'text', delimiter '.');
2024-11-25 19:08:07.409 CET [561653][client backend] [pg_regress/file_fdw][95/49:527278] ERROR: COPY delimiter cannot be "1"
2024-11-25 19:08:07.409 CET [561653][client backend] [pg_regress/file_fdw][95/49:527278] STATEMENT: CREATE FOREIGN TABLE tbl () SERVER file_server OPTIONS (format 'text', delimiter '1');
2024-11-25 19:08:07.409 CET [561655][client backend] [pg_regress/fuzzystrmatch][:0] LOG: disconnection: session time: 0:00:00.019 user=nkey database=regression_fuzzystrmatch host=[local]
2024-11-25 19:08:07.409 CET [561653][client backend] [pg_regress/file_fdw][95/50:527279] ERROR: COPY delimiter cannot be "a"
2024-11-25 19:08:07.409 CET [561653][client backend] [pg_regress/file_fdw][95/50:527279] STATEMENT: CREATE FOREIGN TABLE tbl () SERVER file_server OPTIONS (format 'text', delimiter 'a');
2024-11-25 19:08:07.410 CET [561653][client backend] [pg_regress/file_fdw][95/51:527280] ERROR: COPY delimiter cannot be newline or carriage return
2024-11-25 19:08:07.410 CET [561653][client backend] [pg_regress/file_fdw][95/51:527280] STATEMENT: CREATE FOREIGN TABLE tbl () SERVER file_server OPTIONS (format 'csv', delimiter '
');
2024-11-25 19:08:07.410 CET [561653][client backend] [pg_regress/file_fdw][95/52:527281] ERROR: COPY null representation cannot use newline or carriage return
2024-11-25 19:08:07.410 CET [561653][client backend] [pg_regress/file_fdw][95/52:527281] STATEMENT: CREATE FOREIGN TABLE tbl () SERVER file_server OPTIONS (format 'csv', null '
');
2024-11-25 19:08:07.411 CET [561653][client backend] [pg_regress/file_fdw][95/53:527282] ERROR: COPY REJECT_LIMIT requires ON_ERROR to be set to IGNORE
2024-11-25 19:08:07.411 CET [561653][client backend] [pg_regress/file_fdw][95/53:527282] STATEMENT: CREATE FOREIGN TABLE tbl () SERVER file_server OPTIONS (reject_limit '1');
2024-11-25 19:08:07.412 CET [561653][client backend] [pg_regress/file_fdw][95/54:527283] ERROR: either filename or program is required for file_fdw foreign tables
2024-11-25 19:08:07.412 CET [561653][client backend] [pg_regress/file_fdw][95/54:527283] STATEMENT: CREATE FOREIGN TABLE tbl () SERVER file_server;
2024-11-25 19:08:07.414 CET [561662][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.415 CET [561662][client backend] [[unknown]][93/39:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.415 CET [561662][client backend] [[unknown]][93/39:0] LOG: connection authorized: user=nkey database=regression_fuzzystrmatch application_name=pg_regress/fuzzystrmatch_utf8
2024-11-25 19:08:07.417 CET [561653][client backend] [pg_regress/file_fdw][95/64:0] ERROR: column name mismatch in header line field 1: got "1", expected "a"
2024-11-25 19:08:07.417 CET [561653][client backend] [pg_regress/file_fdw][95/64:0] CONTEXT: COPY header_doesnt_match, line 1: "1,foo"
2024-11-25 19:08:07.417 CET [561653][client backend] [pg_regress/file_fdw][95/64:0] STATEMENT: SELECT * FROM header_doesnt_match;
2024-11-25 19:08:07.418 CET [561653][client backend] [pg_regress/file_fdw][95/66:0] ERROR: COPY FORCE_NOT_NULL requires CSV mode
2024-11-25 19:08:07.418 CET [561653][client backend] [pg_regress/file_fdw][95/66:0] STATEMENT: SELECT * FROM text_csv;
2024-11-25 19:08:07.419 CET [561653][client backend] [pg_regress/file_fdw][95/71:0] ERROR: invalid option "force_not_null"
2024-11-25 19:08:07.419 CET [561653][client backend] [pg_regress/file_fdw][95/71:0] HINT: There are no valid options in this context.
2024-11-25 19:08:07.419 CET [561653][client backend] [pg_regress/file_fdw][95/71:0] STATEMENT: ALTER FOREIGN DATA WRAPPER file_fdw OPTIONS (ADD force_not_null '*');
2024-11-25 19:08:07.419 CET [561653][client backend] [pg_regress/file_fdw][95/72:0] ERROR: invalid option "force_not_null"
2024-11-25 19:08:07.419 CET [561653][client backend] [pg_regress/file_fdw][95/72:0] HINT: There are no valid options in this context.
2024-11-25 19:08:07.419 CET [561653][client backend] [pg_regress/file_fdw][95/72:0] STATEMENT: ALTER SERVER file_server OPTIONS (ADD force_not_null '*');
2024-11-25 19:08:07.419 CET [561653][client backend] [pg_regress/file_fdw][95/73:0] ERROR: invalid option "force_not_null"
2024-11-25 19:08:07.419 CET [561653][client backend] [pg_regress/file_fdw][95/73:0] HINT: There are no valid options in this context.
2024-11-25 19:08:07.419 CET [561653][client backend] [pg_regress/file_fdw][95/73:0] STATEMENT: CREATE USER MAPPING FOR public SERVER file_server OPTIONS (force_not_null '*');
2024-11-25 19:08:07.420 CET [561653][client backend] [pg_regress/file_fdw][95/74:527300] ERROR: invalid option "force_not_null"
2024-11-25 19:08:07.420 CET [561653][client backend] [pg_regress/file_fdw][95/74:527300] STATEMENT: CREATE FOREIGN TABLE tbl () SERVER file_server OPTIONS (force_not_null '*');
2024-11-25 19:08:07.421 CET [561653][client backend] [pg_regress/file_fdw][95/75:0] ERROR: invalid option "force_null"
2024-11-25 19:08:07.421 CET [561653][client backend] [pg_regress/file_fdw][95/75:0] HINT: There are no valid options in this context.
2024-11-25 19:08:07.421 CET [561653][client backend] [pg_regress/file_fdw][95/75:0] STATEMENT: ALTER FOREIGN DATA WRAPPER file_fdw OPTIONS (ADD force_null '*');
2024-11-25 19:08:07.421 CET [561653][client backend] [pg_regress/file_fdw][95/76:0] ERROR: invalid option "force_null"
2024-11-25 19:08:07.421 CET [561653][client backend] [pg_regress/file_fdw][95/76:0] HINT: There are no valid options in this context.
2024-11-25 19:08:07.421 CET [561653][client backend] [pg_regress/file_fdw][95/76:0] STATEMENT: ALTER SERVER file_server OPTIONS (ADD force_null '*');
2024-11-25 19:08:07.421 CET [561653][client backend] [pg_regress/file_fdw][95/77:0] ERROR: invalid option "force_null"
2024-11-25 19:08:07.421 CET [561653][client backend] [pg_regress/file_fdw][95/77:0] HINT: There are no valid options in this context.
2024-11-25 19:08:07.421 CET [561653][client backend] [pg_regress/file_fdw][95/77:0] STATEMENT: CREATE USER MAPPING FOR public SERVER file_server OPTIONS (force_null '*');
2024-11-25 19:08:07.421 CET [561662][client backend] [pg_regress/fuzzystrmatch_utf8][:0] LOG: disconnection: session time: 0:00:00.006 user=nkey database=regression_fuzzystrmatch host=[local]
2024-11-25 19:08:07.421 CET [561653][client backend] [pg_regress/file_fdw][95/78:527301] ERROR: invalid option "force_null"
2024-11-25 19:08:07.421 CET [561653][client backend] [pg_regress/file_fdw][95/78:527301] STATEMENT: CREATE FOREIGN TABLE tbl () SERVER file_server OPTIONS (force_null '*');
2024-11-25 19:08:07.424 CET [561653][client backend] [pg_regress/file_fdw][95/82:0] ERROR: invalid input syntax for type real: "aaa"
2024-11-25 19:08:07.424 CET [561653][client backend] [pg_regress/file_fdw][95/82:0] CONTEXT: COPY agg_bad, line 3, column b: "aaa"
2024-11-25 19:08:07.424 CET [561653][client backend] [pg_regress/file_fdw][95/82:0] STATEMENT: SELECT * FROM agg_bad;
2024-11-25 19:08:07.426 CET [561653][client backend] [pg_regress/file_fdw][95/88:0] ERROR: skipped more than REJECT_LIMIT (1) rows due to data type incompatibility
2024-11-25 19:08:07.426 CET [561653][client backend] [pg_regress/file_fdw][95/88:0] CONTEXT: COPY agg_bad, line 5, column b: "bbb"
2024-11-25 19:08:07.426 CET [561653][client backend] [pg_regress/file_fdw][95/88:0] STATEMENT: SELECT * FROM agg_bad;
2024-11-25 19:08:07.429 CET [561653][client backend] [pg_regress/file_fdw][95/98:0] ERROR: cannot insert into foreign table "agg_csv"
2024-11-25 19:08:07.429 CET [561653][client backend] [pg_regress/file_fdw][95/98:0] STATEMENT: INSERT INTO agg_csv VALUES(1,2.0);
2024-11-25 19:08:07.429 CET [561653][client backend] [pg_regress/file_fdw][95/99:0] ERROR: cannot update foreign table "agg_csv"
2024-11-25 19:08:07.429 CET [561653][client backend] [pg_regress/file_fdw][95/99:0] STATEMENT: UPDATE agg_csv SET a = 1;
2024-11-25 19:08:07.429 CET [561653][client backend] [pg_regress/file_fdw][95/100:0] ERROR: cannot delete from foreign table "agg_csv"
2024-11-25 19:08:07.429 CET [561653][client backend] [pg_regress/file_fdw][95/100:0] STATEMENT: DELETE FROM agg_csv WHERE a = 100;
2024-11-25 19:08:07.429 CET [561653][client backend] [pg_regress/file_fdw][95/101:0] ERROR: cannot truncate foreign table "agg_csv"
2024-11-25 19:08:07.429 CET [561653][client backend] [pg_regress/file_fdw][95/101:0] STATEMENT: TRUNCATE agg_csv;
2024-11-25 19:08:07.430 CET [561653][client backend] [pg_regress/file_fdw][95/103:0] ERROR: cannot insert into foreign table "agg_csv"
2024-11-25 19:08:07.430 CET [561653][client backend] [pg_regress/file_fdw][95/103:0] STATEMENT: COPY agg_csv FROM STDIN;
2024-11-25 19:08:07.431 CET [561455][client backend] [pg_regress/rangetypes][24/320:527319] ERROR: conflicting key value violates exclusion constraint "test_range_excl_room_during_excl"
2024-11-25 19:08:07.431 CET [561455][client backend] [pg_regress/rangetypes][24/320:527319] DETAIL: Key (room, during)=([123,124), ["Sat Jan 02 10:10:00 2010","Sat Jan 02 11:00:00 2010")) conflicts with existing key (room, during)=([123,124), ["Sat Jan 02 10:00:00 2010","Sat Jan 02 11:00:00 2010")).
2024-11-25 19:08:07.431 CET [561455][client backend] [pg_regress/rangetypes][24/320:527319] STATEMENT: insert into test_range_excl
values(int4range(123, 123, '[]'), int4range(3, 3, '[]'), '[2010-01-02 10:10, 2010-01-02 11:00)');
2024-11-25 19:08:07.432 CET [561455][client backend] [pg_regress/rangetypes][24/322:527322] ERROR: conflicting key value violates exclusion constraint "test_range_excl_speaker_during_excl"
2024-11-25 19:08:07.432 CET [561455][client backend] [pg_regress/rangetypes][24/322:527322] DETAIL: Key (speaker, during)=([1,2), ["Sat Jan 02 10:10:00 2010","Sat Jan 02 11:00:00 2010")) conflicts with existing key (speaker, during)=([1,2), ["Sat Jan 02 10:00:00 2010","Sat Jan 02 11:00:00 2010")).
2024-11-25 19:08:07.432 CET [561455][client backend] [pg_regress/rangetypes][24/322:527322] STATEMENT: insert into test_range_excl
values(int4range(125, 125, '[]'), int4range(1, 1, '[]'), '[2010-01-02 10:10, 2010-01-02 11:00)');
2024-11-25 19:08:07.432 CET [561455][client backend] [pg_regress/rangetypes][24/326:0] ERROR: range lower bound must be less than or equal to range upper bound at character 8
2024-11-25 19:08:07.432 CET [561455][client backend] [pg_regress/rangetypes][24/326:0] STATEMENT: select '[2010-01-01 01:00:00 -08, 2010-01-01 02:00:00 -05)'::tstzrange;
2024-11-25 19:08:07.433 CET [561455][client backend] [pg_regress/rangetypes][24/328:0] ERROR: function float4mi(double precision, double precision) does not exist
2024-11-25 19:08:07.433 CET [561455][client backend] [pg_regress/rangetypes][24/328:0] STATEMENT: create type bogus_float8range as range (subtype=float8, subtype_diff=float4mi);
2024-11-25 19:08:07.434 CET [561653][client backend] [pg_regress/file_fdw][95/115:0] ERROR: cannot update foreign table "agg_csv"
2024-11-25 19:08:07.434 CET [561653][client backend] [pg_regress/file_fdw][95/115:0] STATEMENT: UPDATE agg SET a = 1;
2024-11-25 19:08:07.434 CET [561653][client backend] [pg_regress/file_fdw][95/116:0] ERROR: cannot delete from foreign table "agg_csv"
2024-11-25 19:08:07.434 CET [561653][client backend] [pg_regress/file_fdw][95/116:0] STATEMENT: DELETE FROM agg WHERE a = 100;
2024-11-25 19:08:07.438 CET [561455][client backend] [pg_regress/rangetypes][24/337:0] ERROR: cannot drop type mydomain because other objects depend on it
2024-11-25 19:08:07.438 CET [561455][client backend] [pg_regress/rangetypes][24/337:0] DETAIL: type mydomainrange depends on type mydomain
2024-11-25 19:08:07.438 CET [561455][client backend] [pg_regress/rangetypes][24/337:0] HINT: Use DROP ... CASCADE to drop the dependent objects too.
2024-11-25 19:08:07.438 CET [561455][client backend] [pg_regress/rangetypes][24/337:0] STATEMENT: drop domain mydomain;
2024-11-25 19:08:07.440 CET [561455][client backend] [pg_regress/rangetypes][24/341:0] ERROR: value for domain restrictedrange violates check constraint "restrictedrange_check"
2024-11-25 19:08:07.440 CET [561455][client backend] [pg_regress/rangetypes][24/341:0] STATEMENT: select '[4,50)'::restrictedrange @> 7;
2024-11-25 19:08:07.442 CET [561653][client backend] [pg_regress/file_fdw][95/127:0] ERROR: cannot insert into foreign table "p1"
2024-11-25 19:08:07.442 CET [561653][client backend] [pg_regress/file_fdw][95/127:0] CONTEXT: COPY pt, line 2: "1,qux"
2024-11-25 19:08:07.442 CET [561653][client backend] [pg_regress/file_fdw][95/127:0] STATEMENT: COPY pt FROM '/home/nkey/postgres/contrib/file_fdw/data/list2.bad' with (format 'csv', delimiter ',');
2024-11-25 19:08:07.443 CET [561455][client backend] [pg_regress/rangetypes][24/345:0] ERROR: range lower bound must be less than or equal to range upper bound
2024-11-25 19:08:07.443 CET [561455][client backend] [pg_regress/rangetypes][24/345:0] STATEMENT: select textrange1('a','Z') @> 'b'::text;
2024-11-25 19:08:07.444 CET [561653][client backend] [pg_regress/file_fdw][95/132:0] ERROR: cannot insert into foreign table "p1"
2024-11-25 19:08:07.444 CET [561653][client backend] [pg_regress/file_fdw][95/132:0] STATEMENT: INSERT INTO pt VALUES (1, 'xyzzy');
2024-11-25 19:08:07.445 CET [561669][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.445 CET [561455][client backend] [pg_regress/rangetypes][24/351:0] ERROR: function anyarray_anyrange_func(integer[], numrange) does not exist at character 8
2024-11-25 19:08:07.445 CET [561455][client backend] [pg_regress/rangetypes][24/351:0] HINT: No function matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:07.445 CET [561455][client backend] [pg_regress/rangetypes][24/351:0] STATEMENT: select anyarray_anyrange_func(ARRAY[1,2], numrange(10,20));
2024-11-25 19:08:07.446 CET [561653][client backend] [pg_regress/file_fdw][95/134:527349] ERROR: cannot insert into foreign table "p1"
2024-11-25 19:08:07.446 CET [561653][client backend] [pg_regress/file_fdw][95/134:527349] STATEMENT: UPDATE pt set a = 1 where a = 2;
2024-11-25 19:08:07.446 CET [561455][client backend] [pg_regress/rangetypes][24/353:0] ERROR: cannot determine result data type
2024-11-25 19:08:07.446 CET [561455][client backend] [pg_regress/rangetypes][24/353:0] DETAIL: A result of type anyrange requires at least one input of type anyrange or anymultirange.
2024-11-25 19:08:07.446 CET [561455][client backend] [pg_regress/rangetypes][24/353:0] STATEMENT: create function bogus_func(anyelement)
returns anyrange as 'select int4range(1,10)' language sql;
2024-11-25 19:08:07.446 CET [561669][client backend] [[unknown]][98/11:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.446 CET [561669][client backend] [[unknown]][98/11:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:07.446 CET [561455][client backend] [pg_regress/rangetypes][24/354:0] ERROR: cannot determine result data type
2024-11-25 19:08:07.446 CET [561455][client backend] [pg_regress/rangetypes][24/354:0] DETAIL: A result of type anyrange requires at least one input of type anyrange or anymultirange.
2024-11-25 19:08:07.446 CET [561455][client backend] [pg_regress/rangetypes][24/354:0] STATEMENT: create function bogus_func(int)
returns anyrange as 'select int4range(1,10)' language sql;
2024-11-25 19:08:07.448 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:07.450 CET [561455][client backend] [pg_regress/rangetypes][24/360:0] ERROR: function rangetypes_sql(numrange, integer[]) does not exist at character 8
2024-11-25 19:08:07.450 CET [561455][client backend] [pg_regress/rangetypes][24/360:0] HINT: No function matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:07.450 CET [561455][client backend] [pg_regress/rangetypes][24/360:0] STATEMENT: select rangetypes_sql(numrange(1,10), ARRAY[2,20]);
2024-11-25 19:08:07.451 CET [561455][client backend] [pg_regress/rangetypes][24/364:0] ERROR: function anycompatiblearray_anycompatiblerange_func(numeric[], int4range) does not exist at character 8
2024-11-25 19:08:07.451 CET [561455][client backend] [pg_regress/rangetypes][24/364:0] HINT: No function matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:07.451 CET [561455][client backend] [pg_regress/rangetypes][24/364:0] STATEMENT: select anycompatiblearray_anycompatiblerange_func(ARRAY[1.1,2], int4range(10,20));
2024-11-25 19:08:07.451 CET [561455][client backend] [pg_regress/rangetypes][24/366:0] ERROR: cannot determine result data type
2024-11-25 19:08:07.451 CET [561455][client backend] [pg_regress/rangetypes][24/366:0] DETAIL: A result of type anycompatiblerange requires at least one input of type anycompatiblerange or anycompatiblemultirange.
2024-11-25 19:08:07.451 CET [561455][client backend] [pg_regress/rangetypes][24/366:0] STATEMENT: create function bogus_func(anycompatible)
returns anycompatiblerange as 'select int4range(1,10)' language sql;
2024-11-25 19:08:07.455 CET [561653][client backend] [pg_regress/file_fdw][95/150:0] ERROR: permission denied for foreign table agg_text
2024-11-25 19:08:07.455 CET [561653][client backend] [pg_regress/file_fdw][95/150:0] STATEMENT: SELECT * FROM agg_text ORDER BY a;
2024-11-25 19:08:07.457 CET [561455][client backend] [pg_regress/rangetypes][24/374:0] ERROR: range lower bound must be less than or equal to range upper bound
2024-11-25 19:08:07.457 CET [561455][client backend] [pg_regress/rangetypes][24/374:0] STATEMENT: select arrayrange(ARRAY[2,1], ARRAY[1,2]);
2024-11-25 19:08:07.457 CET [561653][client backend] [pg_regress/file_fdw][95/159:527371] ERROR: permission denied to set the "filename" option of a file_fdw foreign table
2024-11-25 19:08:07.457 CET [561653][client backend] [pg_regress/file_fdw][95/159:527371] DETAIL: Only roles with privileges of the "pg_read_server_files" role may set this option.
2024-11-25 19:08:07.457 CET [561653][client backend] [pg_regress/file_fdw][95/159:527371] STATEMENT: ALTER FOREIGN TABLE agg_text OPTIONS (SET format 'text');
2024-11-25 19:08:07.459 CET [561673][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.460 CET [561673][client backend] [[unknown]][86/217:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.460 CET [561673][client backend] [[unknown]][86/217:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:07.460 CET [561455][client backend] [pg_regress/rangetypes][24/380:527377] ERROR: composite type two_ints cannot be made a member of itself
2024-11-25 19:08:07.460 CET [561455][client backend] [pg_regress/rangetypes][24/380:527377] STATEMENT: alter type two_ints add attribute c two_ints_range;
2024-11-25 19:08:07.461 CET [561653][client backend] [pg_regress/file_fdw][:0] LOG: disconnection: session time: 0:00:00.074 user=nkey database=regression_file_fdw host=[local]
2024-11-25 19:08:07.469 CET [561455][client backend] [pg_regress/rangetypes][24/396:0] ERROR: cannot determine result data type
2024-11-25 19:08:07.469 CET [561455][client backend] [pg_regress/rangetypes][24/396:0] DETAIL: A result of type anyrange requires at least one input of type anyrange or anymultirange.
2024-11-25 19:08:07.469 CET [561455][client backend] [pg_regress/rangetypes][24/396:0] STATEMENT: create function outparam_fail(i anyelement, out r anyrange, out t text)
as $$ select '[1,10]', 'foo' $$ language sql;
2024-11-25 19:08:07.469 CET [561455][client backend] [pg_regress/rangetypes][24/397:0] ERROR: cannot determine result data type
2024-11-25 19:08:07.469 CET [561455][client backend] [pg_regress/rangetypes][24/397:0] DETAIL: A result of type anyrange requires at least one input of type anyrange or anymultirange.
2024-11-25 19:08:07.469 CET [561455][client backend] [pg_regress/rangetypes][24/397:0] STATEMENT: create function inoutparam_fail(inout i anyelement, out r anyrange)
as $$ select $1, '[1,10]' $$ language sql;
2024-11-25 19:08:07.469 CET [561455][client backend] [pg_regress/rangetypes][24/398:0] ERROR: cannot determine result data type
2024-11-25 19:08:07.469 CET [561455][client backend] [pg_regress/rangetypes][24/398:0] DETAIL: A result of type anyrange requires at least one input of type anyrange or anymultirange.
2024-11-25 19:08:07.469 CET [561455][client backend] [pg_regress/rangetypes][24/398:0] STATEMENT: create function table_fail(i anyelement) returns table(i anyelement, r anyrange)
as $$ select $1, '[1,10]' $$ language sql;
2024-11-25 19:08:07.474 CET [561676][autovacuum worker] LOG: automatic analyze of table "regression.public.onek"
avg read rate: 0.000 MB/s, avg write rate: 4.261 MB/s
buffer usage: 371 hits, 0 reads, 6 dirtied
WAL usage: 47 records, 5 full page images, 41461 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.01 s
2024-11-25 19:08:07.481 CET [561455][client backend] [pg_regress/rangetypes][:0] LOG: disconnection: session time: 0:00:00.614 user=nkey database=regression host=[local]
2024-11-25 19:08:07.482 CET [561676][autovacuum worker] LOG: automatic analyze of table "regression.public.onek2"
avg read rate: 0.000 MB/s, avg write rate: 2.930 MB/s
buffer usage: 222 hits, 0 reads, 3 dirtied
WAL usage: 50 records, 2 full page images, 28671 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:07.482 CET [561676][autovacuum worker] LOG: automatic vacuum of table "regression.public.tenk1": index scans: 0
pages: 0 removed, 345 remain, 1 scanned (0.29% of total)
tuples: 0 removed, 10000 remain, 0 are dead but not yet removable
removable cutoff: 527404, which was 1 XIDs old when operation ended
frozen: 0 pages from table (0.00% of total) had 0 tuples frozen
index scan not needed: 0 pages from table (0.00% of total) had 0 dead item identifiers removed
avg read rate: 0.000 MB/s, avg write rate: 0.000 MB/s
buffer usage: 12 hits, 0 reads, 0 dirtied
WAL usage: 0 records, 0 full page images, 0 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:07.488 CET [561140][client backend] [pg_regress/check_btree][20/33:0] ERROR: "bttest_a" is not an index
2024-11-25 19:08:07.488 CET [561140][client backend] [pg_regress/check_btree][20/33:0] STATEMENT: SELECT bt_index_check('bttest_a');
2024-11-25 19:08:07.488 CET [561140][client backend] [pg_regress/check_btree][20/34:0] ERROR: "bttest_a" is not an index
2024-11-25 19:08:07.488 CET [561140][client backend] [pg_regress/check_btree][20/34:0] STATEMENT: SELECT bt_index_parent_check('bttest_a');
2024-11-25 19:08:07.488 CET [561140][client backend] [pg_regress/check_btree][20/35:0] ERROR: could not open relation with OID 17
2024-11-25 19:08:07.488 CET [561140][client backend] [pg_regress/check_btree][20/35:0] STATEMENT: SELECT bt_index_check(17);
2024-11-25 19:08:07.488 CET [561140][client backend] [pg_regress/check_btree][20/36:0] ERROR: could not open relation with OID 17
2024-11-25 19:08:07.488 CET [561140][client backend] [pg_regress/check_btree][20/36:0] STATEMENT: SELECT bt_index_parent_check(17);
2024-11-25 19:08:07.491 CET [561023][checkpointer] LOG: checkpoint complete: wrote 2562 buffers (15.6%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 1 recycled; write=0.031 s, sync=0.001 s, total=0.044 s; sync files=0, longest=0.000 s, average=0.000 s; distance=16371 kB, estimate=20668 kB; lsn=4/43FD5A90, redo lsn=4/43E50100
2024-11-25 19:08:07.492 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:07.496 CET [561023][checkpointer] LOG: checkpoint complete: wrote 173 buffers (1.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.003 s, sync=0.001 s, total=0.004 s; sync files=0, longest=0.000 s, average=0.000 s; distance=1558 kB, estimate=18757 kB; lsn=4/43FDE548, redo lsn=4/43FD5BA0
2024-11-25 19:08:07.502 CET [561669][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.057 user=nkey database=postgres host=[local]
2024-11-25 19:08:07.505 CET [561595][client backend] [pg_regress/earthdistance][77/165:527414] ERROR: cannot drop extension cube because other objects depend on it
2024-11-25 19:08:07.505 CET [561595][client backend] [pg_regress/earthdistance][77/165:527414] DETAIL: column f1 of table foo depends on type c.cube
2024-11-25 19:08:07.505 CET [561595][client backend] [pg_regress/earthdistance][77/165:527414] HINT: Use DROP ... CASCADE to drop the dependent objects too.
2024-11-25 19:08:07.505 CET [561595][client backend] [pg_regress/earthdistance][77/165:527414] STATEMENT: drop extension cube;
2024-11-25 19:08:07.507 CET [561711][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.507 CET [561595][client backend] [pg_regress/earthdistance][77/166:527415] ERROR: cannot drop schema c because other objects depend on it
2024-11-25 19:08:07.507 CET [561595][client backend] [pg_regress/earthdistance][77/166:527415] DETAIL: extension cube depends on schema c
column f1 of table foo depends on type c.cube
2024-11-25 19:08:07.507 CET [561595][client backend] [pg_regress/earthdistance][77/166:527415] HINT: Use DROP ... CASCADE to drop the dependent objects too.
2024-11-25 19:08:07.507 CET [561595][client backend] [pg_regress/earthdistance][77/166:527415] STATEMENT: drop schema c;
2024-11-25 19:08:07.508 CET [561711][client backend] [[unknown]][99/20:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.508 CET [561711][client backend] [[unknown]][99/20:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:07.511 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:07.513 CET [561023][checkpointer] LOG: checkpoint complete: wrote 82 buffers (0.5%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 1 recycled; write=0.002 s, sync=0.001 s, total=0.003 s; sync files=0, longest=0.000 s, average=0.000 s; distance=411 kB, estimate=16923 kB; lsn=4/44056760, redo lsn=4/4403C860
2024-11-25 19:08:07.515 CET [561673][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.056 user=nkey database=postgres host=[local]
2024-11-25 19:08:07.518 CET [561723][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.519 CET [561725][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.519 CET [561725][client backend] [[unknown]][94/6:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.519 CET [561725][client backend] [[unknown]][94/6:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:07.520 CET [561723][client backend] [[unknown]][26/126:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.520 CET [561723][client backend] [[unknown]][26/126:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:07.530 CET [561140][client backend] [pg_regress/check_btree][20/37:527406] ERROR: only B-Tree indexes are supported as targets for verification
2024-11-25 19:08:07.530 CET [561140][client backend] [pg_regress/check_btree][20/37:527406] DETAIL: Relation "bttest_a_brin_idx" is not a B-Tree index.
2024-11-25 19:08:07.530 CET [561140][client backend] [pg_regress/check_btree][20/37:527406] STATEMENT: SELECT bt_index_parent_check('bttest_a_brin_idx');
2024-11-25 19:08:07.531 CET [561750][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.531 CET [561753][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.532 CET [561750][client backend] [[unknown]][96/6:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.532 CET [561750][client backend] [[unknown]][96/6:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/time
2024-11-25 19:08:07.533 CET [561753][client backend] [[unknown]][92/13:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.533 CET [561753][client backend] [[unknown]][92/13:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/timestamptz
2024-11-25 19:08:07.534 CET [561711][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.026 user=nkey database=postgres host=[local]
2024-11-25 19:08:07.536 CET [561757][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.536 CET [561747][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.537 CET [561757][client backend] [[unknown]][6/26:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.537 CET [561757][client backend] [[unknown]][6/26:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/macaddr8
2024-11-25 19:08:07.537 CET [561747][client backend] [[unknown]][4/78:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.537 CET [561747][client backend] [[unknown]][4/78:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/md5
2024-11-25 19:08:07.539 CET [561759][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.539 CET [561760][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.539 CET [561759][client backend] [[unknown]][9/45:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.539 CET [561749][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.539 CET [561759][client backend] [[unknown]][9/45:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/interval
2024-11-25 19:08:07.540 CET [561749][client backend] [[unknown]][11/34:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.540 CET [561749][client backend] [[unknown]][11/34:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/path
2024-11-25 19:08:07.540 CET [561751][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.540 CET [561760][client backend] [[unknown]][18/98:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.540 CET [561760][client backend] [[unknown]][18/98:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/circle
2024-11-25 19:08:07.541 CET [561750][client backend] [pg_regress/time][96/18:0] ERROR: invalid input syntax for type time: "15:36:39 America/New_York" at character 30
2024-11-25 19:08:07.541 CET [561750][client backend] [pg_regress/time][96/18:0] STATEMENT: INSERT INTO TIME_TBL VALUES ('15:36:39 America/New_York');
2024-11-25 19:08:07.543 CET [561750][client backend] [pg_regress/time][96/28:0] ERROR: date/time field value out of range: "24:00:00.01" at character 8
2024-11-25 19:08:07.543 CET [561750][client backend] [pg_regress/time][96/28:0] STATEMENT: SELECT '24:00:00.01'::time;
2024-11-25 19:08:07.543 CET [561750][client backend] [pg_regress/time][96/29:0] ERROR: date/time field value out of range: "23:59:60.01" at character 8
2024-11-25 19:08:07.543 CET [561750][client backend] [pg_regress/time][96/29:0] STATEMENT: SELECT '23:59:60.01'::time;
2024-11-25 19:08:07.543 CET [561750][client backend] [pg_regress/time][96/30:0] ERROR: date/time field value out of range: "24:01:00" at character 8
2024-11-25 19:08:07.543 CET [561750][client backend] [pg_regress/time][96/30:0] STATEMENT: SELECT '24:01:00'::time;
2024-11-25 19:08:07.543 CET [561750][client backend] [pg_regress/time][96/31:0] ERROR: date/time field value out of range: "25:00:00" at character 8
2024-11-25 19:08:07.543 CET [561750][client backend] [pg_regress/time][96/31:0] STATEMENT: SELECT '25:00:00'::time;
2024-11-25 19:08:07.544 CET [561751][client backend] [[unknown]][17/36:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.544 CET [561751][client backend] [[unknown]][17/36:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/box
2024-11-25 19:08:07.544 CET [561761][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.545 CET [561761][client backend] [[unknown]][2/28:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.545 CET [561761][client backend] [[unknown]][2/28:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/strings
2024-11-25 19:08:07.545 CET [561750][client backend] [pg_regress/time][96/37:0] ERROR: operator is not unique: time without time zone + time without time zone at character 11
2024-11-25 19:08:07.545 CET [561750][client backend] [pg_regress/time][96/37:0] HINT: Could not choose a best candidate operator. You might need to add explicit type casts.
2024-11-25 19:08:07.545 CET [561750][client backend] [pg_regress/time][96/37:0] STATEMENT: SELECT f1 + time '00:01' AS "Illegal" FROM TIME_TBL;
2024-11-25 19:08:07.547 CET [561763][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.547 CET [561761][client backend] [pg_regress/strings][2/30:0] ERROR: syntax error at or near "' - third line'" at character 75
2024-11-25 19:08:07.547 CET [561761][client backend] [pg_regress/strings][2/30:0] STATEMENT: SELECT 'first line'
' - next line' /* this comment is not allowed here */
' - third line'
AS "Illegal comment within continuation";
2024-11-25 19:08:07.547 CET [561763][client backend] [[unknown]][14/140:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.547 CET [561763][client backend] [[unknown]][14/140:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/timestamp
2024-11-25 19:08:07.548 CET [561750][client backend] [pg_regress/time][96/43:0] ERROR: unit "day" not supported for type time without time zone
2024-11-25 19:08:07.548 CET [561750][client backend] [pg_regress/time][96/43:0] STATEMENT: SELECT EXTRACT(DAY FROM TIME '2020-05-26 13:30:25.575401');
2024-11-25 19:08:07.548 CET [561750][client backend] [pg_regress/time][96/44:0] ERROR: unit "fortnight" not recognized for type time without time zone
2024-11-25 19:08:07.548 CET [561750][client backend] [pg_regress/time][96/44:0] STATEMENT: SELECT EXTRACT(FORTNIGHT FROM TIME '2020-05-26 13:30:25.575401');
2024-11-25 19:08:07.548 CET [561750][client backend] [pg_regress/time][96/45:0] ERROR: unit "timezone" not supported for type time without time zone
2024-11-25 19:08:07.548 CET [561750][client backend] [pg_regress/time][96/45:0] STATEMENT: SELECT EXTRACT(TIMEZONE FROM TIME '2020-05-26 13:30:25.575401');
2024-11-25 19:08:07.549 CET [561752][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.550 CET [561757][client backend] [pg_regress/macaddr8][6/33:0] ERROR: invalid input syntax for type macaddr8: "123 08:00:2b:01:02:03" at character 8
2024-11-25 19:08:07.550 CET [561757][client backend] [pg_regress/macaddr8][6/33:0] STATEMENT: SELECT '123 08:00:2b:01:02:03'::macaddr8;
2024-11-25 19:08:07.550 CET [561757][client backend] [pg_regress/macaddr8][6/34:0] ERROR: invalid input syntax for type macaddr8: "08:00:2b:01:02:03 123" at character 8
2024-11-25 19:08:07.550 CET [561757][client backend] [pg_regress/macaddr8][6/34:0] STATEMENT: SELECT '08:00:2b:01:02:03 123'::macaddr8;
2024-11-25 19:08:07.550 CET [561757][client backend] [pg_regress/macaddr8][6/35:0] ERROR: invalid input syntax for type macaddr8: "123 08:00:2b:01:02:03:04:05" at character 8
2024-11-25 19:08:07.550 CET [561757][client backend] [pg_regress/macaddr8][6/35:0] STATEMENT: SELECT '123 08:00:2b:01:02:03:04:05'::macaddr8;
2024-11-25 19:08:07.550 CET [561757][client backend] [pg_regress/macaddr8][6/36:0] ERROR: invalid input syntax for type macaddr8: "08:00:2b:01:02:03:04:05 123" at character 8
2024-11-25 19:08:07.550 CET [561757][client backend] [pg_regress/macaddr8][6/36:0] STATEMENT: SELECT '08:00:2b:01:02:03:04:05 123'::macaddr8;
2024-11-25 19:08:07.550 CET [561760][client backend] [pg_regress/circle][18/109:0] ERROR: invalid input syntax for type circle: "<(-100,0),-100>" at character 32
2024-11-25 19:08:07.550 CET [561760][client backend] [pg_regress/circle][18/109:0] STATEMENT: INSERT INTO CIRCLE_TBL VALUES ('<(-100,0),-100>');
2024-11-25 19:08:07.550 CET [561757][client backend] [pg_regress/macaddr8][6/37:0] ERROR: invalid input syntax for type macaddr8: "08:00:2b:01:02:03:04:05:06:07" at character 8
2024-11-25 19:08:07.550 CET [561757][client backend] [pg_regress/macaddr8][6/37:0] STATEMENT: SELECT '08:00:2b:01:02:03:04:05:06:07'::macaddr8;
2024-11-25 19:08:07.550 CET [561757][client backend] [pg_regress/macaddr8][6/38:0] ERROR: invalid input syntax for type macaddr8: "08-00-2b-01-02-03-04-05-06-07" at character 8
2024-11-25 19:08:07.550 CET [561757][client backend] [pg_regress/macaddr8][6/38:0] STATEMENT: SELECT '08-00-2b-01-02-03-04-05-06-07'::macaddr8;
2024-11-25 19:08:07.550 CET [561760][client backend] [pg_regress/circle][18/110:0] ERROR: invalid input syntax for type circle: "<(100,200),10" at character 32
2024-11-25 19:08:07.550 CET [561760][client backend] [pg_regress/circle][18/110:0] STATEMENT: INSERT INTO CIRCLE_TBL VALUES ('<(100,200),10');
2024-11-25 19:08:07.550 CET [561757][client backend] [pg_regress/macaddr8][6/39:0] ERROR: invalid input syntax for type macaddr8: "08002b:01020304050607" at character 8
2024-11-25 19:08:07.550 CET [561757][client backend] [pg_regress/macaddr8][6/39:0] STATEMENT: SELECT '08002b:01020304050607'::macaddr8;
2024-11-25 19:08:07.550 CET [561757][client backend] [pg_regress/macaddr8][6/40:0] ERROR: invalid input syntax for type macaddr8: "08002b01020304050607" at character 8
2024-11-25 19:08:07.550 CET [561757][client backend] [pg_regress/macaddr8][6/40:0] STATEMENT: SELECT '08002b01020304050607'::macaddr8;
2024-11-25 19:08:07.550 CET [561760][client backend] [pg_regress/circle][18/111:0] ERROR: invalid input syntax for type circle: "<(100,200),10> x" at character 32
2024-11-25 19:08:07.550 CET [561760][client backend] [pg_regress/circle][18/111:0] STATEMENT: INSERT INTO CIRCLE_TBL VALUES ('<(100,200),10> x');
2024-11-25 19:08:07.550 CET [561757][client backend] [pg_regress/macaddr8][6/41:0] ERROR: invalid input syntax for type macaddr8: "0z002b0102030405" at character 8
2024-11-25 19:08:07.550 CET [561757][client backend] [pg_regress/macaddr8][6/41:0] STATEMENT: SELECT '0z002b0102030405'::macaddr8;
2024-11-25 19:08:07.550 CET [561760][client backend] [pg_regress/circle][18/112:0] ERROR: invalid input syntax for type circle: "1abc,3,5" at character 32
2024-11-25 19:08:07.550 CET [561760][client backend] [pg_regress/circle][18/112:0] STATEMENT: INSERT INTO CIRCLE_TBL VALUES ('1abc,3,5');
2024-11-25 19:08:07.550 CET [561757][client backend] [pg_regress/macaddr8][6/42:0] ERROR: invalid input syntax for type macaddr8: "08002b010203xyza" at character 8
2024-11-25 19:08:07.550 CET [561757][client backend] [pg_regress/macaddr8][6/42:0] STATEMENT: SELECT '08002b010203xyza'::macaddr8;
2024-11-25 19:08:07.550 CET [561760][client backend] [pg_regress/circle][18/113:0] ERROR: invalid input syntax for type circle: "(3,(1,2),3)" at character 32
2024-11-25 19:08:07.550 CET [561760][client backend] [pg_regress/circle][18/113:0] STATEMENT: INSERT INTO CIRCLE_TBL VALUES ('(3,(1,2),3)');
2024-11-25 19:08:07.550 CET [561757][client backend] [pg_regress/macaddr8][6/43:0] ERROR: invalid input syntax for type macaddr8: "08:00-2b:01:02:03:04:05" at character 8
2024-11-25 19:08:07.550 CET [561757][client backend] [pg_regress/macaddr8][6/43:0] STATEMENT: SELECT '08:00-2b:01:02:03:04:05'::macaddr8;
2024-11-25 19:08:07.550 CET [561757][client backend] [pg_regress/macaddr8][6/44:0] ERROR: invalid input syntax for type macaddr8: "08:00-2b:01:02:03:04:05" at character 8
2024-11-25 19:08:07.550 CET [561757][client backend] [pg_regress/macaddr8][6/44:0] STATEMENT: SELECT '08:00-2b:01:02:03:04:05'::macaddr8;
2024-11-25 19:08:07.550 CET [561752][client backend] [[unknown]][10/38:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.550 CET [561752][client backend] [[unknown]][10/38:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/numerology
2024-11-25 19:08:07.550 CET [561757][client backend] [pg_regress/macaddr8][6/45:0] ERROR: invalid input syntax for type macaddr8: "08:00:2b:01.02:03:04:05" at character 8
2024-11-25 19:08:07.550 CET [561757][client backend] [pg_regress/macaddr8][6/45:0] STATEMENT: SELECT '08:00:2b:01.02:03:04:05'::macaddr8;
2024-11-25 19:08:07.550 CET [561757][client backend] [pg_regress/macaddr8][6/46:0] ERROR: invalid input syntax for type macaddr8: "08:00:2b:01.02:03:04:05" at character 8
2024-11-25 19:08:07.550 CET [561757][client backend] [pg_regress/macaddr8][6/46:0] STATEMENT: SELECT '08:00:2b:01.02:03:04:05'::macaddr8;
2024-11-25 19:08:07.550 CET [561750][client backend] [pg_regress/time][:0] LOG: disconnection: session time: 0:00:00.019 user=nkey database=regression host=[local]
2024-11-25 19:08:07.552 CET [561762][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.552 CET [561761][client backend] [pg_regress/strings][2/37:0] ERROR: invalid Unicode escape at character 18
2024-11-25 19:08:07.552 CET [561761][client backend] [pg_regress/strings][2/37:0] HINT: Unicode escapes must be \XXXX or \+XXXXXX.
2024-11-25 19:08:07.552 CET [561761][client backend] [pg_regress/strings][2/37:0] STATEMENT: SELECT U&'wrong: \061';
2024-11-25 19:08:07.552 CET [561761][client backend] [pg_regress/strings][2/38:0] ERROR: invalid Unicode escape at character 18
2024-11-25 19:08:07.552 CET [561761][client backend] [pg_regress/strings][2/38:0] HINT: Unicode escapes must be \XXXX or \+XXXXXX.
2024-11-25 19:08:07.552 CET [561761][client backend] [pg_regress/strings][2/38:0] STATEMENT: SELECT U&'wrong: \+0061';
2024-11-25 19:08:07.552 CET [561761][client backend] [pg_regress/strings][2/39:0] ERROR: UESCAPE must be followed by a simple string literal at or near "+" at character 33
2024-11-25 19:08:07.552 CET [561761][client backend] [pg_regress/strings][2/39:0] STATEMENT: SELECT U&'wrong: +0061' UESCAPE +;
2024-11-25 19:08:07.552 CET [561761][client backend] [pg_regress/strings][2/40:0] ERROR: invalid Unicode escape character at or near "'+'" at character 33
2024-11-25 19:08:07.552 CET [561761][client backend] [pg_regress/strings][2/40:0] STATEMENT: SELECT U&'wrong: +0061' UESCAPE '+';
2024-11-25 19:08:07.552 CET [561761][client backend] [pg_regress/strings][2/41:0] ERROR: invalid Unicode surrogate pair at character 23
2024-11-25 19:08:07.552 CET [561761][client backend] [pg_regress/strings][2/41:0] STATEMENT: SELECT U&'wrong: \db99';
2024-11-25 19:08:07.552 CET [561761][client backend] [pg_regress/strings][2/42:0] ERROR: invalid Unicode surrogate pair at character 23
2024-11-25 19:08:07.552 CET [561761][client backend] [pg_regress/strings][2/42:0] STATEMENT: SELECT U&'wrong: \db99xy';
2024-11-25 19:08:07.552 CET [561761][client backend] [pg_regress/strings][2/43:0] ERROR: invalid Unicode surrogate pair at character 23
2024-11-25 19:08:07.552 CET [561761][client backend] [pg_regress/strings][2/43:0] STATEMENT: SELECT U&'wrong: \db99\\';
2024-11-25 19:08:07.552 CET [561761][client backend] [pg_regress/strings][2/44:0] ERROR: invalid Unicode surrogate pair at character 23
2024-11-25 19:08:07.552 CET [561761][client backend] [pg_regress/strings][2/44:0] STATEMENT: SELECT U&'wrong: \db99\0061';
2024-11-25 19:08:07.552 CET [561761][client backend] [pg_regress/strings][2/45:0] ERROR: invalid Unicode surrogate pair at character 26
2024-11-25 19:08:07.552 CET [561761][client backend] [pg_regress/strings][2/45:0] STATEMENT: SELECT U&'wrong: \+00db99\+000061';
2024-11-25 19:08:07.552 CET [561761][client backend] [pg_regress/strings][2/46:0] ERROR: invalid Unicode escape value at character 18
2024-11-25 19:08:07.552 CET [561761][client backend] [pg_regress/strings][2/46:0] STATEMENT: SELECT U&'wrong: \+2FFFFF';
2024-11-25 19:08:07.552 CET [561762][client backend] [[unknown]][8/81:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.552 CET [561762][client backend] [[unknown]][8/81:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/timetz
2024-11-25 19:08:07.554 CET [561760][client backend] [pg_regress/circle][:0] LOG: disconnection: session time: 0:00:00.015 user=nkey database=regression host=[local]
2024-11-25 19:08:07.555 CET [561758][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.556 CET [561758][client backend] [[unknown]][13/42:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.556 CET [561758][client backend] [[unknown]][13/42:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/line
2024-11-25 19:08:07.557 CET [561764][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.558 CET [561747][client backend] [pg_regress/md5][:0] LOG: disconnection: session time: 0:00:00.021 user=nkey database=regression host=[local]
2024-11-25 19:08:07.558 CET [561752][client backend] [pg_regress/numerology][10/66:0] ERROR: trailing junk after numeric literal at or near "123abc" at character 8
2024-11-25 19:08:07.558 CET [561752][client backend] [pg_regress/numerology][10/66:0] STATEMENT: SELECT 123abc;
2024-11-25 19:08:07.558 CET [561752][client backend] [pg_regress/numerology][10/67:0] ERROR: trailing junk after numeric literal at or near "0x0o" at character 8
2024-11-25 19:08:07.558 CET [561752][client backend] [pg_regress/numerology][10/67:0] STATEMENT: SELECT 0x0o;
2024-11-25 19:08:07.558 CET [561765][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.558 CET [561752][client backend] [pg_regress/numerology][10/68:0] ERROR: trailing junk after numeric literal at or near "0.a" at character 8
2024-11-25 19:08:07.558 CET [561752][client backend] [pg_regress/numerology][10/68:0] STATEMENT: SELECT 0.a;
2024-11-25 19:08:07.558 CET [561752][client backend] [pg_regress/numerology][10/69:0] ERROR: trailing junk after numeric literal at or near "0.0a" at character 8
2024-11-25 19:08:07.558 CET [561752][client backend] [pg_regress/numerology][10/69:0] STATEMENT: SELECT 0.0a;
2024-11-25 19:08:07.558 CET [561752][client backend] [pg_regress/numerology][10/70:0] ERROR: trailing junk after numeric literal at or near ".0a" at character 8
2024-11-25 19:08:07.558 CET [561752][client backend] [pg_regress/numerology][10/70:0] STATEMENT: SELECT .0a;
2024-11-25 19:08:07.558 CET [561752][client backend] [pg_regress/numerology][10/71:0] ERROR: trailing junk after numeric literal at or near "0.0e1a" at character 8
2024-11-25 19:08:07.558 CET [561752][client backend] [pg_regress/numerology][10/71:0] STATEMENT: SELECT 0.0e1a;
2024-11-25 19:08:07.558 CET [561752][client backend] [pg_regress/numerology][10/72:0] ERROR: trailing junk after numeric literal at or near "0.0e" at character 8
2024-11-25 19:08:07.558 CET [561752][client backend] [pg_regress/numerology][10/72:0] STATEMENT: SELECT 0.0e;
2024-11-25 19:08:07.559 CET [561752][client backend] [pg_regress/numerology][10/73:0] ERROR: trailing junk after numeric literal at or near "0.0e+" at character 8
2024-11-25 19:08:07.559 CET [561752][client backend] [pg_regress/numerology][10/73:0] STATEMENT: SELECT 0.0e+a;
2024-11-25 19:08:07.559 CET [561752][client backend] [pg_regress/numerology][10/74:0] ERROR: trailing junk after parameter at or near "$1a" at character 22
2024-11-25 19:08:07.559 CET [561752][client backend] [pg_regress/numerology][10/74:0] STATEMENT: PREPARE p1 AS SELECT $1a;
2024-11-25 19:08:07.559 CET [561752][client backend] [pg_regress/numerology][10/75:0] ERROR: parameter number too large at or near "$2147483648" at character 22
2024-11-25 19:08:07.559 CET [561752][client backend] [pg_regress/numerology][10/75:0] STATEMENT: PREPARE p1 AS SELECT $2147483648;
2024-11-25 19:08:07.559 CET [561752][client backend] [pg_regress/numerology][10/76:0] ERROR: invalid binary integer at or near "0b" at character 8
2024-11-25 19:08:07.559 CET [561752][client backend] [pg_regress/numerology][10/76:0] STATEMENT: SELECT 0b;
2024-11-25 19:08:07.559 CET [561752][client backend] [pg_regress/numerology][10/77:0] ERROR: trailing junk after numeric literal at or near "1b" at character 8
2024-11-25 19:08:07.559 CET [561752][client backend] [pg_regress/numerology][10/77:0] STATEMENT: SELECT 1b;
2024-11-25 19:08:07.559 CET [561752][client backend] [pg_regress/numerology][10/78:0] ERROR: trailing junk after numeric literal at or near "0b0x" at character 8
2024-11-25 19:08:07.559 CET [561752][client backend] [pg_regress/numerology][10/78:0] STATEMENT: SELECT 0b0x;
2024-11-25 19:08:07.559 CET [561752][client backend] [pg_regress/numerology][10/79:0] ERROR: invalid octal integer at or near "0o" at character 8
2024-11-25 19:08:07.559 CET [561752][client backend] [pg_regress/numerology][10/79:0] STATEMENT: SELECT 0o;
2024-11-25 19:08:07.559 CET [561761][client backend] [pg_regress/strings][2/49:0] ERROR: invalid Unicode escape at character 17
2024-11-25 19:08:07.559 CET [561761][client backend] [pg_regress/strings][2/49:0] HINT: Unicode escapes must be \uXXXX or \UXXXXXXXX.
2024-11-25 19:08:07.559 CET [561761][client backend] [pg_regress/strings][2/49:0] STATEMENT: SELECT E'wrong: \u061';
2024-11-25 19:08:07.559 CET [561752][client backend] [pg_regress/numerology][10/80:0] ERROR: trailing junk after numeric literal at or near "1o" at character 8
2024-11-25 19:08:07.559 CET [561752][client backend] [pg_regress/numerology][10/80:0] STATEMENT: SELECT 1o;
2024-11-25 19:08:07.559 CET [561752][client backend] [pg_regress/numerology][10/81:0] ERROR: trailing junk after numeric literal at or near "0o0x" at character 8
2024-11-25 19:08:07.559 CET [561752][client backend] [pg_regress/numerology][10/81:0] STATEMENT: SELECT 0o0x;
2024-11-25 19:08:07.559 CET [561761][client backend] [pg_regress/strings][2/50:0] ERROR: invalid Unicode escape at character 17
2024-11-25 19:08:07.559 CET [561761][client backend] [pg_regress/strings][2/50:0] HINT: Unicode escapes must be \uXXXX or \UXXXXXXXX.
2024-11-25 19:08:07.559 CET [561761][client backend] [pg_regress/strings][2/50:0] STATEMENT: SELECT E'wrong: \U0061';
2024-11-25 19:08:07.559 CET [561752][client backend] [pg_regress/numerology][10/82:0] ERROR: invalid hexadecimal integer at or near "0x" at character 8
2024-11-25 19:08:07.559 CET [561752][client backend] [pg_regress/numerology][10/82:0] STATEMENT: SELECT 0x;
2024-11-25 19:08:07.559 CET [561761][client backend] [pg_regress/strings][2/51:0] ERROR: invalid Unicode surrogate pair at or near "'" at character 23
2024-11-25 19:08:07.559 CET [561761][client backend] [pg_regress/strings][2/51:0] STATEMENT: SELECT E'wrong: \udb99';
2024-11-25 19:08:07.559 CET [561752][client backend] [pg_regress/numerology][10/83:0] ERROR: trailing junk after numeric literal at or near "1x" at character 8
2024-11-25 19:08:07.559 CET [561752][client backend] [pg_regress/numerology][10/83:0] STATEMENT: SELECT 1x;
2024-11-25 19:08:07.559 CET [561761][client backend] [pg_regress/strings][2/52:0] ERROR: invalid Unicode surrogate pair at or near "x" at character 23
2024-11-25 19:08:07.559 CET [561761][client backend] [pg_regress/strings][2/52:0] STATEMENT: SELECT E'wrong: \udb99xy';
2024-11-25 19:08:07.559 CET [561761][client backend] [pg_regress/strings][2/53:0] ERROR: invalid Unicode surrogate pair at or near "\" at character 23
2024-11-25 19:08:07.559 CET [561761][client backend] [pg_regress/strings][2/53:0] STATEMENT: SELECT E'wrong: \udb99\\';
2024-11-25 19:08:07.559 CET [561752][client backend] [pg_regress/numerology][10/84:0] ERROR: trailing junk after numeric literal at or near "0x0y" at character 8
2024-11-25 19:08:07.559 CET [561752][client backend] [pg_regress/numerology][10/84:0] STATEMENT: SELECT 0x0y;
2024-11-25 19:08:07.559 CET [561761][client backend] [pg_regress/strings][2/54:0] ERROR: invalid Unicode surrogate pair at or near "\u0061" at character 23
2024-11-25 19:08:07.559 CET [561761][client backend] [pg_regress/strings][2/54:0] STATEMENT: SELECT E'wrong: \udb99\u0061';
2024-11-25 19:08:07.559 CET [561754][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.559 CET [561769][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.559 CET [561770][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.560 CET [561768][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.560 CET [561767][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.560 CET [561751][client backend] [pg_regress/box][17/43:0] ERROR: invalid input syntax for type box: "(2.3, 4.5)" at character 34
2024-11-25 19:08:07.560 CET [561751][client backend] [pg_regress/box][17/43:0] STATEMENT: INSERT INTO BOX_TBL (f1) VALUES ('(2.3, 4.5)');
2024-11-25 19:08:07.561 CET [561766][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.563 CET [561764][client backend] [[unknown]][12/105:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.563 CET [561765][client backend] [[unknown]][22/114:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.575 CET [561765][client backend] [[unknown]][22/114:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/polygon
2024-11-25 19:08:07.563 CET [561752][client backend] [pg_regress/numerology][10/95:0] ERROR: column "_100" does not exist at character 8
2024-11-25 19:08:07.563 CET [561752][client backend] [pg_regress/numerology][10/95:0] STATEMENT: SELECT _100;
2024-11-25 19:08:07.575 CET [561751][client backend] [pg_regress/box][17/44:0] ERROR: invalid input syntax for type box: "[1, 2, 3, 4)" at character 34
2024-11-25 19:08:07.575 CET [561751][client backend] [pg_regress/box][17/44:0] STATEMENT: INSERT INTO BOX_TBL (f1) VALUES ('[1, 2, 3, 4)');
2024-11-25 19:08:07.575 CET [561752][client backend] [pg_regress/numerology][10/96:0] ERROR: trailing junk after numeric literal at or near "100_" at character 8
2024-11-25 19:08:07.575 CET [561752][client backend] [pg_regress/numerology][10/96:0] STATEMENT: SELECT 100_;
2024-11-25 19:08:07.575 CET [561751][client backend] [pg_regress/box][17/45:0] ERROR: invalid input syntax for type box: "(1, 2, 3, 4]" at character 34
2024-11-25 19:08:07.575 CET [561751][client backend] [pg_regress/box][17/45:0] STATEMENT: INSERT INTO BOX_TBL (f1) VALUES ('(1, 2, 3, 4]');
2024-11-25 19:08:07.575 CET [561752][client backend] [pg_regress/numerology][10/97:0] ERROR: trailing junk after numeric literal at or near "100__000" at character 8
2024-11-25 19:08:07.575 CET [561752][client backend] [pg_regress/numerology][10/97:0] STATEMENT: SELECT 100__000;
2024-11-25 19:08:07.575 CET [561751][client backend] [pg_regress/box][17/46:0] ERROR: invalid input syntax for type box: "(1, 2, 3, 4) x" at character 34
2024-11-25 19:08:07.575 CET [561751][client backend] [pg_regress/box][17/46:0] STATEMENT: INSERT INTO BOX_TBL (f1) VALUES ('(1, 2, 3, 4) x');
2024-11-25 19:08:07.575 CET [561752][client backend] [pg_regress/numerology][10/98:0] ERROR: syntax error at or near ".5" at character 14
2024-11-25 19:08:07.575 CET [561752][client backend] [pg_regress/numerology][10/98:0] STATEMENT: SELECT _1_000.5;
2024-11-25 19:08:07.576 CET [561751][client backend] [pg_regress/box][17/47:0] ERROR: invalid input syntax for type box: "asdfasdf(ad" at character 34
2024-11-25 19:08:07.576 CET [561751][client backend] [pg_regress/box][17/47:0] STATEMENT: INSERT INTO BOX_TBL (f1) VALUES ('asdfasdf(ad');
2024-11-25 19:08:07.576 CET [561752][client backend] [pg_regress/numerology][10/99:0] ERROR: trailing junk after numeric literal at or near "1_000_" at character 8
2024-11-25 19:08:07.576 CET [561752][client backend] [pg_regress/numerology][10/99:0] STATEMENT: SELECT 1_000_.5;
2024-11-25 19:08:07.576 CET [561752][client backend] [pg_regress/numerology][10/100:0] ERROR: trailing junk after numeric literal at or near "1_000._5" at character 8
2024-11-25 19:08:07.576 CET [561752][client backend] [pg_regress/numerology][10/100:0] STATEMENT: SELECT 1_000._5;
2024-11-25 19:08:07.576 CET [561766][client backend] [[unknown]][36/30:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.576 CET [561766][client backend] [[unknown]][36/30:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/date
2024-11-25 19:08:07.576 CET [561754][client backend] [[unknown]][3/7:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.576 CET [561754][client backend] [[unknown]][3/7:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/lseg
2024-11-25 19:08:07.576 CET [561770][client backend] [[unknown]][5/103:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.576 CET [561770][client backend] [[unknown]][5/103:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:07.576 CET [561768][client backend] [[unknown]][7/49:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.576 CET [561768][client backend] [[unknown]][7/49:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/multirangetypes
2024-11-25 19:08:07.576 CET [561767][client backend] [[unknown]][21/190:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.576 CET [561767][client backend] [[unknown]][21/190:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/point
2024-11-25 19:08:07.576 CET [561764][client backend] [[unknown]][12/105:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/macaddr
2024-11-25 19:08:07.577 CET [561752][client backend] [pg_regress/numerology][10/101:0] ERROR: trailing junk after numeric literal at or near "1_000.5_" at character 8
2024-11-25 19:08:07.577 CET [561752][client backend] [pg_regress/numerology][10/101:0] STATEMENT: SELECT 1_000.5_;
2024-11-25 19:08:07.577 CET [561752][client backend] [pg_regress/numerology][10/102:0] ERROR: trailing junk after numeric literal at or near "1_000.5e_1" at character 8
2024-11-25 19:08:07.577 CET [561752][client backend] [pg_regress/numerology][10/102:0] STATEMENT: SELECT 1_000.5e_1;
2024-11-25 19:08:07.577 CET [561752][client backend] [pg_regress/numerology][10/103:0] ERROR: trailing junk after parameter at or near "$0_1" at character 22
2024-11-25 19:08:07.577 CET [561752][client backend] [pg_regress/numerology][10/103:0] STATEMENT: PREPARE p1 AS SELECT $0_1;
2024-11-25 19:08:07.577 CET [561769][client backend] [[unknown]][23/260:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.577 CET [561769][client backend] [[unknown]][23/260:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/inet
2024-11-25 19:08:07.577 CET [561595][client backend] [pg_regress/earthdistance][:0] LOG: disconnection: session time: 0:00:00.333 user=nkey database=regression_earthdistance host=[local]
2024-11-25 19:08:07.578 CET [561759][client backend] [pg_regress/interval][9/71:0] ERROR: invalid input syntax for type interval: "badly formatted interval" at character 39
2024-11-25 19:08:07.578 CET [561759][client backend] [pg_regress/interval][9/71:0] STATEMENT: INSERT INTO INTERVAL_TBL (f1) VALUES ('badly formatted interval');
2024-11-25 19:08:07.578 CET [561759][client backend] [pg_regress/interval][9/72:0] ERROR: invalid input syntax for type interval: "@ 30 eons ago" at character 39
2024-11-25 19:08:07.578 CET [561759][client backend] [pg_regress/interval][9/72:0] STATEMENT: INSERT INTO INTERVAL_TBL (f1) VALUES ('@ 30 eons ago');
2024-11-25 19:08:07.578 CET [561761][client backend] [pg_regress/strings][2/55:0] ERROR: invalid Unicode surrogate pair at or near "\U00000061" at character 27
2024-11-25 19:08:07.578 CET [561761][client backend] [pg_regress/strings][2/55:0] STATEMENT: SELECT E'wrong: \U0000db99\U00000061';
2024-11-25 19:08:07.578 CET [561761][client backend] [pg_regress/strings][2/56:0] ERROR: invalid Unicode escape value at or near "\U002FFFFF" at character 17
2024-11-25 19:08:07.578 CET [561761][client backend] [pg_regress/strings][2/56:0] STATEMENT: SELECT E'wrong: \U002FFFFF';
2024-11-25 19:08:07.578 CET [561767][client backend] [pg_regress/point][21/192:0] ERROR: invalid input syntax for type point: "asdfasdf" at character 35
2024-11-25 19:08:07.578 CET [561767][client backend] [pg_regress/point][21/192:0] STATEMENT: INSERT INTO POINT_TBL(f1) VALUES ('asdfasdf');
2024-11-25 19:08:07.578 CET [561767][client backend] [pg_regress/point][21/193:0] ERROR: invalid input syntax for type point: "(10.0 10.0)" at character 35
2024-11-25 19:08:07.578 CET [561767][client backend] [pg_regress/point][21/193:0] STATEMENT: INSERT INTO POINT_TBL(f1) VALUES ('(10.0 10.0)');
2024-11-25 19:08:07.578 CET [561767][client backend] [pg_regress/point][21/194:0] ERROR: invalid input syntax for type point: "(10.0, 10.0) x" at character 35
2024-11-25 19:08:07.578 CET [561767][client backend] [pg_regress/point][21/194:0] STATEMENT: INSERT INTO POINT_TBL(f1) VALUES ('(10.0, 10.0) x');
2024-11-25 19:08:07.578 CET [561767][client backend] [pg_regress/point][21/195:0] ERROR: invalid input syntax for type point: "(10.0,10.0" at character 35
2024-11-25 19:08:07.578 CET [561767][client backend] [pg_regress/point][21/195:0] STATEMENT: INSERT INTO POINT_TBL(f1) VALUES ('(10.0,10.0');
2024-11-25 19:08:07.578 CET [561769][client backend] [pg_regress/inet][23/261:0] ERROR: table "inet_tbl" does not exist
2024-11-25 19:08:07.578 CET [561769][client backend] [pg_regress/inet][23/261:0] STATEMENT: DROP TABLE INET_TBL;
2024-11-25 19:08:07.578 CET [561767][client backend] [pg_regress/point][21/196:0] ERROR: "1e+500" is out of range for type double precision at character 35
2024-11-25 19:08:07.578 CET [561767][client backend] [pg_regress/point][21/196:0] STATEMENT: INSERT INTO POINT_TBL(f1) VALUES ('(10.0, 1e+500)');
2024-11-25 19:08:07.579 CET [561757][client backend] [pg_regress/macaddr8][6/57:0] ERROR: invalid input syntax for type macaddr8: "not even close" at character 38
2024-11-25 19:08:07.579 CET [561757][client backend] [pg_regress/macaddr8][6/57:0] STATEMENT: INSERT INTO macaddr8_data VALUES (9, 'not even close');
2024-11-25 19:08:07.579 CET [561768][client backend] [pg_regress/multirangetypes][7/50:0] ERROR: malformed multirange literal: "" at character 8
2024-11-25 19:08:07.579 CET [561768][client backend] [pg_regress/multirangetypes][7/50:0] DETAIL: Missing left brace.
2024-11-25 19:08:07.579 CET [561768][client backend] [pg_regress/multirangetypes][7/50:0] STATEMENT: select ''::textmultirange;
2024-11-25 19:08:07.579 CET [561768][client backend] [pg_regress/multirangetypes][7/51:0] ERROR: malformed multirange literal: "{,}" at character 8
2024-11-25 19:08:07.579 CET [561768][client backend] [pg_regress/multirangetypes][7/51:0] DETAIL: Expected range start.
2024-11-25 19:08:07.579 CET [561768][client backend] [pg_regress/multirangetypes][7/51:0] STATEMENT: select '{,}'::textmultirange;
2024-11-25 19:08:07.579 CET [561768][client backend] [pg_regress/multirangetypes][7/52:0] ERROR: malformed multirange literal: "{(,)}." at character 8
2024-11-25 19:08:07.579 CET [561768][client backend] [pg_regress/multirangetypes][7/52:0] DETAIL: Junk after closing right brace.
2024-11-25 19:08:07.579 CET [561768][client backend] [pg_regress/multirangetypes][7/52:0] STATEMENT: select '{(,)}.'::textmultirange;
2024-11-25 19:08:07.579 CET [561761][client backend] [pg_regress/strings][2/58:0] ERROR: unsafe use of string constant with Unicode escapes at character 8
2024-11-25 19:08:07.579 CET [561761][client backend] [pg_regress/strings][2/58:0] DETAIL: String constants with Unicode escapes cannot be used when "standard_conforming_strings" is off.
2024-11-25 19:08:07.579 CET [561761][client backend] [pg_regress/strings][2/58:0] STATEMENT: SELECT U&'d\0061t\+000061' AS U&"d\0061t\+000061";
2024-11-25 19:08:07.579 CET [561768][client backend] [pg_regress/multirangetypes][7/53:0] ERROR: malformed multirange literal: "{[a,c),}" at character 8
2024-11-25 19:08:07.579 CET [561768][client backend] [pg_regress/multirangetypes][7/53:0] DETAIL: Expected range start.
2024-11-25 19:08:07.579 CET [561768][client backend] [pg_regress/multirangetypes][7/53:0] STATEMENT: select '{[a,c),}'::textmultirange;
2024-11-25 19:08:07.579 CET [561761][client backend] [pg_regress/strings][2/59:0] ERROR: unsafe use of string constant with Unicode escapes at character 8
2024-11-25 19:08:07.579 CET [561761][client backend] [pg_regress/strings][2/59:0] DETAIL: String constants with Unicode escapes cannot be used when "standard_conforming_strings" is off.
2024-11-25 19:08:07.579 CET [561761][client backend] [pg_regress/strings][2/59:0] STATEMENT: SELECT U&'d!0061t\+000061' UESCAPE '!' AS U&"d*0061t\+000061" UESCAPE '*';
2024-11-25 19:08:07.579 CET [561768][client backend] [pg_regress/multirangetypes][7/54:0] ERROR: malformed multirange literal: "{,[a,c)}" at character 8
2024-11-25 19:08:07.579 CET [561768][client backend] [pg_regress/multirangetypes][7/54:0] DETAIL: Expected range start.
2024-11-25 19:08:07.579 CET [561768][client backend] [pg_regress/multirangetypes][7/54:0] STATEMENT: select '{,[a,c)}'::textmultirange;
2024-11-25 19:08:07.579 CET [561761][client backend] [pg_regress/strings][2/60:0] ERROR: unsafe use of string constant with Unicode escapes at character 8
2024-11-25 19:08:07.579 CET [561761][client backend] [pg_regress/strings][2/60:0] DETAIL: String constants with Unicode escapes cannot be used when "standard_conforming_strings" is off.
2024-11-25 19:08:07.579 CET [561761][client backend] [pg_regress/strings][2/60:0] STATEMENT: SELECT U&' \' UESCAPE '!' AS "tricky";
2024-11-25 19:08:07.579 CET [561768][client backend] [pg_regress/multirangetypes][7/55:0] ERROR: malformed multirange literal: "{-[a,z)}" at character 8
2024-11-25 19:08:07.579 CET [561768][client backend] [pg_regress/multirangetypes][7/55:0] DETAIL: Expected range start.
2024-11-25 19:08:07.579 CET [561768][client backend] [pg_regress/multirangetypes][7/55:0] STATEMENT: select '{-[a,z)}'::textmultirange;
2024-11-25 19:08:07.579 CET [561768][client backend] [pg_regress/multirangetypes][7/56:0] ERROR: malformed multirange literal: "{[a,z) - }" at character 8
2024-11-25 19:08:07.579 CET [561768][client backend] [pg_regress/multirangetypes][7/56:0] DETAIL: Expected comma or end of multirange.
2024-11-25 19:08:07.579 CET [561768][client backend] [pg_regress/multirangetypes][7/56:0] STATEMENT: select '{[a,z) - }'::textmultirange;
2024-11-25 19:08:07.579 CET [561768][client backend] [pg_regress/multirangetypes][7/57:0] ERROR: malformed multirange literal: "{(",a)}" at character 8
2024-11-25 19:08:07.579 CET [561768][client backend] [pg_regress/multirangetypes][7/57:0] DETAIL: Unexpected end of input.
2024-11-25 19:08:07.579 CET [561768][client backend] [pg_regress/multirangetypes][7/57:0] STATEMENT: select '{(",a)}'::textmultirange;
2024-11-25 19:08:07.579 CET [561768][client backend] [pg_regress/multirangetypes][7/58:0] ERROR: malformed range literal: "(,,a)" at character 8
2024-11-25 19:08:07.579 CET [561768][client backend] [pg_regress/multirangetypes][7/58:0] DETAIL: Too many commas.
2024-11-25 19:08:07.579 CET [561768][client backend] [pg_regress/multirangetypes][7/58:0] STATEMENT: select '{(,,a)}'::textmultirange;
2024-11-25 19:08:07.580 CET [561768][client backend] [pg_regress/multirangetypes][7/59:0] ERROR: malformed range literal: "()" at character 8
2024-11-25 19:08:07.580 CET [561768][client backend] [pg_regress/multirangetypes][7/59:0] DETAIL: Missing comma after lower bound.
2024-11-25 19:08:07.580 CET [561768][client backend] [pg_regress/multirangetypes][7/59:0] STATEMENT: select '{(),a)}'::textmultirange;
2024-11-25 19:08:07.580 CET [561761][client backend] [pg_regress/strings][2/62:0] ERROR: unsafe use of string constant with Unicode escapes at character 8
2024-11-25 19:08:07.580 CET [561761][client backend] [pg_regress/strings][2/62:0] DETAIL: String constants with Unicode escapes cannot be used when "standard_conforming_strings" is off.
2024-11-25 19:08:07.580 CET [561761][client backend] [pg_regress/strings][2/62:0] STATEMENT: SELECT U&'wrong: \061';
2024-11-25 19:08:07.580 CET [561768][client backend] [pg_regress/multirangetypes][7/60:0] ERROR: malformed multirange literal: "{(a,))}" at character 8
2024-11-25 19:08:07.580 CET [561768][client backend] [pg_regress/multirangetypes][7/60:0] DETAIL: Expected comma or end of multirange.
2024-11-25 19:08:07.580 CET [561768][client backend] [pg_regress/multirangetypes][7/60:0] STATEMENT: select '{(a,))}'::textmultirange;
2024-11-25 19:08:07.580 CET [561761][client backend] [pg_regress/strings][2/63:0] ERROR: unsafe use of string constant with Unicode escapes at character 8
2024-11-25 19:08:07.580 CET [561761][client backend] [pg_regress/strings][2/63:0] DETAIL: String constants with Unicode escapes cannot be used when "standard_conforming_strings" is off.
2024-11-25 19:08:07.580 CET [561761][client backend] [pg_regress/strings][2/63:0] STATEMENT: SELECT U&'wrong: \+0061';
2024-11-25 19:08:07.580 CET [561768][client backend] [pg_regress/multirangetypes][7/61:0] ERROR: malformed range literal: "(]" at character 8
2024-11-25 19:08:07.580 CET [561768][client backend] [pg_regress/multirangetypes][7/61:0] DETAIL: Missing comma after lower bound.
2024-11-25 19:08:07.580 CET [561768][client backend] [pg_regress/multirangetypes][7/61:0] STATEMENT: select '{(],a)}'::textmultirange;
2024-11-25 19:08:07.580 CET [561761][client backend] [pg_regress/strings][2/64:0] ERROR: unsafe use of string constant with Unicode escapes at character 8
2024-11-25 19:08:07.580 CET [561761][client backend] [pg_regress/strings][2/64:0] DETAIL: String constants with Unicode escapes cannot be used when "standard_conforming_strings" is off.
2024-11-25 19:08:07.580 CET [561761][client backend] [pg_regress/strings][2/64:0] STATEMENT: SELECT U&'wrong: +0061' UESCAPE '+';
2024-11-25 19:08:07.580 CET [561768][client backend] [pg_regress/multirangetypes][7/62:0] ERROR: malformed multirange literal: "{(a,])}" at character 8
2024-11-25 19:08:07.580 CET [561768][client backend] [pg_regress/multirangetypes][7/62:0] DETAIL: Expected comma or end of multirange.
2024-11-25 19:08:07.580 CET [561768][client backend] [pg_regress/multirangetypes][7/62:0] STATEMENT: select '{(a,])}'::textmultirange;
2024-11-25 19:08:07.580 CET [561768][client backend] [pg_regress/multirangetypes][7/63:0] ERROR: range lower bound must be less than or equal to range upper bound at character 8
2024-11-25 19:08:07.580 CET [561768][client backend] [pg_regress/multirangetypes][7/63:0] STATEMENT: select '{[z,a]}'::textmultirange;
2024-11-25 19:08:07.581 CET [561761][client backend] [pg_regress/strings][2/69:0] ERROR: invalid hexadecimal data: odd number of digits at character 8
2024-11-25 19:08:07.581 CET [561761][client backend] [pg_regress/strings][2/69:0] STATEMENT: SELECT E'\\xDeAdBeE'::bytea;
2024-11-25 19:08:07.582 CET [561761][client backend] [pg_regress/strings][2/70:0] ERROR: invalid hexadecimal digit: "x" at character 8
2024-11-25 19:08:07.582 CET [561761][client backend] [pg_regress/strings][2/70:0] STATEMENT: SELECT E'\\xDeAdBeEx'::bytea;
2024-11-25 19:08:07.584 CET [561761][client backend] [pg_regress/strings][2/76:0] ERROR: invalid input syntax for type bytea at character 8
2024-11-25 19:08:07.584 CET [561761][client backend] [pg_regress/strings][2/76:0] STATEMENT: SELECT E'De\\678dBeEf'::bytea;
2024-11-25 19:08:07.584 CET [561759][client backend] [pg_regress/interval][9/87:0] ERROR: interval out of range
2024-11-25 19:08:07.584 CET [561759][client backend] [pg_regress/interval][9/87:0] STATEMENT: SELECT -('-2147483648 months'::interval);
2024-11-25 19:08:07.584 CET [561723][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.065 user=nkey database=postgres host=[local]
2024-11-25 19:08:07.586 CET [561759][client backend] [pg_regress/interval][9/89:0] ERROR: interval out of range
2024-11-25 19:08:07.586 CET [561759][client backend] [pg_regress/interval][9/89:0] STATEMENT: SELECT -('-2147483648 days'::interval);
2024-11-25 19:08:07.587 CET [561759][client backend] [pg_regress/interval][9/91:0] ERROR: interval out of range
2024-11-25 19:08:07.587 CET [561759][client backend] [pg_regress/interval][9/91:0] STATEMENT: SELECT -('-9223372036854775808 us'::interval);
2024-11-25 19:08:07.587 CET [561759][client backend] [pg_regress/interval][9/93:0] ERROR: interval out of range
2024-11-25 19:08:07.587 CET [561759][client backend] [pg_regress/interval][9/93:0] STATEMENT: SELECT -('-2147483647 months -2147483647 days -9223372036854775807 us'::interval);
2024-11-25 19:08:07.588 CET [561749][client backend] [pg_regress/path][11/45:0] ERROR: invalid input syntax for type path: "[]" at character 30
2024-11-25 19:08:07.588 CET [561749][client backend] [pg_regress/path][11/45:0] STATEMENT: INSERT INTO PATH_TBL VALUES ('[]');
2024-11-25 19:08:07.588 CET [561749][client backend] [pg_regress/path][11/46:0] ERROR: invalid input syntax for type path: "[(,2),(3,4)]" at character 30
2024-11-25 19:08:07.588 CET [561749][client backend] [pg_regress/path][11/46:0] STATEMENT: INSERT INTO PATH_TBL VALUES ('[(,2),(3,4)]');
2024-11-25 19:08:07.588 CET [561749][client backend] [pg_regress/path][11/47:0] ERROR: invalid input syntax for type path: "[(1,2),(3,4)" at character 30
2024-11-25 19:08:07.588 CET [561749][client backend] [pg_regress/path][11/47:0] STATEMENT: INSERT INTO PATH_TBL VALUES ('[(1,2),(3,4)');
2024-11-25 19:08:07.588 CET [561749][client backend] [pg_regress/path][11/48:0] ERROR: invalid input syntax for type path: "(1,2,3,4" at character 30
2024-11-25 19:08:07.588 CET [561749][client backend] [pg_regress/path][11/48:0] STATEMENT: INSERT INTO PATH_TBL VALUES ('(1,2,3,4');
2024-11-25 19:08:07.588 CET [561749][client backend] [pg_regress/path][11/49:0] ERROR: invalid input syntax for type path: "(1,2),(3,4)]" at character 30
2024-11-25 19:08:07.588 CET [561749][client backend] [pg_regress/path][11/49:0] STATEMENT: INSERT INTO PATH_TBL VALUES ('(1,2),(3,4)]');
2024-11-25 19:08:07.590 CET [561774][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.590 CET [561759][client backend] [pg_regress/interval][9/96:0] ERROR: interval field value out of range: "2147483648 days" at character 42
2024-11-25 19:08:07.590 CET [561759][client backend] [pg_regress/interval][9/96:0] STATEMENT: INSERT INTO INTERVAL_TBL_OF (f1) VALUES ('2147483648 days');
2024-11-25 19:08:07.590 CET [561759][client backend] [pg_regress/interval][9/97:0] ERROR: interval field value out of range: "-2147483649 days" at character 42
2024-11-25 19:08:07.590 CET [561759][client backend] [pg_regress/interval][9/97:0] STATEMENT: INSERT INTO INTERVAL_TBL_OF (f1) VALUES ('-2147483649 days');
2024-11-25 19:08:07.590 CET [561759][client backend] [pg_regress/interval][9/98:0] ERROR: interval out of range at character 42
2024-11-25 19:08:07.590 CET [561759][client backend] [pg_regress/interval][9/98:0] STATEMENT: INSERT INTO INTERVAL_TBL_OF (f1) VALUES ('2147483647 years');
2024-11-25 19:08:07.590 CET [561759][client backend] [pg_regress/interval][9/99:0] ERROR: interval out of range at character 42
2024-11-25 19:08:07.590 CET [561759][client backend] [pg_regress/interval][9/99:0] STATEMENT: INSERT INTO INTERVAL_TBL_OF (f1) VALUES ('-2147483648 years');
2024-11-25 19:08:07.591 CET [561759][client backend] [pg_regress/interval][9/100:0] ERROR: interval out of range
2024-11-25 19:08:07.591 CET [561759][client backend] [pg_regress/interval][9/100:0] STATEMENT: select extract(epoch from '256 microseconds'::interval * (2^55)::float8);
2024-11-25 19:08:07.591 CET [561774][client backend] [[unknown]][72/301:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.591 CET [561774][client backend] [[unknown]][72/301:0] LOG: connection authorized: user=nkey database=regression_intarray application_name=pg_regress/_int
2024-11-25 19:08:07.592 CET [561749][client backend] [pg_regress/path][:0] LOG: disconnection: session time: 0:00:00.052 user=nkey database=regression host=[local]
2024-11-25 19:08:07.592 CET [561766][client backend] [pg_regress/date][36/39:0] ERROR: date/time field value out of range: "1997-02-29" at character 30
2024-11-25 19:08:07.592 CET [561766][client backend] [pg_regress/date][36/39:0] STATEMENT: INSERT INTO DATE_TBL VALUES ('1997-02-29');
2024-11-25 19:08:07.593 CET [561754][client backend] [pg_regress/lseg][3/17:0] ERROR: invalid input syntax for type lseg: "(3asdf,2 ,3,4r2)" at character 30
2024-11-25 19:08:07.593 CET [561754][client backend] [pg_regress/lseg][3/17:0] STATEMENT: INSERT INTO LSEG_TBL VALUES ('(3asdf,2 ,3,4r2)');
2024-11-25 19:08:07.593 CET [561754][client backend] [pg_regress/lseg][3/18:0] ERROR: invalid input syntax for type lseg: "[1,2,3, 4" at character 30
2024-11-25 19:08:07.593 CET [561754][client backend] [pg_regress/lseg][3/18:0] STATEMENT: INSERT INTO LSEG_TBL VALUES ('[1,2,3, 4');
2024-11-25 19:08:07.593 CET [561754][client backend] [pg_regress/lseg][3/19:0] ERROR: invalid input syntax for type lseg: "[(,2),(3,4)]" at character 30
2024-11-25 19:08:07.593 CET [561754][client backend] [pg_regress/lseg][3/19:0] STATEMENT: INSERT INTO LSEG_TBL VALUES ('[(,2),(3,4)]');
2024-11-25 19:08:07.593 CET [561754][client backend] [pg_regress/lseg][3/20:0] ERROR: invalid input syntax for type lseg: "[(1,2),(3,4)" at character 30
2024-11-25 19:08:07.593 CET [561754][client backend] [pg_regress/lseg][3/20:0] STATEMENT: INSERT INTO LSEG_TBL VALUES ('[(1,2),(3,4)');
2024-11-25 19:08:07.593 CET [561761][client backend] [pg_regress/strings][2/106:0] ERROR: negative substring length not allowed
2024-11-25 19:08:07.593 CET [561761][client backend] [pg_regress/strings][2/106:0] STATEMENT: SELECT SUBSTRING('string' FROM -10 FOR -2147483646) AS "error";
2024-11-25 19:08:07.595 CET [561754][client backend] [pg_regress/lseg][:0] LOG: disconnection: session time: 0:00:00.042 user=nkey database=regression host=[local]
2024-11-25 19:08:07.596 CET [561761][client backend] [pg_regress/strings][2/118:0] ERROR: SQL regular expression may not contain more than two escape-double-quote separators
2024-11-25 19:08:07.596 CET [561761][client backend] [pg_regress/strings][2/118:0] CONTEXT: SQL function "substring" statement 1
2024-11-25 19:08:07.596 CET [561761][client backend] [pg_regress/strings][2/118:0] STATEMENT: SELECT SUBSTRING('abcdefg' SIMILAR 'a*#"%#"g*#"x' ESCAPE '#') AS "error";
2024-11-25 19:08:07.597 CET [561725][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.078 user=nkey database=postgres host=[local]
2024-11-25 19:08:07.597 CET [561764][client backend] [pg_regress/macaddr][12/114:0] ERROR: invalid input syntax for type macaddr: "0800:2b01:0203" at character 37
2024-11-25 19:08:07.597 CET [561764][client backend] [pg_regress/macaddr][12/114:0] STATEMENT: INSERT INTO macaddr_data VALUES (8, '0800:2b01:0203');
2024-11-25 19:08:07.597 CET [561764][client backend] [pg_regress/macaddr][12/115:0] ERROR: invalid input syntax for type macaddr: "not even close" at character 37
2024-11-25 19:08:07.597 CET [561764][client backend] [pg_regress/macaddr][12/115:0] STATEMENT: INSERT INTO macaddr_data VALUES (9, 'not even close');
2024-11-25 19:08:07.599 CET [561761][client backend] [pg_regress/strings][2/131:0] ERROR: invalid escape string
2024-11-25 19:08:07.599 CET [561761][client backend] [pg_regress/strings][2/131:0] HINT: Escape string must be empty or one character.
2024-11-25 19:08:07.599 CET [561761][client backend] [pg_regress/strings][2/131:0] STATEMENT: SELECT 'abcdefg' SIMILAR TO '_bcd#%' ESCAPE '##' AS error;
2024-11-25 19:08:07.600 CET [561776][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.601 CET [561776][client backend] [[unknown]][33/23:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.601 CET [561776][client backend] [[unknown]][33/23:0] LOG: connection authorized: user=nkey database=regression_hstore application_name=pg_regress/hstore
2024-11-25 19:08:07.604 CET [561676][autovacuum worker] LOG: automatic analyze of table "regression.public.tenk1"
avg read rate: 0.000 MB/s, avg write rate: 0.512 MB/s
buffer usage: 532 hits, 0 reads, 8 dirtied
WAL usage: 47 records, 6 full page images, 56667 bytes
system usage: CPU: user: 0.10 s, system: 0.00 s, elapsed: 0.12 s
2024-11-25 19:08:07.604 CET [561761][client backend] [pg_regress/strings][2/139:0] ERROR: invalid regular expression option: "z"
2024-11-25 19:08:07.604 CET [561761][client backend] [pg_regress/strings][2/139:0] STATEMENT: SELECT regexp_replace('AAA aaa', 'A+', 'Z', 'z');
2024-11-25 19:08:07.606 CET [561766][client backend] [pg_regress/date][36/57:0] ERROR: date/time field value out of range: "1/8/1999" at character 13
2024-11-25 19:08:07.606 CET [561766][client backend] [pg_regress/date][36/57:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:07.606 CET [561766][client backend] [pg_regress/date][36/57:0] STATEMENT: SELECT date '1/8/1999';
2024-11-25 19:08:07.606 CET [561766][client backend] [pg_regress/date][36/58:0] ERROR: date/time field value out of range: "1/18/1999" at character 13
2024-11-25 19:08:07.606 CET [561766][client backend] [pg_regress/date][36/58:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:07.606 CET [561766][client backend] [pg_regress/date][36/58:0] STATEMENT: SELECT date '1/18/1999';
2024-11-25 19:08:07.606 CET [561766][client backend] [pg_regress/date][36/59:0] ERROR: date/time field value out of range: "18/1/1999" at character 13
2024-11-25 19:08:07.606 CET [561766][client backend] [pg_regress/date][36/59:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:07.606 CET [561766][client backend] [pg_regress/date][36/59:0] STATEMENT: SELECT date '18/1/1999';
2024-11-25 19:08:07.607 CET [561769][client backend] [pg_regress/inet][23/280:0] ERROR: invalid cidr value: "192.168.1.2/30" at character 37
2024-11-25 19:08:07.607 CET [561769][client backend] [pg_regress/inet][23/280:0] DETAIL: Value has bits set to right of mask.
2024-11-25 19:08:07.607 CET [561769][client backend] [pg_regress/inet][23/280:0] STATEMENT: INSERT INTO INET_TBL (c, i) VALUES ('192.168.1.2/30', '192.168.1.226');
2024-11-25 19:08:07.607 CET [561769][client backend] [pg_regress/inet][23/281:0] ERROR: invalid input syntax for type cidr: "1234::1234::1234" at character 37
2024-11-25 19:08:07.607 CET [561769][client backend] [pg_regress/inet][23/281:0] STATEMENT: INSERT INTO INET_TBL (c, i) VALUES ('1234::1234::1234', '::1.2.3.4');
2024-11-25 19:08:07.607 CET [561769][client backend] [pg_regress/inet][23/282:0] ERROR: invalid cidr value: "192.168.1.2/30" at character 42
2024-11-25 19:08:07.607 CET [561769][client backend] [pg_regress/inet][23/282:0] DETAIL: Value has bits set to right of mask.
2024-11-25 19:08:07.607 CET [561769][client backend] [pg_regress/inet][23/282:0] STATEMENT: INSERT INTO INET_TBL (c, i) VALUES (cidr('192.168.1.2/30'), '192.168.1.226');
2024-11-25 19:08:07.607 CET [561769][client backend] [pg_regress/inet][23/283:0] ERROR: invalid cidr value: "ffff:ffff:ffff:ffff::/24" at character 42
2024-11-25 19:08:07.607 CET [561769][client backend] [pg_regress/inet][23/283:0] DETAIL: Value has bits set to right of mask.
2024-11-25 19:08:07.607 CET [561769][client backend] [pg_regress/inet][23/283:0] STATEMENT: INSERT INTO INET_TBL (c, i) VALUES (cidr('ffff:ffff:ffff:ffff::/24'), '::192.168.1.226');
2024-11-25 19:08:07.607 CET [561761][client backend] [pg_regress/strings][2/149:0] ERROR: invalid value for parameter "start": -1
2024-11-25 19:08:07.607 CET [561761][client backend] [pg_regress/strings][2/149:0] STATEMENT: SELECT regexp_replace('A PostgreSQL function', 'a|e|i|o|u', 'X', -1, 0, 'i');
2024-11-25 19:08:07.608 CET [561761][client backend] [pg_regress/strings][2/150:0] ERROR: invalid value for parameter "n": -1
2024-11-25 19:08:07.608 CET [561761][client backend] [pg_regress/strings][2/150:0] STATEMENT: SELECT regexp_replace('A PostgreSQL function', 'a|e|i|o|u', 'X', 1, -1, 'i');
2024-11-25 19:08:07.608 CET [561761][client backend] [pg_regress/strings][2/151:0] ERROR: invalid regular expression option: "1"
2024-11-25 19:08:07.608 CET [561761][client backend] [pg_regress/strings][2/151:0] HINT: If you meant to use regexp_replace() with a start parameter, cast the fourth argument to integer explicitly.
2024-11-25 19:08:07.608 CET [561761][client backend] [pg_regress/strings][2/151:0] STATEMENT: SELECT regexp_replace('A PostgreSQL function', 'a|e|i|o|u', 'X', '1');
2024-11-25 19:08:07.608 CET [561766][client backend] [pg_regress/date][36/65:0] ERROR: date/time field value out of range: "January 8, 99 BC" at character 13
2024-11-25 19:08:07.608 CET [561766][client backend] [pg_regress/date][36/65:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:07.608 CET [561766][client backend] [pg_regress/date][36/65:0] STATEMENT: SELECT date 'January 8, 99 BC';
2024-11-25 19:08:07.609 CET [561761][client backend] [pg_regress/strings][2/158:0] ERROR: invalid value for parameter "start": 0
2024-11-25 19:08:07.609 CET [561761][client backend] [pg_regress/strings][2/158:0] STATEMENT: SELECT regexp_count('123123123123', '123', 0);
2024-11-25 19:08:07.609 CET [561761][client backend] [pg_regress/strings][2/159:0] ERROR: invalid value for parameter "start": -3
2024-11-25 19:08:07.609 CET [561761][client backend] [pg_regress/strings][2/159:0] STATEMENT: SELECT regexp_count('123123123123', '123', -3);
2024-11-25 19:08:07.609 CET [561766][client backend] [pg_regress/date][36/68:0] ERROR: date/time field value out of range: "08-Jan-99" at character 13
2024-11-25 19:08:07.609 CET [561766][client backend] [pg_regress/date][36/68:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:07.609 CET [561766][client backend] [pg_regress/date][36/68:0] STATEMENT: SELECT date '08-Jan-99';
2024-11-25 19:08:07.609 CET [561762][client backend] [pg_regress/timetz][8/95:0] ERROR: invalid input syntax for type time with time zone: "15:36:39 America/New_York" at character 32
2024-11-25 19:08:07.609 CET [561762][client backend] [pg_regress/timetz][8/95:0] STATEMENT: INSERT INTO TIMETZ_TBL VALUES ('15:36:39 America/New_York');
2024-11-25 19:08:07.610 CET [561757][client backend] [pg_regress/macaddr8][:0] LOG: disconnection: session time: 0:00:00.073 user=nkey database=regression host=[local]
2024-11-25 19:08:07.610 CET [561762][client backend] [pg_regress/timetz][8/96:0] ERROR: invalid input syntax for type time with time zone: "15:36:39 m2" at character 32
2024-11-25 19:08:07.610 CET [561762][client backend] [pg_regress/timetz][8/96:0] STATEMENT: INSERT INTO TIMETZ_TBL VALUES ('15:36:39 m2');
2024-11-25 19:08:07.610 CET [561766][client backend] [pg_regress/date][36/70:0] ERROR: date/time field value out of range: "Jan-08-99" at character 13
2024-11-25 19:08:07.610 CET [561766][client backend] [pg_regress/date][36/70:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:07.610 CET [561766][client backend] [pg_regress/date][36/70:0] STATEMENT: SELECT date 'Jan-08-99';
2024-11-25 19:08:07.610 CET [561766][client backend] [pg_regress/date][36/72:0] ERROR: invalid input syntax for type date: "99-08-Jan" at character 13
2024-11-25 19:08:07.610 CET [561766][client backend] [pg_regress/date][36/72:0] STATEMENT: SELECT date '99-08-Jan';
2024-11-25 19:08:07.610 CET [561766][client backend] [pg_regress/date][36/73:0] ERROR: invalid input syntax for type date: "1999-08-Jan" at character 13
2024-11-25 19:08:07.610 CET [561766][client backend] [pg_regress/date][36/73:0] STATEMENT: SELECT date '1999-08-Jan';
2024-11-25 19:08:07.610 CET [561766][client backend] [pg_regress/date][36/76:0] ERROR: date/time field value out of range: "08 Jan 99" at character 13
2024-11-25 19:08:07.610 CET [561766][client backend] [pg_regress/date][36/76:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:07.610 CET [561766][client backend] [pg_regress/date][36/76:0] STATEMENT: SELECT date '08 Jan 99';
2024-11-25 19:08:07.610 CET [561762][client backend] [pg_regress/timetz][8/97:0] ERROR: invalid input syntax for type time with time zone: "15:36:39 MSK m2" at character 32
2024-11-25 19:08:07.610 CET [561762][client backend] [pg_regress/timetz][8/97:0] STATEMENT: INSERT INTO TIMETZ_TBL VALUES ('15:36:39 MSK m2');
2024-11-25 19:08:07.610 CET [561766][client backend] [pg_regress/date][36/78:0] ERROR: date/time field value out of range: "Jan 08 99" at character 13
2024-11-25 19:08:07.610 CET [561766][client backend] [pg_regress/date][36/78:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:07.610 CET [561766][client backend] [pg_regress/date][36/78:0] STATEMENT: SELECT date 'Jan 08 99';
2024-11-25 19:08:07.611 CET [561766][client backend] [pg_regress/date][36/84:0] ERROR: date/time field value out of range: "08-01-99" at character 13
2024-11-25 19:08:07.611 CET [561766][client backend] [pg_regress/date][36/84:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:07.611 CET [561766][client backend] [pg_regress/date][36/84:0] STATEMENT: SELECT date '08-01-99';
2024-11-25 19:08:07.612 CET [561761][client backend] [pg_regress/strings][2/164:0] ERROR: regexp_like() does not support the "global" option
2024-11-25 19:08:07.612 CET [561761][client backend] [pg_regress/strings][2/164:0] STATEMENT: SELECT regexp_like('abc', 'a.c', 'g');
2024-11-25 19:08:07.613 CET [561766][client backend] [pg_regress/date][36/85:0] ERROR: date/time field value out of range: "08-01-1999" at character 13
2024-11-25 19:08:07.613 CET [561766][client backend] [pg_regress/date][36/85:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:07.613 CET [561766][client backend] [pg_regress/date][36/85:0] STATEMENT: SELECT date '08-01-1999';
2024-11-25 19:08:07.613 CET [561766][client backend] [pg_regress/date][36/86:0] ERROR: date/time field value out of range: "01-08-99" at character 13
2024-11-25 19:08:07.613 CET [561766][client backend] [pg_regress/date][36/86:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:07.613 CET [561766][client backend] [pg_regress/date][36/86:0] STATEMENT: SELECT date '01-08-99';
2024-11-25 19:08:07.613 CET [561766][client backend] [pg_regress/date][36/87:0] ERROR: date/time field value out of range: "01-08-1999" at character 13
2024-11-25 19:08:07.613 CET [561766][client backend] [pg_regress/date][36/87:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:07.613 CET [561766][client backend] [pg_regress/date][36/87:0] STATEMENT: SELECT date '01-08-1999';
2024-11-25 19:08:07.615 CET [561762][client backend] [pg_regress/timetz][8/107:0] ERROR: date/time field value out of range: "24:00:00.01 PDT" at character 8
2024-11-25 19:08:07.615 CET [561762][client backend] [pg_regress/timetz][8/107:0] STATEMENT: SELECT '24:00:00.01 PDT'::timetz;
2024-11-25 19:08:07.616 CET [561766][client backend] [pg_regress/date][36/92:0] ERROR: date/time field value out of range: "08 01 99" at character 13
2024-11-25 19:08:07.616 CET [561766][client backend] [pg_regress/date][36/92:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:07.616 CET [561766][client backend] [pg_regress/date][36/92:0] STATEMENT: SELECT date '08 01 99';
2024-11-25 19:08:07.616 CET [561766][client backend] [pg_regress/date][36/93:0] ERROR: date/time field value out of range: "08 01 1999" at character 13
2024-11-25 19:08:07.616 CET [561766][client backend] [pg_regress/date][36/93:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:07.616 CET [561766][client backend] [pg_regress/date][36/93:0] STATEMENT: SELECT date '08 01 1999';
2024-11-25 19:08:07.616 CET [561766][client backend] [pg_regress/date][36/94:0] ERROR: date/time field value out of range: "01 08 99" at character 13
2024-11-25 19:08:07.616 CET [561766][client backend] [pg_regress/date][36/94:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:07.616 CET [561766][client backend] [pg_regress/date][36/94:0] STATEMENT: SELECT date '01 08 99';
2024-11-25 19:08:07.616 CET [561762][client backend] [pg_regress/timetz][8/108:0] ERROR: date/time field value out of range: "23:59:60.01 PDT" at character 8
2024-11-25 19:08:07.616 CET [561762][client backend] [pg_regress/timetz][8/108:0] STATEMENT: SELECT '23:59:60.01 PDT'::timetz;
2024-11-25 19:08:07.616 CET [561766][client backend] [pg_regress/date][36/95:0] ERROR: date/time field value out of range: "01 08 1999" at character 13
2024-11-25 19:08:07.616 CET [561766][client backend] [pg_regress/date][36/95:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:07.616 CET [561766][client backend] [pg_regress/date][36/95:0] STATEMENT: SELECT date '01 08 1999';
2024-11-25 19:08:07.616 CET [561762][client backend] [pg_regress/timetz][8/109:0] ERROR: date/time field value out of range: "24:01:00 PDT" at character 8
2024-11-25 19:08:07.616 CET [561762][client backend] [pg_regress/timetz][8/109:0] STATEMENT: SELECT '24:01:00 PDT'::timetz;
2024-11-25 19:08:07.616 CET [561762][client backend] [pg_regress/timetz][8/110:0] ERROR: date/time field value out of range: "25:00:00 PDT" at character 8
2024-11-25 19:08:07.616 CET [561762][client backend] [pg_regress/timetz][8/110:0] STATEMENT: SELECT '25:00:00 PDT'::timetz;
2024-11-25 19:08:07.617 CET [561766][client backend] [pg_regress/date][36/103:0] ERROR: date/time field value out of range: "1/18/1999" at character 13
2024-11-25 19:08:07.617 CET [561766][client backend] [pg_regress/date][36/103:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:07.617 CET [561766][client backend] [pg_regress/date][36/103:0] STATEMENT: SELECT date '1/18/1999';
2024-11-25 19:08:07.618 CET [561767][client backend] [pg_regress/point][:0] LOG: disconnection: session time: 0:00:00.064 user=nkey database=regression host=[local]
2024-11-25 19:08:07.619 CET [561761][client backend] [pg_regress/strings][2/185:0] ERROR: invalid value for parameter "start": 0
2024-11-25 19:08:07.619 CET [561761][client backend] [pg_regress/strings][2/185:0] STATEMENT: SELECT regexp_instr('abcabcabc', 'a.c', 0, 1);
2024-11-25 19:08:07.619 CET [561761][client backend] [pg_regress/strings][2/186:0] ERROR: invalid value for parameter "n": 0
2024-11-25 19:08:07.619 CET [561761][client backend] [pg_regress/strings][2/186:0] STATEMENT: SELECT regexp_instr('abcabcabc', 'a.c', 1, 0);
2024-11-25 19:08:07.619 CET [561761][client backend] [pg_regress/strings][2/187:0] ERROR: invalid value for parameter "endoption": -1
2024-11-25 19:08:07.619 CET [561761][client backend] [pg_regress/strings][2/187:0] STATEMENT: SELECT regexp_instr('abcabcabc', 'a.c', 1, 1, -1);
2024-11-25 19:08:07.619 CET [561762][client backend] [pg_regress/timetz][8/116:0] ERROR: operator does not exist: time with time zone + time with time zone at character 11
2024-11-25 19:08:07.619 CET [561762][client backend] [pg_regress/timetz][8/116:0] HINT: No operator matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:07.619 CET [561762][client backend] [pg_regress/timetz][8/116:0] STATEMENT: SELECT f1 + time with time zone '00:01' AS "Illegal" FROM TIMETZ_TBL;
2024-11-25 19:08:07.620 CET [561761][client backend] [pg_regress/strings][2/188:0] ERROR: invalid value for parameter "endoption": 2
2024-11-25 19:08:07.620 CET [561761][client backend] [pg_regress/strings][2/188:0] STATEMENT: SELECT regexp_instr('abcabcabc', 'a.c', 1, 1, 2);
2024-11-25 19:08:07.620 CET [561764][client backend] [pg_regress/macaddr][:0] LOG: disconnection: session time: 0:00:00.065 user=nkey database=regression host=[local]
2024-11-25 19:08:07.620 CET [561761][client backend] [pg_regress/strings][2/189:0] ERROR: regexp_instr() does not support the "global" option
2024-11-25 19:08:07.620 CET [561761][client backend] [pg_regress/strings][2/189:0] STATEMENT: SELECT regexp_instr('abcabcabc', 'a.c', 1, 1, 0, 'g');
2024-11-25 19:08:07.621 CET [561761][client backend] [pg_regress/strings][2/190:0] ERROR: invalid value for parameter "subexpr": -1
2024-11-25 19:08:07.621 CET [561761][client backend] [pg_regress/strings][2/190:0] STATEMENT: SELECT regexp_instr('abcabcabc', 'a.c', 1, 1, 0, '', -1);
2024-11-25 19:08:07.621 CET [561766][client backend] [pg_regress/date][36/111:0] ERROR: date/time field value out of range: "99-Jan-08" at character 13
2024-11-25 19:08:07.621 CET [561766][client backend] [pg_regress/date][36/111:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:07.621 CET [561766][client backend] [pg_regress/date][36/111:0] STATEMENT: SELECT date '99-Jan-08';
2024-11-25 19:08:07.622 CET [561766][client backend] [pg_regress/date][36/117:0] ERROR: invalid input syntax for type date: "99-08-Jan" at character 13
2024-11-25 19:08:07.622 CET [561766][client backend] [pg_regress/date][36/117:0] STATEMENT: SELECT date '99-08-Jan';
2024-11-25 19:08:07.622 CET [561766][client backend] [pg_regress/date][36/118:0] ERROR: invalid input syntax for type date: "1999-08-Jan" at character 13
2024-11-25 19:08:07.622 CET [561766][client backend] [pg_regress/date][36/118:0] STATEMENT: SELECT date '1999-08-Jan';
2024-11-25 19:08:07.622 CET [561766][client backend] [pg_regress/date][36/119:0] ERROR: date/time field value out of range: "99 Jan 08" at character 13
2024-11-25 19:08:07.622 CET [561766][client backend] [pg_regress/date][36/119:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:07.622 CET [561766][client backend] [pg_regress/date][36/119:0] STATEMENT: SELECT date '99 Jan 08';
2024-11-25 19:08:07.623 CET [561766][client backend] [pg_regress/date][36/125:0] ERROR: invalid input syntax for type date: "99 08 Jan" at character 13
2024-11-25 19:08:07.623 CET [561766][client backend] [pg_regress/date][36/125:0] STATEMENT: SELECT date '99 08 Jan';
2024-11-25 19:08:07.623 CET [561766][client backend] [pg_regress/date][36/127:0] ERROR: date/time field value out of range: "99-01-08" at character 13
2024-11-25 19:08:07.623 CET [561766][client backend] [pg_regress/date][36/127:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:07.623 CET [561766][client backend] [pg_regress/date][36/127:0] STATEMENT: SELECT date '99-01-08';
2024-11-25 19:08:07.626 CET [561766][client backend] [pg_regress/date][36/133:0] ERROR: date/time field value out of range: "99-08-01" at character 13
2024-11-25 19:08:07.626 CET [561766][client backend] [pg_regress/date][36/133:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:07.626 CET [561766][client backend] [pg_regress/date][36/133:0] STATEMENT: SELECT date '99-08-01';
2024-11-25 19:08:07.626 CET [561761][client backend] [pg_regress/strings][2/205:0] ERROR: invalid value for parameter "start": 0
2024-11-25 19:08:07.626 CET [561761][client backend] [pg_regress/strings][2/205:0] STATEMENT: SELECT regexp_substr('abcabcabc', 'a.c', 0, 1);
2024-11-25 19:08:07.626 CET [561761][client backend] [pg_regress/strings][2/206:0] ERROR: invalid value for parameter "n": 0
2024-11-25 19:08:07.626 CET [561761][client backend] [pg_regress/strings][2/206:0] STATEMENT: SELECT regexp_substr('abcabcabc', 'a.c', 1, 0);
2024-11-25 19:08:07.626 CET [561766][client backend] [pg_regress/date][36/135:0] ERROR: date/time field value out of range: "99 01 08" at character 13
2024-11-25 19:08:07.626 CET [561766][client backend] [pg_regress/date][36/135:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:07.626 CET [561766][client backend] [pg_regress/date][36/135:0] STATEMENT: SELECT date '99 01 08';
2024-11-25 19:08:07.626 CET [561761][client backend] [pg_regress/strings][2/207:0] ERROR: regexp_substr() does not support the "global" option
2024-11-25 19:08:07.626 CET [561761][client backend] [pg_regress/strings][2/207:0] STATEMENT: SELECT regexp_substr('abcabcabc', 'a.c', 1, 1, 'g');
2024-11-25 19:08:07.627 CET [561761][client backend] [pg_regress/strings][2/208:0] ERROR: invalid value for parameter "subexpr": -1
2024-11-25 19:08:07.627 CET [561761][client backend] [pg_regress/strings][2/208:0] STATEMENT: SELECT regexp_substr('abcabcabc', 'a.c', 1, 1, '', -1);
2024-11-25 19:08:07.627 CET [561766][client backend] [pg_regress/date][36/141:0] ERROR: date/time field value out of range: "99 08 01" at character 13
2024-11-25 19:08:07.627 CET [561766][client backend] [pg_regress/date][36/141:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:07.627 CET [561766][client backend] [pg_regress/date][36/141:0] STATEMENT: SELECT date '99 08 01';
2024-11-25 19:08:07.627 CET [561676][autovacuum worker] LOG: automatic analyze of table "regression.pg_catalog.pg_type"
avg read rate: 0.000 MB/s, avg write rate: 2.486 MB/s
buffer usage: 943 hits, 0 reads, 7 dirtied
WAL usage: 99 records, 5 full page images, 51536 bytes
system usage: CPU: user: 0.01 s, system: 0.00 s, elapsed: 0.02 s
2024-11-25 19:08:07.627 CET [561762][client backend] [pg_regress/timetz][8/122:0] ERROR: unit "day" not supported for type time with time zone
2024-11-25 19:08:07.627 CET [561762][client backend] [pg_regress/timetz][8/122:0] STATEMENT: SELECT EXTRACT(DAY FROM TIME WITH TIME ZONE '2020-05-26 13:30:25.575401-04');
2024-11-25 19:08:07.627 CET [561762][client backend] [pg_regress/timetz][8/123:0] ERROR: unit "fortnight" not recognized for type time with time zone
2024-11-25 19:08:07.627 CET [561762][client backend] [pg_regress/timetz][8/123:0] STATEMENT: SELECT EXTRACT(FORTNIGHT FROM TIME WITH TIME ZONE '2020-05-26 13:30:25.575401-04');
2024-11-25 19:08:07.628 CET [561758][client backend] [pg_regress/line][13/54:0] ERROR: invalid input syntax for type line: "{}" at character 30
2024-11-25 19:08:07.628 CET [561758][client backend] [pg_regress/line][13/54:0] STATEMENT: INSERT INTO LINE_TBL VALUES ('{}');
2024-11-25 19:08:07.628 CET [561758][client backend] [pg_regress/line][13/55:0] ERROR: invalid input syntax for type line: "{0" at character 30
2024-11-25 19:08:07.628 CET [561758][client backend] [pg_regress/line][13/55:0] STATEMENT: INSERT INTO LINE_TBL VALUES ('{0');
2024-11-25 19:08:07.628 CET [561758][client backend] [pg_regress/line][13/56:0] ERROR: invalid input syntax for type line: "{0,0}" at character 30
2024-11-25 19:08:07.628 CET [561758][client backend] [pg_regress/line][13/56:0] STATEMENT: INSERT INTO LINE_TBL VALUES ('{0,0}');
2024-11-25 19:08:07.628 CET [561758][client backend] [pg_regress/line][13/57:0] ERROR: invalid input syntax for type line: "{0,0,1" at character 30
2024-11-25 19:08:07.628 CET [561758][client backend] [pg_regress/line][13/57:0] STATEMENT: INSERT INTO LINE_TBL VALUES ('{0,0,1');
2024-11-25 19:08:07.628 CET [561758][client backend] [pg_regress/line][13/58:0] ERROR: invalid line specification: A and B cannot both be zero at character 30
2024-11-25 19:08:07.628 CET [561758][client backend] [pg_regress/line][13/58:0] STATEMENT: INSERT INTO LINE_TBL VALUES ('{0,0,1}');
2024-11-25 19:08:07.628 CET [561758][client backend] [pg_regress/line][13/59:0] ERROR: invalid input syntax for type line: "{0,0,1} x" at character 30
2024-11-25 19:08:07.628 CET [561758][client backend] [pg_regress/line][13/59:0] STATEMENT: INSERT INTO LINE_TBL VALUES ('{0,0,1} x');
2024-11-25 19:08:07.628 CET [561758][client backend] [pg_regress/line][13/60:0] ERROR: invalid input syntax for type line: "(3asdf,2 ,3,4r2)" at character 30
2024-11-25 19:08:07.628 CET [561758][client backend] [pg_regress/line][13/60:0] STATEMENT: INSERT INTO LINE_TBL VALUES ('(3asdf,2 ,3,4r2)');
2024-11-25 19:08:07.629 CET [561676][autovacuum worker] LOG: automatic vacuum of table "regression.public.tenk2": index scans: 0
pages: 0 removed, 345 remain, 1 scanned (0.29% of total)
tuples: 0 removed, 10000 remain, 0 are dead but not yet removable
removable cutoff: 527419, which was 237 XIDs old when operation ended
frozen: 0 pages from table (0.00% of total) had 0 tuples frozen
index scan not needed: 0 pages from table (0.00% of total) had 0 dead item identifiers removed
avg read rate: 58.741 MB/s, avg write rate: 0.000 MB/s
buffer usage: 11 hits, 1 reads, 0 dirtied
WAL usage: 0 records, 0 full page images, 0 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:07.629 CET [561770][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.070 user=nkey database=postgres host=[local]
2024-11-25 19:08:07.630 CET [561765][client backend] [pg_regress/polygon][22/123:0] ERROR: invalid input syntax for type polygon: "0.0" at character 37
2024-11-25 19:08:07.630 CET [561765][client backend] [pg_regress/polygon][22/123:0] STATEMENT: INSERT INTO POLYGON_TBL(f1) VALUES ('0.0');
2024-11-25 19:08:07.630 CET [561765][client backend] [pg_regress/polygon][22/124:0] ERROR: invalid input syntax for type polygon: "(0.0 0.0" at character 37
2024-11-25 19:08:07.630 CET [561765][client backend] [pg_regress/polygon][22/124:0] STATEMENT: INSERT INTO POLYGON_TBL(f1) VALUES ('(0.0 0.0');
2024-11-25 19:08:07.631 CET [561758][client backend] [pg_regress/line][13/61:0] ERROR: invalid input syntax for type line: "[1,2,3, 4" at character 30
2024-11-25 19:08:07.631 CET [561758][client backend] [pg_regress/line][13/61:0] STATEMENT: INSERT INTO LINE_TBL VALUES ('[1,2,3, 4');
2024-11-25 19:08:07.631 CET [561758][client backend] [pg_regress/line][13/62:0] ERROR: invalid input syntax for type line: "[(,2),(3,4)]" at character 30
2024-11-25 19:08:07.631 CET [561758][client backend] [pg_regress/line][13/62:0] STATEMENT: INSERT INTO LINE_TBL VALUES ('[(,2),(3,4)]');
2024-11-25 19:08:07.631 CET [561758][client backend] [pg_regress/line][13/63:0] ERROR: invalid input syntax for type line: "[(1,2),(3,4)" at character 30
2024-11-25 19:08:07.631 CET [561758][client backend] [pg_regress/line][13/63:0] STATEMENT: INSERT INTO LINE_TBL VALUES ('[(1,2),(3,4)');
2024-11-25 19:08:07.631 CET [561758][client backend] [pg_regress/line][13/64:0] ERROR: invalid line specification: must be two distinct points at character 30
2024-11-25 19:08:07.631 CET [561758][client backend] [pg_regress/line][13/64:0] STATEMENT: INSERT INTO LINE_TBL VALUES ('[(1,2),(1,2)]');
2024-11-25 19:08:07.631 CET [561758][client backend] [pg_regress/line][13/65:0] ERROR: invalid line specification: must be two distinct points
2024-11-25 19:08:07.631 CET [561758][client backend] [pg_regress/line][13/65:0] STATEMENT: INSERT INTO LINE_TBL VALUES (line(point '(1,0)', point '(1,0)'));
2024-11-25 19:08:07.632 CET [561759][client backend] [pg_regress/interval][9/119:0] ERROR: interval out of range
2024-11-25 19:08:07.632 CET [561759][client backend] [pg_regress/interval][9/119:0] STATEMENT: SELECT '3000000 months'::interval * 1000;
2024-11-25 19:08:07.632 CET [561759][client backend] [pg_regress/interval][9/120:0] ERROR: interval out of range
2024-11-25 19:08:07.632 CET [561759][client backend] [pg_regress/interval][9/120:0] STATEMENT: SELECT '3000000 months'::interval / 0.001;
2024-11-25 19:08:07.632 CET [561759][client backend] [pg_regress/interval][9/121:0] ERROR: interval out of range
2024-11-25 19:08:07.632 CET [561759][client backend] [pg_regress/interval][9/121:0] STATEMENT: SELECT '3000000 days'::interval * 1000;
2024-11-25 19:08:07.632 CET [561759][client backend] [pg_regress/interval][9/122:0] ERROR: interval out of range
2024-11-25 19:08:07.632 CET [561759][client backend] [pg_regress/interval][9/122:0] STATEMENT: SELECT '3000000 days'::interval / 0.001;
2024-11-25 19:08:07.632 CET [561759][client backend] [pg_regress/interval][9/123:0] ERROR: interval out of range
2024-11-25 19:08:07.632 CET [561759][client backend] [pg_regress/interval][9/123:0] STATEMENT: SELECT '1 month 2146410 days'::interval * 1000.5002;
2024-11-25 19:08:07.632 CET [561759][client backend] [pg_regress/interval][9/124:0] ERROR: interval out of range
2024-11-25 19:08:07.632 CET [561759][client backend] [pg_regress/interval][9/124:0] STATEMENT: SELECT '4611686018427387904 usec'::interval / 0.1;
2024-11-25 19:08:07.633 CET [561759][client backend] [pg_regress/interval][9/130:0] ERROR: interval out of range
2024-11-25 19:08:07.633 CET [561759][client backend] [pg_regress/interval][9/130:0] STATEMENT: SELECT justify_hours(interval '2147483647 days 24 hrs');
2024-11-25 19:08:07.634 CET [561759][client backend] [pg_regress/interval][9/131:0] ERROR: interval out of range
2024-11-25 19:08:07.634 CET [561759][client backend] [pg_regress/interval][9/131:0] STATEMENT: SELECT justify_days(interval '2147483647 months 30 days');
2024-11-25 19:08:07.634 CET [561765][client backend] [pg_regress/polygon][22/125:0] ERROR: invalid input syntax for type polygon: "(0,1,2)" at character 37
2024-11-25 19:08:07.634 CET [561765][client backend] [pg_regress/polygon][22/125:0] STATEMENT: INSERT INTO POLYGON_TBL(f1) VALUES ('(0,1,2)');
2024-11-25 19:08:07.634 CET [561765][client backend] [pg_regress/polygon][22/126:0] ERROR: invalid input syntax for type polygon: "(0,1,2,3" at character 37
2024-11-25 19:08:07.634 CET [561765][client backend] [pg_regress/polygon][22/126:0] STATEMENT: INSERT INTO POLYGON_TBL(f1) VALUES ('(0,1,2,3');
2024-11-25 19:08:07.634 CET [561765][client backend] [pg_regress/polygon][22/127:0] ERROR: invalid input syntax for type polygon: "asdf" at character 37
2024-11-25 19:08:07.634 CET [561765][client backend] [pg_regress/polygon][22/127:0] STATEMENT: INSERT INTO POLYGON_TBL(f1) VALUES ('asdf');
2024-11-25 19:08:07.634 CET [561758][client backend] [pg_regress/line][:0] LOG: disconnection: session time: 0:00:00.081 user=nkey database=regression host=[local]
2024-11-25 19:08:07.635 CET [561759][client backend] [pg_regress/interval][9/135:0] ERROR: interval out of range
2024-11-25 19:08:07.635 CET [561759][client backend] [pg_regress/interval][9/135:0] STATEMENT: SELECT justify_interval(interval '2147483647 months 30 days');
2024-11-25 19:08:07.635 CET [561759][client backend] [pg_regress/interval][9/136:0] ERROR: interval out of range
2024-11-25 19:08:07.635 CET [561759][client backend] [pg_regress/interval][9/136:0] STATEMENT: SELECT justify_interval(interval '-2147483648 months -30 days');
2024-11-25 19:08:07.635 CET [561780][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.635 CET [561752][client backend] [pg_regress/numerology][:0] LOG: disconnection: session time: 0:00:00.085 user=nkey database=regression host=[local]
2024-11-25 19:08:07.635 CET [561759][client backend] [pg_regress/interval][9/139:0] ERROR: interval out of range
2024-11-25 19:08:07.635 CET [561759][client backend] [pg_regress/interval][9/139:0] STATEMENT: SELECT justify_interval(interval '2147483647 months -30 days 1440 hrs');
2024-11-25 19:08:07.635 CET [561759][client backend] [pg_regress/interval][9/140:0] ERROR: interval out of range
2024-11-25 19:08:07.635 CET [561759][client backend] [pg_regress/interval][9/140:0] STATEMENT: SELECT justify_interval(interval '-2147483648 months 30 days -1440 hrs');
2024-11-25 19:08:07.635 CET [561762][client backend] [pg_regress/timetz][:0] LOG: disconnection: session time: 0:00:00.087 user=nkey database=regression host=[local]
2024-11-25 19:08:07.636 CET [561780][client backend] [[unknown]][28/26:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.636 CET [561780][client backend] [[unknown]][28/26:0] LOG: connection authorized: user=nkey database=regression_isn application_name=pg_regress/isn
2024-11-25 19:08:07.637 CET [561759][client backend] [pg_regress/interval][9/145:0] ERROR: invalid input syntax for type interval: "1 second 2 seconds" at character 8
2024-11-25 19:08:07.637 CET [561759][client backend] [pg_regress/interval][9/145:0] STATEMENT: SELECT '1 second 2 seconds'::interval;
2024-11-25 19:08:07.637 CET [561759][client backend] [pg_regress/interval][9/146:0] ERROR: invalid input syntax for type interval: "10 milliseconds 20 milliseconds" at character 8
2024-11-25 19:08:07.637 CET [561759][client backend] [pg_regress/interval][9/146:0] STATEMENT: SELECT '10 milliseconds 20 milliseconds'::interval;
2024-11-25 19:08:07.637 CET [561759][client backend] [pg_regress/interval][9/147:0] ERROR: invalid input syntax for type interval: "5.5 seconds 3 milliseconds" at character 8
2024-11-25 19:08:07.637 CET [561759][client backend] [pg_regress/interval][9/147:0] STATEMENT: SELECT '5.5 seconds 3 milliseconds'::interval;
2024-11-25 19:08:07.637 CET [561759][client backend] [pg_regress/interval][9/148:0] ERROR: invalid input syntax for type interval: "1:20:05 5 microseconds" at character 8
2024-11-25 19:08:07.637 CET [561759][client backend] [pg_regress/interval][9/148:0] STATEMENT: SELECT '1:20:05 5 microseconds'::interval;
2024-11-25 19:08:07.637 CET [561759][client backend] [pg_regress/interval][9/149:0] ERROR: invalid input syntax for type interval: "1 day 1 day" at character 8
2024-11-25 19:08:07.637 CET [561759][client backend] [pg_regress/interval][9/149:0] STATEMENT: SELECT '1 day 1 day'::interval;
2024-11-25 19:08:07.637 CET [561766][client backend] [pg_regress/date][36/149:0] ERROR: date/time field value out of range: "18/1/1999" at character 13
2024-11-25 19:08:07.637 CET [561766][client backend] [pg_regress/date][36/149:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:07.637 CET [561766][client backend] [pg_regress/date][36/149:0] STATEMENT: SELECT date '18/1/1999';
2024-11-25 19:08:07.638 CET [561783][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.639 CET [561766][client backend] [pg_regress/date][36/156:0] ERROR: date/time field value out of range: "99-Jan-08" at character 13
2024-11-25 19:08:07.639 CET [561766][client backend] [pg_regress/date][36/156:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:07.639 CET [561766][client backend] [pg_regress/date][36/156:0] STATEMENT: SELECT date '99-Jan-08';
2024-11-25 19:08:07.639 CET [561783][client backend] [[unknown]][32/19:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.639 CET [561783][client backend] [[unknown]][32/19:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:07.639 CET [561761][client backend] [pg_regress/strings][2/221:0] ERROR: invalid regular expression option: "z"
2024-11-25 19:08:07.639 CET [561761][client backend] [pg_regress/strings][2/221:0] STATEMENT: SELECT regexp_matches('foobarbequebaz', $re$(bar)(beque)$re$, 'gz');
2024-11-25 19:08:07.639 CET [561761][client backend] [pg_regress/strings][2/222:0] ERROR: invalid regular expression: parentheses () not balanced
2024-11-25 19:08:07.639 CET [561761][client backend] [pg_regress/strings][2/222:0] STATEMENT: SELECT regexp_matches('foobarbequebaz', $re$(barbeque$re$);
2024-11-25 19:08:07.639 CET [561761][client backend] [pg_regress/strings][2/223:0] ERROR: invalid regular expression: invalid repetition count(s)
2024-11-25 19:08:07.639 CET [561761][client backend] [pg_regress/strings][2/223:0] STATEMENT: SELECT regexp_matches('foobarbequebaz', $re$(bar)(beque){2,1}$re$);
2024-11-25 19:08:07.639 CET [561766][client backend] [pg_regress/date][36/162:0] ERROR: invalid input syntax for type date: "99-08-Jan" at character 13
2024-11-25 19:08:07.639 CET [561766][client backend] [pg_regress/date][36/162:0] STATEMENT: SELECT date '99-08-Jan';
2024-11-25 19:08:07.639 CET [561766][client backend] [pg_regress/date][36/163:0] ERROR: invalid input syntax for type date: "1999-08-Jan" at character 13
2024-11-25 19:08:07.639 CET [561766][client backend] [pg_regress/date][36/163:0] STATEMENT: SELECT date '1999-08-Jan';
2024-11-25 19:08:07.639 CET [561766][client backend] [pg_regress/date][36/164:0] ERROR: invalid input syntax for type date: "99 Jan 08" at character 13
2024-11-25 19:08:07.639 CET [561766][client backend] [pg_regress/date][36/164:0] STATEMENT: SELECT date '99 Jan 08';
2024-11-25 19:08:07.640 CET [561766][client backend] [pg_regress/date][36/170:0] ERROR: invalid input syntax for type date: "99 08 Jan" at character 13
2024-11-25 19:08:07.640 CET [561766][client backend] [pg_regress/date][36/170:0] STATEMENT: SELECT date '99 08 Jan';
2024-11-25 19:08:07.640 CET [561759][client backend] [pg_regress/interval][9/167:0] ERROR: invalid input syntax for type interval: "1 2" at character 17
2024-11-25 19:08:07.640 CET [561759][client backend] [pg_regress/interval][9/167:0] STATEMENT: SELECT interval '1 2' day to minute;
2024-11-25 19:08:07.640 CET [561766][client backend] [pg_regress/date][36/172:0] ERROR: date/time field value out of range: "99-01-08" at character 13
2024-11-25 19:08:07.640 CET [561766][client backend] [pg_regress/date][36/172:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:07.640 CET [561766][client backend] [pg_regress/date][36/172:0] STATEMENT: SELECT date '99-01-08';
2024-11-25 19:08:07.640 CET [561759][client backend] [pg_regress/interval][9/170:0] ERROR: invalid input syntax for type interval: "1 2" at character 17
2024-11-25 19:08:07.640 CET [561759][client backend] [pg_regress/interval][9/170:0] STATEMENT: SELECT interval '1 2' day to second;
2024-11-25 19:08:07.641 CET [561766][client backend] [pg_regress/date][36/178:0] ERROR: date/time field value out of range: "99-08-01" at character 13
2024-11-25 19:08:07.641 CET [561766][client backend] [pg_regress/date][36/178:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:07.641 CET [561766][client backend] [pg_regress/date][36/178:0] STATEMENT: SELECT date '99-08-01';
2024-11-25 19:08:07.641 CET [561766][client backend] [pg_regress/date][36/180:0] ERROR: date/time field value out of range: "99 01 08" at character 13
2024-11-25 19:08:07.641 CET [561766][client backend] [pg_regress/date][36/180:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:07.641 CET [561766][client backend] [pg_regress/date][36/180:0] STATEMENT: SELECT date '99 01 08';
2024-11-25 19:08:07.641 CET [561759][client backend] [pg_regress/interval][9/173:0] ERROR: invalid input syntax for type interval: "1 2" at character 17
2024-11-25 19:08:07.641 CET [561759][client backend] [pg_regress/interval][9/173:0] STATEMENT: SELECT interval '1 2' hour to minute;
2024-11-25 19:08:07.642 CET [561766][client backend] [pg_regress/date][36/186:0] ERROR: date/time field value out of range: "99 08 01" at character 13
2024-11-25 19:08:07.642 CET [561766][client backend] [pg_regress/date][36/186:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:07.642 CET [561766][client backend] [pg_regress/date][36/186:0] STATEMENT: SELECT date '99 08 01';
2024-11-25 19:08:07.642 CET [561759][client backend] [pg_regress/interval][9/176:0] ERROR: invalid input syntax for type interval: "1 2" at character 17
2024-11-25 19:08:07.642 CET [561759][client backend] [pg_regress/interval][9/176:0] STATEMENT: SELECT interval '1 2' hour to second;
2024-11-25 19:08:07.642 CET [561766][client backend] [pg_regress/date][36/189:0] ERROR: date out of range: "4714-11-23 BC" at character 13
2024-11-25 19:08:07.642 CET [561766][client backend] [pg_regress/date][36/189:0] STATEMENT: SELECT date '4714-11-23 BC';
2024-11-25 19:08:07.642 CET [561766][client backend] [pg_regress/date][36/191:0] ERROR: date out of range: "5874898-01-01" at character 13
2024-11-25 19:08:07.642 CET [561766][client backend] [pg_regress/date][36/191:0] STATEMENT: SELECT date '5874898-01-01';
2024-11-25 19:08:07.642 CET [561759][client backend] [pg_regress/interval][9/179:0] ERROR: invalid input syntax for type interval: "1 2" at character 17
2024-11-25 19:08:07.642 CET [561759][client backend] [pg_regress/interval][9/179:0] STATEMENT: SELECT interval '1 2' minute to second;
2024-11-25 19:08:07.644 CET [561759][client backend] [pg_regress/interval][9/187:0] ERROR: invalid input syntax for type interval: "123 11" at character 17
2024-11-25 19:08:07.644 CET [561759][client backend] [pg_regress/interval][9/187:0] STATEMENT: SELECT interval '123 11' day;
2024-11-25 19:08:07.644 CET [561759][client backend] [pg_regress/interval][9/188:0] ERROR: invalid input syntax for type interval: "123 11" at character 17
2024-11-25 19:08:07.644 CET [561759][client backend] [pg_regress/interval][9/188:0] STATEMENT: SELECT interval '123 11';
2024-11-25 19:08:07.644 CET [561759][client backend] [pg_regress/interval][9/189:0] ERROR: invalid input syntax for type interval: "123 2:03 -2:04" at character 17
2024-11-25 19:08:07.644 CET [561759][client backend] [pg_regress/interval][9/189:0] STATEMENT: SELECT interval '123 2:03 -2:04';
2024-11-25 19:08:07.644 CET [561768][client backend] [pg_regress/multirangetypes][7/151:0] ERROR: range lower bound must be less than or equal to range upper bound
2024-11-25 19:08:07.644 CET [561768][client backend] [pg_regress/multirangetypes][7/151:0] STATEMENT: select nummultirange(numrange(2.0, 1.0));
2024-11-25 19:08:07.644 CET [561761][client backend] [pg_regress/strings][2/240:0] ERROR: invalid regular expression option: "z"
2024-11-25 19:08:07.644 CET [561761][client backend] [pg_regress/strings][2/240:0] STATEMENT: SELECT foo, length(foo) FROM regexp_split_to_table('thE QUick bROWn FOx jUMPs ovEr The lazy dOG', 'e', 'zippy') AS foo;
2024-11-25 19:08:07.644 CET [561761][client backend] [pg_regress/strings][2/241:0] ERROR: invalid regular expression option: "z"
2024-11-25 19:08:07.644 CET [561761][client backend] [pg_regress/strings][2/241:0] STATEMENT: SELECT regexp_split_to_array('thE QUick bROWn FOx jUMPs ovEr The lazy dOG', 'e', 'iz');
2024-11-25 19:08:07.644 CET [561761][client backend] [pg_regress/strings][2/242:0] ERROR: regexp_split_to_table() does not support the "global" option
2024-11-25 19:08:07.644 CET [561761][client backend] [pg_regress/strings][2/242:0] STATEMENT: SELECT foo, length(foo) FROM regexp_split_to_table('thE QUick bROWn FOx jUMPs ovEr The lazy dOG', 'e', 'g') AS foo;
2024-11-25 19:08:07.644 CET [561761][client backend] [pg_regress/strings][2/243:0] ERROR: regexp_split_to_array() does not support the "global" option
2024-11-25 19:08:07.644 CET [561761][client backend] [pg_regress/strings][2/243:0] STATEMENT: SELECT regexp_split_to_array('thE QUick bROWn FOx jUMPs ovEr The lazy dOG', 'e', 'g');
2024-11-25 19:08:07.645 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:07.645 CET [561759][client backend] [pg_regress/interval][9/195:0] ERROR: invalid input syntax for type interval: "1 2.345" at character 17
2024-11-25 19:08:07.645 CET [561759][client backend] [pg_regress/interval][9/195:0] STATEMENT: SELECT interval '1 2.345' day to second(2);
2024-11-25 19:08:07.645 CET [561759][client backend] [pg_regress/interval][9/199:0] ERROR: invalid input syntax for type interval: "1 2.345" at character 17
2024-11-25 19:08:07.645 CET [561759][client backend] [pg_regress/interval][9/199:0] STATEMENT: SELECT interval '1 2.345' hour to second(2);
2024-11-25 19:08:07.646 CET [561759][client backend] [pg_regress/interval][9/202:0] ERROR: invalid input syntax for type interval: "1 2.3456" at character 17
2024-11-25 19:08:07.646 CET [561759][client backend] [pg_regress/interval][9/202:0] STATEMENT: SELECT interval '1 2.3456' minute to second(2);
2024-11-25 19:08:07.646 CET [561759][client backend] [pg_regress/interval][9/205:0] ERROR: interval out of range at character 17
2024-11-25 19:08:07.646 CET [561759][client backend] [pg_regress/interval][9/205:0] STATEMENT: SELECT interval '2562047788:00:54.775807' second(2);
2024-11-25 19:08:07.646 CET [561759][client backend] [pg_regress/interval][9/206:0] ERROR: interval out of range at character 17
2024-11-25 19:08:07.646 CET [561759][client backend] [pg_regress/interval][9/206:0] STATEMENT: SELECT interval '-2562047788:00:54.775807' second(2);
2024-11-25 19:08:07.648 CET [561759][client backend] [pg_regress/interval][9/216:0] ERROR: invalid input syntax for type interval: "" at character 18
2024-11-25 19:08:07.648 CET [561759][client backend] [pg_regress/interval][9/216:0] STATEMENT: SELECT interval '';
2024-11-25 19:08:07.651 CET [561759][client backend] [pg_regress/interval][9/230:0] ERROR: invalid input syntax for type interval: "P.Y0M3DT4H5M6S" at character 17
2024-11-25 19:08:07.651 CET [561759][client backend] [pg_regress/interval][9/230:0] STATEMENT: select interval 'P.Y0M3DT4H5M6S';
2024-11-25 19:08:07.651 CET [561766][client backend] [pg_regress/date][36/232:0] ERROR: unit "microseconds" not supported for type date
2024-11-25 19:08:07.651 CET [561766][client backend] [pg_regress/date][36/232:0] STATEMENT: SELECT EXTRACT(MICROSECONDS FROM DATE '2020-08-11');
2024-11-25 19:08:07.652 CET [561766][client backend] [pg_regress/date][36/233:0] ERROR: unit "milliseconds" not supported for type date
2024-11-25 19:08:07.652 CET [561766][client backend] [pg_regress/date][36/233:0] STATEMENT: SELECT EXTRACT(MILLISECONDS FROM DATE '2020-08-11');
2024-11-25 19:08:07.652 CET [561766][client backend] [pg_regress/date][36/234:0] ERROR: unit "second" not supported for type date
2024-11-25 19:08:07.652 CET [561766][client backend] [pg_regress/date][36/234:0] STATEMENT: SELECT EXTRACT(SECOND FROM DATE '2020-08-11');
2024-11-25 19:08:07.652 CET [561766][client backend] [pg_regress/date][36/235:0] ERROR: unit "minute" not supported for type date
2024-11-25 19:08:07.652 CET [561766][client backend] [pg_regress/date][36/235:0] STATEMENT: SELECT EXTRACT(MINUTE FROM DATE '2020-08-11');
2024-11-25 19:08:07.652 CET [561766][client backend] [pg_regress/date][36/236:0] ERROR: unit "hour" not supported for type date
2024-11-25 19:08:07.652 CET [561766][client backend] [pg_regress/date][36/236:0] STATEMENT: SELECT EXTRACT(HOUR FROM DATE '2020-08-11');
2024-11-25 19:08:07.653 CET [561769][client backend] [pg_regress/inet][23/356:0] ERROR: result is out of range
2024-11-25 19:08:07.653 CET [561769][client backend] [pg_regress/inet][23/356:0] STATEMENT: SELECT '127.0.0.1'::inet + 10000000000;
2024-11-25 19:08:07.653 CET [561769][client backend] [pg_regress/inet][23/357:0] ERROR: result is out of range
2024-11-25 19:08:07.653 CET [561769][client backend] [pg_regress/inet][23/357:0] STATEMENT: SELECT '127.0.0.1'::inet - 10000000000;
2024-11-25 19:08:07.653 CET [561769][client backend] [pg_regress/inet][23/358:0] ERROR: result is out of range
2024-11-25 19:08:07.653 CET [561769][client backend] [pg_regress/inet][23/358:0] STATEMENT: SELECT '126::1'::inet - '127::2'::inet;
2024-11-25 19:08:07.653 CET [561769][client backend] [pg_regress/inet][23/359:0] ERROR: result is out of range
2024-11-25 19:08:07.653 CET [561769][client backend] [pg_regress/inet][23/359:0] STATEMENT: SELECT '127::1'::inet - '126::2'::inet;
2024-11-25 19:08:07.654 CET [561769][client backend] [pg_regress/inet][23/363:0] ERROR: cannot merge addresses from different families
2024-11-25 19:08:07.654 CET [561769][client backend] [pg_regress/inet][23/363:0] STATEMENT: SELECT inet_merge(c, i) FROM INET_TBL;
2024-11-25 19:08:07.654 CET [561759][client backend] [pg_regress/interval][9/250:0] ERROR: interval field value out of range: "2147483648 years" at character 17
2024-11-25 19:08:07.654 CET [561759][client backend] [pg_regress/interval][9/250:0] STATEMENT: select interval '2147483648 years';
2024-11-25 19:08:07.654 CET [561766][client backend] [pg_regress/date][36/253:0] ERROR: unit "timezone" not supported for type date
2024-11-25 19:08:07.654 CET [561766][client backend] [pg_regress/date][36/253:0] STATEMENT: SELECT EXTRACT(TIMEZONE FROM DATE '2020-08-11');
2024-11-25 19:08:07.654 CET [561759][client backend] [pg_regress/interval][9/251:0] ERROR: interval field value out of range: "-2147483649 years" at character 17
2024-11-25 19:08:07.654 CET [561759][client backend] [pg_regress/interval][9/251:0] STATEMENT: select interval '-2147483649 years';
2024-11-25 19:08:07.654 CET [561766][client backend] [pg_regress/date][36/254:0] ERROR: unit "timezone_m" not supported for type date
2024-11-25 19:08:07.654 CET [561766][client backend] [pg_regress/date][36/254:0] STATEMENT: SELECT EXTRACT(TIMEZONE_M FROM DATE '2020-08-11');
2024-11-25 19:08:07.654 CET [561759][client backend] [pg_regress/interval][9/252:0] ERROR: interval field value out of range: "2147483648 months" at character 17
2024-11-25 19:08:07.654 CET [561759][client backend] [pg_regress/interval][9/252:0] STATEMENT: select interval '2147483648 months';
2024-11-25 19:08:07.655 CET [561766][client backend] [pg_regress/date][36/255:0] ERROR: unit "timezone_h" not supported for type date
2024-11-25 19:08:07.655 CET [561766][client backend] [pg_regress/date][36/255:0] STATEMENT: SELECT EXTRACT(TIMEZONE_H FROM DATE '2020-08-11');
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/253:0] ERROR: interval field value out of range: "-2147483649 months" at character 17
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/253:0] STATEMENT: select interval '-2147483649 months';
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/254:0] ERROR: interval field value out of range: "2147483648 days" at character 17
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/254:0] STATEMENT: select interval '2147483648 days';
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/255:0] ERROR: interval field value out of range: "-2147483649 days" at character 17
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/255:0] STATEMENT: select interval '-2147483649 days';
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/256:0] ERROR: interval field value out of range: "2562047789 hours" at character 17
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/256:0] STATEMENT: select interval '2562047789 hours';
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/257:0] ERROR: interval field value out of range: "-2562047789 hours" at character 17
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/257:0] STATEMENT: select interval '-2562047789 hours';
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/258:0] ERROR: interval field value out of range: "153722867281 minutes" at character 17
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/258:0] STATEMENT: select interval '153722867281 minutes';
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/259:0] ERROR: interval field value out of range: "-153722867281 minutes" at character 17
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/259:0] STATEMENT: select interval '-153722867281 minutes';
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/260:0] ERROR: interval field value out of range: "9223372036855 seconds" at character 17
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/260:0] STATEMENT: select interval '9223372036855 seconds';
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/261:0] ERROR: interval field value out of range: "-9223372036855 seconds" at character 17
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/261:0] STATEMENT: select interval '-9223372036855 seconds';
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/262:0] ERROR: interval field value out of range: "9223372036854777 millisecond" at character 17
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/262:0] STATEMENT: select interval '9223372036854777 millisecond';
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/263:0] ERROR: interval field value out of range: "-9223372036854777 millisecond" at character 17
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/263:0] STATEMENT: select interval '-9223372036854777 millisecond';
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/264:0] ERROR: interval field value out of range: "9223372036854775808 microsecond" at character 17
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/264:0] STATEMENT: select interval '9223372036854775808 microsecond';
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/265:0] ERROR: interval field value out of range: "-9223372036854775809 microsecond" at character 17
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/265:0] STATEMENT: select interval '-9223372036854775809 microsecond';
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/266:0] ERROR: interval field value out of range: "P2147483648" at character 17
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/266:0] STATEMENT: select interval 'P2147483648';
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/267:0] ERROR: interval field value out of range: "P-2147483649" at character 17
2024-11-25 19:08:07.655 CET [561759][client backend] [pg_regress/interval][9/267:0] STATEMENT: select interval 'P-2147483649';
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/268:0] ERROR: interval out of range at character 17
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/268:0] STATEMENT: select interval 'P1-2147483647-2147483647';
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/269:0] ERROR: interval field value out of range: "PT2562047789" at character 17
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/269:0] STATEMENT: select interval 'PT2562047789';
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/270:0] ERROR: interval field value out of range: "PT-2562047789" at character 17
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/270:0] STATEMENT: select interval 'PT-2562047789';
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/271:0] ERROR: interval field value out of range: "2147483647 weeks" at character 17
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/271:0] STATEMENT: select interval '2147483647 weeks';
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/272:0] ERROR: interval field value out of range: "-2147483648 weeks" at character 17
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/272:0] STATEMENT: select interval '-2147483648 weeks';
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/273:0] ERROR: interval field value out of range: "2147483647 decades" at character 17
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/273:0] STATEMENT: select interval '2147483647 decades';
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/274:0] ERROR: interval field value out of range: "-2147483648 decades" at character 17
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/274:0] STATEMENT: select interval '-2147483648 decades';
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/275:0] ERROR: interval field value out of range: "2147483647 centuries" at character 17
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/275:0] STATEMENT: select interval '2147483647 centuries';
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/276:0] ERROR: interval field value out of range: "-2147483648 centuries" at character 17
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/276:0] STATEMENT: select interval '-2147483648 centuries';
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/277:0] ERROR: interval field value out of range: "2147483647 millennium" at character 17
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/277:0] STATEMENT: select interval '2147483647 millennium';
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/278:0] ERROR: interval field value out of range: "-2147483648 millennium" at character 17
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/278:0] STATEMENT: select interval '-2147483648 millennium';
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/279:0] ERROR: interval field value out of range: "1 week 2147483647 days" at character 17
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/279:0] STATEMENT: select interval '1 week 2147483647 days';
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/280:0] ERROR: interval field value out of range: "-1 week -2147483648 days" at character 17
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/280:0] STATEMENT: select interval '-1 week -2147483648 days';
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/281:0] ERROR: interval field value out of range: "2147483647 days 1 week" at character 17
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/281:0] STATEMENT: select interval '2147483647 days 1 week';
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/282:0] ERROR: interval field value out of range: "-2147483648 days -1 week" at character 17
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/282:0] STATEMENT: select interval '-2147483648 days -1 week';
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/283:0] ERROR: interval field value out of range: "P1W2147483647D" at character 17
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/283:0] STATEMENT: select interval 'P1W2147483647D';
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/284:0] ERROR: interval field value out of range: "P-1W-2147483648D" at character 17
2024-11-25 19:08:07.656 CET [561759][client backend] [pg_regress/interval][9/284:0] STATEMENT: select interval 'P-1W-2147483648D';
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/285:0] ERROR: interval field value out of range: "P2147483647D1W" at character 17
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/285:0] STATEMENT: select interval 'P2147483647D1W';
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/286:0] ERROR: interval field value out of range: "P-2147483648D-1W" at character 17
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/286:0] STATEMENT: select interval 'P-2147483648D-1W';
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/287:0] ERROR: interval field value out of range: "1 decade 2147483647 years" at character 17
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/287:0] STATEMENT: select interval '1 decade 2147483647 years';
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/288:0] ERROR: interval field value out of range: "1 century 2147483647 years" at character 17
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/288:0] STATEMENT: select interval '1 century 2147483647 years';
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/289:0] ERROR: interval field value out of range: "1 millennium 2147483647 years" at character 17
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/289:0] STATEMENT: select interval '1 millennium 2147483647 years';
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/290:0] ERROR: interval field value out of range: "-1 decade -2147483648 years" at character 17
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/290:0] STATEMENT: select interval '-1 decade -2147483648 years';
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/291:0] ERROR: interval field value out of range: "-1 century -2147483648 years" at character 17
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/291:0] STATEMENT: select interval '-1 century -2147483648 years';
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/292:0] ERROR: interval field value out of range: "-1 millennium -2147483648 years" at character 17
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/292:0] STATEMENT: select interval '-1 millennium -2147483648 years';
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/293:0] ERROR: interval field value out of range: "2147483647 years 1 decade" at character 17
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/293:0] STATEMENT: select interval '2147483647 years 1 decade';
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/294:0] ERROR: interval field value out of range: "2147483647 years 1 century" at character 17
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/294:0] STATEMENT: select interval '2147483647 years 1 century';
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/295:0] ERROR: interval field value out of range: "2147483647 years 1 millennium" at character 17
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/295:0] STATEMENT: select interval '2147483647 years 1 millennium';
2024-11-25 19:08:07.657 CET [561769][client backend] [pg_regress/inet][:0] LOG: disconnection: session time: 0:00:00.098 user=nkey database=regression host=[local]
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/296:0] ERROR: interval field value out of range: "-2147483648 years -1 decade" at character 17
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/296:0] STATEMENT: select interval '-2147483648 years -1 decade';
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/297:0] ERROR: interval field value out of range: "-2147483648 years -1 century" at character 17
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/297:0] STATEMENT: select interval '-2147483648 years -1 century';
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/298:0] ERROR: interval field value out of range: "-2147483648 years -1 millennium" at character 17
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/298:0] STATEMENT: select interval '-2147483648 years -1 millennium';
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/299:0] ERROR: interval field value out of range: "0.1 millennium 2147483647 months" at character 17
2024-11-25 19:08:07.657 CET [561759][client backend] [pg_regress/interval][9/299:0] STATEMENT: select interval '0.1 millennium 2147483647 months';
2024-11-25 19:08:07.658 CET [561759][client backend] [pg_regress/interval][9/300:0] ERROR: interval field value out of range: "0.1 centuries 2147483647 months" at character 17
2024-11-25 19:08:07.658 CET [561759][client backend] [pg_regress/interval][9/300:0] STATEMENT: select interval '0.1 centuries 2147483647 months';
2024-11-25 19:08:07.658 CET [561759][client backend] [pg_regress/interval][9/301:0] ERROR: interval field value out of range: "0.1 decades 2147483647 months" at character 17
2024-11-25 19:08:07.658 CET [561759][client backend] [pg_regress/interval][9/301:0] STATEMENT: select interval '0.1 decades 2147483647 months';
2024-11-25 19:08:07.658 CET [561759][client backend] [pg_regress/interval][9/302:0] ERROR: interval field value out of range: "0.1 yrs 2147483647 months" at character 17
2024-11-25 19:08:07.658 CET [561759][client backend] [pg_regress/interval][9/302:0] STATEMENT: select interval '0.1 yrs 2147483647 months';
2024-11-25 19:08:07.658 CET [561759][client backend] [pg_regress/interval][9/303:0] ERROR: interval field value out of range: "-0.1 millennium -2147483648 months" at character 17
2024-11-25 19:08:07.658 CET [561759][client backend] [pg_regress/interval][9/303:0] STATEMENT: select interval '-0.1 millennium -2147483648 months';
2024-11-25 19:08:07.658 CET [561759][client backend] [pg_regress/interval][9/304:0] ERROR: interval field value out of range: "-0.1 centuries -2147483648 months" at character 17
2024-11-25 19:08:07.658 CET [561759][client backend] [pg_regress/interval][9/304:0] STATEMENT: select interval '-0.1 centuries -2147483648 months';
2024-11-25 19:08:07.658 CET [561759][client backend] [pg_regress/interval][9/305:0] ERROR: interval field value out of range: "-0.1 decades -2147483648 months" at character 17
2024-11-25 19:08:07.658 CET [561759][client backend] [pg_regress/interval][9/305:0] STATEMENT: select interval '-0.1 decades -2147483648 months';
2024-11-25 19:08:07.658 CET [561759][client backend] [pg_regress/interval][9/306:0] ERROR: interval field value out of range: "-0.1 yrs -2147483648 months" at character 17
2024-11-25 19:08:07.658 CET [561759][client backend] [pg_regress/interval][9/306:0] STATEMENT: select interval '-0.1 yrs -2147483648 months';
2024-11-25 19:08:07.658 CET [561759][client backend] [pg_regress/interval][9/307:0] ERROR: interval field value out of range: "2147483647 months 0.1 millennium" at character 17
2024-11-25 19:08:07.658 CET [561759][client backend] [pg_regress/interval][9/307:0] STATEMENT: select interval '2147483647 months 0.1 millennium';
2024-11-25 19:08:07.658 CET [561759][client backend] [pg_regress/interval][9/308:0] ERROR: interval field value out of range: "2147483647 months 0.1 centuries" at character 17
2024-11-25 19:08:07.658 CET [561759][client backend] [pg_regress/interval][9/308:0] STATEMENT: select interval '2147483647 months 0.1 centuries';
2024-11-25 19:08:07.658 CET [561759][client backend] [pg_regress/interval][9/309:0] ERROR: interval field value out of range: "2147483647 months 0.1 decades" at character 17
2024-11-25 19:08:07.658 CET [561759][client backend] [pg_regress/interval][9/309:0] STATEMENT: select interval '2147483647 months 0.1 decades';
2024-11-25 19:08:07.658 CET [561759][client backend] [pg_regress/interval][9/310:0] ERROR: interval field value out of range: "2147483647 months 0.1 yrs" at character 17
2024-11-25 19:08:07.658 CET [561759][client backend] [pg_regress/interval][9/310:0] STATEMENT: select interval '2147483647 months 0.1 yrs';
2024-11-25 19:08:07.658 CET [561759][client backend] [pg_regress/interval][9/311:0] ERROR: interval field value out of range: "-2147483648 months -0.1 millennium" at character 17
2024-11-25 19:08:07.658 CET [561759][client backend] [pg_regress/interval][9/311:0] STATEMENT: select interval '-2147483648 months -0.1 millennium';
2024-11-25 19:08:07.658 CET [561759][client backend] [pg_regress/interval][9/312:0] ERROR: interval field value out of range: "-2147483648 months -0.1 centuries" at character 17
2024-11-25 19:08:07.658 CET [561759][client backend] [pg_regress/interval][9/312:0] STATEMENT: select interval '-2147483648 months -0.1 centuries';
2024-11-25 19:08:07.659 CET [561759][client backend] [pg_regress/interval][9/313:0] ERROR: interval field value out of range: "-2147483648 months -0.1 decades" at character 17
2024-11-25 19:08:07.659 CET [561759][client backend] [pg_regress/interval][9/313:0] STATEMENT: select interval '-2147483648 months -0.1 decades';
2024-11-25 19:08:07.659 CET [561759][client backend] [pg_regress/interval][9/314:0] ERROR: interval field value out of range: "-2147483648 months -0.1 yrs" at character 17
2024-11-25 19:08:07.659 CET [561759][client backend] [pg_regress/interval][9/314:0] STATEMENT: select interval '-2147483648 months -0.1 yrs';
2024-11-25 19:08:07.659 CET [561759][client backend] [pg_regress/interval][9/315:0] ERROR: interval field value out of range: "0.1 months 2147483647 days" at character 17
2024-11-25 19:08:07.659 CET [561759][client backend] [pg_regress/interval][9/315:0] STATEMENT: select interval '0.1 months 2147483647 days';
2024-11-25 19:08:07.659 CET [561759][client backend] [pg_regress/interval][9/316:0] ERROR: interval field value out of range: "-0.1 months -2147483648 days" at character 17
2024-11-25 19:08:07.659 CET [561759][client backend] [pg_regress/interval][9/316:0] STATEMENT: select interval '-0.1 months -2147483648 days';
2024-11-25 19:08:07.659 CET [561759][client backend] [pg_regress/interval][9/317:0] ERROR: interval field value out of range: "2147483647 days 0.1 months" at character 17
2024-11-25 19:08:07.659 CET [561759][client backend] [pg_regress/interval][9/317:0] STATEMENT: select interval '2147483647 days 0.1 months';
2024-11-25 19:08:07.659 CET [561759][client backend] [pg_regress/interval][9/318:0] ERROR: interval field value out of range: "-2147483648 days -0.1 months" at character 17
2024-11-25 19:08:07.659 CET [561759][client backend] [pg_regress/interval][9/318:0] STATEMENT: select interval '-2147483648 days -0.1 months';
2024-11-25 19:08:07.659 CET [561759][client backend] [pg_regress/interval][9/319:0] ERROR: interval field value out of range: "0.5 weeks 2147483647 days" at character 17
2024-11-25 19:08:07.659 CET [561759][client backend] [pg_regress/interval][9/319:0] STATEMENT: select interval '0.5 weeks 2147483647 days';
2024-11-25 19:08:07.659 CET [561759][client backend] [pg_regress/interval][9/320:0] ERROR: interval field value out of range: "-0.5 weeks -2147483648 days" at character 17
2024-11-25 19:08:07.659 CET [561759][client backend] [pg_regress/interval][9/320:0] STATEMENT: select interval '-0.5 weeks -2147483648 days';
2024-11-25 19:08:07.659 CET [561759][client backend] [pg_regress/interval][9/321:0] ERROR: interval field value out of range: "2147483647 days 0.5 weeks" at character 17
2024-11-25 19:08:07.659 CET [561759][client backend] [pg_regress/interval][9/321:0] STATEMENT: select interval '2147483647 days 0.5 weeks';
2024-11-25 19:08:07.660 CET [561759][client backend] [pg_regress/interval][9/322:0] ERROR: interval field value out of range: "-2147483648 days -0.5 weeks" at character 17
2024-11-25 19:08:07.660 CET [561759][client backend] [pg_regress/interval][9/322:0] STATEMENT: select interval '-2147483648 days -0.5 weeks';
2024-11-25 19:08:07.660 CET [561759][client backend] [pg_regress/interval][9/323:0] ERROR: interval field value out of range: "0.01 months 9223372036854775807 microseconds" at character 17
2024-11-25 19:08:07.660 CET [561759][client backend] [pg_regress/interval][9/323:0] STATEMENT: select interval '0.01 months 9223372036854775807 microseconds';
2024-11-25 19:08:07.660 CET [561759][client backend] [pg_regress/interval][9/324:0] ERROR: interval field value out of range: "-0.01 months -9223372036854775808 microseconds" at character 17
2024-11-25 19:08:07.660 CET [561759][client backend] [pg_regress/interval][9/324:0] STATEMENT: select interval '-0.01 months -9223372036854775808 microseconds';
2024-11-25 19:08:07.660 CET [561759][client backend] [pg_regress/interval][9/325:0] ERROR: interval field value out of range: "9223372036854775807 microseconds 0.01 months" at character 17
2024-11-25 19:08:07.660 CET [561759][client backend] [pg_regress/interval][9/325:0] STATEMENT: select interval '9223372036854775807 microseconds 0.01 months';
2024-11-25 19:08:07.660 CET [561759][client backend] [pg_regress/interval][9/326:0] ERROR: interval field value out of range: "-9223372036854775808 microseconds -0.01 months" at character 17
2024-11-25 19:08:07.660 CET [561759][client backend] [pg_regress/interval][9/326:0] STATEMENT: select interval '-9223372036854775808 microseconds -0.01 months';
2024-11-25 19:08:07.660 CET [561759][client backend] [pg_regress/interval][9/327:0] ERROR: interval field value out of range: "0.1 weeks 9223372036854775807 microseconds" at character 17
2024-11-25 19:08:07.660 CET [561759][client backend] [pg_regress/interval][9/327:0] STATEMENT: select interval '0.1 weeks 9223372036854775807 microseconds';
2024-11-25 19:08:07.660 CET [561759][client backend] [pg_regress/interval][9/328:0] ERROR: interval field value out of range: "-0.1 weeks -9223372036854775808 microseconds" at character 17
2024-11-25 19:08:07.660 CET [561759][client backend] [pg_regress/interval][9/328:0] STATEMENT: select interval '-0.1 weeks -9223372036854775808 microseconds';
2024-11-25 19:08:07.661 CET [561759][client backend] [pg_regress/interval][9/329:0] ERROR: interval field value out of range: "9223372036854775807 microseconds 0.1 weeks" at character 17
2024-11-25 19:08:07.661 CET [561759][client backend] [pg_regress/interval][9/329:0] STATEMENT: select interval '9223372036854775807 microseconds 0.1 weeks';
2024-11-25 19:08:07.661 CET [561759][client backend] [pg_regress/interval][9/330:0] ERROR: interval field value out of range: "-9223372036854775808 microseconds -0.1 weeks" at character 17
2024-11-25 19:08:07.661 CET [561759][client backend] [pg_regress/interval][9/330:0] STATEMENT: select interval '-9223372036854775808 microseconds -0.1 weeks';
2024-11-25 19:08:07.661 CET [561759][client backend] [pg_regress/interval][9/331:0] ERROR: interval field value out of range: "0.1 days 9223372036854775807 microseconds" at character 17
2024-11-25 19:08:07.661 CET [561759][client backend] [pg_regress/interval][9/331:0] STATEMENT: select interval '0.1 days 9223372036854775807 microseconds';
2024-11-25 19:08:07.661 CET [561759][client backend] [pg_regress/interval][9/332:0] ERROR: interval field value out of range: "-0.1 days -9223372036854775808 microseconds" at character 17
2024-11-25 19:08:07.661 CET [561759][client backend] [pg_regress/interval][9/332:0] STATEMENT: select interval '-0.1 days -9223372036854775808 microseconds';
2024-11-25 19:08:07.661 CET [561759][client backend] [pg_regress/interval][9/333:0] ERROR: interval field value out of range: "9223372036854775807 microseconds 0.1 days" at character 17
2024-11-25 19:08:07.661 CET [561759][client backend] [pg_regress/interval][9/333:0] STATEMENT: select interval '9223372036854775807 microseconds 0.1 days';
2024-11-25 19:08:07.661 CET [561759][client backend] [pg_regress/interval][9/334:0] ERROR: interval field value out of range: "-9223372036854775808 microseconds -0.1 days" at character 17
2024-11-25 19:08:07.661 CET [561759][client backend] [pg_regress/interval][9/334:0] STATEMENT: select interval '-9223372036854775808 microseconds -0.1 days';
2024-11-25 19:08:07.661 CET [561766][client backend] [pg_regress/date][36/291:0] ERROR: unit "microsec" not recognized for type date
2024-11-25 19:08:07.661 CET [561766][client backend] [pg_regress/date][36/291:0] STATEMENT: SELECT EXTRACT(MICROSEC FROM DATE 'infinity');
2024-11-25 19:08:07.661 CET [561759][client backend] [pg_regress/interval][9/335:0] ERROR: interval field value out of range: "P0.1Y2147483647M" at character 17
2024-11-25 19:08:07.661 CET [561759][client backend] [pg_regress/interval][9/335:0] STATEMENT: select interval 'P0.1Y2147483647M';
2024-11-25 19:08:07.661 CET [561776][client backend] [pg_regress/hstore][33/66:0] ERROR: syntax error in hstore, near "=" at position 2 at character 8
2024-11-25 19:08:07.661 CET [561776][client backend] [pg_regress/hstore][33/66:0] STATEMENT: select ' =>null'::hstore;
2024-11-25 19:08:07.661 CET [561759][client backend] [pg_regress/interval][9/336:0] ERROR: interval field value out of range: "P-0.1Y-2147483648M" at character 17
2024-11-25 19:08:07.661 CET [561759][client backend] [pg_regress/interval][9/336:0] STATEMENT: select interval 'P-0.1Y-2147483648M';
2024-11-25 19:08:07.662 CET [561776][client backend] [pg_regress/hstore][33/67:0] ERROR: syntax error in hstore: unexpected end of string at character 8
2024-11-25 19:08:07.662 CET [561776][client backend] [pg_regress/hstore][33/67:0] STATEMENT: select 'aa=>"'::hstore;
2024-11-25 19:08:07.662 CET [561759][client backend] [pg_regress/interval][9/337:0] ERROR: interval field value out of range: "P2147483647M0.1Y" at character 17
2024-11-25 19:08:07.662 CET [561759][client backend] [pg_regress/interval][9/337:0] STATEMENT: select interval 'P2147483647M0.1Y';
2024-11-25 19:08:07.662 CET [561759][client backend] [pg_regress/interval][9/338:0] ERROR: interval field value out of range: "P-2147483648M-0.1Y" at character 17
2024-11-25 19:08:07.662 CET [561759][client backend] [pg_regress/interval][9/338:0] STATEMENT: select interval 'P-2147483648M-0.1Y';
2024-11-25 19:08:07.662 CET [561759][client backend] [pg_regress/interval][9/339:0] ERROR: interval field value out of range: "P0.1M2147483647D" at character 17
2024-11-25 19:08:07.662 CET [561759][client backend] [pg_regress/interval][9/339:0] STATEMENT: select interval 'P0.1M2147483647D';
2024-11-25 19:08:07.662 CET [561759][client backend] [pg_regress/interval][9/340:0] ERROR: interval field value out of range: "P-0.1M-2147483648D" at character 17
2024-11-25 19:08:07.662 CET [561759][client backend] [pg_regress/interval][9/340:0] STATEMENT: select interval 'P-0.1M-2147483648D';
2024-11-25 19:08:07.662 CET [561766][client backend] [pg_regress/date][36/295:0] ERROR: date field value out of range: 0-07-15
2024-11-25 19:08:07.662 CET [561766][client backend] [pg_regress/date][36/295:0] STATEMENT: select make_date(0, 7, 15);
2024-11-25 19:08:07.662 CET [561759][client backend] [pg_regress/interval][9/341:0] ERROR: interval field value out of range: "P2147483647D0.1M" at character 17
2024-11-25 19:08:07.662 CET [561759][client backend] [pg_regress/interval][9/341:0] STATEMENT: select interval 'P2147483647D0.1M';
2024-11-25 19:08:07.662 CET [561766][client backend] [pg_regress/date][36/296:0] ERROR: date field value out of range: 2013-02-30
2024-11-25 19:08:07.662 CET [561766][client backend] [pg_regress/date][36/296:0] STATEMENT: select make_date(2013, 2, 30);
2024-11-25 19:08:07.662 CET [561766][client backend] [pg_regress/date][36/297:0] ERROR: date field value out of range: 2013-13-01
2024-11-25 19:08:07.662 CET [561766][client backend] [pg_regress/date][36/297:0] STATEMENT: select make_date(2013, 13, 1);
2024-11-25 19:08:07.662 CET [561759][client backend] [pg_regress/interval][9/342:0] ERROR: interval field value out of range: "P-2147483648D-0.1M" at character 17
2024-11-25 19:08:07.662 CET [561759][client backend] [pg_regress/interval][9/342:0] STATEMENT: select interval 'P-2147483648D-0.1M';
2024-11-25 19:08:07.662 CET [561759][client backend] [pg_regress/interval][9/343:0] ERROR: interval field value out of range: "P0.5W2147483647D" at character 17
2024-11-25 19:08:07.662 CET [561759][client backend] [pg_regress/interval][9/343:0] STATEMENT: select interval 'P0.5W2147483647D';
2024-11-25 19:08:07.662 CET [561766][client backend] [pg_regress/date][36/298:0] ERROR: date field value out of range: 2013-11--1
2024-11-25 19:08:07.662 CET [561766][client backend] [pg_regress/date][36/298:0] STATEMENT: select make_date(2013, 11, -1);
2024-11-25 19:08:07.662 CET [561759][client backend] [pg_regress/interval][9/344:0] ERROR: interval field value out of range: "P-0.5W-2147483648D" at character 17
2024-11-25 19:08:07.662 CET [561759][client backend] [pg_regress/interval][9/344:0] STATEMENT: select interval 'P-0.5W-2147483648D';
2024-11-25 19:08:07.662 CET [561766][client backend] [pg_regress/date][36/299:0] ERROR: time field value out of range: 10:55:100.1
2024-11-25 19:08:07.662 CET [561766][client backend] [pg_regress/date][36/299:0] STATEMENT: select make_time(10, 55, 100.1);
2024-11-25 19:08:07.663 CET [561766][client backend] [pg_regress/date][36/300:0] ERROR: time field value out of range: 24:00:2.1
2024-11-25 19:08:07.663 CET [561766][client backend] [pg_regress/date][36/300:0] STATEMENT: select make_time(24, 0, 2.1);
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/345:0] ERROR: interval field value out of range: "P2147483647D0.5W" at character 17
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/345:0] STATEMENT: select interval 'P2147483647D0.5W';
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/346:0] ERROR: interval field value out of range: "P-2147483648D-0.5W" at character 17
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/346:0] STATEMENT: select interval 'P-2147483648D-0.5W';
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/347:0] ERROR: interval field value out of range: "P0.01MT2562047788H54.775807S" at character 17
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/347:0] STATEMENT: select interval 'P0.01MT2562047788H54.775807S';
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/348:0] ERROR: interval field value out of range: "P-0.01MT-2562047788H-54.775808S" at character 17
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/348:0] STATEMENT: select interval 'P-0.01MT-2562047788H-54.775808S';
2024-11-25 19:08:07.663 CET [561766][client backend] [pg_regress/date][:0] LOG: disconnection: session time: 0:00:00.102 user=nkey database=regression host=[local]
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/349:0] ERROR: interval field value out of range: "P0.1DT2562047788H54.775807S" at character 17
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/349:0] STATEMENT: select interval 'P0.1DT2562047788H54.775807S';
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/350:0] ERROR: interval field value out of range: "P-0.1DT-2562047788H-54.775808S" at character 17
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/350:0] STATEMENT: select interval 'P-0.1DT-2562047788H-54.775808S';
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/351:0] ERROR: interval field value out of range: "PT2562047788.1H54.775807S" at character 17
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/351:0] STATEMENT: select interval 'PT2562047788.1H54.775807S';
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/352:0] ERROR: interval field value out of range: "PT-2562047788.1H-54.775808S" at character 17
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/352:0] STATEMENT: select interval 'PT-2562047788.1H-54.775808S';
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/353:0] ERROR: interval field value out of range: "PT2562047788H0.1M54.775807S" at character 17
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/353:0] STATEMENT: select interval 'PT2562047788H0.1M54.775807S';
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/354:0] ERROR: interval field value out of range: "PT-2562047788H-0.1M-54.775808S" at character 17
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/354:0] STATEMENT: select interval 'PT-2562047788H-0.1M-54.775808S';
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/355:0] ERROR: interval field value out of range: "P0.1-2147483647-00" at character 17
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/355:0] STATEMENT: select interval 'P0.1-2147483647-00';
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/356:0] ERROR: interval field value out of range: "P00-0.1-2147483647" at character 17
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/356:0] STATEMENT: select interval 'P00-0.1-2147483647';
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/357:0] ERROR: interval field value out of range: "P00-0.01-00T2562047788:00:54.775807" at character 17
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/357:0] STATEMENT: select interval 'P00-0.01-00T2562047788:00:54.775807';
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/358:0] ERROR: interval field value out of range: "P00-00-0.1T2562047788:00:54.775807" at character 17
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/358:0] STATEMENT: select interval 'P00-00-0.1T2562047788:00:54.775807';
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/359:0] ERROR: interval field value out of range: "PT2562047788.1:00:54.775807" at character 17
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/359:0] STATEMENT: select interval 'PT2562047788.1:00:54.775807';
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/360:0] ERROR: interval field value out of range: "PT2562047788:01.:54.775807" at character 17
2024-11-25 19:08:07.663 CET [561759][client backend] [pg_regress/interval][9/360:0] STATEMENT: select interval 'PT2562047788:01.:54.775807';
2024-11-25 19:08:07.664 CET [561759][client backend] [pg_regress/interval][9/361:0] ERROR: interval field value out of range: "0.1 2562047788:0:54.775807" at character 17
2024-11-25 19:08:07.664 CET [561759][client backend] [pg_regress/interval][9/361:0] STATEMENT: select interval '0.1 2562047788:0:54.775807';
2024-11-25 19:08:07.664 CET [561759][client backend] [pg_regress/interval][9/362:0] ERROR: interval field value out of range: "0.1 2562047788:0:54.775808 ago" at character 17
2024-11-25 19:08:07.664 CET [561759][client backend] [pg_regress/interval][9/362:0] STATEMENT: select interval '0.1 2562047788:0:54.775808 ago';
2024-11-25 19:08:07.664 CET [561759][client backend] [pg_regress/interval][9/363:0] ERROR: interval field value out of range: "2562047788.1:0:54.775807" at character 17
2024-11-25 19:08:07.664 CET [561759][client backend] [pg_regress/interval][9/363:0] STATEMENT: select interval '2562047788.1:0:54.775807';
2024-11-25 19:08:07.664 CET [561759][client backend] [pg_regress/interval][9/364:0] ERROR: interval field value out of range: "2562047788.1:0:54.775808 ago" at character 17
2024-11-25 19:08:07.664 CET [561759][client backend] [pg_regress/interval][9/364:0] STATEMENT: select interval '2562047788.1:0:54.775808 ago';
2024-11-25 19:08:07.664 CET [561759][client backend] [pg_regress/interval][9/365:0] ERROR: invalid input syntax for type interval: "2562047788:0.1:54.775807" at character 17
2024-11-25 19:08:07.664 CET [561759][client backend] [pg_regress/interval][9/365:0] STATEMENT: select interval '2562047788:0.1:54.775807';
2024-11-25 19:08:07.664 CET [561759][client backend] [pg_regress/interval][9/366:0] ERROR: invalid input syntax for type interval: "2562047788:0.1:54.775808 ago" at character 17
2024-11-25 19:08:07.664 CET [561759][client backend] [pg_regress/interval][9/366:0] STATEMENT: select interval '2562047788:0.1:54.775808 ago';
2024-11-25 19:08:07.664 CET [561759][client backend] [pg_regress/interval][9/367:0] ERROR: interval field value out of range: "-2147483648 months ago" at character 17
2024-11-25 19:08:07.664 CET [561759][client backend] [pg_regress/interval][9/367:0] STATEMENT: select interval '-2147483648 months ago';
2024-11-25 19:08:07.664 CET [561759][client backend] [pg_regress/interval][9/368:0] ERROR: interval field value out of range: "-2147483648 days ago" at character 17
2024-11-25 19:08:07.664 CET [561759][client backend] [pg_regress/interval][9/368:0] STATEMENT: select interval '-2147483648 days ago';
2024-11-25 19:08:07.664 CET [561759][client backend] [pg_regress/interval][9/369:0] ERROR: interval field value out of range: "-9223372036854775808 microseconds ago" at character 17
2024-11-25 19:08:07.664 CET [561759][client backend] [pg_regress/interval][9/369:0] STATEMENT: select interval '-9223372036854775808 microseconds ago';
2024-11-25 19:08:07.665 CET [561759][client backend] [pg_regress/interval][9/370:0] ERROR: interval field value out of range: "-2147483648 months -2147483648 days -9223372036854775808 microseconds ago" at character 17
2024-11-25 19:08:07.665 CET [561759][client backend] [pg_regress/interval][9/370:0] STATEMENT: select interval '-2147483648 months -2147483648 days -9223372036854775808 microseconds ago';
2024-11-25 19:08:07.665 CET [561759][client backend] [pg_regress/interval][9/371:0] ERROR: interval out of range
2024-11-25 19:08:07.665 CET [561759][client backend] [pg_regress/interval][9/371:0] STATEMENT: select make_interval(years := 178956971);
2024-11-25 19:08:07.665 CET [561759][client backend] [pg_regress/interval][9/372:0] ERROR: interval out of range
2024-11-25 19:08:07.665 CET [561759][client backend] [pg_regress/interval][9/372:0] STATEMENT: select make_interval(years := -178956971);
2024-11-25 19:08:07.665 CET [561759][client backend] [pg_regress/interval][9/373:0] ERROR: interval out of range
2024-11-25 19:08:07.665 CET [561759][client backend] [pg_regress/interval][9/373:0] STATEMENT: select make_interval(years := 1, months := 2147483647);
2024-11-25 19:08:07.665 CET [561759][client backend] [pg_regress/interval][9/374:0] ERROR: interval out of range
2024-11-25 19:08:07.665 CET [561759][client backend] [pg_regress/interval][9/374:0] STATEMENT: select make_interval(years := -1, months := -2147483648);
2024-11-25 19:08:07.665 CET [561759][client backend] [pg_regress/interval][9/375:0] ERROR: interval out of range
2024-11-25 19:08:07.665 CET [561759][client backend] [pg_regress/interval][9/375:0] STATEMENT: select make_interval(weeks := 306783379);
2024-11-25 19:08:07.666 CET [561759][client backend] [pg_regress/interval][9/376:0] ERROR: interval out of range
2024-11-25 19:08:07.666 CET [561759][client backend] [pg_regress/interval][9/376:0] STATEMENT: select make_interval(weeks := -306783379);
2024-11-25 19:08:07.666 CET [561759][client backend] [pg_regress/interval][9/377:0] ERROR: interval out of range
2024-11-25 19:08:07.666 CET [561759][client backend] [pg_regress/interval][9/377:0] STATEMENT: select make_interval(weeks := 1, days := 2147483647);
2024-11-25 19:08:07.666 CET [561759][client backend] [pg_regress/interval][9/378:0] ERROR: interval out of range
2024-11-25 19:08:07.666 CET [561759][client backend] [pg_regress/interval][9/378:0] STATEMENT: select make_interval(weeks := -1, days := -2147483648);
2024-11-25 19:08:07.666 CET [561759][client backend] [pg_regress/interval][9/379:0] ERROR: value out of range: overflow
2024-11-25 19:08:07.666 CET [561759][client backend] [pg_regress/interval][9/379:0] STATEMENT: select make_interval(secs := 1e308);
2024-11-25 19:08:07.666 CET [561759][client backend] [pg_regress/interval][9/380:0] ERROR: interval out of range
2024-11-25 19:08:07.666 CET [561759][client backend] [pg_regress/interval][9/380:0] STATEMENT: select make_interval(secs := 1e18);
2024-11-25 19:08:07.666 CET [561759][client backend] [pg_regress/interval][9/381:0] ERROR: interval out of range
2024-11-25 19:08:07.666 CET [561759][client backend] [pg_regress/interval][9/381:0] STATEMENT: select make_interval(secs := -1e18);
2024-11-25 19:08:07.666 CET [561759][client backend] [pg_regress/interval][9/382:0] ERROR: interval out of range
2024-11-25 19:08:07.666 CET [561759][client backend] [pg_regress/interval][9/382:0] STATEMENT: select make_interval(mins := 1, secs := 9223372036800.0);
2024-11-25 19:08:07.667 CET [561759][client backend] [pg_regress/interval][9/383:0] ERROR: interval out of range
2024-11-25 19:08:07.667 CET [561759][client backend] [pg_regress/interval][9/383:0] STATEMENT: select make_interval(mins := -1, secs := -9223372036800.0);
2024-11-25 19:08:07.671 CET [561759][client backend] [pg_regress/interval][9/399:0] ERROR: integer out of range
2024-11-25 19:08:07.671 CET [561759][client backend] [pg_regress/interval][9/399:0] STATEMENT: select make_interval(years := 'inf'::float::int);
2024-11-25 19:08:07.671 CET [561759][client backend] [pg_regress/interval][9/400:0] ERROR: integer out of range
2024-11-25 19:08:07.671 CET [561759][client backend] [pg_regress/interval][9/400:0] STATEMENT: select make_interval(months := 'NaN'::float::int);
2024-11-25 19:08:07.671 CET [561759][client backend] [pg_regress/interval][9/401:0] ERROR: interval out of range
2024-11-25 19:08:07.671 CET [561759][client backend] [pg_regress/interval][9/401:0] STATEMENT: select make_interval(secs := 'inf');
2024-11-25 19:08:07.671 CET [561759][client backend] [pg_regress/interval][9/402:0] ERROR: interval out of range
2024-11-25 19:08:07.671 CET [561759][client backend] [pg_regress/interval][9/402:0] STATEMENT: select make_interval(secs := 'NaN');
2024-11-25 19:08:07.673 CET [561759][client backend] [pg_regress/interval][9/406:0] ERROR: unit "fortnight" not recognized for type interval
2024-11-25 19:08:07.673 CET [561759][client backend] [pg_regress/interval][9/406:0] STATEMENT: SELECT EXTRACT(FORTNIGHT FROM INTERVAL '2 days');
2024-11-25 19:08:07.674 CET [561759][client backend] [pg_regress/interval][9/407:0] ERROR: unit "timezone" not supported for type interval
2024-11-25 19:08:07.674 CET [561759][client backend] [pg_regress/interval][9/407:0] STATEMENT: SELECT EXTRACT(TIMEZONE FROM INTERVAL '2 days');
2024-11-25 19:08:07.680 CET [561761][client backend] [pg_regress/strings][2/332:0] ERROR: negative substring length not allowed
2024-11-25 19:08:07.680 CET [561761][client backend] [pg_regress/strings][2/332:0] STATEMENT: SELECT substr(f1, 5, -1) from toasttest;
2024-11-25 19:08:07.682 CET [561759][client backend] [pg_regress/interval][9/428:0] ERROR: interval out of range
2024-11-25 19:08:07.682 CET [561759][client backend] [pg_regress/interval][9/428:0] STATEMENT: SELECT interval '2147483646 months 2147483646 days 9223372036854775806 us' + interval '1 month 1 day 1 us';
2024-11-25 19:08:07.683 CET [561759][client backend] [pg_regress/interval][9/429:0] ERROR: interval out of range
2024-11-25 19:08:07.683 CET [561759][client backend] [pg_regress/interval][9/429:0] STATEMENT: SELECT interval '-2147483647 months -2147483647 days -9223372036854775807 us' + interval '-1 month -1 day -1 us';
2024-11-25 19:08:07.683 CET [561759][client backend] [pg_regress/interval][9/430:0] ERROR: interval out of range
2024-11-25 19:08:07.683 CET [561759][client backend] [pg_regress/interval][9/430:0] STATEMENT: SELECT interval '2147483646 months 2147483646 days 9223372036854775806 us' - interval '-1 month -1 day -1 us';
2024-11-25 19:08:07.683 CET [561759][client backend] [pg_regress/interval][9/431:0] ERROR: interval out of range
2024-11-25 19:08:07.683 CET [561759][client backend] [pg_regress/interval][9/431:0] STATEMENT: SELECT interval '-2147483647 months -2147483647 days -9223372036854775807 us' - interval '1 month 1 day 1 us';
2024-11-25 19:08:07.687 CET [561776][client backend] [pg_regress/hstore][33/162:0] ERROR: array must have even number of elements
2024-11-25 19:08:07.687 CET [561776][client backend] [pg_regress/hstore][33/162:0] STATEMENT: select ARRAY['a','g','b','h','asd']::hstore;
2024-11-25 19:08:07.687 CET [561776][client backend] [pg_regress/hstore][33/165:0] ERROR: array must have two columns
2024-11-25 19:08:07.687 CET [561776][client backend] [pg_regress/hstore][33/165:0] STATEMENT: select ARRAY[['a','g','b'],['h','asd','i']]::hstore;
2024-11-25 19:08:07.687 CET [561776][client backend] [pg_regress/hstore][33/166:0] ERROR: wrong number of array subscripts
2024-11-25 19:08:07.687 CET [561776][client backend] [pg_regress/hstore][33/166:0] STATEMENT: select ARRAY[[['a','g'],['b','h'],['asd','i']]]::hstore;
2024-11-25 19:08:07.688 CET [561759][client backend] [pg_regress/interval][9/434:0] ERROR: cannot add infinite interval to time
2024-11-25 19:08:07.688 CET [561759][client backend] [pg_regress/interval][9/434:0] STATEMENT: SELECT time '11:27:42' + interval 'infinity';
2024-11-25 19:08:07.688 CET [561776][client backend] [pg_regress/hstore][33/168:0] ERROR: array must have even number of elements
2024-11-25 19:08:07.688 CET [561776][client backend] [pg_regress/hstore][33/168:0] STATEMENT: select hstore(ARRAY['a','g','b','h','asd']);
2024-11-25 19:08:07.688 CET [561759][client backend] [pg_regress/interval][9/435:0] ERROR: cannot add infinite interval to time
2024-11-25 19:08:07.688 CET [561759][client backend] [pg_regress/interval][9/435:0] STATEMENT: SELECT time '11:27:42' + interval '-infinity';
2024-11-25 19:08:07.688 CET [561759][client backend] [pg_regress/interval][9/436:0] ERROR: cannot subtract infinite interval from time
2024-11-25 19:08:07.688 CET [561759][client backend] [pg_regress/interval][9/436:0] STATEMENT: SELECT time '11:27:42' - interval 'infinity';
2024-11-25 19:08:07.689 CET [561759][client backend] [pg_regress/interval][9/437:0] ERROR: cannot subtract infinite interval from time
2024-11-25 19:08:07.689 CET [561759][client backend] [pg_regress/interval][9/437:0] STATEMENT: SELECT time '11:27:42' - interval '-infinity';
2024-11-25 19:08:07.689 CET [561759][client backend] [pg_regress/interval][9/438:0] ERROR: cannot add infinite interval to time
2024-11-25 19:08:07.689 CET [561759][client backend] [pg_regress/interval][9/438:0] STATEMENT: SELECT timetz '11:27:42' + interval 'infinity';
2024-11-25 19:08:07.689 CET [561759][client backend] [pg_regress/interval][9/439:0] ERROR: cannot add infinite interval to time
2024-11-25 19:08:07.689 CET [561759][client backend] [pg_regress/interval][9/439:0] STATEMENT: SELECT timetz '11:27:42' + interval '-infinity';
2024-11-25 19:08:07.689 CET [561759][client backend] [pg_regress/interval][9/440:0] ERROR: cannot subtract infinite interval from time
2024-11-25 19:08:07.689 CET [561759][client backend] [pg_regress/interval][9/440:0] STATEMENT: SELECT timetz '11:27:42' - interval 'infinity';
2024-11-25 19:08:07.689 CET [561759][client backend] [pg_regress/interval][9/441:0] ERROR: cannot subtract infinite interval from time
2024-11-25 19:08:07.689 CET [561759][client backend] [pg_regress/interval][9/441:0] STATEMENT: SELECT timetz '11:27:42' - interval '-infinity';
2024-11-25 19:08:07.689 CET [561776][client backend] [pg_regress/hstore][33/171:0] ERROR: array must have two columns
2024-11-25 19:08:07.689 CET [561776][client backend] [pg_regress/hstore][33/171:0] STATEMENT: select hstore(ARRAY[['a','g','b'],['h','asd','i']]);
2024-11-25 19:08:07.689 CET [561776][client backend] [pg_regress/hstore][33/172:0] ERROR: wrong number of array subscripts
2024-11-25 19:08:07.689 CET [561776][client backend] [pg_regress/hstore][33/172:0] STATEMENT: select hstore(ARRAY[[['a','g'],['b','h'],['asd','i']]]);
2024-11-25 19:08:07.690 CET [561759][client backend] [pg_regress/interval][9/444:0] ERROR: interval out of range
2024-11-25 19:08:07.690 CET [561759][client backend] [pg_regress/interval][9/444:0] STATEMENT: SELECT -interval '-2147483647 months -2147483647 days -9223372036854775807 us';
2024-11-25 19:08:07.691 CET [561759][client backend] [pg_regress/interval][9/445:0] ERROR: interval out of range
2024-11-25 19:08:07.691 CET [561759][client backend] [pg_regress/interval][9/445:0] STATEMENT: SELECT interval 'infinity' * 'nan';
2024-11-25 19:08:07.691 CET [561759][client backend] [pg_regress/interval][9/446:0] ERROR: interval out of range
2024-11-25 19:08:07.691 CET [561759][client backend] [pg_regress/interval][9/446:0] STATEMENT: SELECT interval '-infinity' * 'nan';
2024-11-25 19:08:07.691 CET [561759][client backend] [pg_regress/interval][9/447:0] ERROR: interval out of range
2024-11-25 19:08:07.691 CET [561759][client backend] [pg_regress/interval][9/447:0] STATEMENT: SELECT interval '-1073741824 months -1073741824 days -4611686018427387904 us' * 2;
2024-11-25 19:08:07.691 CET [561759][client backend] [pg_regress/interval][9/448:0] ERROR: interval out of range
2024-11-25 19:08:07.691 CET [561759][client backend] [pg_regress/interval][9/448:0] STATEMENT: SELECT interval 'infinity' * 0;
2024-11-25 19:08:07.691 CET [561759][client backend] [pg_regress/interval][9/449:0] ERROR: interval out of range
2024-11-25 19:08:07.691 CET [561759][client backend] [pg_regress/interval][9/449:0] STATEMENT: SELECT interval '-infinity' * 0;
2024-11-25 19:08:07.692 CET [561759][client backend] [pg_regress/interval][9/450:0] ERROR: interval out of range
2024-11-25 19:08:07.692 CET [561759][client backend] [pg_regress/interval][9/450:0] STATEMENT: SELECT interval '0 days' * 'infinity'::float;
2024-11-25 19:08:07.692 CET [561776][client backend] [pg_regress/hstore][33/182:0] ERROR: arrays must have same bounds
2024-11-25 19:08:07.692 CET [561776][client backend] [pg_regress/hstore][33/182:0] STATEMENT: select hstore(ARRAY['a'], '{}'::text[]);
2024-11-25 19:08:07.692 CET [561759][client backend] [pg_regress/interval][9/451:0] ERROR: interval out of range
2024-11-25 19:08:07.692 CET [561759][client backend] [pg_regress/interval][9/451:0] STATEMENT: SELECT interval '0 days' * '-infinity'::float;
2024-11-25 19:08:07.692 CET [561776][client backend] [pg_regress/hstore][33/183:0] ERROR: arrays must have same bounds
2024-11-25 19:08:07.692 CET [561776][client backend] [pg_regress/hstore][33/183:0] STATEMENT: select hstore('{}'::text[], ARRAY['a']);
2024-11-25 19:08:07.692 CET [561759][client backend] [pg_regress/interval][9/454:0] ERROR: interval out of range
2024-11-25 19:08:07.692 CET [561759][client backend] [pg_regress/interval][9/454:0] STATEMENT: SELECT interval 'infinity' / 'infinity';
2024-11-25 19:08:07.692 CET [561759][client backend] [pg_regress/interval][9/455:0] ERROR: interval out of range
2024-11-25 19:08:07.692 CET [561759][client backend] [pg_regress/interval][9/455:0] STATEMENT: SELECT interval 'infinity' / '-infinity';
2024-11-25 19:08:07.693 CET [561759][client backend] [pg_regress/interval][9/456:0] ERROR: interval out of range
2024-11-25 19:08:07.693 CET [561759][client backend] [pg_regress/interval][9/456:0] STATEMENT: SELECT interval 'infinity' / 'nan';
2024-11-25 19:08:07.693 CET [561759][client backend] [pg_regress/interval][9/457:0] ERROR: interval out of range
2024-11-25 19:08:07.693 CET [561759][client backend] [pg_regress/interval][9/457:0] STATEMENT: SELECT interval '-infinity' / 'infinity';
2024-11-25 19:08:07.693 CET [561759][client backend] [pg_regress/interval][9/458:0] ERROR: interval out of range
2024-11-25 19:08:07.693 CET [561759][client backend] [pg_regress/interval][9/458:0] STATEMENT: SELECT interval '-infinity' / '-infinity';
2024-11-25 19:08:07.693 CET [561759][client backend] [pg_regress/interval][9/459:0] ERROR: interval out of range
2024-11-25 19:08:07.693 CET [561759][client backend] [pg_regress/interval][9/459:0] STATEMENT: SELECT interval '-infinity' / 'nan';
2024-11-25 19:08:07.693 CET [561759][client backend] [pg_regress/interval][9/460:0] ERROR: interval out of range
2024-11-25 19:08:07.693 CET [561759][client backend] [pg_regress/interval][9/460:0] STATEMENT: SELECT interval '-1073741824 months -1073741824 days -4611686018427387904 us' / 0.5;
2024-11-25 19:08:07.693 CET [561759][client backend] [pg_regress/interval][9/461:0] ERROR: timestamps cannot be binned into infinite intervals
2024-11-25 19:08:07.693 CET [561759][client backend] [pg_regress/interval][9/461:0] STATEMENT: SELECT date_bin('infinity', timestamp '2001-02-16 20:38:40', timestamp '2001-02-16 20:05:00');
2024-11-25 19:08:07.693 CET [561759][client backend] [pg_regress/interval][9/462:0] ERROR: timestamps cannot be binned into infinite intervals
2024-11-25 19:08:07.693 CET [561759][client backend] [pg_regress/interval][9/462:0] STATEMENT: SELECT date_bin('-infinity', timestamp '2001-02-16 20:38:40', timestamp '2001-02-16 20:05:00');
2024-11-25 19:08:07.694 CET [561759][client backend] [pg_regress/interval][9/465:0] ERROR: interval time zone "infinity" must be finite
2024-11-25 19:08:07.694 CET [561759][client backend] [pg_regress/interval][9/465:0] STATEMENT: SELECT timezone('infinity'::interval, '1995-08-06 12:12:12'::timestamp);
2024-11-25 19:08:07.694 CET [561759][client backend] [pg_regress/interval][9/466:0] ERROR: interval time zone "-infinity" must be finite
2024-11-25 19:08:07.694 CET [561759][client backend] [pg_regress/interval][9/466:0] STATEMENT: SELECT timezone('-infinity'::interval, '1995-08-06 12:12:12'::timestamp);
2024-11-25 19:08:07.694 CET [561759][client backend] [pg_regress/interval][9/467:0] ERROR: interval time zone "infinity" must be finite
2024-11-25 19:08:07.694 CET [561759][client backend] [pg_regress/interval][9/467:0] STATEMENT: SELECT timezone('infinity'::interval, '1995-08-06 12:12:12'::timestamptz);
2024-11-25 19:08:07.695 CET [561759][client backend] [pg_regress/interval][9/468:0] ERROR: interval time zone "-infinity" must be finite
2024-11-25 19:08:07.695 CET [561759][client backend] [pg_regress/interval][9/468:0] STATEMENT: SELECT timezone('-infinity'::interval, '1995-08-06 12:12:12'::timestamptz);
2024-11-25 19:08:07.695 CET [561759][client backend] [pg_regress/interval][9/469:0] ERROR: interval time zone "infinity" must be finite
2024-11-25 19:08:07.695 CET [561759][client backend] [pg_regress/interval][9/469:0] STATEMENT: SELECT timezone('infinity'::interval, '12:12:12'::time);
2024-11-25 19:08:07.695 CET [561759][client backend] [pg_regress/interval][9/470:0] ERROR: interval time zone "-infinity" must be finite
2024-11-25 19:08:07.695 CET [561759][client backend] [pg_regress/interval][9/470:0] STATEMENT: SELECT timezone('-infinity'::interval, '12:12:12'::time);
2024-11-25 19:08:07.695 CET [561759][client backend] [pg_regress/interval][9/471:0] ERROR: interval time zone "infinity" must be finite
2024-11-25 19:08:07.695 CET [561759][client backend] [pg_regress/interval][9/471:0] STATEMENT: SELECT timezone('infinity'::interval, '12:12:12'::timetz);
2024-11-25 19:08:07.695 CET [561759][client backend] [pg_regress/interval][9/472:0] ERROR: interval time zone "-infinity" must be finite
2024-11-25 19:08:07.695 CET [561759][client backend] [pg_regress/interval][9/472:0] STATEMENT: SELECT timezone('-infinity'::interval, '12:12:12'::timetz);
2024-11-25 19:08:07.695 CET [561759][client backend] [pg_regress/interval][9/473:0] ERROR: cannot convert infinite interval to time
2024-11-25 19:08:07.695 CET [561759][client backend] [pg_regress/interval][9/473:0] STATEMENT: SELECT 'infinity'::interval::time;
2024-11-25 19:08:07.695 CET [561759][client backend] [pg_regress/interval][9/474:0] ERROR: cannot convert infinite interval to time
2024-11-25 19:08:07.695 CET [561759][client backend] [pg_regress/interval][9/474:0] STATEMENT: SELECT '-infinity'::interval::time;
2024-11-25 19:08:07.695 CET [561023][checkpointer] LOG: checkpoint complete: wrote 3146 buffers (19.2%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.050 s, sync=0.001 s, total=0.051 s; sync files=0, longest=0.000 s, average=0.000 s; distance=15798 kB, estimate=16810 kB; lsn=4/4550DF30, redo lsn=4/44FAA1A0
2024-11-25 19:08:07.696 CET [561759][client backend] [pg_regress/interval][9/477:0] ERROR: invalid input syntax for type interval: "42 days 2 seconds ago ago" at character 17
2024-11-25 19:08:07.696 CET [561759][client backend] [pg_regress/interval][9/477:0] STATEMENT: SELECT INTERVAL '42 days 2 seconds ago ago';
2024-11-25 19:08:07.696 CET [561759][client backend] [pg_regress/interval][9/478:0] ERROR: invalid input syntax for type interval: "2 minutes ago 5 days" at character 17
2024-11-25 19:08:07.696 CET [561759][client backend] [pg_regress/interval][9/478:0] STATEMENT: SELECT INTERVAL '2 minutes ago 5 days';
2024-11-25 19:08:07.696 CET [561759][client backend] [pg_regress/interval][9/479:0] ERROR: invalid input syntax for type interval: "hour 5 months" at character 17
2024-11-25 19:08:07.696 CET [561759][client backend] [pg_regress/interval][9/479:0] STATEMENT: SELECT INTERVAL 'hour 5 months';
2024-11-25 19:08:07.696 CET [561759][client backend] [pg_regress/interval][9/480:0] ERROR: invalid input syntax for type interval: "1 year months days 5 hours" at character 17
2024-11-25 19:08:07.696 CET [561759][client backend] [pg_regress/interval][9/480:0] STATEMENT: SELECT INTERVAL '1 year months days 5 hours';
2024-11-25 19:08:07.696 CET [561759][client backend] [pg_regress/interval][9/481:0] ERROR: invalid input syntax for type interval: "now" at character 17
2024-11-25 19:08:07.696 CET [561759][client backend] [pg_regress/interval][9/481:0] STATEMENT: SELECT INTERVAL 'now';
2024-11-25 19:08:07.696 CET [561759][client backend] [pg_regress/interval][9/482:0] ERROR: invalid input syntax for type interval: "today" at character 17
2024-11-25 19:08:07.696 CET [561759][client backend] [pg_regress/interval][9/482:0] STATEMENT: SELECT INTERVAL 'today';
2024-11-25 19:08:07.696 CET [561759][client backend] [pg_regress/interval][9/483:0] ERROR: invalid input syntax for type interval: "tomorrow" at character 17
2024-11-25 19:08:07.696 CET [561759][client backend] [pg_regress/interval][9/483:0] STATEMENT: SELECT INTERVAL 'tomorrow';
2024-11-25 19:08:07.696 CET [561759][client backend] [pg_regress/interval][9/484:0] ERROR: invalid input syntax for type interval: "allballs" at character 17
2024-11-25 19:08:07.696 CET [561759][client backend] [pg_regress/interval][9/484:0] STATEMENT: SELECT INTERVAL 'allballs';
2024-11-25 19:08:07.696 CET [561759][client backend] [pg_regress/interval][9/485:0] ERROR: invalid input syntax for type interval: "epoch" at character 17
2024-11-25 19:08:07.696 CET [561759][client backend] [pg_regress/interval][9/485:0] STATEMENT: SELECT INTERVAL 'epoch';
2024-11-25 19:08:07.696 CET [561759][client backend] [pg_regress/interval][9/486:0] ERROR: invalid input syntax for type interval: "yesterday" at character 17
2024-11-25 19:08:07.696 CET [561759][client backend] [pg_regress/interval][9/486:0] STATEMENT: SELECT INTERVAL 'yesterday';
2024-11-25 19:08:07.697 CET [561759][client backend] [pg_regress/interval][9/487:0] ERROR: invalid input syntax for type interval: "infinity years" at character 17
2024-11-25 19:08:07.697 CET [561759][client backend] [pg_regress/interval][9/487:0] STATEMENT: SELECT INTERVAL 'infinity years';
2024-11-25 19:08:07.697 CET [561759][client backend] [pg_regress/interval][9/488:0] ERROR: invalid input syntax for type interval: "infinity ago" at character 17
2024-11-25 19:08:07.697 CET [561759][client backend] [pg_regress/interval][9/488:0] STATEMENT: SELECT INTERVAL 'infinity ago';
2024-11-25 19:08:07.697 CET [561759][client backend] [pg_regress/interval][9/489:0] ERROR: invalid input syntax for type interval: "+infinity -infinity" at character 17
2024-11-25 19:08:07.697 CET [561759][client backend] [pg_regress/interval][9/489:0] STATEMENT: SELECT INTERVAL '+infinity -infinity';
2024-11-25 19:08:07.698 CET [561759][client backend] [pg_regress/interval][:0] LOG: disconnection: session time: 0:00:00.159 user=nkey database=regression host=[local]
2024-11-25 19:08:07.700 CET [561776][client backend] [pg_regress/hstore][33/198:0] ERROR: domain hstestdom1 does not allow null values
2024-11-25 19:08:07.700 CET [561776][client backend] [pg_regress/hstore][33/198:0] STATEMENT: select populate_record(v, hstore('e', null)) from testhstore1 v;
2024-11-25 19:08:07.701 CET [561776][client backend] [pg_regress/hstore][33/202:0] ERROR: domain hstestdom1 does not allow null values
2024-11-25 19:08:07.701 CET [561776][client backend] [pg_regress/hstore][33/202:0] STATEMENT: select populate_record(v, hstore('b', 'foo') || hstore('e', null)) from testhstore1 v;
2024-11-25 19:08:07.701 CET [561776][client backend] [pg_regress/hstore][33/205:0] ERROR: domain hstestdom1 does not allow null values
2024-11-25 19:08:07.701 CET [561776][client backend] [pg_regress/hstore][33/205:0] STATEMENT: select populate_record(null::testhstore1, hstore('c', '3.45') || hstore('a', '123'));
2024-11-25 19:08:07.702 CET [561776][client backend] [pg_regress/hstore][33/208:0] ERROR: domain hstestdom1 does not allow null values
2024-11-25 19:08:07.702 CET [561776][client backend] [pg_regress/hstore][33/208:0] STATEMENT: select populate_record(null::testhstore1, '');
2024-11-25 19:08:07.703 CET [561776][client backend] [pg_regress/hstore][33/214:0] ERROR: domain hstestdom1 does not allow null values
2024-11-25 19:08:07.703 CET [561776][client backend] [pg_regress/hstore][33/214:0] STATEMENT: select v #= hstore('e', null) from testhstore1 v;
2024-11-25 19:08:07.704 CET [561761][client backend] [pg_regress/strings][2/356:0] ERROR: negative substring length not allowed
2024-11-25 19:08:07.704 CET [561761][client backend] [pg_regress/strings][2/356:0] STATEMENT: SELECT substr(f1, 5, -1) from toasttest;
2024-11-25 19:08:07.705 CET [561776][client backend] [pg_regress/hstore][33/219:0] ERROR: domain hstestdom1 does not allow null values
2024-11-25 19:08:07.705 CET [561776][client backend] [pg_regress/hstore][33/219:0] STATEMENT: select null::testhstore1 #= (hstore('c', '3.45') || hstore('a', '123'));
2024-11-25 19:08:07.705 CET [561776][client backend] [pg_regress/hstore][33/222:0] ERROR: domain hstestdom1 does not allow null values
2024-11-25 19:08:07.705 CET [561776][client backend] [pg_regress/hstore][33/222:0] STATEMENT: select null::testhstore1 #= hstore '';
2024-11-25 19:08:07.708 CET [561783][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.069 user=nkey database=postgres host=[local]
2024-11-25 19:08:07.713 CET [561761][client backend] [pg_regress/strings][2/380:0] ERROR: field position must not be zero
2024-11-25 19:08:07.713 CET [561761][client backend] [pg_regress/strings][2/380:0] STATEMENT: select split_part('joeuser@mydatabase','@',0) AS "an error";
2024-11-25 19:08:07.717 CET [561786][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.718 CET [561786][client backend] [[unknown]][29/14:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.718 CET [561786][client backend] [[unknown]][29/14:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:07.722 CET [561761][client backend] [pg_regress/strings][2/423:0] ERROR: index 99 out of valid range, 0..71
2024-11-25 19:08:07.722 CET [561761][client backend] [pg_regress/strings][2/423:0] STATEMENT: SELECT get_bit('\x1234567890abcdef00'::bytea, 99);
2024-11-25 19:08:07.722 CET [561761][client backend] [pg_regress/strings][2/425:0] ERROR: index 99 out of valid range, 0..71
2024-11-25 19:08:07.722 CET [561761][client backend] [pg_regress/strings][2/425:0] STATEMENT: SELECT set_bit('\x1234567890abcdef00'::bytea, 99, 0);
2024-11-25 19:08:07.727 CET [561761][client backend] [pg_regress/strings][2/427:0] ERROR: index 99 out of valid range, 0..8
2024-11-25 19:08:07.727 CET [561761][client backend] [pg_regress/strings][2/427:0] STATEMENT: SELECT get_byte('\x1234567890abcdef00'::bytea, 99);
2024-11-25 19:08:07.733 CET [561761][client backend] [pg_regress/strings][2/429:0] ERROR: index 99 out of valid range, 0..8
2024-11-25 19:08:07.733 CET [561761][client backend] [pg_regress/strings][2/429:0] STATEMENT: SELECT set_byte('\x1234567890abcdef00'::bytea, 99, 11);
2024-11-25 19:08:07.737 CET [561761][client backend] [pg_regress/strings][2/440:0] WARNING: nonstandard use of \\ in a string literal at character 8
2024-11-25 19:08:07.737 CET [561761][client backend] [pg_regress/strings][2/440:0] HINT: Use the escape string syntax for backslashes, e.g., E'\\'.
2024-11-25 19:08:07.737 CET [561761][client backend] [pg_regress/strings][2/440:0] WARNING: nonstandard use of \\ in a string literal at character 24
2024-11-25 19:08:07.737 CET [561761][client backend] [pg_regress/strings][2/440:0] HINT: Use the escape string syntax for backslashes, e.g., E'\\'.
2024-11-25 19:08:07.737 CET [561761][client backend] [pg_regress/strings][2/440:0] WARNING: nonstandard use of \\ in a string literal at character 42
2024-11-25 19:08:07.737 CET [561761][client backend] [pg_regress/strings][2/440:0] HINT: Use the escape string syntax for backslashes, e.g., E'\\'.
2024-11-25 19:08:07.737 CET [561761][client backend] [pg_regress/strings][2/440:0] WARNING: nonstandard use of \\ in a string literal at character 62
2024-11-25 19:08:07.737 CET [561761][client backend] [pg_regress/strings][2/440:0] HINT: Use the escape string syntax for backslashes, e.g., E'\\'.
2024-11-25 19:08:07.737 CET [561761][client backend] [pg_regress/strings][2/440:0] WARNING: nonstandard use of \\ in a string literal at character 80
2024-11-25 19:08:07.737 CET [561761][client backend] [pg_regress/strings][2/440:0] HINT: Use the escape string syntax for backslashes, e.g., E'\\'.
2024-11-25 19:08:07.737 CET [561761][client backend] [pg_regress/strings][2/440:0] WARNING: nonstandard use of \\ in a string literal at character 98
2024-11-25 19:08:07.737 CET [561761][client backend] [pg_regress/strings][2/440:0] HINT: Use the escape string syntax for backslashes, e.g., E'\\'.
2024-11-25 19:08:07.741 CET [561676][autovacuum worker] LOG: automatic analyze of table "regression.public.tenk2"
avg read rate: 23.852 MB/s, avg write rate: 0.553 MB/s
buffer usage: 163 hits, 345 reads, 8 dirtied
WAL usage: 43 records, 5 full page images, 53466 bytes
system usage: CPU: user: 0.08 s, system: 0.00 s, elapsed: 0.11 s
2024-11-25 19:08:07.742 CET [561761][client backend] [pg_regress/strings][2/466:0] ERROR: null character not permitted
2024-11-25 19:08:07.742 CET [561761][client backend] [pg_regress/strings][2/466:0] STATEMENT: SELECT chr(0);
2024-11-25 19:08:07.743 CET [561676][autovacuum worker] LOG: automatic vacuum of table "regression.public.road": index scans: 0
pages: 0 removed, 71 remain, 1 scanned (1.41% of total)
tuples: 0 removed, 5124 remain, 0 are dead but not yet removable
removable cutoff: 527620, which was 143 XIDs old when operation ended
frozen: 0 pages from table (0.00% of total) had 0 tuples frozen
index scan not needed: 0 pages from table (0.00% of total) had 0 dead item identifiers removed
avg read rate: 0.000 MB/s, avg write rate: 0.000 MB/s
buffer usage: 12 hits, 0 reads, 0 dirtied
WAL usage: 0 records, 0 full page images, 0 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:07.744 CET [561761][client backend] [pg_regress/strings][2/473:0] ERROR: negative substring length not allowed
2024-11-25 19:08:07.744 CET [561761][client backend] [pg_regress/strings][2/473:0] STATEMENT: SELECT SUBSTRING('string'::bytea FROM -10 FOR -2147483646) AS "error";
2024-11-25 19:08:07.745 CET [561786][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.028 user=nkey database=postgres host=[local]
2024-11-25 19:08:07.749 CET [561788][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.749 CET [561761][client backend] [pg_regress/strings][2/487:0] ERROR: invalid Unicode surrogate pair
2024-11-25 19:08:07.749 CET [561761][client backend] [pg_regress/strings][2/487:0] STATEMENT: SELECT unistr('wrong: \db99');
2024-11-25 19:08:07.749 CET [561676][autovacuum worker] LOG: automatic analyze of table "regression.public.road"
avg read rate: 0.000 MB/s, avg write rate: 3.348 MB/s
buffer usage: 232 hits, 0 reads, 3 dirtied
WAL usage: 7 records, 2 full page images, 9715 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:07.749 CET [561788][client backend] [[unknown]][25/145:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.749 CET [561788][client backend] [[unknown]][25/145:0] LOG: connection authorized: user=nkey database=regression_lo application_name=pg_regress/lo
2024-11-25 19:08:07.750 CET [561761][client backend] [pg_regress/strings][2/488:0] ERROR: invalid Unicode surrogate pair
2024-11-25 19:08:07.750 CET [561761][client backend] [pg_regress/strings][2/488:0] STATEMENT: SELECT unistr('wrong: \db99\0061');
2024-11-25 19:08:07.750 CET [561761][client backend] [pg_regress/strings][2/489:0] ERROR: invalid Unicode surrogate pair
2024-11-25 19:08:07.750 CET [561761][client backend] [pg_regress/strings][2/489:0] STATEMENT: SELECT unistr('wrong: \+00db99\+000061');
2024-11-25 19:08:07.751 CET [561761][client backend] [pg_regress/strings][2/490:0] ERROR: invalid Unicode code point: 2FFFFF
2024-11-25 19:08:07.751 CET [561761][client backend] [pg_regress/strings][2/490:0] STATEMENT: SELECT unistr('wrong: \+2FFFFF');
2024-11-25 19:08:07.751 CET [561761][client backend] [pg_regress/strings][2/491:0] ERROR: invalid Unicode surrogate pair
2024-11-25 19:08:07.751 CET [561761][client backend] [pg_regress/strings][2/491:0] STATEMENT: SELECT unistr('wrong: \udb99\u0061');
2024-11-25 19:08:07.751 CET [561761][client backend] [pg_regress/strings][2/492:0] ERROR: invalid Unicode surrogate pair
2024-11-25 19:08:07.751 CET [561761][client backend] [pg_regress/strings][2/492:0] STATEMENT: SELECT unistr('wrong: \U0000db99\U00000061');
2024-11-25 19:08:07.751 CET [561761][client backend] [pg_regress/strings][2/493:0] ERROR: invalid Unicode code point: 2FFFFF
2024-11-25 19:08:07.751 CET [561761][client backend] [pg_regress/strings][2/493:0] STATEMENT: SELECT unistr('wrong: \U002FFFFF');
2024-11-25 19:08:07.751 CET [561761][client backend] [pg_regress/strings][2/494:0] ERROR: invalid Unicode escape
2024-11-25 19:08:07.751 CET [561761][client backend] [pg_regress/strings][2/494:0] HINT: Unicode escapes must be \XXXX, \+XXXXXX, \uXXXX, or \UXXXXXXXX.
2024-11-25 19:08:07.751 CET [561761][client backend] [pg_regress/strings][2/494:0] STATEMENT: SELECT unistr('wrong: \xyz');
2024-11-25 19:08:07.751 CET [561761][client backend] [pg_regress/strings][:0] LOG: disconnection: session time: 0:00:00.207 user=nkey database=regression host=[local]
2024-11-25 19:08:07.761 CET [561676][autovacuum worker] LOG: automatic analyze of table "regression.public.road"
avg read rate: 0.000 MB/s, avg write rate: 3.906 MB/s
buffer usage: 146 hits, 0 reads, 6 dirtied
WAL usage: 13 records, 5 full page images, 44312 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.01 s
2024-11-25 19:08:07.762 CET [561676][autovacuum worker] LOG: automatic analyze of table "regression.public.ihighway"
avg read rate: 0.000 MB/s, avg write rate: 7.812 MB/s
buffer usage: 32 hits, 0 reads, 1 dirtied
WAL usage: 3 records, 1 full page images, 2109 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:07.762 CET [561676][autovacuum worker] LOG: automatic analyze of table "regression.public.shighway"
avg read rate: 0.000 MB/s, avg write rate: 0.000 MB/s
buffer usage: 32 hits, 0 reads, 0 dirtied
WAL usage: 3 records, 0 full page images, 228 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:07.763 CET [561788][client backend] [pg_regress/lo][25/155:0] ERROR: large object 43213 does not exist
2024-11-25 19:08:07.763 CET [561788][client backend] [pg_regress/lo][25/155:0] STATEMENT: SELECT lo_get(43213);
2024-11-25 19:08:07.764 CET [561780][client backend] [pg_regress/isn][28/38:0] ERROR: invalid check digit for ISBN number: "1234567890", should be X at character 8
2024-11-25 19:08:07.764 CET [561780][client backend] [pg_regress/isn][28/38:0] STATEMENT: SELECT '1234567890'::ISBN;
2024-11-25 19:08:07.764 CET [561788][client backend] [pg_regress/lo][25/160:0] ERROR: large object 43214 does not exist
2024-11-25 19:08:07.764 CET [561788][client backend] [pg_regress/lo][25/160:0] STATEMENT: SELECT lo_get(43214);
2024-11-25 19:08:07.764 CET [561780][client backend] [pg_regress/isn][28/39:0] ERROR: invalid check digit for ISMN number: "M123456780", should be 5 at character 8
2024-11-25 19:08:07.764 CET [561780][client backend] [pg_regress/isn][28/39:0] STATEMENT: SELECT 'M123456780'::ISMN;
2024-11-25 19:08:07.764 CET [561780][client backend] [pg_regress/isn][28/40:0] ERROR: invalid check digit for ISSN number: "12345670", should be 9 at character 8
2024-11-25 19:08:07.764 CET [561780][client backend] [pg_regress/isn][28/40:0] STATEMENT: SELECT '12345670'::ISSN;
2024-11-25 19:08:07.764 CET [561780][client backend] [pg_regress/isn][28/41:0] ERROR: invalid check digit for ISBN number: "9780123456780", should be 6 at character 8
2024-11-25 19:08:07.764 CET [561780][client backend] [pg_regress/isn][28/41:0] STATEMENT: SELECT '9780123456780'::ISBN;
2024-11-25 19:08:07.764 CET [561780][client backend] [pg_regress/isn][28/42:0] ERROR: invalid check digit for ISBN number: "9791234567890", should be 6 at character 8
2024-11-25 19:08:07.764 CET [561780][client backend] [pg_regress/isn][28/42:0] STATEMENT: SELECT '9791234567890'::ISBN13;
2024-11-25 19:08:07.764 CET [561780][client backend] [pg_regress/isn][28/43:0] ERROR: invalid check digit for UPC number: "0123456789010", should be 2 at character 8
2024-11-25 19:08:07.764 CET [561780][client backend] [pg_regress/isn][28/43:0] STATEMENT: SELECT '0123456789010'::UPC;
2024-11-25 19:08:07.764 CET [561780][client backend] [pg_regress/isn][28/44:0] ERROR: invalid check digit for EAN13 number: "1234567890120", should be 8 at character 8
2024-11-25 19:08:07.764 CET [561780][client backend] [pg_regress/isn][28/44:0] STATEMENT: SELECT '1234567890120'::EAN13;
2024-11-25 19:08:07.764 CET [561780][client backend] [pg_regress/isn][28/45:0] ERROR: cannot cast ISMN to ISBN for number: "9790123456785" at character 8
2024-11-25 19:08:07.764 CET [561780][client backend] [pg_regress/isn][28/45:0] STATEMENT: SELECT '9790123456785'::ISBN;
2024-11-25 19:08:07.765 CET [561780][client backend] [pg_regress/isn][28/46:0] ERROR: cannot cast ISSN to ISBN for number: "9771234567898" at character 8
2024-11-25 19:08:07.765 CET [561780][client backend] [pg_regress/isn][28/46:0] STATEMENT: SELECT '9771234567898'::ISBN;
2024-11-25 19:08:07.765 CET [561780][client backend] [pg_regress/isn][28/47:0] ERROR: cannot cast UPC to ISBN for number: "0123456789012" at character 8
2024-11-25 19:08:07.765 CET [561780][client backend] [pg_regress/isn][28/47:0] STATEMENT: SELECT '0123456789012'::ISBN;
2024-11-25 19:08:07.765 CET [561780][client backend] [pg_regress/isn][28/48:0] ERROR: cannot cast ISMN to ISBN for number: "9790123456785" at character 8
2024-11-25 19:08:07.765 CET [561780][client backend] [pg_regress/isn][28/48:0] STATEMENT: SELECT '9790123456785'::ISBN13;
2024-11-25 19:08:07.765 CET [561780][client backend] [pg_regress/isn][28/49:0] ERROR: cannot cast ISSN to ISBN for number: "9771234567898" at character 8
2024-11-25 19:08:07.765 CET [561780][client backend] [pg_regress/isn][28/49:0] STATEMENT: SELECT '9771234567898'::ISBN13;
2024-11-25 19:08:07.765 CET [561780][client backend] [pg_regress/isn][28/50:0] ERROR: cannot cast UPC to ISBN for number: "0123456789012" at character 8
2024-11-25 19:08:07.765 CET [561780][client backend] [pg_regress/isn][28/50:0] STATEMENT: SELECT '0123456789012'::ISBN13;
2024-11-25 19:08:07.765 CET [561780][client backend] [pg_regress/isn][28/51:0] ERROR: cannot cast ISBN to ISMN for number: "9780123456786" at character 8
2024-11-25 19:08:07.765 CET [561780][client backend] [pg_regress/isn][28/51:0] STATEMENT: SELECT '9780123456786'::ISMN;
2024-11-25 19:08:07.765 CET [561780][client backend] [pg_regress/isn][28/52:0] ERROR: cannot cast ISSN to ISMN for number: "9771234567898" at character 8
2024-11-25 19:08:07.765 CET [561780][client backend] [pg_regress/isn][28/52:0] STATEMENT: SELECT '9771234567898'::ISMN;
2024-11-25 19:08:07.765 CET [561780][client backend] [pg_regress/isn][28/53:0] ERROR: cannot cast ISBN to ISMN for number: "9791234567896" at character 8
2024-11-25 19:08:07.765 CET [561780][client backend] [pg_regress/isn][28/53:0] STATEMENT: SELECT '9791234567896'::ISMN;
2024-11-25 19:08:07.765 CET [561780][client backend] [pg_regress/isn][28/54:0] ERROR: cannot cast UPC to ISMN for number: "0123456789012" at character 8
2024-11-25 19:08:07.765 CET [561780][client backend] [pg_regress/isn][28/54:0] STATEMENT: SELECT '0123456789012'::ISMN;
2024-11-25 19:08:07.765 CET [561780][client backend] [pg_regress/isn][28/55:0] ERROR: cannot cast ISBN to ISSN for number: "9780123456786" at character 8
2024-11-25 19:08:07.765 CET [561780][client backend] [pg_regress/isn][28/55:0] STATEMENT: SELECT '9780123456786'::ISSN;
2024-11-25 19:08:07.765 CET [561780][client backend] [pg_regress/isn][28/56:0] ERROR: cannot cast ISMN to ISSN for number: "9790123456785" at character 8
2024-11-25 19:08:07.765 CET [561780][client backend] [pg_regress/isn][28/56:0] STATEMENT: SELECT '9790123456785'::ISSN;
2024-11-25 19:08:07.766 CET [561780][client backend] [pg_regress/isn][28/57:0] ERROR: cannot cast ISBN to ISSN for number: "9791234567896" at character 8
2024-11-25 19:08:07.766 CET [561780][client backend] [pg_regress/isn][28/57:0] STATEMENT: SELECT '9791234567896'::ISSN;
2024-11-25 19:08:07.766 CET [561788][client backend] [pg_regress/lo][:0] LOG: disconnection: session time: 0:00:00.017 user=nkey database=regression_lo host=[local]
2024-11-25 19:08:07.766 CET [561780][client backend] [pg_regress/isn][28/58:0] ERROR: cannot cast UPC to ISSN for number: "0123456789012" at character 8
2024-11-25 19:08:07.766 CET [561780][client backend] [pg_regress/isn][28/58:0] STATEMENT: SELECT '0123456789012'::ISSN;
2024-11-25 19:08:07.766 CET [561780][client backend] [pg_regress/isn][28/59:0] ERROR: cannot cast ISBN to UPC for number: "9780123456786" at character 8
2024-11-25 19:08:07.766 CET [561780][client backend] [pg_regress/isn][28/59:0] STATEMENT: SELECT '9780123456786'::UPC;
2024-11-25 19:08:07.766 CET [561780][client backend] [pg_regress/isn][28/60:0] ERROR: cannot cast ISSN to UPC for number: "9771234567898" at character 8
2024-11-25 19:08:07.766 CET [561780][client backend] [pg_regress/isn][28/60:0] STATEMENT: SELECT '9771234567898'::UPC;
2024-11-25 19:08:07.766 CET [561780][client backend] [pg_regress/isn][28/61:0] ERROR: cannot cast ISMN to UPC for number: "9790123456785" at character 8
2024-11-25 19:08:07.766 CET [561780][client backend] [pg_regress/isn][28/61:0] STATEMENT: SELECT '9790123456785'::UPC;
2024-11-25 19:08:07.766 CET [561780][client backend] [pg_regress/isn][28/62:0] ERROR: cannot cast ISBN to UPC for number: "9791234567896" at character 8
2024-11-25 19:08:07.766 CET [561780][client backend] [pg_regress/isn][28/62:0] STATEMENT: SELECT '9791234567896'::UPC;
2024-11-25 19:08:07.766 CET [561780][client backend] [pg_regress/isn][28/63:0] ERROR: invalid input syntax for EAN13 number: "postgresql..." at character 8
2024-11-25 19:08:07.766 CET [561780][client backend] [pg_regress/isn][28/63:0] STATEMENT: SELECT 'postgresql...'::EAN13;
2024-11-25 19:08:07.766 CET [561780][client backend] [pg_regress/isn][28/64:0] ERROR: invalid input syntax for ISBN number: "postgresql..." at character 8
2024-11-25 19:08:07.766 CET [561780][client backend] [pg_regress/isn][28/64:0] STATEMENT: SELECT 'postgresql...'::ISBN;
2024-11-25 19:08:07.766 CET [561780][client backend] [pg_regress/isn][28/65:0] ERROR: cannot cast type bigint to ean13 at character 21
2024-11-25 19:08:07.766 CET [561780][client backend] [pg_regress/isn][28/65:0] STATEMENT: SELECT 9780123456786::EAN13;
2024-11-25 19:08:07.766 CET [561780][client backend] [pg_regress/isn][28/66:0] ERROR: cannot cast type bigint to isbn at character 21
2024-11-25 19:08:07.766 CET [561780][client backend] [pg_regress/isn][28/66:0] STATEMENT: SELECT 9780123456786::ISBN;
2024-11-25 19:08:07.783 CET [561776][client backend] [pg_regress/hstore][33/267:527795] ERROR: value 0 out of bounds for option "siglen"
2024-11-25 19:08:07.783 CET [561776][client backend] [pg_regress/hstore][33/267:527795] DETAIL: Valid values are between "1" and "2024".
2024-11-25 19:08:07.783 CET [561776][client backend] [pg_regress/hstore][33/267:527795] STATEMENT: create index hidx on testhstore using gist(h gist_hstore_ops(siglen=0));
2024-11-25 19:08:07.784 CET [561776][client backend] [pg_regress/hstore][33/268:527796] ERROR: value 2025 out of bounds for option "siglen"
2024-11-25 19:08:07.784 CET [561776][client backend] [pg_regress/hstore][33/268:527796] DETAIL: Valid values are between "1" and "2024".
2024-11-25 19:08:07.784 CET [561776][client backend] [pg_regress/hstore][33/268:527796] STATEMENT: create index hidx on testhstore using gist(h gist_hstore_ops(siglen=2025));
2024-11-25 19:08:07.797 CET [561676][autovacuum worker] LOG: automatic analyze of table "regression.pg_catalog.pg_attribute"
avg read rate: 5.804 MB/s, avg write rate: 7.366 MB/s
buffer usage: 512 hits, 26 reads, 33 dirtied
WAL usage: 107 records, 28 full page images, 213208 bytes
system usage: CPU: user: 0.02 s, system: 0.00 s, elapsed: 0.03 s
2024-11-25 19:08:07.807 CET [561676][autovacuum worker] LOG: automatic analyze of table "regression.pg_catalog.pg_class"
avg read rate: 0.781 MB/s, avg write rate: 7.812 MB/s
buffer usage: 586 hits, 1 reads, 10 dirtied
WAL usage: 112 records, 7 full page images, 54916 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:07.808 CET [561676][autovacuum worker] LOG: automatic analyze of table "regression.pg_catalog.pg_enum"
avg read rate: 0.000 MB/s, avg write rate: 15.625 MB/s
buffer usage: 87 hits, 0 reads, 2 dirtied
WAL usage: 12 records, 2 full page images, 18457 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:07.808 CET [561795][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.810 CET [561795][client backend] [[unknown]][30/23:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.811 CET [561795][client backend] [[unknown]][30/23:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:07.814 CET [561676][autovacuum worker] LOG: automatic vacuum of table "regression.pg_catalog.pg_depend": index scans: 1
pages: 0 removed, 22 remain, 22 scanned (100.00% of total)
tuples: 216 removed, 2159 remain, 37 are dead but not yet removable
removable cutoff: 527672, which was 143 XIDs old when operation ended
new relfrozenxid: 527440, which is 526706 XIDs ahead of previous value
new relminmxid: 2899, which is 2898 MXIDs ahead of previous value
frozen: 8 pages from table (36.36% of total) had 332 tuples frozen
index scan needed: 9 pages from table (40.91% of total) had 387 dead item identifiers removed
index "pg_depend_depender_index": pages: 14 in total, 0 newly deleted, 0 currently deleted, 0 reusable
index "pg_depend_reference_index": pages: 11 in total, 0 newly deleted, 0 currently deleted, 0 reusable
avg read rate: 21.634 MB/s, avg write rate: 22.907 MB/s
buffer usage: 125 hits, 17 reads, 18 dirtied
WAL usage: 56 records, 17 full page images, 100166 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:07.819 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:07.821 CET [561676][autovacuum worker] LOG: automatic analyze of table "regression.pg_catalog.pg_depend"
avg read rate: 1.116 MB/s, avg write rate: 2.232 MB/s
buffer usage: 135 hits, 1 reads, 2 dirtied
WAL usage: 23 records, 4 full page images, 31625 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:07.822 CET [561676][autovacuum worker] LOG: automatic analyze of table "regression.pg_catalog.pg_database"
avg read rate: 7.812 MB/s, avg write rate: 15.625 MB/s
buffer usage: 223 hits, 2 reads, 4 dirtied
WAL usage: 55 records, 6 full page images, 52247 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:07.823 CET [561676][autovacuum worker] LOG: automatic vacuum of table "regression.pg_catalog.pg_db_role_setting": index scans: 1
pages: 0 removed, 6 remain, 6 scanned (100.00% of total)
tuples: 49 removed, 132 remain, 65 are dead but not yet removable
removable cutoff: 526076, which was 1746 XIDs old when operation ended
new relfrozenxid: 525686, which is 524952 XIDs ahead of previous value
new relminmxid: 2899, which is 2898 MXIDs ahead of previous value
frozen: 0 pages from table (0.00% of total) had 0 tuples frozen
index scan needed: 6 pages from table (100.00% of total) had 9 dead item identifiers removed
index "pg_db_role_setting_databaseid_rol_index": pages: 2 in total, 0 newly deleted, 0 currently deleted, 0 reusable
avg read rate: 0.000 MB/s, avg write rate: 191.886 MB/s
buffer usage: 45 hits, 0 reads, 7 dirtied
WAL usage: 18 records, 10 full page images, 49295 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:07.825 CET [561676][autovacuum worker] LOG: automatic analyze of table "regression.pg_catalog.pg_db_role_setting"
avg read rate: 0.000 MB/s, avg write rate: 0.000 MB/s
buffer usage: 52 hits, 0 reads, 0 dirtied
WAL usage: 7 records, 0 full page images, 2114 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:07.826 CET [561676][autovacuum worker] LOG: automatic vacuum of table "regression.pg_catalog.pg_shdepend": index scans: 1
pages: 0 removed, 2 remain, 2 scanned (100.00% of total)
tuples: 49 removed, 29 remain, 21 are dead but not yet removable
removable cutoff: 526076, which was 1747 XIDs old when operation ended
new relfrozenxid: 526076, which is 525342 XIDs ahead of previous value
new relminmxid: 2899, which is 2898 MXIDs ahead of previous value
frozen: 0 pages from table (0.00% of total) had 0 tuples frozen
index scan needed: 2 pages from table (100.00% of total) had 49 dead item identifiers removed
index "pg_shdepend_depender_index": pages: 8 in total, 0 newly deleted, 4 currently deleted, 4 reusable
index "pg_shdepend_reference_index": pages: 2 in total, 0 newly deleted, 0 currently deleted, 0 reusable
avg read rate: 142.369 MB/s, avg write rate: 160.165 MB/s
buffer usage: 80 hits, 8 reads, 9 dirtied
WAL usage: 14 records, 7 full page images, 32238 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:07.830 CET [561676][autovacuum worker] LOG: automatic analyze of table "regression.pg_catalog.pg_shdepend"
avg read rate: 0.000 MB/s, avg write rate: 5.859 MB/s
buffer usage: 97 hits, 0 reads, 3 dirtied
WAL usage: 17 records, 1 full page images, 10741 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:07.831 CET [561676][autovacuum worker] LOG: automatic analyze of table "regression.public.num_exp_add"
avg read rate: 0.000 MB/s, avg write rate: 39.062 MB/s
buffer usage: 121 hits, 0 reads, 5 dirtied
WAL usage: 12 records, 6 full page images, 42065 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:07.831 CET [561676][autovacuum worker] LOG: automatic analyze of table "regression.public.num_exp_sub"
avg read rate: 0.000 MB/s, avg write rate: 0.000 MB/s
buffer usage: 61 hits, 0 reads, 0 dirtied
WAL usage: 9 records, 0 full page images, 2358 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:07.832 CET [561676][autovacuum worker] LOG: automatic analyze of table "regression.public.num_exp_div"
avg read rate: 0.000 MB/s, avg write rate: 0.000 MB/s
buffer usage: 61 hits, 0 reads, 0 dirtied
WAL usage: 9 records, 0 full page images, 2022 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:07.832 CET [561780][client backend] [pg_regress/isn][:0] LOG: disconnection: session time: 0:00:00.197 user=nkey database=regression_isn host=[local]
2024-11-25 19:08:07.832 CET [561676][autovacuum worker] LOG: automatic analyze of table "regression.public.num_exp_mul"
avg read rate: 0.000 MB/s, avg write rate: 0.000 MB/s
buffer usage: 61 hits, 0 reads, 0 dirtied
WAL usage: 9 records, 0 full page images, 1994 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:07.833 CET [561676][autovacuum worker] LOG: automatic vacuum of table "regression.public.num_result": index scans: 0
pages: 0 removed, 5 remain, 5 scanned (100.00% of total)
tuples: 786 removed, 8 remain, 0 are dead but not yet removable
removable cutoff: 527672, which was 160 XIDs old when operation ended
new relfrozenxid: 527672, which is 1596 XIDs ahead of previous value
frozen: 1 pages from table (20.00% of total) had 8 tuples frozen
index scan not needed: 0 pages from table (0.00% of total) had 0 dead item identifiers removed
avg read rate: 26.755 MB/s, avg write rate: 267.551 MB/s
buffer usage: 24 hits, 1 reads, 10 dirtied
WAL usage: 14 records, 10 full page images, 42459 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:07.836 CET [561676][autovacuum worker] LOG: automatic analyze of table "regression.public.num_result"
avg read rate: 0.000 MB/s, avg write rate: 2.604 MB/s
buffer usage: 38 hits, 0 reads, 1 dirtied
WAL usage: 6 records, 0 full page images, 974 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:07.850 CET [561493][client backend] [isolation/receipt-report/s3][41/87:0] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:07.850 CET [561493][client backend] [isolation/receipt-report/s3][41/87:0] DETAIL: Reason code: Canceled on conflict out to pivot 527838, during read.
2024-11-25 19:08:07.850 CET [561493][client backend] [isolation/receipt-report/s3][41/87:0] HINT: The transaction might succeed if retried.
2024-11-25 19:08:07.850 CET [561493][client backend] [isolation/receipt-report/s3][41/87:0] STATEMENT: SELECT * FROM receipt WHERE deposit_date = DATE '2008-12-22';
2024-11-25 19:08:07.851 CET [561023][checkpointer] LOG: checkpoint complete: wrote 2232 buffers (13.6%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 1 recycled; write=0.030 s, sync=0.001 s, total=0.032 s; sync files=0, longest=0.000 s, average=0.000 s; distance=15002 kB, estimate=16629 kB; lsn=4/45F646F8, redo lsn=4/45E50D08
2024-11-25 19:08:07.861 CET [561753][client backend] [pg_regress/timestamptz][92/62:0] ERROR: time zone "america/does_not_exist" not recognized at character 37
2024-11-25 19:08:07.861 CET [561753][client backend] [pg_regress/timestamptz][92/62:0] STATEMENT: INSERT INTO TIMESTAMPTZ_TBL VALUES ('19970710 173201 America/Does_not_exist');
2024-11-25 19:08:07.861 CET [561489][client backend] [isolation/receipt-report/s1][37/80:527877] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:07.861 CET [561489][client backend] [isolation/receipt-report/s1][37/80:527877] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:07.861 CET [561489][client backend] [isolation/receipt-report/s1][37/80:527877] HINT: The transaction might succeed if retried.
2024-11-25 19:08:07.861 CET [561489][client backend] [isolation/receipt-report/s1][37/80:527877] STATEMENT: COMMIT;
2024-11-25 19:08:07.861 CET [561753][client backend] [pg_regress/timestamptz][92/63:0] ERROR: time zone "America/Does_not_exist" not recognized
2024-11-25 19:08:07.861 CET [561753][client backend] [pg_regress/timestamptz][92/63:0] STATEMENT: SELECT '19970710 173201' AT TIME ZONE 'America/Does_not_exist';
2024-11-25 19:08:07.863 CET [561407][client backend] [pg_regress/plpgsql_trap][0/22:0] ERROR: end of function
2024-11-25 19:08:07.863 CET [561407][client backend] [pg_regress/plpgsql_trap][0/22:0] CONTEXT: PL/pgSQL function trap_timeout() line 15 at RAISE
2024-11-25 19:08:07.863 CET [561407][client backend] [pg_regress/plpgsql_trap][0/22:0] STATEMENT: select trap_timeout();
2024-11-25 19:08:07.873 CET [561802][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.873 CET [561802][client backend] [[unknown]][34/22:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.873 CET [561802][client backend] [[unknown]][34/22:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:07.876 CET [561753][client backend] [pg_regress/timestamptz][92/97:0] ERROR: date/time field value out of range: "Feb 29 17:32:01 1997" at character 37
2024-11-25 19:08:07.876 CET [561753][client backend] [pg_regress/timestamptz][92/97:0] STATEMENT: INSERT INTO TIMESTAMPTZ_TBL VALUES ('Feb 29 17:32:01 1997');
2024-11-25 19:08:07.877 CET [561753][client backend] [pg_regress/timestamptz][92/105:0] ERROR: time zone displacement out of range: "Feb 16 17:32:01 -0097" at character 37
2024-11-25 19:08:07.877 CET [561753][client backend] [pg_regress/timestamptz][92/105:0] STATEMENT: INSERT INTO TIMESTAMPTZ_TBL VALUES ('Feb 16 17:32:01 -0097');
2024-11-25 19:08:07.878 CET [561753][client backend] [pg_regress/timestamptz][92/106:0] ERROR: timestamp out of range: "Feb 16 17:32:01 5097 BC" at character 37
2024-11-25 19:08:07.878 CET [561753][client backend] [pg_regress/timestamptz][92/106:0] STATEMENT: INSERT INTO TIMESTAMPTZ_TBL VALUES ('Feb 16 17:32:01 5097 BC');
2024-11-25 19:08:07.878 CET [561407][client backend] [pg_regress/plpgsql_trap][0/29:527919] ERROR: insert or update on table "leaf" violates foreign key constraint "leaf_f1_fkey"
2024-11-25 19:08:07.878 CET [561407][client backend] [pg_regress/plpgsql_trap][0/29:527919] DETAIL: Key (f1)=(2) is not present in table "root".
2024-11-25 19:08:07.878 CET [561407][client backend] [pg_regress/plpgsql_trap][0/29:527919] STATEMENT: insert into leaf values(2);
2024-11-25 19:08:07.878 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:07.879 CET [561753][client backend] [pg_regress/timestamptz][92/116:0] ERROR: timestamp out of range: "4714-11-23 23:59:59+00 BC" at character 8
2024-11-25 19:08:07.879 CET [561753][client backend] [pg_regress/timestamptz][92/116:0] STATEMENT: SELECT '4714-11-23 23:59:59+00 BC'::timestamptz;
2024-11-25 19:08:07.880 CET [561753][client backend] [pg_regress/timestamptz][92/119:0] ERROR: timestamp out of range: "294277-01-01 00:00:00+00" at character 8
2024-11-25 19:08:07.880 CET [561753][client backend] [pg_regress/timestamptz][92/119:0] STATEMENT: SELECT '294277-01-01 00:00:00+00'::timestamptz;
2024-11-25 19:08:07.880 CET [561753][client backend] [pg_regress/timestamptz][92/120:0] ERROR: timestamp out of range: "294277-12-31 16:00:00-08" at character 8
2024-11-25 19:08:07.880 CET [561753][client backend] [pg_regress/timestamptz][92/120:0] STATEMENT: SELECT '294277-12-31 16:00:00-08'::timestamptz;
2024-11-25 19:08:07.881 CET [561795][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.073 user=nkey database=postgres host=[local]
2024-11-25 19:08:07.883 CET [561023][checkpointer] LOG: checkpoint complete: wrote 295 buffers (1.8%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.005 s, sync=0.001 s, total=0.006 s; sync files=0, longest=0.000 s, average=0.000 s; distance=1491 kB, estimate=15116 kB; lsn=4/46024A18, redo lsn=4/45FC5B50
2024-11-25 19:08:07.884 CET [561805][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.885 CET [561805][client backend] [[unknown]][27/155:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.885 CET [561805][client backend] [[unknown]][27/155:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:07.885 CET [561753][client backend] [pg_regress/timestamptz][92/136:0] ERROR: timestamps cannot be binned into intervals containing months or years
2024-11-25 19:08:07.885 CET [561753][client backend] [pg_regress/timestamptz][92/136:0] STATEMENT: SELECT date_bin('5 months'::interval, timestamp with time zone '2020-02-01 01:01:01+00', timestamp with time zone '2001-01-01+00');
2024-11-25 19:08:07.886 CET [561753][client backend] [pg_regress/timestamptz][92/137:0] ERROR: timestamps cannot be binned into intervals containing months or years
2024-11-25 19:08:07.886 CET [561753][client backend] [pg_regress/timestamptz][92/137:0] STATEMENT: SELECT date_bin('5 years'::interval, timestamp with time zone '2020-02-01 01:01:01+00', timestamp with time zone '2001-01-01+00');
2024-11-25 19:08:07.886 CET [561489][client backend] [isolation/receipt-report/s1][37/81:527929] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:07.886 CET [561489][client backend] [isolation/receipt-report/s1][37/81:527929] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:07.886 CET [561489][client backend] [isolation/receipt-report/s1][37/81:527929] HINT: The transaction might succeed if retried.
2024-11-25 19:08:07.886 CET [561489][client backend] [isolation/receipt-report/s1][37/81:527929] STATEMENT: COMMIT;
2024-11-25 19:08:07.886 CET [561407][client backend] [pg_regress/plpgsql_trap][0/34:527927] ERROR: insert or update on table "leaf" violates foreign key constraint "leaf_f1_fkey"
2024-11-25 19:08:07.886 CET [561407][client backend] [pg_regress/plpgsql_trap][0/34:527927] DETAIL: Key (f1)=(2) is not present in table "root".
2024-11-25 19:08:07.886 CET [561407][client backend] [pg_regress/plpgsql_trap][0/34:527927] STATEMENT: set constraints all immediate;
2024-11-25 19:08:07.887 CET [561407][client backend] [pg_regress/plpgsql_trap][0/34:527927] ERROR: insert or update on table "leaf" violates foreign key constraint "leaf_f1_fkey"
2024-11-25 19:08:07.887 CET [561407][client backend] [pg_regress/plpgsql_trap][0/34:527927] DETAIL: Key (f1)=(2) is not present in table "root".
2024-11-25 19:08:07.887 CET [561407][client backend] [pg_regress/plpgsql_trap][0/34:527927] STATEMENT: commit;
2024-11-25 19:08:07.887 CET [561753][client backend] [pg_regress/timestamptz][92/138:0] ERROR: stride must be greater than zero
2024-11-25 19:08:07.887 CET [561753][client backend] [pg_regress/timestamptz][92/138:0] STATEMENT: SELECT date_bin('0 days'::interval, timestamp with time zone '1970-01-01 01:00:00+00' , timestamp with time zone '1970-01-01 00:00:00+00');
2024-11-25 19:08:07.887 CET [561753][client backend] [pg_regress/timestamptz][92/139:0] ERROR: stride must be greater than zero
2024-11-25 19:08:07.887 CET [561753][client backend] [pg_regress/timestamptz][92/139:0] STATEMENT: SELECT date_bin('-2 days'::interval, timestamp with time zone '1970-01-01 01:00:00+00' , timestamp with time zone '1970-01-01 00:00:00+00');
2024-11-25 19:08:07.887 CET [561753][client backend] [pg_regress/timestamptz][92/140:0] ERROR: interval out of range
2024-11-25 19:08:07.887 CET [561753][client backend] [pg_regress/timestamptz][92/140:0] STATEMENT: select date_bin('15 minutes'::interval, timestamptz '294276-12-30', timestamptz '4000-12-20 BC');
2024-11-25 19:08:07.888 CET [561753][client backend] [pg_regress/timestamptz][92/141:0] ERROR: interval out of range
2024-11-25 19:08:07.888 CET [561753][client backend] [pg_regress/timestamptz][92/141:0] STATEMENT: select date_bin('200000000 days'::interval, '2024-02-01'::timestamptz, '2024-01-01'::timestamptz);
2024-11-25 19:08:07.888 CET [561753][client backend] [pg_regress/timestamptz][92/142:0] ERROR: timestamp out of range
2024-11-25 19:08:07.888 CET [561753][client backend] [pg_regress/timestamptz][92/142:0] STATEMENT: select date_bin('365000 days'::interval, '4400-01-01 BC'::timestamptz, '4000-01-01 BC'::timestamptz);
2024-11-25 19:08:07.890 CET [561407][client backend] [pg_regress/plpgsql_trap][:0] LOG: disconnection: session time: 0:00:01.056 user=nkey database=regression_plpgsql host=[local]
2024-11-25 19:08:07.894 CET [561763][client backend] [pg_regress/timestamp][14/186:0] ERROR: time zone "america/does_not_exist" not recognized at character 35
2024-11-25 19:08:07.894 CET [561763][client backend] [pg_regress/timestamp][14/186:0] STATEMENT: INSERT INTO TIMESTAMP_TBL VALUES ('19970710 173201 America/Does_not_exist');
2024-11-25 19:08:07.895 CET [561753][client backend] [pg_regress/timestamptz][92/154:0] ERROR: interval out of range
2024-11-25 19:08:07.895 CET [561753][client backend] [pg_regress/timestamptz][92/154:0] STATEMENT: SELECT timestamptz '294276-12-31 23:59:59 UTC' - timestamptz '1999-12-23 19:59:04.224192 UTC' AS overflows;
2024-11-25 19:08:07.896 CET [561802][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.024 user=nkey database=postgres host=[local]
2024-11-25 19:08:07.898 CET [561765][client backend] [pg_regress/polygon][:0] LOG: disconnection: session time: 0:00:00.343 user=nkey database=regression host=[local]
2024-11-25 19:08:07.898 CET [561811][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.899 CET [561811][client backend] [[unknown]][35/31:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.899 CET [561811][client backend] [[unknown]][35/31:0] LOG: connection authorized: user=nkey database=regression_plpgsql application_name=pg_regress/plpgsql_trigger
2024-11-25 19:08:07.899 CET [561763][client backend] [pg_regress/timestamp][14/216:0] ERROR: date/time field value out of range: "Feb 29 17:32:01 1997" at character 35
2024-11-25 19:08:07.899 CET [561763][client backend] [pg_regress/timestamp][14/216:0] STATEMENT: INSERT INTO TIMESTAMP_TBL VALUES ('Feb 29 17:32:01 1997');
2024-11-25 19:08:07.901 CET [561763][client backend] [pg_regress/timestamp][14/224:0] ERROR: time zone displacement out of range: "Feb 16 17:32:01 -0097" at character 35
2024-11-25 19:08:07.901 CET [561763][client backend] [pg_regress/timestamp][14/224:0] STATEMENT: INSERT INTO TIMESTAMP_TBL VALUES ('Feb 16 17:32:01 -0097');
2024-11-25 19:08:07.901 CET [561812][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.901 CET [561763][client backend] [pg_regress/timestamp][14/225:0] ERROR: timestamp out of range: "Feb 16 17:32:01 5097 BC" at character 35
2024-11-25 19:08:07.901 CET [561763][client backend] [pg_regress/timestamp][14/225:0] STATEMENT: INSERT INTO TIMESTAMP_TBL VALUES ('Feb 16 17:32:01 5097 BC');
2024-11-25 19:08:07.901 CET [561812][client backend] [[unknown]][44/26:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.901 CET [561812][client backend] [[unknown]][44/26:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:07.901 CET [561763][client backend] [pg_regress/timestamp][14/228:0] ERROR: timestamp out of range: "4714-11-23 23:59:59 BC" at character 8
2024-11-25 19:08:07.901 CET [561763][client backend] [pg_regress/timestamp][14/228:0] STATEMENT: SELECT '4714-11-23 23:59:59 BC'::timestamp;
2024-11-25 19:08:07.902 CET [561763][client backend] [pg_regress/timestamp][14/230:0] ERROR: timestamp out of range: "294277-01-01 00:00:00" at character 8
2024-11-25 19:08:07.902 CET [561763][client backend] [pg_regress/timestamp][14/230:0] STATEMENT: SELECT '294277-01-01 00:00:00'::timestamp;
2024-11-25 19:08:07.905 CET [561751][client backend] [pg_regress/box][:0] LOG: disconnection: session time: 0:00:00.364 user=nkey database=regression host=[local]
2024-11-25 19:08:07.907 CET [561811][client backend] [pg_regress/plpgsql_trigger][:0] LOG: disconnection: session time: 0:00:00.008 user=nkey database=regression_plpgsql host=[local]
2024-11-25 19:08:07.907 CET [561763][client backend] [pg_regress/timestamp][14/246:0] ERROR: timestamps cannot be binned into intervals containing months or years
2024-11-25 19:08:07.907 CET [561763][client backend] [pg_regress/timestamp][14/246:0] STATEMENT: SELECT date_bin('5 months'::interval, timestamp '2020-02-01 01:01:01', timestamp '2001-01-01');
2024-11-25 19:08:07.907 CET [561763][client backend] [pg_regress/timestamp][14/247:0] ERROR: timestamps cannot be binned into intervals containing months or years
2024-11-25 19:08:07.907 CET [561763][client backend] [pg_regress/timestamp][14/247:0] STATEMENT: SELECT date_bin('5 years'::interval, timestamp '2020-02-01 01:01:01', timestamp '2001-01-01');
2024-11-25 19:08:07.908 CET [561763][client backend] [pg_regress/timestamp][14/248:0] ERROR: stride must be greater than zero
2024-11-25 19:08:07.908 CET [561763][client backend] [pg_regress/timestamp][14/248:0] STATEMENT: SELECT date_bin('0 days'::interval, timestamp '1970-01-01 01:00:00' , timestamp '1970-01-01 00:00:00');
2024-11-25 19:08:07.908 CET [561763][client backend] [pg_regress/timestamp][14/249:0] ERROR: stride must be greater than zero
2024-11-25 19:08:07.908 CET [561763][client backend] [pg_regress/timestamp][14/249:0] STATEMENT: SELECT date_bin('-2 days'::interval, timestamp '1970-01-01 01:00:00' , timestamp '1970-01-01 00:00:00');
2024-11-25 19:08:07.908 CET [561763][client backend] [pg_regress/timestamp][14/250:0] ERROR: interval out of range
2024-11-25 19:08:07.908 CET [561763][client backend] [pg_regress/timestamp][14/250:0] STATEMENT: select date_bin('15 minutes'::interval, timestamp '294276-12-30', timestamp '4000-12-20 BC');
2024-11-25 19:08:07.908 CET [561763][client backend] [pg_regress/timestamp][14/251:0] ERROR: interval out of range
2024-11-25 19:08:07.908 CET [561763][client backend] [pg_regress/timestamp][14/251:0] STATEMENT: select date_bin('200000000 days'::interval, '2024-02-01'::timestamp, '2024-01-01'::timestamp);
2024-11-25 19:08:07.908 CET [561763][client backend] [pg_regress/timestamp][14/252:0] ERROR: timestamp out of range
2024-11-25 19:08:07.908 CET [561763][client backend] [pg_regress/timestamp][14/252:0] STATEMENT: select date_bin('365000 days'::interval, '4400-01-01 BC'::timestamp, '4000-01-01 BC'::timestamp);
2024-11-25 19:08:07.912 CET [561805][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.028 user=nkey database=postgres host=[local]
2024-11-25 19:08:07.916 CET [561816][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.916 CET [561816][client backend] [[unknown]][38/10:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.916 CET [561816][client backend] [[unknown]][38/10:0] LOG: connection authorized: user=nkey database=regression_ltree application_name=pg_regress/ltree
2024-11-25 19:08:07.918 CET [561818][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.919 CET [561753][client backend] [pg_regress/timestamptz][92/219:0] ERROR: invalid input syntax for type numeric time zone: "2"
2024-11-25 19:08:07.919 CET [561753][client backend] [pg_regress/timestamptz][92/219:0] HINT: Numeric time zones must have "-" or "+" as first character.
2024-11-25 19:08:07.919 CET [561753][client backend] [pg_regress/timestamptz][92/219:0] STATEMENT: SELECT make_timestamptz(1973, 07, 15, 08, 15, 55.33, '2');
2024-11-25 19:08:07.919 CET [561753][client backend] [pg_regress/timestamptz][92/220:0] ERROR: numeric time zone "+16" out of range
2024-11-25 19:08:07.919 CET [561753][client backend] [pg_regress/timestamptz][92/220:0] STATEMENT: SELECT make_timestamptz(2014, 12, 10, 10, 10, 10, '+16');
2024-11-25 19:08:07.919 CET [561753][client backend] [pg_regress/timestamptz][92/221:0] ERROR: numeric time zone "-16" out of range
2024-11-25 19:08:07.919 CET [561753][client backend] [pg_regress/timestamptz][92/221:0] STATEMENT: SELECT make_timestamptz(2014, 12, 10, 10, 10, 10, '-16');
2024-11-25 19:08:07.919 CET [561818][client backend] [[unknown]][40/7:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.919 CET [561818][client backend] [[unknown]][40/7:0] LOG: connection authorized: user=nkey database=regression_plpgsql application_name=pg_regress/plpgsql_varprops
2024-11-25 19:08:07.919 CET [561763][client backend] [pg_regress/timestamp][14/263:0] ERROR: interval out of range
2024-11-25 19:08:07.919 CET [561763][client backend] [pg_regress/timestamp][14/263:0] STATEMENT: SELECT timestamp '294276-12-31 23:59:59' - timestamp '1999-12-23 19:59:04.224192' AS overflows;
2024-11-25 19:08:07.921 CET [561753][client backend] [pg_regress/timestamptz][92/227:0] ERROR: time zone "Nehwon/Lankhmar" not recognized
2024-11-25 19:08:07.921 CET [561753][client backend] [pg_regress/timestamptz][92/227:0] STATEMENT: SELECT make_timestamptz(1910, 12, 24, 0, 0, 0, 'Nehwon/Lankhmar');
2024-11-25 19:08:07.924 CET [561753][client backend] [pg_regress/timestamptz][92/235:0] ERROR: step size cannot equal zero
2024-11-25 19:08:07.924 CET [561753][client backend] [pg_regress/timestamptz][92/235:0] STATEMENT: select * from generate_series('2020-01-01 00:00'::timestamptz,
'2020-01-02 03:00'::timestamptz,
'0 hour'::interval);
2024-11-25 19:08:07.924 CET [561753][client backend] [pg_regress/timestamptz][92/236:0] ERROR: step size cannot be infinite
2024-11-25 19:08:07.924 CET [561753][client backend] [pg_regress/timestamptz][92/236:0] STATEMENT: select generate_series(timestamptz '1995-08-06 12:12:12', timestamptz '1996-08-06 12:12:12', interval 'infinity');
2024-11-25 19:08:07.924 CET [561753][client backend] [pg_regress/timestamptz][92/237:0] ERROR: step size cannot be infinite
2024-11-25 19:08:07.924 CET [561753][client backend] [pg_regress/timestamptz][92/237:0] STATEMENT: select generate_series(timestamptz '1995-08-06 12:12:12', timestamptz '1996-08-06 12:12:12', interval '-infinity');
2024-11-25 19:08:07.925 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/13:0] ERROR: variable "x" is declared CONSTANT at character 39
2024-11-25 19:08:07.925 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/13:0] STATEMENT: do $$
declare x constant int;
begin
x := 42; -- fail
end$$;
2024-11-25 19:08:07.926 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/14:0] ERROR: variable "x" is declared CONSTANT at character 50
2024-11-25 19:08:07.926 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/14:0] STATEMENT: do $$
declare x constant int; y int;
begin
for x, y in select 1, 2 loop -- fail
end loop;
end$$;
2024-11-25 19:08:07.926 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/15:0] ERROR: variable "x" is declared CONSTANT at character 41
2024-11-25 19:08:07.926 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/15:0] STATEMENT: do $$
declare x constant int[];
begin
x[1] := 42; -- fail
end$$;
2024-11-25 19:08:07.926 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/16:0] ERROR: syntax error at or near "[" at character 53
2024-11-25 19:08:07.926 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/16:0] STATEMENT: do $$
declare x constant int[]; y int;
begin
for x[1], y in select 1, 2 loop -- fail (currently, unsupported syntax)
end loop;
end$$;
2024-11-25 19:08:07.926 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/17:0] ERROR: variable "x" is declared CONSTANT at character 46
2024-11-25 19:08:07.926 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/17:0] STATEMENT: do $$
declare x constant var_record;
begin
x.f1 := 42; -- fail
end$$;
2024-11-25 19:08:07.926 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/18:0] ERROR: variable "x" is declared CONSTANT at character 57
2024-11-25 19:08:07.926 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/18:0] STATEMENT: do $$
declare x constant var_record; y int;
begin
for x.f1, y in select 1, 2 loop -- fail
end loop;
end$$;
2024-11-25 19:08:07.927 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/20:0] ERROR: division by zero
2024-11-25 19:08:07.927 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/20:0] CONTEXT: PL/pgSQL expression "1/0"
PL/pgSQL function inline_code_block line 2 during statement block local variable initialization
2024-11-25 19:08:07.927 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/20:0] STATEMENT: do $$
declare x int := 1/0; -- fail
begin
raise notice 'x = %', x;
end$$;
2024-11-25 19:08:07.928 CET [561763][client backend] [pg_regress/timestamp][14/279:0] ERROR: date field value out of range: 0-07-15
2024-11-25 19:08:07.928 CET [561763][client backend] [pg_regress/timestamp][14/279:0] STATEMENT: select make_timestamp(0, 7, 15, 12, 30, 15);
2024-11-25 19:08:07.928 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/24:0] ERROR: variable "x" must have a default value, since it's declared NOT NULL at character 21
2024-11-25 19:08:07.928 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/24:0] STATEMENT: do $$
declare x int not null; -- fail
begin
raise notice 'x = %', x;
end$$;
2024-11-25 19:08:07.929 CET [561763][client backend] [pg_regress/timestamp][14/282:0] ERROR: step size cannot equal zero
2024-11-25 19:08:07.929 CET [561763][client backend] [pg_regress/timestamp][14/282:0] STATEMENT: select * from generate_series('2020-01-01 00:00'::timestamp,
'2020-01-02 03:00'::timestamp,
'0 hour'::interval);
2024-11-25 19:08:07.929 CET [561763][client backend] [pg_regress/timestamp][14/283:0] ERROR: step size cannot be infinite
2024-11-25 19:08:07.929 CET [561763][client backend] [pg_regress/timestamp][14/283:0] STATEMENT: select generate_series(timestamp '1995-08-06 12:12:12', timestamp '1996-08-06 12:12:12', interval 'infinity');
2024-11-25 19:08:07.929 CET [561763][client backend] [pg_regress/timestamp][14/284:0] ERROR: step size cannot be infinite
2024-11-25 19:08:07.929 CET [561763][client backend] [pg_regress/timestamp][14/284:0] STATEMENT: select generate_series(timestamp '1995-08-06 12:12:12', timestamp '1996-08-06 12:12:12', interval '-infinity');
2024-11-25 19:08:07.929 CET [561763][client backend] [pg_regress/timestamp][14/285:0] ERROR: interval out of range
2024-11-25 19:08:07.929 CET [561763][client backend] [pg_regress/timestamp][14/285:0] STATEMENT: select timestamp 'infinity' - timestamp 'infinity';
2024-11-25 19:08:07.929 CET [561768][client backend] [pg_regress/multirangetypes][7/566:0] ERROR: value for domain restrictedmultirange violates check constraint "restrictedmultirange_check"
2024-11-25 19:08:07.929 CET [561768][client backend] [pg_regress/multirangetypes][7/566:0] STATEMENT: select '{[4,50)}'::restrictedmultirange @> 7;
2024-11-25 19:08:07.929 CET [561763][client backend] [pg_regress/timestamp][14/288:0] ERROR: interval out of range
2024-11-25 19:08:07.929 CET [561763][client backend] [pg_regress/timestamp][14/288:0] STATEMENT: select timestamp '-infinity' - timestamp '-infinity';
2024-11-25 19:08:07.930 CET [561812][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.029 user=nkey database=postgres host=[local]
2024-11-25 19:08:07.930 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/25:0] ERROR: null value cannot be assigned to variable "x" declared NOT NULL
2024-11-25 19:08:07.930 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/25:0] CONTEXT: PL/pgSQL function inline_code_block line 5 at assignment
2024-11-25 19:08:07.930 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/25:0] STATEMENT: do $$
declare x int not null := 42;
begin
raise notice 'x = %', x;
x := null; -- fail
end$$;
2024-11-25 19:08:07.930 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/26:0] ERROR: null value cannot be assigned to variable "x" declared NOT NULL
2024-11-25 19:08:07.930 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/26:0] CONTEXT: PL/pgSQL function inline_code_block line 2 during statement block local variable initialization
2024-11-25 19:08:07.930 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/26:0] STATEMENT: do $$
declare x int not null := null; -- fail
begin
raise notice 'x = %', x;
end$$;
2024-11-25 19:08:07.930 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/27:0] ERROR: variable "x" must have a default value, since it's declared NOT NULL at character 24
2024-11-25 19:08:07.930 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/27:0] STATEMENT: do $$
declare x record not null; -- fail
begin
raise notice 'x = %', x;
end$$;
2024-11-25 19:08:07.930 CET [561763][client backend] [pg_regress/timestamp][14/293:0] ERROR: interval out of range
2024-11-25 19:08:07.930 CET [561763][client backend] [pg_regress/timestamp][14/293:0] STATEMENT: select age(timestamp 'infinity', timestamp 'infinity');
2024-11-25 19:08:07.930 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/28:0] ERROR: null value cannot be assigned to variable "x" declared NOT NULL
2024-11-25 19:08:07.930 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/28:0] CONTEXT: PL/pgSQL function inline_code_block line 7 at assignment
2024-11-25 19:08:07.930 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/28:0] STATEMENT: do $$
declare x record not null := row(42);
begin
raise notice 'x = %', x;
x := row(null); -- ok
raise notice 'x = %', x;
x := null; -- fail
end$$;
2024-11-25 19:08:07.931 CET [561763][client backend] [pg_regress/timestamp][14/296:0] ERROR: interval out of range
2024-11-25 19:08:07.931 CET [561763][client backend] [pg_regress/timestamp][14/296:0] STATEMENT: select age(timestamp '-infinity', timestamp '-infinity');
2024-11-25 19:08:07.931 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/29:0] ERROR: null value cannot be assigned to variable "x" declared NOT NULL
2024-11-25 19:08:07.931 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/29:0] CONTEXT: PL/pgSQL function inline_code_block line 2 during statement block local variable initialization
2024-11-25 19:08:07.931 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/29:0] STATEMENT: do $$
declare x record not null := null; -- fail
begin
raise notice 'x = %', x;
end$$;
2024-11-25 19:08:07.931 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/30:0] ERROR: variable "x" must have a default value, since it's declared NOT NULL at character 28
2024-11-25 19:08:07.931 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/30:0] STATEMENT: do $$
declare x var_record not null; -- fail
begin
raise notice 'x = %', x;
end$$;
2024-11-25 19:08:07.932 CET [561763][client backend] [pg_regress/timestamp][:0] LOG: disconnection: session time: 0:00:00.385 user=nkey database=regression host=[local]
2024-11-25 19:08:07.933 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/31:0] ERROR: null value cannot be assigned to variable "x" declared NOT NULL
2024-11-25 19:08:07.933 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/31:0] CONTEXT: PL/pgSQL function inline_code_block line 7 at assignment
2024-11-25 19:08:07.933 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/31:0] STATEMENT: do $$
declare x var_record not null := row(41,42);
begin
raise notice 'x = %', x;
x := row(null,null); -- ok
raise notice 'x = %', x;
x := null; -- fail
end$$;
2024-11-25 19:08:07.933 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/32:0] ERROR: null value cannot be assigned to variable "x" declared NOT NULL
2024-11-25 19:08:07.933 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/32:0] CONTEXT: PL/pgSQL function inline_code_block line 2 during statement block local variable initialization
2024-11-25 19:08:07.933 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/32:0] STATEMENT: do $$
declare x var_record not null := null; -- fail
begin
raise notice 'x = %', x;
end$$;
2024-11-25 19:08:07.933 CET [561820][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.933 CET [561768][client backend] [pg_regress/multirangetypes][7/572:528066] ERROR: type "intmultirange" already exists
2024-11-25 19:08:07.933 CET [561768][client backend] [pg_regress/multirangetypes][7/572:528066] DETAIL: Failed while creating a multirange type for type "intrange".
2024-11-25 19:08:07.933 CET [561768][client backend] [pg_regress/multirangetypes][7/572:528066] HINT: You can manually specify a multirange type name using the "multirange_type_name" attribute.
2024-11-25 19:08:07.933 CET [561768][client backend] [pg_regress/multirangetypes][7/572:528066] STATEMENT: create type intrange as range(subtype=int);
2024-11-25 19:08:07.934 CET [561820][client backend] [[unknown]][42/13:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.934 CET [561820][client backend] [[unknown]][42/13:0] LOG: connection authorized: user=nkey database=regression_pageinspect application_name=pg_regress/page
2024-11-25 19:08:07.934 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/34:0] ERROR: domain int_nn does not allow null values
2024-11-25 19:08:07.934 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/34:0] CONTEXT: PL/pgSQL function inline_code_block line 2 during statement block local variable initialization
2024-11-25 19:08:07.934 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/34:0] STATEMENT: do $$
declare x int_nn; -- fail
begin
raise notice 'x = %', x;
end$$;
2024-11-25 19:08:07.934 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/35:0] ERROR: domain int_nn does not allow null values
2024-11-25 19:08:07.934 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/35:0] CONTEXT: PL/pgSQL function inline_code_block line 2 during statement block local variable initialization
2024-11-25 19:08:07.934 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/35:0] STATEMENT: do $$
declare x int_nn := null; -- fail
begin
raise notice 'x = %', x;
end$$;
2024-11-25 19:08:07.934 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/36:0] ERROR: domain int_nn does not allow null values
2024-11-25 19:08:07.934 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/36:0] CONTEXT: PL/pgSQL function inline_code_block line 5 at assignment
2024-11-25 19:08:07.934 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/36:0] STATEMENT: do $$
declare x int_nn := 42;
begin
raise notice 'x = %', x;
x := null; -- fail
end$$;
2024-11-25 19:08:07.935 CET [561768][client backend] [pg_regress/multirangetypes][7/575:528070] ERROR: type "intr_multirange" already exists
2024-11-25 19:08:07.935 CET [561768][client backend] [pg_regress/multirangetypes][7/575:528070] DETAIL: Failed while creating a multirange type for type "intr".
2024-11-25 19:08:07.935 CET [561768][client backend] [pg_regress/multirangetypes][7/575:528070] HINT: You can manually specify a multirange type name using the "multirange_type_name" attribute.
2024-11-25 19:08:07.935 CET [561768][client backend] [pg_regress/multirangetypes][7/575:528070] STATEMENT: create type intr as range(subtype=int);
2024-11-25 19:08:07.935 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/37:0] ERROR: domain var_record_nn does not allow null values
2024-11-25 19:08:07.935 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/37:0] CONTEXT: PL/pgSQL function inline_code_block line 2 during statement block local variable initialization
2024-11-25 19:08:07.935 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/37:0] STATEMENT: do $$
declare x var_record_nn; -- fail
begin
raise notice 'x = %', x;
end$$;
2024-11-25 19:08:07.935 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/38:0] ERROR: domain var_record_nn does not allow null values
2024-11-25 19:08:07.935 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/38:0] CONTEXT: PL/pgSQL function inline_code_block line 2 during statement block local variable initialization
2024-11-25 19:08:07.935 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/38:0] STATEMENT: do $$
declare x var_record_nn := null; -- fail
begin
raise notice 'x = %', x;
end$$;
2024-11-25 19:08:07.935 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/39:0] ERROR: domain var_record_nn does not allow null values
2024-11-25 19:08:07.935 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/39:0] CONTEXT: PL/pgSQL function inline_code_block line 6 at assignment
2024-11-25 19:08:07.935 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/39:0] STATEMENT: do $$
declare x var_record_nn := row(1,2);
begin
raise notice 'x = %', x;
x := row(null,null); -- ok
x := null; -- fail
end$$;
2024-11-25 19:08:07.935 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/40:0] ERROR: value for domain var_record_colnn violates check constraint "var_record_colnn_check"
2024-11-25 19:08:07.935 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/40:0] CONTEXT: PL/pgSQL function inline_code_block line 2 during statement block local variable initialization
2024-11-25 19:08:07.935 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/40:0] STATEMENT: do $$
declare x var_record_colnn; -- fail
begin
raise notice 'x = %', x;
end$$;
2024-11-25 19:08:07.935 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/41:0] ERROR: value for domain var_record_colnn violates check constraint "var_record_colnn_check"
2024-11-25 19:08:07.935 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/41:0] CONTEXT: PL/pgSQL function inline_code_block line 2 during statement block local variable initialization
2024-11-25 19:08:07.935 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/41:0] STATEMENT: do $$
declare x var_record_colnn := null; -- fail
begin
raise notice 'x = %', x;
end$$;
2024-11-25 19:08:07.935 CET [561768][client backend] [pg_regress/multirangetypes][7/577:528072] ERROR: type "int4" already exists
2024-11-25 19:08:07.935 CET [561768][client backend] [pg_regress/multirangetypes][7/577:528072] STATEMENT: create type textrange1 as range(subtype=text, multirange_type_name=int, collation="C");
2024-11-25 19:08:07.936 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/42:0] ERROR: value for domain var_record_colnn violates check constraint "var_record_colnn_check"
2024-11-25 19:08:07.936 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/42:0] CONTEXT: PL/pgSQL function inline_code_block line 2 during statement block local variable initialization
2024-11-25 19:08:07.936 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/42:0] STATEMENT: do $$
declare x var_record_colnn := row(1,null); -- fail
begin
raise notice 'x = %', x;
end$$;
2024-11-25 19:08:07.936 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/43:0] ERROR: value for domain var_record_colnn violates check constraint "var_record_colnn_check"
2024-11-25 19:08:07.936 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/43:0] CONTEXT: PL/pgSQL function inline_code_block line 5 at assignment
2024-11-25 19:08:07.936 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/43:0] STATEMENT: do $$
declare x var_record_colnn := row(1,2);
begin
raise notice 'x = %', x;
x := null; -- fail
end$$;
2024-11-25 19:08:07.936 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/44:0] ERROR: value for domain var_record_colnn violates check constraint "var_record_colnn_check"
2024-11-25 19:08:07.936 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/44:0] CONTEXT: PL/pgSQL function inline_code_block line 5 at assignment
2024-11-25 19:08:07.936 CET [561818][client backend] [pg_regress/plpgsql_varprops][40/44:0] STATEMENT: do $$
declare x var_record_colnn := row(1,2);
begin
raise notice 'x = %', x;
x := row(null,null); -- fail
end$$;
2024-11-25 19:08:07.938 CET [561768][client backend] [pg_regress/multirangetypes][7/580:0] ERROR: function multirange_of_text(textrange2) does not exist at character 8
2024-11-25 19:08:07.938 CET [561768][client backend] [pg_regress/multirangetypes][7/580:0] HINT: No function matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:07.938 CET [561768][client backend] [pg_regress/multirangetypes][7/580:0] STATEMENT: select multirange_of_text(textrange2('a','Z'));
2024-11-25 19:08:07.938 CET [561768][client backend] [pg_regress/multirangetypes][7/581:0] ERROR: range lower bound must be less than or equal to range upper bound
2024-11-25 19:08:07.938 CET [561768][client backend] [pg_regress/multirangetypes][7/581:0] STATEMENT: select multirange_of_text(textrange1('a','Z')) @> 'b'::text;
2024-11-25 19:08:07.939 CET [561818][client backend] [pg_regress/plpgsql_varprops][:0] LOG: disconnection: session time: 0:00:00.020 user=nkey database=regression_plpgsql host=[local]
2024-11-25 19:08:07.941 CET [561753][client backend] [pg_regress/timestamptz][92/310:0] ERROR: timestamp cannot be NaN
2024-11-25 19:08:07.941 CET [561753][client backend] [pg_regress/timestamptz][92/310:0] STATEMENT: SELECT to_timestamp('NaN'::float);
2024-11-25 19:08:07.944 CET [561768][client backend] [pg_regress/multirangetypes][7/588:0] ERROR: cannot alter multirange type multitextrange1
2024-11-25 19:08:07.944 CET [561768][client backend] [pg_regress/multirangetypes][7/588:0] HINT: You can alter type textrange1, which will alter the multirange type as well.
2024-11-25 19:08:07.944 CET [561768][client backend] [pg_regress/multirangetypes][7/588:0] STATEMENT: alter type multitextrange1 owner to regress_multirange_owner;
2024-11-25 19:08:07.945 CET [561768][client backend] [pg_regress/multirangetypes][7/591:0] ERROR: cannot set privileges of multirange types
2024-11-25 19:08:07.945 CET [561768][client backend] [pg_regress/multirangetypes][7/591:0] HINT: Set the privileges of the range type instead.
2024-11-25 19:08:07.945 CET [561768][client backend] [pg_regress/multirangetypes][7/591:0] STATEMENT: revoke usage on type multitextrange1 from public;
2024-11-25 19:08:07.957 CET [561820][client backend] [pg_regress/page][42/21:0] ERROR: block number 1 is out of range for relation "test1"
2024-11-25 19:08:07.957 CET [561820][client backend] [pg_regress/page][42/21:0] STATEMENT: SELECT octet_length(get_raw_page('test1', 'main', 1)) AS main_1;
2024-11-25 19:08:07.958 CET [561820][client backend] [pg_regress/page][42/25:0] ERROR: block number 1 is out of range for relation "test1"
2024-11-25 19:08:07.958 CET [561820][client backend] [pg_regress/page][42/25:0] STATEMENT: SELECT octet_length(get_raw_page('test1', 'vm', 1)) AS vm_1;
2024-11-25 19:08:07.958 CET [561820][client backend] [pg_regress/page][42/26:0] ERROR: invalid block number
2024-11-25 19:08:07.958 CET [561820][client backend] [pg_regress/page][42/26:0] STATEMENT: SELECT octet_length(get_raw_page('test1', 'main', -1));
2024-11-25 19:08:07.958 CET [561820][client backend] [pg_regress/page][42/27:0] ERROR: relation "xxx" does not exist
2024-11-25 19:08:07.958 CET [561820][client backend] [pg_regress/page][42/27:0] STATEMENT: SELECT octet_length(get_raw_page('xxx', 'main', 0));
2024-11-25 19:08:07.958 CET [561820][client backend] [pg_regress/page][42/28:0] ERROR: invalid fork name
2024-11-25 19:08:07.958 CET [561820][client backend] [pg_regress/page][42/28:0] HINT: Valid fork names are "main", "fsm", "vm", and "init".
2024-11-25 19:08:07.958 CET [561820][client backend] [pg_regress/page][42/28:0] STATEMENT: SELECT octet_length(get_raw_page('test1', 'xxx', 0));
2024-11-25 19:08:07.960 CET [561820][client backend] [pg_regress/page][42/32:0] ERROR: invalid block number
2024-11-25 19:08:07.960 CET [561820][client backend] [pg_regress/page][42/32:0] STATEMENT: SELECT page_checksum(get_raw_page('test1', 0), -1);
2024-11-25 19:08:07.961 CET [561768][client backend] [pg_regress/multirangetypes][7/596:0] ERROR: permission denied for type multitextrange1
2024-11-25 19:08:07.961 CET [561768][client backend] [pg_regress/multirangetypes][7/596:0] STATEMENT: create temp table test2(f1 multitextrange1[]);
2024-11-25 19:08:07.963 CET [561816][client backend] [pg_regress/ltree][38/18:0] ERROR: ltree syntax error at character 1 at character 8
2024-11-25 19:08:07.963 CET [561816][client backend] [pg_regress/ltree][38/18:0] STATEMENT: SELECT '.2.3'::ltree;
2024-11-25 19:08:07.963 CET [561816][client backend] [pg_regress/ltree][38/19:0] ERROR: ltree syntax error at character 3 at character 8
2024-11-25 19:08:07.963 CET [561816][client backend] [pg_regress/ltree][38/19:0] STATEMENT: SELECT '1..3'::ltree;
2024-11-25 19:08:07.963 CET [561816][client backend] [pg_regress/ltree][38/20:0] ERROR: ltree syntax error at character 8
2024-11-25 19:08:07.963 CET [561816][client backend] [pg_regress/ltree][38/20:0] DETAIL: Unexpected end of input.
2024-11-25 19:08:07.963 CET [561816][client backend] [pg_regress/ltree][38/20:0] STATEMENT: SELECT '1.2.'::ltree;
2024-11-25 19:08:07.963 CET [561753][client backend] [pg_regress/timestamptz][92/354:0] ERROR: interval out of range
2024-11-25 19:08:07.963 CET [561753][client backend] [pg_regress/timestamptz][92/354:0] STATEMENT: SELECT timestamptz 'infinity' - timestamptz 'infinity';
2024-11-25 19:08:07.963 CET [561816][client backend] [pg_regress/ltree][38/22:0] ERROR: label string is too long
2024-11-25 19:08:07.963 CET [561816][client backend] [pg_regress/ltree][38/22:0] DETAIL: Label length is 1001, must be at most 1000, at character 1002.
2024-11-25 19:08:07.963 CET [561816][client backend] [pg_regress/ltree][38/22:0] STATEMENT: SELECT repeat('x', 1000 + 1)::ltree;
2024-11-25 19:08:07.963 CET [561753][client backend] [pg_regress/timestamptz][92/357:0] ERROR: interval out of range
2024-11-25 19:08:07.963 CET [561753][client backend] [pg_regress/timestamptz][92/357:0] STATEMENT: SELECT timestamptz '-infinity' - timestamptz '-infinity';
2024-11-25 19:08:07.965 CET [561753][client backend] [pg_regress/timestamptz][92/362:0] ERROR: interval out of range
2024-11-25 19:08:07.965 CET [561753][client backend] [pg_regress/timestamptz][92/362:0] STATEMENT: SELECT age(timestamptz 'infinity', timestamptz 'infinity');
2024-11-25 19:08:07.965 CET [561768][client backend] [pg_regress/multirangetypes][7/603:0] ERROR: function anyarray_anymultirange_func(integer[], nummultirange) does not exist at character 8
2024-11-25 19:08:07.965 CET [561768][client backend] [pg_regress/multirangetypes][7/603:0] HINT: No function matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:07.965 CET [561768][client backend] [pg_regress/multirangetypes][7/603:0] STATEMENT: select anyarray_anymultirange_func(ARRAY[1,2], nummultirange(numrange(10,20)));
2024-11-25 19:08:07.965 CET [561753][client backend] [pg_regress/timestamptz][92/365:0] ERROR: interval out of range
2024-11-25 19:08:07.965 CET [561753][client backend] [pg_regress/timestamptz][92/365:0] STATEMENT: SELECT age(timestamptz '-infinity', timestamptz '-infinity');
2024-11-25 19:08:07.966 CET [561820][client backend] [pg_regress/page][42/50:0] ERROR: cannot get raw page from relation "test_partitioned"
2024-11-25 19:08:07.966 CET [561820][client backend] [pg_regress/page][42/50:0] DETAIL: This operation is not supported for partitioned tables.
2024-11-25 19:08:07.966 CET [561820][client backend] [pg_regress/page][42/50:0] STATEMENT: select get_raw_page('test_partitioned', 0);
2024-11-25 19:08:07.966 CET [561820][client backend] [pg_regress/page][42/51:0] ERROR: cannot get raw page from relation "test_partitioned_index"
2024-11-25 19:08:07.966 CET [561820][client backend] [pg_regress/page][42/51:0] DETAIL: This operation is not supported for partitioned indexes.
2024-11-25 19:08:07.966 CET [561820][client backend] [pg_regress/page][42/51:0] STATEMENT: select get_raw_page('test_partitioned_index', 0);
2024-11-25 19:08:07.966 CET [561768][client backend] [pg_regress/multirangetypes][7/605:0] ERROR: cannot determine result data type
2024-11-25 19:08:07.966 CET [561768][client backend] [pg_regress/multirangetypes][7/605:0] DETAIL: A result of type anymultirange requires at least one input of type anyrange or anymultirange.
2024-11-25 19:08:07.966 CET [561768][client backend] [pg_regress/multirangetypes][7/605:0] STATEMENT: create function bogus_func(anyelement)
returns anymultirange as 'select int4multirange(int4range(1,10))' language sql;
2024-11-25 19:08:07.966 CET [561768][client backend] [pg_regress/multirangetypes][7/606:0] ERROR: cannot determine result data type
2024-11-25 19:08:07.966 CET [561768][client backend] [pg_regress/multirangetypes][7/606:0] DETAIL: A result of type anymultirange requires at least one input of type anyrange or anymultirange.
2024-11-25 19:08:07.966 CET [561768][client backend] [pg_regress/multirangetypes][7/606:0] STATEMENT: create function bogus_func(int)
returns anymultirange as 'select int4multirange(int4range(1,10))' language sql;
2024-11-25 19:08:07.967 CET [561753][client backend] [pg_regress/timestamptz][:0] LOG: disconnection: session time: 0:00:00.435 user=nkey database=regression host=[local]
2024-11-25 19:08:07.968 CET [561820][client backend] [pg_regress/page][42/53:0] ERROR: block number 0 is out of range for relation "test_part1"
2024-11-25 19:08:07.968 CET [561820][client backend] [pg_regress/page][42/53:0] STATEMENT: select get_raw_page('test_part1', 0);
2024-11-25 19:08:07.969 CET [561768][client backend] [pg_regress/multirangetypes][7/612:0] ERROR: function multirangetypes_sql(nummultirange, integer[]) does not exist at character 8
2024-11-25 19:08:07.969 CET [561768][client backend] [pg_regress/multirangetypes][7/612:0] HINT: No function matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:07.969 CET [561768][client backend] [pg_regress/multirangetypes][7/612:0] STATEMENT: select multirangetypes_sql(nummultirange(numrange(1,10)), ARRAY[2,20]);
2024-11-25 19:08:07.971 CET [561768][client backend] [pg_regress/multirangetypes][7/616:0] ERROR: function anycompatiblearray_anycompatiblemultirange_func(numeric[], int4multirange) does not exist at character 8
2024-11-25 19:08:07.971 CET [561768][client backend] [pg_regress/multirangetypes][7/616:0] HINT: No function matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:07.971 CET [561768][client backend] [pg_regress/multirangetypes][7/616:0] STATEMENT: select anycompatiblearray_anycompatiblemultirange_func(ARRAY[1.1,2], multirange(int4range(10,20)));
2024-11-25 19:08:07.972 CET [561768][client backend] [pg_regress/multirangetypes][7/620:0] ERROR: function anycompatiblerange_anycompatiblemultirange_func(numrange, int4multirange) does not exist at character 8
2024-11-25 19:08:07.972 CET [561768][client backend] [pg_regress/multirangetypes][7/620:0] HINT: No function matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:07.972 CET [561768][client backend] [pg_regress/multirangetypes][7/620:0] STATEMENT: select anycompatiblerange_anycompatiblemultirange_func(numrange(1,2), multirange(int4range(10,20)));
2024-11-25 19:08:07.972 CET [561820][client backend] [pg_regress/page][42/60:0] ERROR: invalid page size
2024-11-25 19:08:07.972 CET [561820][client backend] [pg_regress/page][42/60:0] DETAIL: Expected 8192 bytes, got 3.
2024-11-25 19:08:07.972 CET [561820][client backend] [pg_regress/page][42/60:0] STATEMENT: SELECT fsm_page_contents('aaa'::bytea);
2024-11-25 19:08:07.972 CET [561820][client backend] [pg_regress/page][42/61:0] ERROR: invalid page size
2024-11-25 19:08:07.972 CET [561820][client backend] [pg_regress/page][42/61:0] DETAIL: Expected 8192 bytes, got 3.
2024-11-25 19:08:07.972 CET [561820][client backend] [pg_regress/page][42/61:0] STATEMENT: SELECT page_checksum('bbb'::bytea, 0);
2024-11-25 19:08:07.972 CET [561768][client backend] [pg_regress/multirangetypes][7/622:0] ERROR: cannot determine result data type
2024-11-25 19:08:07.972 CET [561768][client backend] [pg_regress/multirangetypes][7/622:0] DETAIL: A result of type anycompatiblerange requires at least one input of type anycompatiblerange or anycompatiblemultirange.
2024-11-25 19:08:07.972 CET [561768][client backend] [pg_regress/multirangetypes][7/622:0] STATEMENT: create function bogus_func(anycompatible)
returns anycompatiblerange as 'select int4range(1,10)' language sql;
2024-11-25 19:08:07.972 CET [561820][client backend] [pg_regress/page][42/62:0] ERROR: invalid page size
2024-11-25 19:08:07.972 CET [561820][client backend] [pg_regress/page][42/62:0] DETAIL: Expected 8192 bytes, got 3.
2024-11-25 19:08:07.972 CET [561820][client backend] [pg_regress/page][42/62:0] STATEMENT: SELECT page_header('ccc'::bytea);
2024-11-25 19:08:07.975 CET [561820][client backend] [pg_regress/page][:0] LOG: disconnection: session time: 0:00:00.042 user=nkey database=regression_pageinspect host=[local]
2024-11-25 19:08:07.976 CET [561768][client backend] [pg_regress/multirangetypes][7/629:0] ERROR: range lower bound must be less than or equal to range upper bound
2024-11-25 19:08:07.976 CET [561768][client backend] [pg_regress/multirangetypes][7/629:0] STATEMENT: select arraymultirange(arrayrange(ARRAY[2,1], ARRAY[1,2]));
2024-11-25 19:08:07.980 CET [561816][client backend] [pg_regress/ltree][38/95:0] ERROR: lquery syntax error at character 1 at character 8
2024-11-25 19:08:07.980 CET [561816][client backend] [pg_regress/ltree][38/95:0] STATEMENT: SELECT '.2.3'::lquery;
2024-11-25 19:08:07.980 CET [561816][client backend] [pg_regress/ltree][38/96:0] ERROR: lquery syntax error at character 3 at character 8
2024-11-25 19:08:07.980 CET [561816][client backend] [pg_regress/ltree][38/96:0] STATEMENT: SELECT '1..3'::lquery;
2024-11-25 19:08:07.980 CET [561816][client backend] [pg_regress/ltree][38/97:0] ERROR: lquery syntax error at character 8
2024-11-25 19:08:07.980 CET [561816][client backend] [pg_regress/ltree][38/97:0] DETAIL: Unexpected end of input.
2024-11-25 19:08:07.980 CET [561816][client backend] [pg_regress/ltree][38/97:0] STATEMENT: SELECT '1.2.'::lquery;
2024-11-25 19:08:07.980 CET [561827][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.981 CET [561816][client backend] [pg_regress/ltree][38/98:0] ERROR: lquery syntax error at character 1 at character 8
2024-11-25 19:08:07.981 CET [561816][client backend] [pg_regress/ltree][38/98:0] STATEMENT: SELECT '@.2.3'::lquery;
2024-11-25 19:08:07.981 CET [561827][client backend] [[unknown]][43/7:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.981 CET [561827][client backend] [[unknown]][43/7:0] LOG: connection authorized: user=nkey database=regression_pageinspect application_name=pg_regress/btree
2024-11-25 19:08:07.982 CET [561816][client backend] [pg_regress/ltree][38/99:0] ERROR: lquery syntax error at character 3 at character 8
2024-11-25 19:08:07.982 CET [561816][client backend] [pg_regress/ltree][38/99:0] STATEMENT: SELECT '1.@.3'::lquery;
2024-11-25 19:08:07.983 CET [561816][client backend] [pg_regress/ltree][38/100:0] ERROR: lquery syntax error at character 5 at character 8
2024-11-25 19:08:07.983 CET [561816][client backend] [pg_regress/ltree][38/100:0] STATEMENT: SELECT '1.2.@'::lquery;
2024-11-25 19:08:07.983 CET [561816][client backend] [pg_regress/ltree][38/101:0] ERROR: lquery syntax error at character 2 at character 8
2024-11-25 19:08:07.983 CET [561816][client backend] [pg_regress/ltree][38/101:0] DETAIL: Empty labels are not allowed.
2024-11-25 19:08:07.983 CET [561816][client backend] [pg_regress/ltree][38/101:0] STATEMENT: SELECT '!.2.3'::lquery;
2024-11-25 19:08:07.983 CET [561816][client backend] [pg_regress/ltree][38/102:0] ERROR: lquery syntax error at character 4 at character 8
2024-11-25 19:08:07.983 CET [561816][client backend] [pg_regress/ltree][38/102:0] DETAIL: Empty labels are not allowed.
2024-11-25 19:08:07.983 CET [561816][client backend] [pg_regress/ltree][38/102:0] STATEMENT: SELECT '1.!.3'::lquery;
2024-11-25 19:08:07.983 CET [561816][client backend] [pg_regress/ltree][38/103:0] ERROR: lquery syntax error at character 6 at character 8
2024-11-25 19:08:07.983 CET [561816][client backend] [pg_regress/ltree][38/103:0] DETAIL: Empty labels are not allowed.
2024-11-25 19:08:07.983 CET [561816][client backend] [pg_regress/ltree][38/103:0] STATEMENT: SELECT '1.2.!'::lquery;
2024-11-25 19:08:07.983 CET [561816][client backend] [pg_regress/ltree][38/104:0] ERROR: lquery syntax error at character 7 at character 8
2024-11-25 19:08:07.983 CET [561816][client backend] [pg_regress/ltree][38/104:0] STATEMENT: SELECT '1.2.3|@.4'::lquery;
2024-11-25 19:08:07.984 CET [561816][client backend] [pg_regress/ltree][38/106:0] ERROR: label string is too long
2024-11-25 19:08:07.984 CET [561816][client backend] [pg_regress/ltree][38/106:0] DETAIL: Label length is 1001, must be at most 1000, at character 1002.
2024-11-25 19:08:07.984 CET [561816][client backend] [pg_regress/ltree][38/106:0] STATEMENT: SELECT (repeat('x', 1000 + 1) || '*@@*')::lquery;
2024-11-25 19:08:07.985 CET [561816][client backend] [pg_regress/ltree][38/108:0] ERROR: label string is too long
2024-11-25 19:08:07.985 CET [561816][client backend] [pg_regress/ltree][38/108:0] DETAIL: Label length is 1001, must be at most 1000, at character 1003.
2024-11-25 19:08:07.985 CET [561816][client backend] [pg_regress/ltree][38/108:0] STATEMENT: SELECT ('!' || repeat('x', 1000 + 1))::lquery;
2024-11-25 19:08:07.986 CET [561831][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:07.986 CET [561831][client backend] [[unknown]][47/32:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:07.986 CET [561831][client backend] [[unknown]][47/32:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:07.988 CET [561768][client backend] [pg_regress/multirangetypes][7/653:0] ERROR: cannot determine result data type
2024-11-25 19:08:07.988 CET [561768][client backend] [pg_regress/multirangetypes][7/653:0] DETAIL: A result of type anymultirange requires at least one input of type anyrange or anymultirange.
2024-11-25 19:08:07.988 CET [561768][client backend] [pg_regress/multirangetypes][7/653:0] STATEMENT: create function mr_outparam_fail(i anyelement, out r anymultirange, out t text)
as $$ select '[1,10]', 'foo' $$ language sql;
2024-11-25 19:08:07.988 CET [561768][client backend] [pg_regress/multirangetypes][7/654:0] ERROR: cannot determine result data type
2024-11-25 19:08:07.988 CET [561768][client backend] [pg_regress/multirangetypes][7/654:0] DETAIL: A result of type anymultirange requires at least one input of type anyrange or anymultirange.
2024-11-25 19:08:07.988 CET [561768][client backend] [pg_regress/multirangetypes][7/654:0] STATEMENT: create function mr_inoutparam_fail(inout i anyelement, out r anymultirange)
as $$ select $1, '[1,10]' $$ language sql;
2024-11-25 19:08:07.988 CET [561768][client backend] [pg_regress/multirangetypes][7/655:0] ERROR: cannot determine result data type
2024-11-25 19:08:07.988 CET [561768][client backend] [pg_regress/multirangetypes][7/655:0] DETAIL: A result of type anymultirange requires at least one input of type anyrange or anymultirange.
2024-11-25 19:08:07.988 CET [561768][client backend] [pg_regress/multirangetypes][7/655:0] STATEMENT: create function mr_table_fail(i anyelement) returns table(i anyelement, r anymultirange)
as $$ select $1, '[1,10]' $$ language sql;
2024-11-25 19:08:07.989 CET [561768][client backend] [pg_regress/multirangetypes][:0] LOG: disconnection: session time: 0:00:00.434 user=nkey database=regression host=[local]
2024-11-25 19:08:07.989 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:07.989 CET [561827][client backend] [pg_regress/btree][43/12:0] ERROR: invalid block number -1
2024-11-25 19:08:07.989 CET [561827][client backend] [pg_regress/btree][43/12:0] STATEMENT: SELECT * FROM bt_page_stats('test1_a_idx', -1);
2024-11-25 19:08:07.989 CET [561827][client backend] [pg_regress/btree][43/13:0] ERROR: block 0 is a meta page
2024-11-25 19:08:07.989 CET [561827][client backend] [pg_regress/btree][43/13:0] STATEMENT: SELECT * FROM bt_page_stats('test1_a_idx', 0);
2024-11-25 19:08:07.989 CET [561827][client backend] [pg_regress/btree][43/15:0] ERROR: block number 2 is out of range
2024-11-25 19:08:07.989 CET [561827][client backend] [pg_regress/btree][43/15:0] STATEMENT: SELECT * FROM bt_page_stats('test1_a_idx', 2);
2024-11-25 19:08:07.991 CET [561816][client backend] [pg_regress/ltree][38/111:0] ERROR: number of ltree labels (65536) exceeds the maximum allowed (65535)
2024-11-25 19:08:07.991 CET [561816][client backend] [pg_regress/ltree][38/111:0] STATEMENT: SELECT nlevel(('1' || repeat('.1', 65535))::ltree);
2024-11-25 19:08:07.993 CET [561827][client backend] [pg_regress/btree][43/18:0] ERROR: block 0 is a meta page
2024-11-25 19:08:07.993 CET [561827][client backend] [pg_regress/btree][43/18:0] STATEMENT: SELECT * FROM bt_multi_page_stats('test2_col1_idx', 0, 1);
2024-11-25 19:08:07.995 CET [561827][client backend] [pg_regress/btree][43/23:0] ERROR: block number 7 is out of range
2024-11-25 19:08:07.995 CET [561827][client backend] [pg_regress/btree][43/23:0] STATEMENT: SELECT * FROM bt_multi_page_stats('test2_col1_idx', 7, 2);
2024-11-25 19:08:07.995 CET [561816][client backend] [pg_regress/ltree][38/112:0] ERROR: number of ltree levels (65536) exceeds the maximum allowed (65535)
2024-11-25 19:08:07.995 CET [561816][client backend] [pg_regress/ltree][38/112:0] STATEMENT: SELECT nlevel(('1' || repeat('.1', 65534))::ltree || '1');
2024-11-25 19:08:07.996 CET [561827][client backend] [pg_regress/btree][43/25:0] ERROR: invalid block number -1
2024-11-25 19:08:07.996 CET [561827][client backend] [pg_regress/btree][43/25:0] STATEMENT: SELECT * FROM bt_page_items('test1_a_idx', -1);
2024-11-25 19:08:07.996 CET [561827][client backend] [pg_regress/btree][43/26:0] ERROR: block 0 is a meta page
2024-11-25 19:08:07.996 CET [561827][client backend] [pg_regress/btree][43/26:0] STATEMENT: SELECT * FROM bt_page_items('test1_a_idx', 0);
2024-11-25 19:08:07.996 CET [561827][client backend] [pg_regress/btree][43/28:0] ERROR: block number 2 is out of range
2024-11-25 19:08:07.996 CET [561827][client backend] [pg_regress/btree][43/28:0] STATEMENT: SELECT * FROM bt_page_items('test1_a_idx', 2);
2024-11-25 19:08:07.997 CET [561827][client backend] [pg_regress/btree][43/29:0] ERROR: invalid block number
2024-11-25 19:08:07.997 CET [561827][client backend] [pg_regress/btree][43/29:0] STATEMENT: SELECT * FROM bt_page_items(get_raw_page('test1_a_idx', -1));
2024-11-25 19:08:07.997 CET [561827][client backend] [pg_regress/btree][43/30:0] ERROR: block is a meta page
2024-11-25 19:08:07.997 CET [561827][client backend] [pg_regress/btree][43/30:0] STATEMENT: SELECT * FROM bt_page_items(get_raw_page('test1_a_idx', 0));
2024-11-25 19:08:07.997 CET [561827][client backend] [pg_regress/btree][43/32:0] ERROR: block number 2 is out of range for relation "test1_a_idx"
2024-11-25 19:08:07.997 CET [561827][client backend] [pg_regress/btree][43/32:0] STATEMENT: SELECT * FROM bt_page_items(get_raw_page('test1_a_idx', 2));
2024-11-25 19:08:07.998 CET [561827][client backend] [pg_regress/btree][43/34:0] ERROR: "test1_a_hash" is not a btree index
2024-11-25 19:08:07.998 CET [561827][client backend] [pg_regress/btree][43/34:0] STATEMENT: SELECT bt_metap('test1_a_hash');
2024-11-25 19:08:07.998 CET [561827][client backend] [pg_regress/btree][43/35:0] ERROR: "test1_a_hash" is not a btree index
2024-11-25 19:08:07.998 CET [561827][client backend] [pg_regress/btree][43/35:0] STATEMENT: SELECT bt_page_stats('test1_a_hash', 0);
2024-11-25 19:08:07.998 CET [561827][client backend] [pg_regress/btree][43/36:0] ERROR: "test1_a_hash" is not a btree index
2024-11-25 19:08:07.998 CET [561827][client backend] [pg_regress/btree][43/36:0] STATEMENT: SELECT bt_page_items('test1_a_hash', 0);
2024-11-25 19:08:07.998 CET [561827][client backend] [pg_regress/btree][43/37:0] ERROR: block is a meta page
2024-11-25 19:08:07.998 CET [561827][client backend] [pg_regress/btree][43/37:0] STATEMENT: SELECT bt_page_items(get_raw_page('test1_a_hash', 0));
2024-11-25 19:08:07.999 CET [561827][client backend] [pg_regress/btree][43/39:0] ERROR: block is not a valid btree leaf page
2024-11-25 19:08:07.999 CET [561827][client backend] [pg_regress/btree][43/39:0] STATEMENT: SELECT bt_page_items(get_raw_page('test1_b_gist', 0));
2024-11-25 19:08:07.999 CET [561827][client backend] [pg_regress/btree][43/40:0] ERROR: invalid page size
2024-11-25 19:08:07.999 CET [561827][client backend] [pg_regress/btree][43/40:0] DETAIL: Expected 8192 bytes, got 3.
2024-11-25 19:08:07.999 CET [561827][client backend] [pg_regress/btree][43/40:0] STATEMENT: SELECT bt_page_items('aaa'::bytea);
2024-11-25 19:08:08.000 CET [561827][client backend] [pg_regress/btree][43/42:0] ERROR: input page is not a valid btree page
2024-11-25 19:08:08.000 CET [561827][client backend] [pg_regress/btree][43/42:0] DETAIL: Expected special size 16, got 0.
2024-11-25 19:08:08.000 CET [561827][client backend] [pg_regress/btree][43/42:0] STATEMENT: SELECT bt_page_items(get_raw_page('test1', 0));
2024-11-25 19:08:08.001 CET [561827][client backend] [pg_regress/btree][43/43:0] ERROR: input page is not a valid btree page
2024-11-25 19:08:08.001 CET [561827][client backend] [pg_regress/btree][43/43:0] DETAIL: Expected special size 16, got 8.
2024-11-25 19:08:08.001 CET [561827][client backend] [pg_regress/btree][43/43:0] STATEMENT: SELECT bt_page_items(get_raw_page('test1_a_brin', 0));
2024-11-25 19:08:08.003 CET [561827][client backend] [pg_regress/btree][:0] LOG: disconnection: session time: 0:00:00.023 user=nkey database=regression_pageinspect host=[local]
2024-11-25 19:08:08.008 CET [561816][client backend] [pg_regress/ltree][38/114:0] ERROR: number of lquery items (65536) exceeds the maximum allowed (65535)
2024-11-25 19:08:08.008 CET [561816][client backend] [pg_regress/ltree][38/114:0] STATEMENT: SELECT ('1' || repeat('.1', 65535))::lquery IS NULL;
2024-11-25 19:08:08.009 CET [561816][client backend] [pg_regress/ltree][38/116:0] ERROR: lquery syntax error at character 8
2024-11-25 19:08:08.009 CET [561816][client backend] [pg_regress/ltree][38/116:0] DETAIL: Low limit (65536) exceeds the maximum allowed (65535), at character 3.
2024-11-25 19:08:08.009 CET [561816][client backend] [pg_regress/ltree][38/116:0] STATEMENT: SELECT '*{65536}'::lquery;
2024-11-25 19:08:08.009 CET [561816][client backend] [pg_regress/ltree][38/119:0] ERROR: lquery syntax error at character 8
2024-11-25 19:08:08.009 CET [561816][client backend] [pg_regress/ltree][38/119:0] DETAIL: High limit (65536) exceeds the maximum allowed (65535), at character 4.
2024-11-25 19:08:08.009 CET [561816][client backend] [pg_regress/ltree][38/119:0] STATEMENT: SELECT '*{,65536}'::lquery;
2024-11-25 19:08:08.009 CET [561816][client backend] [pg_regress/ltree][38/120:0] ERROR: lquery syntax error at character 8
2024-11-25 19:08:08.009 CET [561816][client backend] [pg_regress/ltree][38/120:0] DETAIL: Low limit (4) is greater than high limit (3), at character 5.
2024-11-25 19:08:08.009 CET [561816][client backend] [pg_regress/ltree][38/120:0] STATEMENT: SELECT '*{4,3}'::lquery;
2024-11-25 19:08:08.009 CET [561864][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.010 CET [561864][client backend] [[unknown]][48/29:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.010 CET [561864][client backend] [[unknown]][48/29:0] LOG: connection authorized: user=nkey database=regression_pageinspect application_name=pg_regress/brin
2024-11-25 19:08:08.018 CET [561864][client backend] [pg_regress/brin][48/37:0] ERROR: page is not a BRIN page of type "metapage"
2024-11-25 19:08:08.018 CET [561864][client backend] [pg_regress/brin][48/37:0] DETAIL: Expected special type 0000f091, got 0000f092.
2024-11-25 19:08:08.018 CET [561864][client backend] [pg_regress/brin][48/37:0] STATEMENT: SELECT * FROM brin_metapage_info(get_raw_page('test1_a_idx', 1));
2024-11-25 19:08:08.018 CET [561864][client backend] [pg_regress/brin][48/38:0] ERROR: page is not a BRIN page of type "revmap"
2024-11-25 19:08:08.018 CET [561864][client backend] [pg_regress/brin][48/38:0] DETAIL: Expected special type 0000f092, got 0000f091.
2024-11-25 19:08:08.018 CET [561864][client backend] [pg_regress/brin][48/38:0] STATEMENT: SELECT * FROM brin_revmap_data(get_raw_page('test1_a_idx', 0)) LIMIT 5;
2024-11-25 19:08:08.020 CET [561023][checkpointer] LOG: checkpoint complete: wrote 2438 buffers (14.9%), wrote 2 SLRU buffers; 0 WAL file(s) added, 0 removed, 1 recycled; write=0.029 s, sync=0.001 s, total=0.032 s; sync files=0, longest=0.000 s, average=0.000 s; distance=11566 kB, estimate=14761 kB; lsn=4/46BA69F0, redo lsn=4/46B115A0
2024-11-25 19:08:08.021 CET [561864][client backend] [pg_regress/brin][48/42:0] ERROR: "test1_a_btree" is not a BRIN index
2024-11-25 19:08:08.021 CET [561864][client backend] [pg_regress/brin][48/42:0] STATEMENT: SELECT brin_page_items(get_raw_page('test1_a_btree', 0), 'test1_a_btree');
2024-11-25 19:08:08.021 CET [561864][client backend] [pg_regress/brin][48/43:0] ERROR: input page is not a valid BRIN page
2024-11-25 19:08:08.021 CET [561864][client backend] [pg_regress/brin][48/43:0] DETAIL: Expected special size 8, got 16.
2024-11-25 19:08:08.021 CET [561864][client backend] [pg_regress/brin][48/43:0] STATEMENT: SELECT brin_page_items(get_raw_page('test1_a_btree', 0), 'test1_a_idx');
2024-11-25 19:08:08.022 CET [561864][client backend] [pg_regress/brin][48/44:0] ERROR: input page is not a valid BRIN page
2024-11-25 19:08:08.022 CET [561864][client backend] [pg_regress/brin][48/44:0] DETAIL: Expected special size 8, got 0.
2024-11-25 19:08:08.022 CET [561864][client backend] [pg_regress/brin][48/44:0] STATEMENT: SELECT brin_page_type(get_raw_page('test1', 0));
2024-11-25 19:08:08.022 CET [561864][client backend] [pg_regress/brin][48/45:0] ERROR: input page is not a valid BRIN page
2024-11-25 19:08:08.022 CET [561864][client backend] [pg_regress/brin][48/45:0] DETAIL: Expected special size 8, got 0.
2024-11-25 19:08:08.022 CET [561864][client backend] [pg_regress/brin][48/45:0] STATEMENT: SELECT * FROM brin_metapage_info(get_raw_page('test1', 0));
2024-11-25 19:08:08.022 CET [561891][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.022 CET [561890][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.022 CET [561894][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.022 CET [561895][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.023 CET [561891][client backend] [[unknown]][55/12:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.023 CET [561891][client backend] [[unknown]][55/12:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/geometry
2024-11-25 19:08:08.023 CET [561893][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.023 CET [561892][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.023 CET [561897][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.023 CET [561890][client backend] [[unknown]][57/22:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.023 CET [561890][client backend] [[unknown]][57/22:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/regex
2024-11-25 19:08:08.023 CET [561864][client backend] [pg_regress/brin][48/46:0] ERROR: input page is not a valid BRIN page
2024-11-25 19:08:08.023 CET [561864][client backend] [pg_regress/brin][48/46:0] DETAIL: Expected special size 8, got 0.
2024-11-25 19:08:08.023 CET [561864][client backend] [pg_regress/brin][48/46:0] STATEMENT: SELECT * FROM brin_revmap_data(get_raw_page('test1', 0));
2024-11-25 19:08:08.023 CET [561898][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.023 CET [561895][client backend] [[unknown]][46/94:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.023 CET [561895][client backend] [[unknown]][46/94:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/unicode
2024-11-25 19:08:08.023 CET [561893][client backend] [[unknown]][49/27:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.023 CET [561893][client backend] [[unknown]][49/27:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/tstypes
2024-11-25 19:08:08.023 CET [561892][client backend] [[unknown]][58/18:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.023 CET [561892][client backend] [[unknown]][58/18:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/horology
2024-11-25 19:08:08.024 CET [561898][client backend] [[unknown]][50/10:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.024 CET [561898][client backend] [[unknown]][50/10:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/xid
2024-11-25 19:08:08.024 CET [561896][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.024 CET [561894][client backend] [[unknown]][39/23:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.024 CET [561894][client backend] [[unknown]][39/23:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/type_sanity
2024-11-25 19:08:08.024 CET [561896][client backend] [[unknown]][51/6:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.024 CET [561896][client backend] [[unknown]][51/6:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/comments
2024-11-25 19:08:08.025 CET [561897][client backend] [[unknown]][60/22:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.025 CET [561897][client backend] [[unknown]][60/22:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/opr_sanity
2024-11-25 19:08:08.026 CET [561901][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.027 CET [561901][client backend] [[unknown]][54/6:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.027 CET [561901][client backend] [[unknown]][54/6:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/stats_import
2024-11-25 19:08:08.027 CET [561900][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.027 CET [561900][client backend] [[unknown]][52/23:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.027 CET [561900][client backend] [[unknown]][52/23:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/expressions
2024-11-25 19:08:08.029 CET [561902][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.029 CET [561899][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.029 CET [561903][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.030 CET [561902][client backend] [[unknown]][61/30:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.030 CET [561902][client backend] [[unknown]][61/30:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/mvcc
2024-11-25 19:08:08.030 CET [561899][client backend] [[unknown]][15/220:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.030 CET [561899][client backend] [[unknown]][15/220:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/misc_sanity
2024-11-25 19:08:08.030 CET [561903][client backend] [[unknown]][56/6:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.030 CET [561903][client backend] [[unknown]][56/6:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/database
2024-11-25 19:08:08.036 CET [561831][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.050 user=nkey database=postgres host=[local]
2024-11-25 19:08:08.036 CET [561893][client backend] [pg_regress/tstypes][49/43:0] ERROR: syntax error in tsvector: "'' '1' '2'" at character 8
2024-11-25 19:08:08.036 CET [561893][client backend] [pg_regress/tstypes][49/43:0] STATEMENT: SELECT $$'' '1' '2'$$::tsvector;
2024-11-25 19:08:08.039 CET [561898][client backend] [pg_regress/xid][50/12:0] ERROR: invalid input syntax for type xid: "" at character 8
2024-11-25 19:08:08.039 CET [561898][client backend] [pg_regress/xid][50/12:0] STATEMENT: select ''::xid;
2024-11-25 19:08:08.039 CET [561898][client backend] [pg_regress/xid][50/13:0] ERROR: invalid input syntax for type xid: "asdf" at character 8
2024-11-25 19:08:08.039 CET [561898][client backend] [pg_regress/xid][50/13:0] STATEMENT: select 'asdf'::xid;
2024-11-25 19:08:08.039 CET [561898][client backend] [pg_regress/xid][50/14:0] ERROR: invalid input syntax for type xid8: "" at character 8
2024-11-25 19:08:08.039 CET [561898][client backend] [pg_regress/xid][50/14:0] STATEMENT: select ''::xid8;
2024-11-25 19:08:08.040 CET [561898][client backend] [pg_regress/xid][50/15:0] ERROR: invalid input syntax for type xid8: "asdf" at character 8
2024-11-25 19:08:08.040 CET [561898][client backend] [pg_regress/xid][50/15:0] STATEMENT: select 'asdf'::xid8;
2024-11-25 19:08:08.040 CET [561900][client backend] [pg_regress/expressions][52/32:0] WARNING: TIME(7) WITH TIME ZONE precision reduced to maximum allowed, 6
2024-11-25 19:08:08.040 CET [561895][client backend] [pg_regress/unicode][46/107:0] ERROR: invalid normalization form: def
2024-11-25 19:08:08.040 CET [561895][client backend] [pg_regress/unicode][46/107:0] STATEMENT: SELECT "normalize"('abc', 'def');
2024-11-25 19:08:08.040 CET [561900][client backend] [pg_regress/expressions][52/33:0] WARNING: TIMESTAMP(7) WITH TIME ZONE precision reduced to maximum allowed, 6
2024-11-25 19:08:08.040 CET [561900][client backend] [pg_regress/expressions][52/34:0] WARNING: TIME(7) precision reduced to maximum allowed, 6
2024-11-25 19:08:08.040 CET [561900][client backend] [pg_regress/expressions][52/35:0] WARNING: TIMESTAMP(7) precision reduced to maximum allowed, 6
2024-11-25 19:08:08.040 CET [561906][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.040 CET [561890][client backend] [pg_regress/regex][57/42:0] ERROR: regexp_match() does not support the "global" option
2024-11-25 19:08:08.040 CET [561890][client backend] [pg_regress/regex][57/42:0] HINT: Use the regexp_matches function instead.
2024-11-25 19:08:08.040 CET [561890][client backend] [pg_regress/regex][57/42:0] STATEMENT: select regexp_match('abc', 'Bd', 'ig');
2024-11-25 19:08:08.041 CET [561891][client backend] [pg_regress/geometry][55/27:0] ERROR: value out of range: underflow
2024-11-25 19:08:08.041 CET [561891][client backend] [pg_regress/geometry][55/27:0] STATEMENT: SELECT p1.f1, p2.f1, p1.f1 * p2.f1 FROM POINT_TBL p1, POINT_TBL p2 WHERE p1.f1[0] < 1;
2024-11-25 19:08:08.041 CET [561895][client backend] [pg_regress/unicode][46/111:0] ERROR: invalid normalization form: def
2024-11-25 19:08:08.041 CET [561895][client backend] [pg_regress/unicode][46/111:0] STATEMENT: SELECT is_normalized('abc', 'def');
2024-11-25 19:08:08.041 CET [561906][client backend] [[unknown]][63/21:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.041 CET [561906][client backend] [[unknown]][63/21:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:08.041 CET [561895][client backend] [pg_regress/unicode][:0] LOG: disconnection: session time: 0:00:00.019 user=nkey database=regression host=[local]
2024-11-25 19:08:08.041 CET [561891][client backend] [pg_regress/geometry][55/29:0] ERROR: value out of range: overflow
2024-11-25 19:08:08.041 CET [561891][client backend] [pg_regress/geometry][55/29:0] STATEMENT: SELECT p1.f1, p2.f1, p1.f1 / p2.f1 FROM POINT_TBL p1, POINT_TBL p2 WHERE p2.f1[0] > 1000;
2024-11-25 19:08:08.042 CET [561891][client backend] [pg_regress/geometry][55/30:0] ERROR: division by zero
2024-11-25 19:08:08.042 CET [561891][client backend] [pg_regress/geometry][55/30:0] STATEMENT: SELECT p1.f1, p2.f1, p1.f1 / p2.f1 FROM POINT_TBL p1, POINT_TBL p2 WHERE p2.f1 ~= '(0,0)'::point;
2024-11-25 19:08:08.044 CET [561898][client backend] [pg_regress/xid][50/28:0] ERROR: operator does not exist: xid < xid at character 17
2024-11-25 19:08:08.044 CET [561898][client backend] [pg_regress/xid][50/28:0] HINT: No operator matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:08.044 CET [561898][client backend] [pg_regress/xid][50/28:0] STATEMENT: select '1'::xid < '2'::xid;
2024-11-25 19:08:08.044 CET [561898][client backend] [pg_regress/xid][50/29:0] ERROR: operator does not exist: xid <= xid at character 17
2024-11-25 19:08:08.044 CET [561898][client backend] [pg_regress/xid][50/29:0] HINT: No operator matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:08.044 CET [561898][client backend] [pg_regress/xid][50/29:0] STATEMENT: select '1'::xid <= '2'::xid;
2024-11-25 19:08:08.044 CET [561898][client backend] [pg_regress/xid][50/30:0] ERROR: operator does not exist: xid > xid at character 17
2024-11-25 19:08:08.044 CET [561898][client backend] [pg_regress/xid][50/30:0] HINT: No operator matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:08.044 CET [561898][client backend] [pg_regress/xid][50/30:0] STATEMENT: select '1'::xid > '2'::xid;
2024-11-25 19:08:08.045 CET [561898][client backend] [pg_regress/xid][50/31:0] ERROR: operator does not exist: xid >= xid at character 17
2024-11-25 19:08:08.045 CET [561898][client backend] [pg_regress/xid][50/31:0] HINT: No operator matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:08.045 CET [561898][client backend] [pg_regress/xid][50/31:0] STATEMENT: select '1'::xid >= '2'::xid;
2024-11-25 19:08:08.051 CET [561896][client backend] [pg_regress/comments][:0] LOG: disconnection: session time: 0:00:00.027 user=nkey database=regression host=[local]
2024-11-25 19:08:08.054 CET [561892][client backend] [pg_regress/horology][58/35:0] ERROR: date/time field value out of range: "27/12/2001 04:05:06.789-08" at character 33
2024-11-25 19:08:08.054 CET [561892][client backend] [pg_regress/horology][58/35:0] HINT: Perhaps you need a different "DateStyle" setting.
2024-11-25 19:08:08.054 CET [561892][client backend] [pg_regress/horology][58/35:0] STATEMENT: SELECT timestamp with time zone '27/12/2001 04:05:06.789-08';
2024-11-25 19:08:08.058 CET [561901][client backend] [pg_regress/stats_import][54/11:0] ERROR: could not open relation with OID 0
2024-11-25 19:08:08.058 CET [561901][client backend] [pg_regress/stats_import][54/11:0] STATEMENT: SELECT
pg_catalog.pg_set_relation_stats(
relation => 0::Oid,
relpages => 17::integer,
reltuples => 400.0::real,
relallvisible => 4::integer);
2024-11-25 19:08:08.058 CET [561892][client backend] [pg_regress/horology][58/65:0] ERROR: invalid input syntax for type time with time zone: "T040506.789 America/Los_Angeles" at character 28
2024-11-25 19:08:08.058 CET [561892][client backend] [pg_regress/horology][58/65:0] STATEMENT: SELECT time with time zone 'T040506.789 America/Los_Angeles';
2024-11-25 19:08:08.061 CET [561892][client backend] [pg_regress/horology][58/80:0] ERROR: invalid input syntax for type time: "T04" at character 31
2024-11-25 19:08:08.061 CET [561892][client backend] [pg_regress/horology][58/80:0] STATEMENT: SELECT time without time zone 'T04';
2024-11-25 19:08:08.063 CET [561898][client backend] [pg_regress/xid][50/46:0] ERROR: invalid input syntax for type pg_snapshot: "31:12:" at character 8
2024-11-25 19:08:08.063 CET [561898][client backend] [pg_regress/xid][50/46:0] STATEMENT: select '31:12:'::pg_snapshot;
2024-11-25 19:08:08.063 CET [561892][client backend] [pg_regress/horology][58/93:0] ERROR: invalid input syntax for type time with time zone: "T04+08" at character 28
2024-11-25 19:08:08.063 CET [561892][client backend] [pg_regress/horology][58/93:0] STATEMENT: SELECT time with time zone 'T04+08';
2024-11-25 19:08:08.063 CET [561898][client backend] [pg_regress/xid][50/47:0] ERROR: invalid input syntax for type pg_snapshot: "0:1:" at character 8
2024-11-25 19:08:08.063 CET [561898][client backend] [pg_regress/xid][50/47:0] STATEMENT: select '0:1:'::pg_snapshot;
2024-11-25 19:08:08.063 CET [561898][client backend] [pg_regress/xid][50/48:0] ERROR: invalid input syntax for type pg_snapshot: "12:13:0" at character 8
2024-11-25 19:08:08.063 CET [561898][client backend] [pg_regress/xid][50/48:0] STATEMENT: select '12:13:0'::pg_snapshot;
2024-11-25 19:08:08.063 CET [561899][client backend] [pg_regress/misc_sanity][:0] LOG: disconnection: session time: 0:00:00.033 user=nkey database=regression host=[local]
2024-11-25 19:08:08.063 CET [561892][client backend] [pg_regress/horology][58/97:0] ERROR: invalid input syntax for type date: "1995-08-06 J J J" at character 13
2024-11-25 19:08:08.063 CET [561892][client backend] [pg_regress/horology][58/97:0] STATEMENT: SELECT date '1995-08-06 J J J';
2024-11-25 19:08:08.063 CET [561892][client backend] [pg_regress/horology][58/98:0] ERROR: invalid input syntax for type date: "J J 1520447" at character 13
2024-11-25 19:08:08.063 CET [561892][client backend] [pg_regress/horology][58/98:0] STATEMENT: SELECT date 'J J 1520447';
2024-11-25 19:08:08.063 CET [561892][client backend] [pg_regress/horology][58/99:0] ERROR: invalid input syntax for type timestamp with time zone: "Y2001M12D27H04M05S06.789+08" at character 33
2024-11-25 19:08:08.063 CET [561892][client backend] [pg_regress/horology][58/99:0] STATEMENT: SELECT timestamp with time zone 'Y2001M12D27H04M05S06.789+08';
2024-11-25 19:08:08.063 CET [561892][client backend] [pg_regress/horology][58/100:0] ERROR: invalid input syntax for type timestamp with time zone: "Y2001M12D27H04MM05S06.789-08" at character 33
2024-11-25 19:08:08.063 CET [561892][client backend] [pg_regress/horology][58/100:0] STATEMENT: SELECT timestamp with time zone 'Y2001M12D27H04MM05S06.789-08';
2024-11-25 19:08:08.063 CET [561892][client backend] [pg_regress/horology][58/101:0] ERROR: invalid input syntax for type date: "1995-08-06 epoch" at character 13
2024-11-25 19:08:08.063 CET [561892][client backend] [pg_regress/horology][58/101:0] STATEMENT: SELECT date '1995-08-06 epoch';
2024-11-25 19:08:08.063 CET [561892][client backend] [pg_regress/horology][58/102:0] ERROR: invalid input syntax for type date: "1995-08-06 infinity" at character 13
2024-11-25 19:08:08.063 CET [561892][client backend] [pg_regress/horology][58/102:0] STATEMENT: SELECT date '1995-08-06 infinity';
2024-11-25 19:08:08.063 CET [561892][client backend] [pg_regress/horology][58/103:0] ERROR: invalid input syntax for type date: "1995-08-06 -infinity" at character 13
2024-11-25 19:08:08.063 CET [561892][client backend] [pg_regress/horology][58/103:0] STATEMENT: SELECT date '1995-08-06 -infinity';
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/104:0] ERROR: invalid input syntax for type date: "today infinity" at character 13
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/104:0] STATEMENT: SELECT date 'today infinity';
2024-11-25 19:08:08.064 CET [561901][client backend] [pg_regress/stats_import][54/23:0] ERROR: cannot modify statistics for relation "testseq"
2024-11-25 19:08:08.064 CET [561901][client backend] [pg_regress/stats_import][54/23:0] DETAIL: This operation is not supported for sequences.
2024-11-25 19:08:08.064 CET [561901][client backend] [pg_regress/stats_import][54/23:0] STATEMENT: SELECT
pg_catalog.pg_clear_relation_stats(
'stats_import.testseq'::regclass);
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/105:0] ERROR: invalid input syntax for type date: "-infinity infinity" at character 13
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/105:0] STATEMENT: SELECT date '-infinity infinity';
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/106:0] ERROR: invalid input syntax for type timestamp: "1995-08-06 epoch" at character 18
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/106:0] STATEMENT: SELECT timestamp '1995-08-06 epoch';
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/107:0] ERROR: invalid input syntax for type timestamp: "1995-08-06 infinity" at character 18
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/107:0] STATEMENT: SELECT timestamp '1995-08-06 infinity';
2024-11-25 19:08:08.064 CET [561901][client backend] [pg_regress/stats_import][54/24:0] ERROR: cannot modify statistics for relation "testview"
2024-11-25 19:08:08.064 CET [561901][client backend] [pg_regress/stats_import][54/24:0] DETAIL: This operation is not supported for views.
2024-11-25 19:08:08.064 CET [561901][client backend] [pg_regress/stats_import][54/24:0] STATEMENT: SELECT
pg_catalog.pg_clear_relation_stats(
'stats_import.testview'::regclass);
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/108:0] ERROR: invalid input syntax for type timestamp: "1995-08-06 -infinity" at character 18
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/108:0] STATEMENT: SELECT timestamp '1995-08-06 -infinity';
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/109:0] ERROR: invalid input syntax for type timestamp: "epoch 01:01:01" at character 18
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/109:0] STATEMENT: SELECT timestamp 'epoch 01:01:01';
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/110:0] ERROR: invalid input syntax for type timestamp: "infinity 01:01:01" at character 18
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/110:0] STATEMENT: SELECT timestamp 'infinity 01:01:01';
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/111:0] ERROR: invalid input syntax for type timestamp: "-infinity 01:01:01" at character 18
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/111:0] STATEMENT: SELECT timestamp '-infinity 01:01:01';
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/112:0] ERROR: invalid input syntax for type timestamp: "now epoch" at character 18
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/112:0] STATEMENT: SELECT timestamp 'now epoch';
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/113:0] ERROR: invalid input syntax for type timestamp: "-infinity infinity" at character 18
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/113:0] STATEMENT: SELECT timestamp '-infinity infinity';
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/114:0] ERROR: invalid input syntax for type timestamp with time zone: "1995-08-06 epoch" at character 20
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/114:0] STATEMENT: SELECT timestamptz '1995-08-06 epoch';
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/115:0] ERROR: invalid input syntax for type timestamp with time zone: "1995-08-06 infinity" at character 20
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/115:0] STATEMENT: SELECT timestamptz '1995-08-06 infinity';
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/116:0] ERROR: invalid input syntax for type timestamp with time zone: "1995-08-06 -infinity" at character 20
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/116:0] STATEMENT: SELECT timestamptz '1995-08-06 -infinity';
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/117:0] ERROR: invalid input syntax for type timestamp with time zone: "epoch 01:01:01" at character 20
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/117:0] STATEMENT: SELECT timestamptz 'epoch 01:01:01';
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/118:0] ERROR: invalid input syntax for type timestamp with time zone: "infinity 01:01:01" at character 20
2024-11-25 19:08:08.064 CET [561892][client backend] [pg_regress/horology][58/118:0] STATEMENT: SELECT timestamptz 'infinity 01:01:01';
2024-11-25 19:08:08.065 CET [561892][client backend] [pg_regress/horology][58/119:0] ERROR: invalid input syntax for type timestamp with time zone: "-infinity 01:01:01" at character 20
2024-11-25 19:08:08.065 CET [561892][client backend] [pg_regress/horology][58/119:0] STATEMENT: SELECT timestamptz '-infinity 01:01:01';
2024-11-25 19:08:08.065 CET [561892][client backend] [pg_regress/horology][58/120:0] ERROR: invalid input syntax for type timestamp with time zone: "now epoch" at character 20
2024-11-25 19:08:08.065 CET [561892][client backend] [pg_regress/horology][58/120:0] STATEMENT: SELECT timestamptz 'now epoch';
2024-11-25 19:08:08.065 CET [561892][client backend] [pg_regress/horology][58/121:0] ERROR: invalid input syntax for type timestamp with time zone: "-infinity infinity" at character 20
2024-11-25 19:08:08.065 CET [561892][client backend] [pg_regress/horology][58/121:0] STATEMENT: SELECT timestamptz '-infinity infinity';
2024-11-25 19:08:08.066 CET [561898][client backend] [pg_regress/xid][50/49:0] ERROR: invalid input syntax for type pg_snapshot: "12:16:14,13" at character 8
2024-11-25 19:08:08.066 CET [561898][client backend] [pg_regress/xid][50/49:0] STATEMENT: select '12:16:14,13'::pg_snapshot;
2024-11-25 19:08:08.068 CET [561900][client backend] [pg_regress/expressions][52/46:0] ERROR: operator does not exist: point = box at character 23
2024-11-25 19:08:08.068 CET [561900][client backend] [pg_regress/expressions][52/46:0] HINT: No operator matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:08.068 CET [561900][client backend] [pg_regress/expressions][52/46:0] STATEMENT: select '(0,0)'::point in ('(0,0,0,0)'::box, point(0,0));
2024-11-25 19:08:08.070 CET [561901][client backend] [pg_regress/stats_import][54/34:0] ERROR: could not open relation with OID 0
2024-11-25 19:08:08.070 CET [561901][client backend] [pg_regress/stats_import][54/34:0] STATEMENT: SELECT pg_catalog.pg_set_attribute_stats(
relation => '0'::oid,
attname => 'id'::name,
inherited => false::boolean,
null_frac => 0.1::real,
avg_width => 2::integer,
n_distinct => 0.3::real);
2024-11-25 19:08:08.071 CET [561901][client backend] [pg_regress/stats_import][54/35:0] ERROR: could not open relation with OID 0
2024-11-25 19:08:08.071 CET [561901][client backend] [pg_regress/stats_import][54/35:0] STATEMENT: SELECT pg_catalog.pg_clear_attribute_stats(
relation => '0'::oid,
attname => 'id'::name,
inherited => false::boolean);
2024-11-25 19:08:08.071 CET [561901][client backend] [pg_regress/stats_import][54/36:0] ERROR: "relation" cannot be NULL
2024-11-25 19:08:08.071 CET [561901][client backend] [pg_regress/stats_import][54/36:0] STATEMENT: SELECT pg_catalog.pg_set_attribute_stats(
relation => NULL::oid,
attname => 'id'::name,
inherited => false::boolean,
null_frac => 0.1::real,
avg_width => 2::integer,
n_distinct => 0.3::real);
2024-11-25 19:08:08.071 CET [561901][client backend] [pg_regress/stats_import][54/37:0] ERROR: cannot modify statistics on system column "xmin"
2024-11-25 19:08:08.071 CET [561901][client backend] [pg_regress/stats_import][54/37:0] STATEMENT: SELECT pg_catalog.pg_set_attribute_stats(
relation => 'stats_import.test'::regclass,
attname => 'xmin'::name,
inherited => false::boolean,
null_frac => 0.1::real,
avg_width => 2::integer,
n_distinct => 0.3::real);
2024-11-25 19:08:08.071 CET [561901][client backend] [pg_regress/stats_import][54/38:0] ERROR: column "nope" of relation "test" does not exist
2024-11-25 19:08:08.071 CET [561901][client backend] [pg_regress/stats_import][54/38:0] STATEMENT: SELECT pg_catalog.pg_set_attribute_stats(
relation => 'stats_import.test'::regclass,
attname => 'nope'::name,
inherited => false::boolean,
null_frac => 0.1::real,
avg_width => 2::integer,
n_distinct => 0.3::real);
2024-11-25 19:08:08.071 CET [561901][client backend] [pg_regress/stats_import][54/39:0] ERROR: cannot clear statistics on system column "ctid"
2024-11-25 19:08:08.071 CET [561901][client backend] [pg_regress/stats_import][54/39:0] STATEMENT: SELECT pg_catalog.pg_clear_attribute_stats(
relation => 'stats_import.test'::regclass,
attname => 'ctid'::name,
inherited => false::boolean);
2024-11-25 19:08:08.071 CET [561901][client backend] [pg_regress/stats_import][54/40:0] ERROR: column "nope" of relation "test" does not exist
2024-11-25 19:08:08.071 CET [561901][client backend] [pg_regress/stats_import][54/40:0] STATEMENT: SELECT pg_catalog.pg_clear_attribute_stats(
relation => 'stats_import.test'::regclass,
attname => 'nope'::name,
inherited => false::boolean);
2024-11-25 19:08:08.072 CET [561901][client backend] [pg_regress/stats_import][54/41:0] ERROR: "attname" cannot be NULL
2024-11-25 19:08:08.072 CET [561901][client backend] [pg_regress/stats_import][54/41:0] STATEMENT: SELECT pg_catalog.pg_set_attribute_stats(
relation => 'stats_import.test'::regclass,
attname => NULL::name,
inherited => false::boolean,
null_frac => 0.1::real,
avg_width => 2::integer,
n_distinct => 0.3::real);
2024-11-25 19:08:08.072 CET [561901][client backend] [pg_regress/stats_import][54/42:0] ERROR: "inherited" cannot be NULL
2024-11-25 19:08:08.072 CET [561901][client backend] [pg_regress/stats_import][54/42:0] STATEMENT: SELECT pg_catalog.pg_set_attribute_stats(
relation => 'stats_import.test'::regclass,
attname => 'id'::name,
inherited => NULL::boolean,
null_frac => 0.1::real,
avg_width => 2::integer,
n_distinct => 0.3::real);
2024-11-25 19:08:08.073 CET [561901][client backend] [pg_regress/stats_import][54/45:0] ERROR: "most_common_vals" must be specified when "most_common_freqs" is specified
2024-11-25 19:08:08.073 CET [561901][client backend] [pg_regress/stats_import][54/45:0] STATEMENT: SELECT pg_catalog.pg_set_attribute_stats(
relation => 'stats_import.test'::regclass,
attname => 'id'::name,
inherited => false::boolean,
null_frac => 0.5::real,
avg_width => 2::integer,
n_distinct => -0.1::real,
most_common_freqs => '{0.1,0.2,0.3}'::real[]
);
2024-11-25 19:08:08.073 CET [561901][client backend] [pg_regress/stats_import][54/46:0] ERROR: "most_common_freqs" must be specified when "most_common_vals" is specified
2024-11-25 19:08:08.073 CET [561901][client backend] [pg_regress/stats_import][54/46:0] STATEMENT: SELECT pg_catalog.pg_set_attribute_stats(
relation => 'stats_import.test'::regclass,
attname => 'id'::name,
inherited => false::boolean,
null_frac => 0.5::real,
avg_width => 2::integer,
n_distinct => -0.1::real,
most_common_vals => '{1,2,3}'::text
);
2024-11-25 19:08:08.074 CET [561901][client backend] [pg_regress/stats_import][54/47:0] ERROR: invalid input syntax for type integer: "2023-09-30"
2024-11-25 19:08:08.074 CET [561901][client backend] [pg_regress/stats_import][54/47:0] STATEMENT: SELECT pg_catalog.pg_set_attribute_stats(
relation => 'stats_import.test'::regclass,
attname => 'id'::name,
inherited => false::boolean,
null_frac => 0.5::real,
avg_width => 2::integer,
n_distinct => -0.1::real,
most_common_vals => '{2023-09-30,2024-10-31,3}'::text,
most_common_freqs => '{0.2,0.1}'::real[]
);
2024-11-25 19:08:08.074 CET [561901][client backend] [pg_regress/stats_import][54/48:0] ERROR: invalid input syntax for type integer: "four"
2024-11-25 19:08:08.074 CET [561901][client backend] [pg_regress/stats_import][54/48:0] STATEMENT: SELECT pg_catalog.pg_set_attribute_stats(
relation => 'stats_import.test'::regclass,
attname => 'id'::name,
inherited => false::boolean,
null_frac => 0.5::real,
avg_width => 2::integer,
n_distinct => -0.1::real,
most_common_vals => '{2,four,3}'::text,
most_common_freqs => '{0.3,0.25,0.05}'::real[]
);
2024-11-25 19:08:08.075 CET [561898][client backend] [pg_regress/xid][50/70:0] ERROR: invalid input syntax for type pg_snapshot: "1:9223372036854775808:3" at character 20
2024-11-25 19:08:08.075 CET [561898][client backend] [pg_regress/xid][50/70:0] STATEMENT: SELECT pg_snapshot '1:9223372036854775808:3';
2024-11-25 19:08:08.076 CET [561891][client backend] [pg_regress/geometry][55/53:0] ERROR: operator does not exist: lseg # point at character 23
2024-11-25 19:08:08.076 CET [561891][client backend] [pg_regress/geometry][55/53:0] HINT: No operator matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:08.076 CET [561891][client backend] [pg_regress/geometry][55/53:0] STATEMENT: SELECT p.f1, l.s, l.s # p.f1 AS intersection
FROM LSEG_TBL l, POINT_TBL p;
2024-11-25 19:08:08.081 CET [561901][client backend] [pg_regress/stats_import][54/51:0] ERROR: "histogram_bounds" array cannot contain NULL values
2024-11-25 19:08:08.081 CET [561901][client backend] [pg_regress/stats_import][54/51:0] STATEMENT: SELECT pg_catalog.pg_set_attribute_stats(
relation => 'stats_import.test'::regclass,
attname => 'id'::name,
inherited => false::boolean,
null_frac => 0.5::real,
avg_width => 2::integer,
n_distinct => -0.1::real,
histogram_bounds => '{1,NULL,3,4}'::text
);
2024-11-25 19:08:08.081 CET [561892][client backend] [pg_regress/horology][58/128:0] ERROR: operator does not exist: date - time with time zone at character 26
2024-11-25 19:08:08.081 CET [561892][client backend] [pg_regress/horology][58/128:0] HINT: No operator matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:08.081 CET [561892][client backend] [pg_regress/horology][58/128:0] STATEMENT: SELECT date '1991-02-03' - time with time zone '04:05:06 UTC' AS "Subtract Time UTC";
2024-11-25 19:08:08.082 CET [561898][client backend] [pg_regress/xid][:0] LOG: disconnection: session time: 0:00:00.059 user=nkey database=regression host=[local]
2024-11-25 19:08:08.083 CET [561892][client backend] [pg_regress/horology][58/136:0] ERROR: timestamp out of range
2024-11-25 19:08:08.083 CET [561892][client backend] [pg_regress/horology][58/136:0] STATEMENT: SELECT timestamp without time zone '2000-01-01' - interval '2483590 days' AS "out of range";
2024-11-25 19:08:08.083 CET [561892][client backend] [pg_regress/horology][58/137:0] ERROR: timestamp out of range
2024-11-25 19:08:08.083 CET [561892][client backend] [pg_regress/horology][58/137:0] STATEMENT: SELECT timestamp without time zone '294276-12-31 23:59:59' + interval '9223372036854775807 microseconds' AS "out of range";
2024-11-25 19:08:08.087 CET [561906][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.047 user=nkey database=postgres host=[local]
2024-11-25 19:08:08.091 CET [561892][client backend] [pg_regress/horology][58/159:0] ERROR: timestamp out of range
2024-11-25 19:08:08.091 CET [561892][client backend] [pg_regress/horology][58/159:0] STATEMENT: SELECT timestamp with time zone '2000-01-01' - interval '2483590 days' AS "out of range";
2024-11-25 19:08:08.091 CET [561892][client backend] [pg_regress/horology][58/160:0] ERROR: timestamp out of range
2024-11-25 19:08:08.091 CET [561892][client backend] [pg_regress/horology][58/160:0] STATEMENT: SELECT timestamp with time zone '294276-12-31 23:59:59 UTC' + interval '9223372036854775807 microseconds' AS "out of range";
2024-11-25 19:08:08.095 CET [561892][client backend] [pg_regress/horology][58/186:0] ERROR: cannot cast type time with time zone to interval at character 8
2024-11-25 19:08:08.095 CET [561892][client backend] [pg_regress/horology][58/186:0] STATEMENT: SELECT CAST(time with time zone '01:02-08' AS interval) AS "+00:01";
2024-11-25 19:08:08.095 CET [561892][client backend] [pg_regress/horology][58/187:0] ERROR: cannot cast type interval to time with time zone at character 8
2024-11-25 19:08:08.095 CET [561892][client backend] [pg_regress/horology][58/187:0] STATEMENT: SELECT CAST(interval '02:03' AS time with time zone) AS "02:03:00-08";
2024-11-25 19:08:08.098 CET [561901][client backend] [pg_regress/stats_import][54/56:0] ERROR: unable to determine element type of attribute "id"
2024-11-25 19:08:08.098 CET [561901][client backend] [pg_regress/stats_import][54/56:0] DETAIL: Cannot set STATISTIC_KIND_MCELEM or STATISTIC_KIND_DECHIST.
2024-11-25 19:08:08.098 CET [561901][client backend] [pg_regress/stats_import][54/56:0] STATEMENT: SELECT pg_catalog.pg_set_attribute_stats(
relation => 'stats_import.test'::regclass,
attname => 'id'::name,
inherited => false::boolean,
null_frac => 0.5::real,
avg_width => 2::integer,
n_distinct => -0.1::real,
most_common_elems => '{1,3}'::text,
most_common_elem_freqs => '{0.3,0.2,0.2,0.3,0.0}'::real[]
);
2024-11-25 19:08:08.098 CET [561901][client backend] [pg_regress/stats_import][54/57:0] ERROR: "most_common_elem_freqs" must be specified when "most_common_elems" is specified
2024-11-25 19:08:08.098 CET [561901][client backend] [pg_regress/stats_import][54/57:0] STATEMENT: SELECT pg_catalog.pg_set_attribute_stats(
relation => 'stats_import.test'::regclass,
attname => 'tags'::name,
inherited => false::boolean,
null_frac => 0.5::real,
avg_width => 2::integer,
n_distinct => -0.1::real,
most_common_elems => '{one,two}'::text
);
2024-11-25 19:08:08.098 CET [561901][client backend] [pg_regress/stats_import][54/58:0] ERROR: "most_common_elems" must be specified when "most_common_elem_freqs" is specified
2024-11-25 19:08:08.098 CET [561901][client backend] [pg_regress/stats_import][54/58:0] STATEMENT: SELECT pg_catalog.pg_set_attribute_stats(
relation => 'stats_import.test'::regclass,
attname => 'tags'::name,
inherited => false::boolean,
null_frac => 0.5::real,
avg_width => 2::integer,
n_distinct => -0.1::real,
most_common_elem_freqs => '{0.3,0.2,0.2,0.3}'::real[]
);
2024-11-25 19:08:08.102 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait flush-all
2024-11-25 19:08:08.104 CET [561901][client backend] [pg_regress/stats_import][54/61:0] ERROR: unable to determine element type of attribute "id"
2024-11-25 19:08:08.104 CET [561901][client backend] [pg_regress/stats_import][54/61:0] DETAIL: Cannot set STATISTIC_KIND_MCELEM or STATISTIC_KIND_DECHIST.
2024-11-25 19:08:08.104 CET [561901][client backend] [pg_regress/stats_import][54/61:0] STATEMENT: SELECT pg_catalog.pg_set_attribute_stats(
relation => 'stats_import.test'::regclass,
attname => 'id'::name,
inherited => false::boolean,
null_frac => 0.5::real,
avg_width => 2::integer,
n_distinct => -0.1::real,
elem_count_histogram => '{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}'::real[]
);
2024-11-25 19:08:08.104 CET [561901][client backend] [pg_regress/stats_import][54/62:0] ERROR: "elem_count_histogram" array cannot contain NULL values
2024-11-25 19:08:08.104 CET [561901][client backend] [pg_regress/stats_import][54/62:0] STATEMENT: SELECT pg_catalog.pg_set_attribute_stats(
relation => 'stats_import.test'::regclass,
attname => 'tags'::name,
inherited => false::boolean,
null_frac => 0.5::real,
avg_width => 2::integer,
n_distinct => -0.1::real,
elem_count_histogram => '{1,1,NULL,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}'::real[]
);
2024-11-25 19:08:08.105 CET [561893][client backend] [pg_regress/tstypes][49/254:0] ERROR: lexeme array may not contain nulls
2024-11-25 19:08:08.105 CET [561893][client backend] [pg_regress/tstypes][49/254:0] STATEMENT: SELECT array_to_tsvector(ARRAY['base','hidden','rebel','spaceship', NULL]);
2024-11-25 19:08:08.105 CET [561893][client backend] [pg_regress/tstypes][49/255:0] ERROR: lexeme array may not contain empty strings
2024-11-25 19:08:08.105 CET [561893][client backend] [pg_regress/tstypes][49/255:0] STATEMENT: SELECT array_to_tsvector(ARRAY['base','hidden','rebel','spaceship', '']);
2024-11-25 19:08:08.106 CET [561900][client backend] [pg_regress/expressions][:0] LOG: disconnection: session time: 0:00:00.079 user=nkey database=regression host=[local]
2024-11-25 19:08:08.104 CET [561908][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.106 CET [561891][client backend] [pg_regress/geometry][55/94:0] ERROR: open path cannot be converted to polygon
2024-11-25 19:08:08.106 CET [561891][client backend] [pg_regress/geometry][55/94:0] STATEMENT: SELECT f1, f1::polygon FROM PATH_TBL WHERE isopen(f1);
2024-11-25 19:08:08.107 CET [561908][client backend] [[unknown]][69/12:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.107 CET [561908][client backend] [[unknown]][69/12:0] LOG: connection authorized: user=nkey database=regression_passwordcheck application_name=pg_regress/passwordcheck
2024-11-25 19:08:08.107 CET [561901][client backend] [pg_regress/stats_import][54/65:0] ERROR: attribute "id" is not a range type
2024-11-25 19:08:08.107 CET [561901][client backend] [pg_regress/stats_import][54/65:0] DETAIL: Cannot set STATISTIC_KIND_RANGE_LENGTH_HISTOGRAM or STATISTIC_KIND_BOUNDS_HISTOGRAM.
2024-11-25 19:08:08.107 CET [561901][client backend] [pg_regress/stats_import][54/65:0] STATEMENT: SELECT pg_catalog.pg_set_attribute_stats(
relation => 'stats_import.test'::regclass,
attname => 'id'::name,
inherited => false::boolean,
null_frac => 0.5::real,
avg_width => 2::integer,
n_distinct => -0.1::real,
range_empty_frac => 0.5::real,
range_length_histogram => '{399,499,Infinity}'::text
);
2024-11-25 19:08:08.107 CET [561893][client backend] [pg_regress/tstypes][49/265:0] ERROR: weight array may not contain nulls
2024-11-25 19:08:08.107 CET [561893][client backend] [pg_regress/tstypes][49/265:0] STATEMENT: SELECT ts_filter('base hidden rebel spaceship strike'::tsvector, '{a,b,NULL}');
2024-11-25 19:08:08.107 CET [561901][client backend] [pg_regress/stats_import][54/66:0] ERROR: "range_empty_frac" must be specified when "range_length_histogram" is specified
2024-11-25 19:08:08.107 CET [561901][client backend] [pg_regress/stats_import][54/66:0] STATEMENT: SELECT pg_catalog.pg_set_attribute_stats(
relation => 'stats_import.test'::regclass,
attname => 'arange'::name,
inherited => false::boolean,
null_frac => 0.5::real,
avg_width => 2::integer,
n_distinct => -0.1::real,
range_length_histogram => '{399,499,Infinity}'::text
);
2024-11-25 19:08:08.108 CET [561901][client backend] [pg_regress/stats_import][54/67:0] ERROR: "range_length_histogram" must be specified when "range_empty_frac" is specified
2024-11-25 19:08:08.108 CET [561901][client backend] [pg_regress/stats_import][54/67:0] STATEMENT: SELECT pg_catalog.pg_set_attribute_stats(
relation => 'stats_import.test'::regclass,
attname => 'arange'::name,
inherited => false::boolean,
null_frac => 0.5::real,
avg_width => 2::integer,
n_distinct => -0.1::real,
range_empty_frac => 0.5::real
);
2024-11-25 19:08:08.109 CET [561893][client backend] [pg_regress/tstypes][:0] LOG: disconnection: session time: 0:00:00.085 user=nkey database=regression host=[local]
2024-11-25 19:08:08.115 CET [561901][client backend] [pg_regress/stats_import][54/70:0] ERROR: attribute "id" is not a range type
2024-11-25 19:08:08.115 CET [561901][client backend] [pg_regress/stats_import][54/70:0] DETAIL: Cannot set STATISTIC_KIND_RANGE_LENGTH_HISTOGRAM or STATISTIC_KIND_BOUNDS_HISTOGRAM.
2024-11-25 19:08:08.115 CET [561901][client backend] [pg_regress/stats_import][54/70:0] STATEMENT: SELECT pg_catalog.pg_set_attribute_stats(
relation => 'stats_import.test'::regclass,
attname => 'id'::name,
inherited => false::boolean,
null_frac => 0.5::real,
avg_width => 2::integer,
n_distinct => -0.1::real,
range_bounds_histogram => '{"[-1,1)","[0,4)","[1,4)","[1,100)"}'::text
);
2024-11-25 19:08:08.117 CET [561891][client backend] [pg_regress/geometry][55/105:0] ERROR: division by zero
2024-11-25 19:08:08.117 CET [561891][client backend] [pg_regress/geometry][55/105:0] STATEMENT: SELECT p.f1, p1.f1, p.f1 / p1.f1 FROM PATH_TBL p, POINT_TBL p1 WHERE p1.f1 ~= '(0,0)'::point;
2024-11-25 19:08:08.118 CET [561901][client backend] [pg_regress/stats_import][54/73:0] ERROR: unable to determine element type of attribute "arange"
2024-11-25 19:08:08.118 CET [561901][client backend] [pg_regress/stats_import][54/73:0] DETAIL: Cannot set STATISTIC_KIND_MCELEM or STATISTIC_KIND_DECHIST.
2024-11-25 19:08:08.118 CET [561901][client backend] [pg_regress/stats_import][54/73:0] STATEMENT: SELECT pg_catalog.pg_set_attribute_stats(
relation => 'stats_import.test'::regclass,
attname => 'arange'::name,
inherited => false::boolean,
null_frac => 0.5::real,
avg_width => 2::integer,
n_distinct => -0.1::real,
most_common_vals => '{"[2,3)","[1,2)","[3,4)"}'::text,
most_common_freqs => '{0.3,0.25,0.05}'::real[],
histogram_bounds => '{"[1,2)","[2,3)","[3,4)","[4,5)"}'::text,
correlation => 1.1::real,
most_common_elems => '{3,1}'::text,
most_common_elem_freqs => '{0.3,0.2,0.2,0.3,0.0}'::real[],
range_empty_frac => -0.5::real,
range_length_histogram => '{399,499,Infinity}'::text,
range_bounds_histogram => '{"[-1,1)","[0,4)","[1,4)","[1,100)"}'::text
);
2024-11-25 19:08:08.123 CET [561892][client backend] [pg_regress/horology][58/220:0] ERROR: date out of range for timestamp
2024-11-25 19:08:08.123 CET [561892][client backend] [pg_regress/horology][58/220:0] STATEMENT: SELECT '2202020-10-05'::date::timestamp;
2024-11-25 19:08:08.123 CET [561892][client backend] [pg_regress/horology][58/223:0] ERROR: date out of range for timestamp
2024-11-25 19:08:08.123 CET [561892][client backend] [pg_regress/horology][58/223:0] STATEMENT: SELECT '2202020-10-05'::date::timestamptz;
2024-11-25 19:08:08.123 CET [561901][client backend] [pg_regress/stats_import][54/75:0] ERROR: name at variadic position 5 is NULL
2024-11-25 19:08:08.123 CET [561901][client backend] [pg_regress/stats_import][54/75:0] STATEMENT: SELECT pg_restore_relation_stats(
'relation', '0'::oid::regclass,
'version', 150000::integer,
NULL, '17'::integer,
'reltuples', 400::real,
'relallvisible', 4::integer);
2024-11-25 19:08:08.124 CET [561892][client backend] [pg_regress/horology][58/228:0] ERROR: date out of range for timestamp
2024-11-25 19:08:08.124 CET [561892][client backend] [pg_regress/horology][58/228:0] STATEMENT: SELECT '4714-11-24 BC'::date::timestamptz;
2024-11-25 19:08:08.128 CET [561901][client backend] [pg_regress/stats_import][54/76:0] ERROR: name at variadic position 5 has type "integer", expected type "text"
2024-11-25 19:08:08.128 CET [561901][client backend] [pg_regress/stats_import][54/76:0] STATEMENT: SELECT pg_restore_relation_stats(
'relation', '0'::oid::regclass,
'version', 150000::integer,
17, '17'::integer,
'reltuples', 400::real,
'relallvisible', 4::integer);
2024-11-25 19:08:08.129 CET [561901][client backend] [pg_regress/stats_import][54/77:0] ERROR: variadic arguments must be name/value pairs
2024-11-25 19:08:08.129 CET [561901][client backend] [pg_regress/stats_import][54/77:0] HINT: Provide an even number of variadic arguments that can be divided into pairs.
2024-11-25 19:08:08.129 CET [561901][client backend] [pg_regress/stats_import][54/77:0] STATEMENT: SELECT pg_restore_relation_stats(
'relation', '0'::oid::regclass,
'version', 150000::integer,
'relpages', '17'::integer,
'reltuples', 400::real,
'relallvisible');
2024-11-25 19:08:08.129 CET [561908][client backend] [pg_regress/passwordcheck][69/16:0] ERROR: password is too short
2024-11-25 19:08:08.129 CET [561908][client backend] [pg_regress/passwordcheck][69/16:0] STATEMENT: ALTER USER regress_passwordcheck_user1 PASSWORD 'tooshrt';
2024-11-25 19:08:08.130 CET [561901][client backend] [pg_regress/stats_import][54/78:0] ERROR: could not open relation with OID 0
2024-11-25 19:08:08.130 CET [561901][client backend] [pg_regress/stats_import][54/78:0] STATEMENT: SELECT pg_restore_relation_stats(
'relation', '0'::oid::regclass,
'version', 150000::integer,
'relpages', '17'::integer,
'reltuples', 400::real,
'relallvisible', 4::integer);
2024-11-25 19:08:08.130 CET [561908][client backend] [pg_regress/passwordcheck][69/17:0] ERROR: password must not contain user name
2024-11-25 19:08:08.130 CET [561908][client backend] [pg_regress/passwordcheck][69/17:0] STATEMENT: ALTER USER regress_passwordcheck_user1 PASSWORD 'xyzregress_passwordcheck_user1';
2024-11-25 19:08:08.130 CET [561908][client backend] [pg_regress/passwordcheck][69/18:0] ERROR: password must contain both letters and nonletters
2024-11-25 19:08:08.130 CET [561908][client backend] [pg_regress/passwordcheck][69/18:0] STATEMENT: ALTER USER regress_passwordcheck_user1 PASSWORD 'alessnicelongpassword';
2024-11-25 19:08:08.130 CET [561908][client backend] [pg_regress/passwordcheck][69/20:0] ERROR: password must not equal user name
2024-11-25 19:08:08.130 CET [561908][client backend] [pg_regress/passwordcheck][69/20:0] STATEMENT: ALTER USER regress_passwordcheck_user1 PASSWORD 'md507a112732ed9f2087fa90b192d44e358';
2024-11-25 19:08:08.131 CET [561908][client backend] [pg_regress/passwordcheck][:0] LOG: disconnection: session time: 0:00:00.028 user=nkey database=regression_passwordcheck host=[local]
2024-11-25 19:08:08.135 CET [561892][client backend] [pg_regress/horology][58/273:0] ERROR: invalid value "/Feb/16" for "Mon"
2024-11-25 19:08:08.135 CET [561892][client backend] [pg_regress/horology][58/273:0] DETAIL: The given value did not match any of the allowed values for this field.
2024-11-25 19:08:08.135 CET [561892][client backend] [pg_regress/horology][58/273:0] STATEMENT: SELECT to_timestamp('97/Feb/16', 'YYMonDD');
2024-11-25 19:08:08.135 CET [561901][client backend] [pg_regress/stats_import][54/87:0] WARNING: unrecognized argument name: "nope"
2024-11-25 19:08:08.135 CET [561891][client backend] [pg_regress/geometry][55/134:0] ERROR: must request at least 2 points
2024-11-25 19:08:08.135 CET [561891][client backend] [pg_regress/geometry][55/134:0] STATEMENT: SELECT f1, polygon(1, f1) FROM CIRCLE_TBL WHERE f1 >= '<(0,0),1>';
2024-11-25 19:08:08.136 CET [561901][client backend] [pg_regress/stats_import][54/87:0] ERROR: could not open relation with OID 0
2024-11-25 19:08:08.136 CET [561901][client backend] [pg_regress/stats_import][54/87:0] STATEMENT: SELECT pg_restore_relation_stats(
'relation', '0'::oid::regclass,
'version', 150000::integer,
'relpages', '17'::integer,
'reltuples', 400::real,
'nope', 4::integer);
2024-11-25 19:08:08.136 CET [561891][client backend] [pg_regress/geometry][55/135:0] ERROR: cannot convert circle with radius zero to polygon
2024-11-25 19:08:08.136 CET [561891][client backend] [pg_regress/geometry][55/135:0] STATEMENT: SELECT f1, polygon(10, f1) FROM CIRCLE_TBL WHERE f1 < '<(0,0),1>';
2024-11-25 19:08:08.136 CET [561901][client backend] [pg_regress/stats_import][54/88:0] WARNING: argument "relpages" has type "text", expected type "integer"
2024-11-25 19:08:08.137 CET [561901][client backend] [pg_regress/stats_import][54/90:0] ERROR: could not open relation with OID 0
2024-11-25 19:08:08.137 CET [561901][client backend] [pg_regress/stats_import][54/90:0] STATEMENT: SELECT pg_catalog.pg_restore_attribute_stats(
'relation', '0'::oid::regclass,
'attname', 'id'::name,
'inherited', false::boolean,
'version', 150000::integer,
'null_frac', 0.1::real,
'avg_width', 2::integer,
'n_distinct', 0.3::real);
2024-11-25 19:08:08.137 CET [561901][client backend] [pg_regress/stats_import][54/91:0] ERROR: "relation" cannot be NULL
2024-11-25 19:08:08.137 CET [561901][client backend] [pg_regress/stats_import][54/91:0] STATEMENT: SELECT pg_catalog.pg_restore_attribute_stats(
'relation', NULL::oid,
'attname', 'id'::name,
'inherited', false::boolean,
'version', 150000::integer,
'null_frac', 0.1::real,
'avg_width', 2::integer,
'n_distinct', 0.3::real);
2024-11-25 19:08:08.137 CET [561901][client backend] [pg_regress/stats_import][54/92:0] ERROR: "attname" cannot be NULL
2024-11-25 19:08:08.137 CET [561901][client backend] [pg_regress/stats_import][54/92:0] STATEMENT: SELECT pg_catalog.pg_restore_attribute_stats(
'relation', 'stats_import.test'::regclass,
'attname', NULL::name,
'inherited', false::boolean,
'version', 150000::integer,
'null_frac', 0.1::real,
'avg_width', 2::integer,
'n_distinct', 0.3::real);
2024-11-25 19:08:08.138 CET [561901][client backend] [pg_regress/stats_import][54/93:0] ERROR: column "nope" of relation "test" does not exist
2024-11-25 19:08:08.138 CET [561901][client backend] [pg_regress/stats_import][54/93:0] STATEMENT: SELECT pg_catalog.pg_restore_attribute_stats(
'relation', 'stats_import.test'::regclass,
'attname', 'nope'::name,
'inherited', false::boolean,
'version', 150000::integer,
'null_frac', 0.1::real,
'avg_width', 2::integer,
'n_distinct', 0.3::real);
2024-11-25 19:08:08.138 CET [561901][client backend] [pg_regress/stats_import][54/94:0] ERROR: "inherited" cannot be NULL
2024-11-25 19:08:08.138 CET [561901][client backend] [pg_regress/stats_import][54/94:0] STATEMENT: SELECT pg_catalog.pg_restore_attribute_stats(
'relation', 'stats_import.test'::regclass,
'attname', 'id'::name,
'inherited', NULL::boolean,
'version', 150000::integer,
'null_frac', 0.1::real,
'avg_width', 2::integer,
'n_distinct', 0.3::real);
2024-11-25 19:08:08.141 CET [561816][client backend] [pg_regress/ltree][38/314:528363] ERROR: value 0 out of bounds for option "siglen"
2024-11-25 19:08:08.141 CET [561816][client backend] [pg_regress/ltree][38/314:528363] DETAIL: Valid values are between "4" and "2024".
2024-11-25 19:08:08.141 CET [561816][client backend] [pg_regress/ltree][38/314:528363] STATEMENT: create index tstidx on ltreetest using gist (t gist_ltree_ops(siglen=0));
2024-11-25 19:08:08.142 CET [561901][client backend] [pg_regress/stats_import][54/97:0] WARNING: unrecognized argument name: "nope"
2024-11-25 19:08:08.142 CET [561816][client backend] [pg_regress/ltree][38/315:528365] ERROR: value 2025 out of bounds for option "siglen"
2024-11-25 19:08:08.142 CET [561816][client backend] [pg_regress/ltree][38/315:528365] DETAIL: Valid values are between "4" and "2024".
2024-11-25 19:08:08.142 CET [561816][client backend] [pg_regress/ltree][38/315:528365] STATEMENT: create index tstidx on ltreetest using gist (t gist_ltree_ops(siglen=2025));
2024-11-25 19:08:08.143 CET [561816][client backend] [pg_regress/ltree][38/316:528366] ERROR: value 2028 out of bounds for option "siglen"
2024-11-25 19:08:08.143 CET [561816][client backend] [pg_regress/ltree][38/316:528366] DETAIL: Valid values are between "4" and "2024".
2024-11-25 19:08:08.143 CET [561816][client backend] [pg_regress/ltree][38/316:528366] STATEMENT: create index tstidx on ltreetest using gist (t gist_ltree_ops(siglen=2028));
2024-11-25 19:08:08.143 CET [561816][client backend] [pg_regress/ltree][38/317:528367] ERROR: siglen value must be a multiple of 4
2024-11-25 19:08:08.143 CET [561816][client backend] [pg_regress/ltree][38/317:528367] STATEMENT: create index tstidx on ltreetest using gist (t gist_ltree_ops(siglen=2019));
2024-11-25 19:08:08.144 CET [561901][client backend] [pg_regress/stats_import][54/99:0] WARNING: "most_common_vals" must be specified when "most_common_freqs" is specified
2024-11-25 19:08:08.146 CET [561892][client backend] [pg_regress/horology][58/312:0] ERROR: invalid value "JUNK" for "TZ"
2024-11-25 19:08:08.146 CET [561892][client backend] [pg_regress/horology][58/312:0] DETAIL: Time zone abbreviation is not recognized.
2024-11-25 19:08:08.146 CET [561892][client backend] [pg_regress/horology][58/312:0] STATEMENT: SELECT to_timestamp('2011-12-18 11:38 JUNK', 'YYYY-MM-DD HH12:MI TZ');
2024-11-25 19:08:08.146 CET [561892][client backend] [pg_regress/horology][58/313:0] ERROR: invalid value ".." for "TZ"
2024-11-25 19:08:08.146 CET [561892][client backend] [pg_regress/horology][58/313:0] DETAIL: Value must be an integer.
2024-11-25 19:08:08.146 CET [561892][client backend] [pg_regress/horology][58/313:0] STATEMENT: SELECT to_timestamp('2011-12-18 11:38 ...', 'YYYY-MM-DD HH12:MI TZ');
2024-11-25 19:08:08.146 CET [561892][client backend] [pg_regress/horology][58/316:0] ERROR: invalid value "xy" for "OF"
2024-11-25 19:08:08.146 CET [561892][client backend] [pg_regress/horology][58/316:0] DETAIL: Value must be an integer.
2024-11-25 19:08:08.146 CET [561892][client backend] [pg_regress/horology][58/316:0] STATEMENT: SELECT to_timestamp('2011-12-18 11:38 +xyz', 'YYYY-MM-DD HH12:MI OF');
2024-11-25 19:08:08.146 CET [561892][client backend] [pg_regress/horology][58/317:0] ERROR: invalid value "xy" for "OF"
2024-11-25 19:08:08.146 CET [561892][client backend] [pg_regress/horology][58/317:0] DETAIL: Value must be an integer.
2024-11-25 19:08:08.146 CET [561892][client backend] [pg_regress/horology][58/317:0] STATEMENT: SELECT to_timestamp('2011-12-18 11:38 +01:xyz', 'YYYY-MM-DD HH12:MI OF');
2024-11-25 19:08:08.146 CET [561901][client backend] [pg_regress/stats_import][54/101:0] WARNING: "most_common_freqs" must be specified when "most_common_vals" is specified
2024-11-25 19:08:08.146 CET [561023][checkpointer] LOG: checkpoint complete: wrote 2606 buffers (15.9%), wrote 2 SLRU buffers; 0 WAL file(s) added, 0 removed, 1 recycled; write=0.038 s, sync=0.001 s, total=0.045 s; sync files=0, longest=0.000 s, average=0.000 s; distance=12210 kB, estimate=14506 kB; lsn=4/47862120, redo lsn=4/476FE020
2024-11-25 19:08:08.148 CET [561902][client backend] [pg_regress/mvcc][:0] LOG: disconnection: session time: 0:00:00.119 user=nkey database=regression host=[local]
2024-11-25 19:08:08.148 CET [561901][client backend] [pg_regress/stats_import][54/103:0] WARNING: argument "most_common_freqs" has type "double precision[]", expected type "real[]"
2024-11-25 19:08:08.148 CET [561901][client backend] [pg_regress/stats_import][54/103:0] WARNING: "most_common_freqs" must be specified when "most_common_vals" is specified
2024-11-25 19:08:08.148 CET [561892][client backend] [pg_regress/horology][58/326:0] ERROR: date/time field value out of range: "2018-11-02 12:34:56.123456789"
2024-11-25 19:08:08.148 CET [561892][client backend] [pg_regress/horology][58/326:0] STATEMENT: SELECT i, to_timestamp('2018-11-02 12:34:56.123456789', 'YYYY-MM-DD HH24:MI:SS.FF' || i) FROM generate_series(1, 6) i;
2024-11-25 19:08:08.152 CET [561901][client backend] [pg_regress/stats_import][54/105:0] WARNING: invalid input syntax for type integer: "four"
2024-11-25 19:08:08.152 CET [561891][client backend] [pg_regress/geometry][55/160:0] ERROR: value out of range: overflow
2024-11-25 19:08:08.152 CET [561891][client backend] [pg_regress/geometry][55/160:0] STATEMENT: SELECT c.f1, p.f1, c.f1 / p.f1 FROM CIRCLE_TBL c, POINT_TBL p WHERE p.f1[0] > 1000;
2024-11-25 19:08:08.152 CET [561892][client backend] [pg_regress/horology][58/348:0] ERROR: invalid value "+" for "MON"
2024-11-25 19:08:08.152 CET [561892][client backend] [pg_regress/horology][58/348:0] DETAIL: The given value did not match any of the allowed values for this field.
2024-11-25 19:08:08.152 CET [561892][client backend] [pg_regress/horology][58/348:0] STATEMENT: SELECT to_timestamp('2000 + + JUN', 'YYYY MON');
2024-11-25 19:08:08.152 CET [561891][client backend] [pg_regress/geometry][55/161:0] ERROR: division by zero
2024-11-25 19:08:08.152 CET [561891][client backend] [pg_regress/geometry][55/161:0] STATEMENT: SELECT c.f1, p.f1, c.f1 / p.f1 FROM CIRCLE_TBL c, POINT_TBL p WHERE p.f1 ~= '(0,0)'::point;
2024-11-25 19:08:08.154 CET [561892][client backend] [pg_regress/horology][58/360:0] ERROR: invalid value "x1" for "MM"
2024-11-25 19:08:08.154 CET [561892][client backend] [pg_regress/horology][58/360:0] DETAIL: Value must be an integer.
2024-11-25 19:08:08.154 CET [561892][client backend] [pg_regress/horology][58/360:0] STATEMENT: SELECT to_date('2011 x12 x18', 'YYYYxMMxDD');
2024-11-25 19:08:08.154 CET [561892][client backend] [pg_regress/horology][58/361:0] ERROR: invalid combination of date conventions
2024-11-25 19:08:08.154 CET [561892][client backend] [pg_regress/horology][58/361:0] HINT: Do not mix Gregorian and ISO week date conventions in a formatting template.
2024-11-25 19:08:08.154 CET [561892][client backend] [pg_regress/horology][58/361:0] STATEMENT: SELECT to_timestamp('2005527', 'YYYYIWID');
2024-11-25 19:08:08.154 CET [561892][client backend] [pg_regress/horology][58/362:0] ERROR: source string too short for "MM" formatting field
2024-11-25 19:08:08.154 CET [561892][client backend] [pg_regress/horology][58/362:0] DETAIL: Field requires 2 characters, but only 1 remain.
2024-11-25 19:08:08.154 CET [561892][client backend] [pg_regress/horology][58/362:0] HINT: If your source string is not fixed-width, try using the "FM" modifier.
2024-11-25 19:08:08.154 CET [561892][client backend] [pg_regress/horology][58/362:0] STATEMENT: SELECT to_timestamp('19971', 'YYYYMMDD');
2024-11-25 19:08:08.154 CET [561892][client backend] [pg_regress/horology][58/363:0] ERROR: invalid value "1)" for "MM"
2024-11-25 19:08:08.154 CET [561892][client backend] [pg_regress/horology][58/363:0] DETAIL: Field requires 2 characters, but only 1 could be parsed.
2024-11-25 19:08:08.154 CET [561892][client backend] [pg_regress/horology][58/363:0] HINT: If your source string is not fixed-width, try using the "FM" modifier.
2024-11-25 19:08:08.154 CET [561892][client backend] [pg_regress/horology][58/363:0] STATEMENT: SELECT to_timestamp('19971)24', 'YYYYMMDD');
2024-11-25 19:08:08.154 CET [561892][client backend] [pg_regress/horology][58/364:0] ERROR: invalid value "da" for "DD"
2024-11-25 19:08:08.154 CET [561892][client backend] [pg_regress/horology][58/364:0] DETAIL: Value must be an integer.
2024-11-25 19:08:08.154 CET [561892][client backend] [pg_regress/horology][58/364:0] STATEMENT: SELECT to_timestamp('Friday 1-January-1999', 'DY DD MON YYYY');
2024-11-25 19:08:08.154 CET [561892][client backend] [pg_regress/horology][58/365:0] ERROR: invalid value "uary" for "YYYY"
2024-11-25 19:08:08.154 CET [561892][client backend] [pg_regress/horology][58/365:0] DETAIL: Value must be an integer.
2024-11-25 19:08:08.154 CET [561892][client backend] [pg_regress/horology][58/365:0] STATEMENT: SELECT to_timestamp('Fri 1-January-1999', 'DY DD MON YYYY');
2024-11-25 19:08:08.155 CET [561892][client backend] [pg_regress/horology][58/367:0] ERROR: conflicting values for "Mon" field in formatting string
2024-11-25 19:08:08.155 CET [561892][client backend] [pg_regress/horology][58/367:0] DETAIL: This value contradicts a previous setting for the same field type.
2024-11-25 19:08:08.155 CET [561892][client backend] [pg_regress/horology][58/367:0] STATEMENT: SELECT to_timestamp('1997-11-Jan-16', 'YYYY-MM-Mon-DD');
2024-11-25 19:08:08.155 CET [561892][client backend] [pg_regress/horology][58/368:0] ERROR: invalid value "xy" for "DD"
2024-11-25 19:08:08.155 CET [561892][client backend] [pg_regress/horology][58/368:0] DETAIL: Value must be an integer.
2024-11-25 19:08:08.155 CET [561892][client backend] [pg_regress/horology][58/368:0] STATEMENT: SELECT to_timestamp('199711xy', 'YYYYMMDD');
2024-11-25 19:08:08.155 CET [561892][client backend] [pg_regress/horology][58/369:0] ERROR: value for "YYYY" in source string is out of range
2024-11-25 19:08:08.155 CET [561892][client backend] [pg_regress/horology][58/369:0] DETAIL: Value must be in the range -2147483648 to 2147483647.
2024-11-25 19:08:08.155 CET [561892][client backend] [pg_regress/horology][58/369:0] STATEMENT: SELECT to_timestamp('10000000000', 'FMYYYY');
2024-11-25 19:08:08.155 CET [561892][client backend] [pg_regress/horology][58/370:0] ERROR: date/time field value out of range: "2016-06-13 25:00:00"
2024-11-25 19:08:08.155 CET [561892][client backend] [pg_regress/horology][58/370:0] STATEMENT: SELECT to_timestamp('2016-06-13 25:00:00', 'YYYY-MM-DD HH24:MI:SS');
2024-11-25 19:08:08.155 CET [561892][client backend] [pg_regress/horology][58/371:0] ERROR: date/time field value out of range: "2016-06-13 15:60:00"
2024-11-25 19:08:08.155 CET [561892][client backend] [pg_regress/horology][58/371:0] STATEMENT: SELECT to_timestamp('2016-06-13 15:60:00', 'YYYY-MM-DD HH24:MI:SS');
2024-11-25 19:08:08.155 CET [561892][client backend] [pg_regress/horology][58/372:0] ERROR: date/time field value out of range: "2016-06-13 15:50:60"
2024-11-25 19:08:08.155 CET [561892][client backend] [pg_regress/horology][58/372:0] STATEMENT: SELECT to_timestamp('2016-06-13 15:50:60', 'YYYY-MM-DD HH24:MI:SS');
2024-11-25 19:08:08.155 CET [561892][client backend] [pg_regress/horology][58/374:0] ERROR: hour "15" is invalid for the 12-hour clock
2024-11-25 19:08:08.155 CET [561892][client backend] [pg_regress/horology][58/374:0] HINT: Use the 24-hour clock, or give an hour between 1 and 12.
2024-11-25 19:08:08.155 CET [561892][client backend] [pg_regress/horology][58/374:0] STATEMENT: SELECT to_timestamp('2016-06-13 15:50:55', 'YYYY-MM-DD HH:MI:SS');
2024-11-25 19:08:08.156 CET [561892][client backend] [pg_regress/horology][58/375:0] ERROR: date/time field value out of range: "2016-13-01 15:50:55"
2024-11-25 19:08:08.156 CET [561892][client backend] [pg_regress/horology][58/375:0] STATEMENT: SELECT to_timestamp('2016-13-01 15:50:55', 'YYYY-MM-DD HH24:MI:SS');
2024-11-25 19:08:08.156 CET [561892][client backend] [pg_regress/horology][58/376:0] ERROR: date/time field value out of range: "2016-02-30 15:50:55"
2024-11-25 19:08:08.156 CET [561892][client backend] [pg_regress/horology][58/376:0] STATEMENT: SELECT to_timestamp('2016-02-30 15:50:55', 'YYYY-MM-DD HH24:MI:SS');
2024-11-25 19:08:08.156 CET [561892][client backend] [pg_regress/horology][58/378:0] ERROR: date/time field value out of range: "2015-02-29 15:50:55"
2024-11-25 19:08:08.156 CET [561892][client backend] [pg_regress/horology][58/378:0] STATEMENT: SELECT to_timestamp('2015-02-29 15:50:55', 'YYYY-MM-DD HH24:MI:SS');
2024-11-25 19:08:08.156 CET [561892][client backend] [pg_regress/horology][58/380:0] ERROR: date/time field value out of range: "2015-02-11 86400"
2024-11-25 19:08:08.156 CET [561892][client backend] [pg_regress/horology][58/380:0] STATEMENT: SELECT to_timestamp('2015-02-11 86400', 'YYYY-MM-DD SSSS');
2024-11-25 19:08:08.156 CET [561892][client backend] [pg_regress/horology][58/382:0] ERROR: date/time field value out of range: "2015-02-11 86400"
2024-11-25 19:08:08.156 CET [561892][client backend] [pg_regress/horology][58/382:0] STATEMENT: SELECT to_timestamp('2015-02-11 86400', 'YYYY-MM-DD SSSSS');
2024-11-25 19:08:08.156 CET [561892][client backend] [pg_regress/horology][58/383:0] ERROR: date/time field value out of range: "2016-13-10"
2024-11-25 19:08:08.156 CET [561892][client backend] [pg_regress/horology][58/383:0] STATEMENT: SELECT to_date('2016-13-10', 'YYYY-MM-DD');
2024-11-25 19:08:08.157 CET [561892][client backend] [pg_regress/horology][58/384:0] ERROR: date/time field value out of range: "2016-02-30"
2024-11-25 19:08:08.157 CET [561892][client backend] [pg_regress/horology][58/384:0] STATEMENT: SELECT to_date('2016-02-30', 'YYYY-MM-DD');
2024-11-25 19:08:08.157 CET [561892][client backend] [pg_regress/horology][58/386:0] ERROR: date/time field value out of range: "2015-02-29"
2024-11-25 19:08:08.157 CET [561892][client backend] [pg_regress/horology][58/386:0] STATEMENT: SELECT to_date('2015-02-29', 'YYYY-MM-DD');
2024-11-25 19:08:08.157 CET [561892][client backend] [pg_regress/horology][58/388:0] ERROR: date/time field value out of range: "2015 366"
2024-11-25 19:08:08.157 CET [561892][client backend] [pg_regress/horology][58/388:0] STATEMENT: SELECT to_date('2015 366', 'YYYY DDD');
2024-11-25 19:08:08.157 CET [561892][client backend] [pg_regress/horology][58/391:0] ERROR: date/time field value out of range: "2016 367"
2024-11-25 19:08:08.157 CET [561892][client backend] [pg_regress/horology][58/391:0] STATEMENT: SELECT to_date('2016 367', 'YYYY DDD');
2024-11-25 19:08:08.158 CET [561901][client backend] [pg_regress/stats_import][54/109:0] WARNING: "histogram_bounds" array cannot contain NULL values
2024-11-25 19:08:08.161 CET [561892][client backend] [pg_regress/horology][:0] LOG: disconnection: session time: 0:00:00.138 user=nkey database=regression host=[local]
2024-11-25 19:08:08.164 CET [561901][client backend] [pg_regress/stats_import][54/113:0] WARNING: "elem_count_histogram" array cannot contain NULL values
2024-11-25 19:08:08.169 CET [561901][client backend] [pg_regress/stats_import][54/117:0] WARNING: attribute "id" is not a range type
2024-11-25 19:08:08.169 CET [561901][client backend] [pg_regress/stats_import][54/117:0] DETAIL: Cannot set STATISTIC_KIND_RANGE_LENGTH_HISTOGRAM or STATISTIC_KIND_BOUNDS_HISTOGRAM.
2024-11-25 19:08:08.169 CET [561891][client backend] [pg_regress/geometry][:0] LOG: disconnection: session time: 0:00:00.147 user=nkey database=regression host=[local]
2024-11-25 19:08:08.172 CET [561901][client backend] [pg_regress/stats_import][54/119:0] WARNING: "range_empty_frac" must be specified when "range_length_histogram" is specified
2024-11-25 19:08:08.174 CET [561901][client backend] [pg_regress/stats_import][54/121:0] WARNING: "range_length_histogram" must be specified when "range_empty_frac" is specified
2024-11-25 19:08:08.174 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:08.179 CET [561901][client backend] [pg_regress/stats_import][54/125:0] WARNING: attribute "id" is not a range type
2024-11-25 19:08:08.179 CET [561901][client backend] [pg_regress/stats_import][54/125:0] DETAIL: Cannot set STATISTIC_KIND_RANGE_LENGTH_HISTOGRAM or STATISTIC_KIND_BOUNDS_HISTOGRAM.
2024-11-25 19:08:08.179 CET [561023][checkpointer] LOG: checkpoint complete: wrote 295 buffers (1.8%), wrote 3 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.005 s, sync=0.001 s, total=0.005 s; sync files=0, longest=0.000 s, average=0.000 s; distance=1832 kB, estimate=13238 kB; lsn=4/479339B8, redo lsn=4/478C83F0
2024-11-25 19:08:08.183 CET [561894][client backend] [pg_regress/type_sanity][:0] LOG: disconnection: session time: 0:00:00.161 user=nkey database=regression host=[local]
2024-11-25 19:08:08.184 CET [561901][client backend] [pg_regress/stats_import][54/129:0] WARNING: unable to determine element type of attribute "arange"
2024-11-25 19:08:08.184 CET [561901][client backend] [pg_regress/stats_import][54/129:0] DETAIL: Cannot set STATISTIC_KIND_MCELEM or STATISTIC_KIND_DECHIST.
2024-11-25 19:08:08.193 CET [561918][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.194 CET [561918][client backend] [[unknown]][64/17:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.194 CET [561918][client backend] [[unknown]][64/17:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:08.196 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:08.200 CET [561023][checkpointer] LOG: checkpoint complete: wrote 214 buffers (1.3%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.004 s, sync=0.001 s, total=0.004 s; sync files=0, longest=0.000 s, average=0.000 s; distance=921 kB, estimate=12007 kB; lsn=4/479D1EF0, redo lsn=4/479AEB50
2024-11-25 19:08:08.206 CET [561901][client backend] [pg_regress/stats_import][54/143:0] ERROR: syntax error at or near "SELECT" at character 8
2024-11-25 19:08:08.206 CET [561901][client backend] [pg_regress/stats_import][54/143:0] STATEMENT: SELECT
SELECT COUNT(*)
FROM pg_catalog.pg_stats AS s
WHERE s.schemaname = 'stats_import'
AND s.tablename IN ('test_clone', 'is_odd_clone');
2024-11-25 19:08:08.207 CET [561864][client backend] [pg_regress/brin][:0] LOG: disconnection: session time: 0:00:00.197 user=nkey database=regression_pageinspect host=[local]
2024-11-25 19:08:08.214 CET [561918][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.020 user=nkey database=postgres host=[local]
2024-11-25 19:08:08.214 CET [561922][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.220 CET [561922][client backend] [[unknown]][53/68:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.220 CET [561922][client backend] [[unknown]][53/68:0] LOG: connection authorized: user=nkey database=regression_pageinspect application_name=pg_regress/gin
2024-11-25 19:08:08.221 CET [561816][client backend] [pg_regress/ltree][38/356:528423] ERROR: value 0 out of bounds for option "siglen"
2024-11-25 19:08:08.221 CET [561816][client backend] [pg_regress/ltree][38/356:528423] DETAIL: Valid values are between "1" and "2024".
2024-11-25 19:08:08.221 CET [561816][client backend] [pg_regress/ltree][38/356:528423] STATEMENT: create index _tstidx on _ltreetest using gist (t gist__ltree_ops(siglen=0));
2024-11-25 19:08:08.222 CET [561925][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.222 CET [561816][client backend] [pg_regress/ltree][38/357:528425] ERROR: value 2025 out of bounds for option "siglen"
2024-11-25 19:08:08.222 CET [561816][client backend] [pg_regress/ltree][38/357:528425] DETAIL: Valid values are between "1" and "2024".
2024-11-25 19:08:08.222 CET [561816][client backend] [pg_regress/ltree][38/357:528425] STATEMENT: create index _tstidx on _ltreetest using gist (t gist__ltree_ops(siglen=2025));
2024-11-25 19:08:08.222 CET [561925][client backend] [[unknown]][62/32:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.222 CET [561925][client backend] [[unknown]][62/32:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:08.223 CET [561901][client backend] [pg_regress/stats_import][:0] LOG: disconnection: session time: 0:00:00.197 user=nkey database=regression host=[local]
2024-11-25 19:08:08.227 CET [561922][client backend] [pg_regress/gin][53/73:0] ERROR: input page is not a GIN metapage
2024-11-25 19:08:08.227 CET [561922][client backend] [pg_regress/gin][53/73:0] DETAIL: Flags 0002, expected 0008
2024-11-25 19:08:08.227 CET [561922][client backend] [pg_regress/gin][53/73:0] STATEMENT: SELECT * FROM gin_metapage_info(get_raw_page('test1_y_idx', 1));
2024-11-25 19:08:08.227 CET [561922][client backend] [pg_regress/gin][53/75:0] ERROR: input page is not a compressed GIN data leaf page
2024-11-25 19:08:08.227 CET [561922][client backend] [pg_regress/gin][53/75:0] DETAIL: Flags 0002, expected 0083
2024-11-25 19:08:08.227 CET [561922][client backend] [pg_regress/gin][53/75:0] STATEMENT: SELECT * FROM gin_leafpage_items(get_raw_page('test1_y_idx', 1));
2024-11-25 19:08:08.250 CET [561925][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.028 user=nkey database=postgres host=[local]
2024-11-25 19:08:08.253 CET [561927][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.254 CET [561927][client backend] [[unknown]][67/23:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.254 CET [561927][client backend] [[unknown]][67/23:0] LOG: connection authorized: user=nkey database=regression_pg_buffercache application_name=pg_regress/pg_buffercache
2024-11-25 19:08:08.282 CET [561927][client backend] [pg_regress/pg_buffercache][67/29:0] ERROR: permission denied for view pg_buffercache
2024-11-25 19:08:08.282 CET [561927][client backend] [pg_regress/pg_buffercache][67/29:0] STATEMENT: SELECT * FROM pg_buffercache;
2024-11-25 19:08:08.283 CET [561927][client backend] [pg_regress/pg_buffercache][67/30:0] ERROR: permission denied for function pg_buffercache_pages
2024-11-25 19:08:08.283 CET [561927][client backend] [pg_regress/pg_buffercache][67/30:0] STATEMENT: SELECT * FROM pg_buffercache_pages() AS p (wrong int);
2024-11-25 19:08:08.283 CET [561927][client backend] [pg_regress/pg_buffercache][67/31:0] ERROR: permission denied for function pg_buffercache_summary
2024-11-25 19:08:08.283 CET [561927][client backend] [pg_regress/pg_buffercache][67/31:0] STATEMENT: SELECT * FROM pg_buffercache_summary();
2024-11-25 19:08:08.283 CET [561927][client backend] [pg_regress/pg_buffercache][67/32:0] ERROR: permission denied for function pg_buffercache_usage_counts
2024-11-25 19:08:08.283 CET [561927][client backend] [pg_regress/pg_buffercache][67/32:0] STATEMENT: SELECT * FROM pg_buffercache_usage_counts();
2024-11-25 19:08:08.292 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:08.295 CET [561927][client backend] [pg_regress/pg_buffercache][:0] LOG: disconnection: session time: 0:00:00.041 user=nkey database=regression_pg_buffercache host=[local]
2024-11-25 19:08:08.316 CET [561023][checkpointer] LOG: checkpoint complete: wrote 1654 buffers (10.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 1 recycled; write=0.022 s, sync=0.001 s, total=0.024 s; sync files=0, longest=0.000 s, average=0.000 s; distance=7036 kB, estimate=11510 kB; lsn=4/4814E2F8, redo lsn=4/4808DE58
2024-11-25 19:08:08.333 CET [561903][client backend] [pg_regress/database][:0] LOG: disconnection: session time: 0:00:00.303 user=nkey database=regression host=[local]
2024-11-25 19:08:08.349 CET [561931][autovacuum worker] LOG: automatic vacuum of table "regression_intarray.pg_catalog.pg_db_role_setting": index scans: 1
pages: 0 removed, 6 remain, 6 scanned (100.00% of total)
tuples: 59 removed, 97 remain, 30 are dead but not yet removable
removable cutoff: 527672, which was 799 XIDs old when operation ended
new relfrozenxid: 525686, which is 524952 XIDs ahead of previous value
new relminmxid: 2899, which is 2898 MXIDs ahead of previous value
frozen: 0 pages from table (0.00% of total) had 0 tuples frozen
index scan needed: 6 pages from table (100.00% of total) had 9 dead item identifiers removed
index "pg_db_role_setting_databaseid_rol_index": pages: 2 in total, 0 newly deleted, 0 currently deleted, 0 reusable
avg read rate: 0.000 MB/s, avg write rate: 208.333 MB/s
buffer usage: 57 hits, 0 reads, 12 dirtied
WAL usage: 18 records, 12 full page images, 60484 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:08.370 CET [561774][client backend] [pg_regress/_int][72/399:528476] ERROR: input array is too big (199 maximum allowed, 1001 current), use gist__intbig_ops opclass instead
2024-11-25 19:08:08.370 CET [561774][client backend] [pg_regress/_int][72/399:528476] STATEMENT: INSERT INTO test__int SELECT array(SELECT x FROM generate_series(1, 1001) x);
2024-11-25 19:08:08.372 CET [561774][client backend] [pg_regress/_int][72/401:528479] ERROR: value 0 out of bounds for option "numranges"
2024-11-25 19:08:08.372 CET [561774][client backend] [pg_regress/_int][72/401:528479] DETAIL: Valid values are between "1" and "252".
2024-11-25 19:08:08.372 CET [561774][client backend] [pg_regress/_int][72/401:528479] STATEMENT: CREATE INDEX text_idx on test__int using gist (a gist__int_ops(numranges = 0));
2024-11-25 19:08:08.373 CET [561774][client backend] [pg_regress/_int][72/402:528480] ERROR: value 253 out of bounds for option "numranges"
2024-11-25 19:08:08.373 CET [561774][client backend] [pg_regress/_int][72/402:528480] DETAIL: Valid values are between "1" and "252".
2024-11-25 19:08:08.373 CET [561774][client backend] [pg_regress/_int][72/402:528480] STATEMENT: CREATE INDEX text_idx on test__int using gist (a gist__int_ops(numranges = 253));
2024-11-25 19:08:08.379 CET [561890][client backend] [pg_regress/regex][57/98:0] ERROR: invalid regular expression: regular expression is too complex
2024-11-25 19:08:08.379 CET [561890][client backend] [pg_regress/regex][57/98:0] STATEMENT: select 'x' ~ repeat('x*y*z*', 1000);
2024-11-25 19:08:08.390 CET [561935][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.391 CET [561935][client backend] [[unknown]][68/18:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.391 CET [561935][client backend] [[unknown]][68/18:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:08.394 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:08.403 CET [561890][client backend] [pg_regress/regex][57/126:0] ERROR: invalid regular expression: invalid backreference number
2024-11-25 19:08:08.403 CET [561890][client backend] [pg_regress/regex][57/126:0] STATEMENT: select 'xyz' ~ 'x(\w)(?=\1)';
2024-11-25 19:08:08.403 CET [561890][client backend] [pg_regress/regex][57/127:0] ERROR: invalid regular expression: invalid backreference number
2024-11-25 19:08:08.403 CET [561890][client backend] [pg_regress/regex][57/127:0] STATEMENT: select 'xyz' ~ 'x(\w)(?=(\1))';
2024-11-25 19:08:08.403 CET [561890][client backend] [pg_regress/regex][57/128:0] ERROR: invalid regular expression: invalid escape \ sequence
2024-11-25 19:08:08.403 CET [561890][client backend] [pg_regress/regex][57/128:0] STATEMENT: select 'a' ~ '\x7fffffff';
2024-11-25 19:08:08.403 CET [561890][client backend] [pg_regress/regex][:0] LOG: disconnection: session time: 0:00:00.381 user=nkey database=regression host=[local]
2024-11-25 19:08:08.404 CET [561023][checkpointer] LOG: checkpoint complete: wrote 843 buffers (5.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.010 s, sync=0.001 s, total=0.011 s; sync files=0, longest=0.000 s, average=0.000 s; distance=3553 kB, estimate=10714 kB; lsn=4/48479340, redo lsn=4/48406400
2024-11-25 19:08:08.422 CET [561935][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.032 user=nkey database=postgres host=[local]
2024-11-25 19:08:08.428 CET [561938][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.428 CET [561938][client backend] [[unknown]][65/69:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.428 CET [561938][client backend] [[unknown]][65/69:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:08.457 CET [561938][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.029 user=nkey database=postgres host=[local]
2024-11-25 19:08:08.460 CET [561940][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.460 CET [561940][client backend] [[unknown]][66/22:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.460 CET [561940][client backend] [[unknown]][66/22:0] LOG: connection authorized: user=nkey database=regression_pgcrypto application_name=pg_regress/init
2024-11-25 19:08:08.468 CET [561816][client backend] [pg_regress/ltree][:0] LOG: disconnection: session time: 0:00:00.552 user=nkey database=regression_ltree host=[local]
2024-11-25 19:08:08.473 CET [561940][client backend] [pg_regress/init][66/24:0] ERROR: gen_salt: Unknown salt algorithm
2024-11-25 19:08:08.473 CET [561940][client backend] [pg_regress/init][66/24:0] STATEMENT: select gen_salt('foo');
2024-11-25 19:08:08.473 CET [561940][client backend] [pg_regress/init][66/25:0] ERROR: Cannot use "foo": No such hash algorithm
2024-11-25 19:08:08.473 CET [561940][client backend] [pg_regress/init][66/25:0] STATEMENT: select digest('foo', 'foo');
2024-11-25 19:08:08.473 CET [561940][client backend] [pg_regress/init][66/26:0] ERROR: Cannot use "foo": No such hash algorithm
2024-11-25 19:08:08.473 CET [561940][client backend] [pg_regress/init][66/26:0] STATEMENT: select hmac('foo', 'foo', 'foo');
2024-11-25 19:08:08.473 CET [561940][client backend] [pg_regress/init][66/27:0] ERROR: Cannot use "foo": No such cipher algorithm
2024-11-25 19:08:08.473 CET [561940][client backend] [pg_regress/init][66/27:0] STATEMENT: select encrypt('foo', 'foo', 'foo');
2024-11-25 19:08:08.473 CET [561940][client backend] [pg_regress/init][:0] LOG: disconnection: session time: 0:00:00.013 user=nkey database=regression_pgcrypto host=[local]
2024-11-25 19:08:08.478 CET [561946][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.478 CET [561946][client backend] [[unknown]][71/14:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.478 CET [561946][client backend] [[unknown]][71/14:0] LOG: connection authorized: user=nkey database=regression_pgcrypto application_name=pg_regress/md5
2024-11-25 19:08:08.482 CET [561946][client backend] [pg_regress/md5][:0] LOG: disconnection: session time: 0:00:00.004 user=nkey database=regression_pgcrypto host=[local]
2024-11-25 19:08:08.486 CET [561951][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.486 CET [561951][client backend] [[unknown]][70/59:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.486 CET [561951][client backend] [[unknown]][70/59:0] LOG: connection authorized: user=nkey database=regression_pgcrypto application_name=pg_regress/sha1
2024-11-25 19:08:08.494 CET [561951][client backend] [pg_regress/sha1][:0] LOG: disconnection: session time: 0:00:00.008 user=nkey database=regression_pgcrypto host=[local]
2024-11-25 19:08:08.500 CET [561955][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.501 CET [561955][client backend] [[unknown]][75/14:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.501 CET [561955][client backend] [[unknown]][75/14:0] LOG: connection authorized: user=nkey database=regression_pgcrypto application_name=pg_regress/hmac-md5
2024-11-25 19:08:08.510 CET [561955][client backend] [pg_regress/hmac-md5][:0] LOG: disconnection: session time: 0:00:00.009 user=nkey database=regression_pgcrypto host=[local]
2024-11-25 19:08:08.510 CET [561959][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.510 CET [561959][client backend] [[unknown]][1/21:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.510 CET [561959][client backend] [[unknown]][1/21:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:08.513 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:08.513 CET [561963][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.514 CET [561963][client backend] [[unknown]][78/19:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.514 CET [561963][client backend] [[unknown]][78/19:0] LOG: connection authorized: user=nkey database=regression_pgcrypto application_name=pg_regress/hmac-sha1
2024-11-25 19:08:08.518 CET [561963][client backend] [pg_regress/hmac-sha1][:0] LOG: disconnection: session time: 0:00:00.005 user=nkey database=regression_pgcrypto host=[local]
2024-11-25 19:08:08.525 CET [561967][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.526 CET [561967][client backend] [[unknown]][59/162:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.526 CET [561967][client backend] [[unknown]][59/162:0] LOG: connection authorized: user=nkey database=regression_pgcrypto application_name=pg_regress/blowfish
2024-11-25 19:08:08.528 CET [561967][client backend] [pg_regress/blowfish][59/163:0] ERROR: encrypt error: Cipher cannot be initialized
2024-11-25 19:08:08.528 CET [561967][client backend] [pg_regress/blowfish][59/163:0] STATEMENT: SELECT encrypt('\x0000000000000000', '\x0000000000000000', 'bf-ecb/pad:none');
2024-11-25 19:08:08.528 CET [561967][client backend] [pg_regress/blowfish][59/164:0] ERROR: encrypt error: Cipher cannot be initialized
2024-11-25 19:08:08.528 CET [561967][client backend] [pg_regress/blowfish][59/164:0] STATEMENT: SELECT encrypt('\xffffffffffffffff', '\xffffffffffffffff', 'bf-ecb/pad:none');
2024-11-25 19:08:08.530 CET [561967][client backend] [pg_regress/blowfish][59/165:0] ERROR: encrypt error: Cipher cannot be initialized
2024-11-25 19:08:08.530 CET [561967][client backend] [pg_regress/blowfish][59/165:0] STATEMENT: SELECT encrypt('\x1000000000000001', '\x3000000000000000', 'bf-ecb/pad:none');
2024-11-25 19:08:08.530 CET [561967][client backend] [pg_regress/blowfish][59/166:0] ERROR: encrypt error: Cipher cannot be initialized
2024-11-25 19:08:08.530 CET [561967][client backend] [pg_regress/blowfish][59/166:0] STATEMENT: SELECT encrypt('\x1111111111111111', '\x1111111111111111', 'bf-ecb/pad:none');
2024-11-25 19:08:08.530 CET [561967][client backend] [pg_regress/blowfish][59/167:0] ERROR: encrypt error: Cipher cannot be initialized
2024-11-25 19:08:08.530 CET [561967][client backend] [pg_regress/blowfish][59/167:0] STATEMENT: SELECT encrypt('\x0123456789abcdef', '\xfedcba9876543210', 'bf-ecb/pad:none');
2024-11-25 19:08:08.530 CET [561967][client backend] [pg_regress/blowfish][59/168:0] ERROR: encrypt error: Cipher cannot be initialized
2024-11-25 19:08:08.530 CET [561967][client backend] [pg_regress/blowfish][59/168:0] STATEMENT: SELECT encrypt('\x01a1d6d039776742', '\xfedcba9876543210', 'bf-ecb/pad:none');
2024-11-25 19:08:08.531 CET [561967][client backend] [pg_regress/blowfish][59/169:0] ERROR: encrypt error: Cipher cannot be initialized
2024-11-25 19:08:08.531 CET [561967][client backend] [pg_regress/blowfish][59/169:0] STATEMENT: SELECT encrypt('\xffffffffffffffff', '\x0000000000000000', 'bf-ecb/pad:none');
2024-11-25 19:08:08.531 CET [561967][client backend] [pg_regress/blowfish][59/170:0] ERROR: encrypt error: Cipher cannot be initialized
2024-11-25 19:08:08.531 CET [561967][client backend] [pg_regress/blowfish][59/170:0] STATEMENT: SELECT encrypt('\xfedcba9876543210', '\xf0e1d2c3b4a5968778695a4b3c2d1e0f', 'bf-ecb/pad:none');
2024-11-25 19:08:08.531 CET [561967][client backend] [pg_regress/blowfish][59/171:0] ERROR: encrypt error: Cipher cannot be initialized
2024-11-25 19:08:08.531 CET [561967][client backend] [pg_regress/blowfish][59/171:0] STATEMENT: SELECT encrypt('\x01234567890123456789', '\x33443344334433443344334433443344', 'bf-ecb');
2024-11-25 19:08:08.531 CET [561967][client backend] [pg_regress/blowfish][59/172:0] ERROR: encrypt error: Key was too big
2024-11-25 19:08:08.531 CET [561967][client backend] [pg_regress/blowfish][59/172:0] STATEMENT: SELECT encrypt('\x6b77b4d63006dee605b156e27403979358deb9e7154616d959f1652bd5',
'\x37363534333231204e6f77206973207468652074696d6520666f7220',
'bf-cbc');
2024-11-25 19:08:08.531 CET [561967][client backend] [pg_regress/blowfish][59/173:0] ERROR: encrypt error: Key was too big
2024-11-25 19:08:08.531 CET [561967][client backend] [pg_regress/blowfish][59/173:0] STATEMENT: SELECT encrypt('\x6b77b4d63006dee605b156e27403979358deb9e7154616d959f1652bd5ff92cc',
'\x37363534333231204e6f77206973207468652074696d6520666f722000',
'bf-cbc');
2024-11-25 19:08:08.531 CET [561967][client backend] [pg_regress/blowfish][59/174:0] ERROR: encrypt error: Key was too big
2024-11-25 19:08:08.531 CET [561967][client backend] [pg_regress/blowfish][59/174:0] STATEMENT: SELECT encrypt('\xfedcba9876543210',
'\xf0e1d2c3b4a5968778695a4b3c2d1e0f001122334455667704689104c2fd3b2f584023641aba61761f1f1f1f0e0e0e0effffffffffffffff',
'bf-ecb/pad:none');
2024-11-25 19:08:08.531 CET [561967][client backend] [pg_regress/blowfish][59/175:0] ERROR: encrypt error: Cipher cannot be initialized
2024-11-25 19:08:08.531 CET [561967][client backend] [pg_regress/blowfish][59/175:0] STATEMENT: select encrypt('', 'foo', 'bf');
2024-11-25 19:08:08.531 CET [561967][client backend] [pg_regress/blowfish][59/176:0] ERROR: encrypt error: Cipher cannot be initialized
2024-11-25 19:08:08.531 CET [561967][client backend] [pg_regress/blowfish][59/176:0] STATEMENT: select encrypt('foo', '0123456789', 'bf');
2024-11-25 19:08:08.531 CET [561967][client backend] [pg_regress/blowfish][59/177:0] ERROR: encrypt error: Key was too big
2024-11-25 19:08:08.531 CET [561967][client backend] [pg_regress/blowfish][59/177:0] STATEMENT: select encrypt('foo', '0123456789012345678901', 'bf');
2024-11-25 19:08:08.532 CET [561967][client backend] [pg_regress/blowfish][59/178:0] ERROR: encrypt error: Cipher cannot be initialized
2024-11-25 19:08:08.532 CET [561967][client backend] [pg_regress/blowfish][59/178:0] STATEMENT: select encode(decrypt(encrypt('foo', '0123456', 'bf'), '0123456', 'bf'), 'escape');
2024-11-25 19:08:08.532 CET [561967][client backend] [pg_regress/blowfish][59/179:0] ERROR: encrypt_iv error: Cipher cannot be initialized
2024-11-25 19:08:08.532 CET [561967][client backend] [pg_regress/blowfish][59/179:0] STATEMENT: select encrypt_iv('foo', '0123456', 'abcd', 'bf');
2024-11-25 19:08:08.532 CET [561967][client backend] [pg_regress/blowfish][59/180:0] ERROR: decrypt_iv error: Cipher cannot be initialized
2024-11-25 19:08:08.532 CET [561967][client backend] [pg_regress/blowfish][59/180:0] STATEMENT: select encode(decrypt_iv('\x95c7e89322525d59', '0123456', 'abcd', 'bf'), 'escape');
2024-11-25 19:08:08.533 CET [561967][client backend] [pg_regress/blowfish][59/181:0] ERROR: encrypt error: Cipher cannot be initialized
2024-11-25 19:08:08.533 CET [561967][client backend] [pg_regress/blowfish][59/181:0] STATEMENT: select encrypt('Lets try a longer message.', '0123456789', 'bf');
2024-11-25 19:08:08.533 CET [561967][client backend] [pg_regress/blowfish][59/182:0] ERROR: encrypt error: Cipher cannot be initialized
2024-11-25 19:08:08.533 CET [561967][client backend] [pg_regress/blowfish][59/182:0] STATEMENT: select encode(decrypt(encrypt('Lets try a longer message.', '0123456789', 'bf'), '0123456789', 'bf'), 'escape');
2024-11-25 19:08:08.533 CET [561967][client backend] [pg_regress/blowfish][:0] LOG: disconnection: session time: 0:00:00.007 user=nkey database=regression_pgcrypto host=[local]
2024-11-25 19:08:08.537 CET [561023][checkpointer] LOG: checkpoint complete: wrote 2085 buffers (12.7%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.024 s, sync=0.001 s, total=0.025 s; sync files=0, longest=0.000 s, average=0.000 s; distance=12115 kB, estimate=12115 kB; lsn=4/49079D60, redo lsn=4/48FDB0B8
2024-11-25 19:08:08.539 CET [561973][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.539 CET [561973][client backend] [[unknown]][79/26:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.539 CET [561973][client backend] [[unknown]][79/26:0] LOG: connection authorized: user=nkey database=regression_pgcrypto application_name=pg_regress/rijndael
2024-11-25 19:08:08.542 CET [561973][client backend] [pg_regress/rijndael][79/31:0] ERROR: encrypt error: Encryption failed
2024-11-25 19:08:08.542 CET [561973][client backend] [pg_regress/rijndael][79/31:0] STATEMENT: SELECT encrypt(
'\x00112233445566778899aabbccddeeff00',
'\x000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f',
'aes-cbc/pad:none');
2024-11-25 19:08:08.544 CET [561973][client backend] [pg_regress/rijndael][79/39:0] ERROR: decrypt error: Decryption failed
2024-11-25 19:08:08.544 CET [561973][client backend] [pg_regress/rijndael][79/39:0] STATEMENT: select encode(decrypt(encrypt('foo', '0123456', 'aes') || '\x00'::bytea, '0123456', 'aes'), 'escape');
2024-11-25 19:08:08.544 CET [561973][client backend] [pg_regress/rijndael][79/40:0] ERROR: decrypt_iv error: Decryption failed
2024-11-25 19:08:08.544 CET [561973][client backend] [pg_regress/rijndael][79/40:0] STATEMENT: select encode(decrypt_iv('\xa21a9c15231465964e3396d32095e67eb52bab05f556a581621dee1b85385789', '0123456', 'abcd', 'aes'), 'escape');
2024-11-25 19:08:08.545 CET [561973][client backend] [pg_regress/rijndael][:0] LOG: disconnection: session time: 0:00:00.006 user=nkey database=regression_pgcrypto host=[local]
2024-11-25 19:08:08.547 CET [561959][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.037 user=nkey database=postgres host=[local]
2024-11-25 19:08:08.549 CET [561979][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.550 CET [561980][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.550 CET [561980][client backend] [[unknown]][74/20:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.550 CET [561980][client backend] [[unknown]][74/20:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:08.552 CET [561979][client backend] [[unknown]][76/23:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.552 CET [561979][client backend] [[unknown]][76/23:0] LOG: connection authorized: user=nkey database=regression_pgcrypto application_name=pg_regress/sha2
2024-11-25 19:08:08.560 CET [561979][client backend] [pg_regress/sha2][:0] LOG: disconnection: session time: 0:00:00.011 user=nkey database=regression_pgcrypto host=[local]
2024-11-25 19:08:08.564 CET [561984][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.565 CET [561984][client backend] [[unknown]][73/39:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.565 CET [561984][client backend] [[unknown]][73/39:0] LOG: connection authorized: user=nkey database=regression_pgcrypto application_name=pg_regress/des
2024-11-25 19:08:08.567 CET [561984][client backend] [pg_regress/des][73/40:0] ERROR: encrypt error: Cipher cannot be initialized
2024-11-25 19:08:08.567 CET [561984][client backend] [pg_regress/des][73/40:0] STATEMENT: SELECT encrypt('\x0123456789abcdef', '\xfedcba9876543210', 'des-ecb/pad:none');
2024-11-25 19:08:08.567 CET [561984][client backend] [pg_regress/des][73/41:0] ERROR: encrypt error: Cipher cannot be initialized
2024-11-25 19:08:08.567 CET [561984][client backend] [pg_regress/des][73/41:0] STATEMENT: select encrypt('', 'foo', 'des');
2024-11-25 19:08:08.567 CET [561984][client backend] [pg_regress/des][73/42:0] ERROR: encrypt error: Cipher cannot be initialized
2024-11-25 19:08:08.567 CET [561984][client backend] [pg_regress/des][73/42:0] STATEMENT: select encrypt('foo', '01234589', 'des');
2024-11-25 19:08:08.567 CET [561984][client backend] [pg_regress/des][73/43:0] ERROR: encrypt error: Cipher cannot be initialized
2024-11-25 19:08:08.567 CET [561984][client backend] [pg_regress/des][73/43:0] STATEMENT: select encode(decrypt(encrypt('foo', '0123456', 'des'), '0123456', 'des'), 'escape');
2024-11-25 19:08:08.568 CET [561984][client backend] [pg_regress/des][73/44:0] ERROR: encrypt_iv error: Cipher cannot be initialized
2024-11-25 19:08:08.568 CET [561984][client backend] [pg_regress/des][73/44:0] STATEMENT: select encrypt_iv('foo', '0123456', 'abcd', 'des');
2024-11-25 19:08:08.568 CET [561984][client backend] [pg_regress/des][73/45:0] ERROR: decrypt_iv error: Cipher cannot be initialized
2024-11-25 19:08:08.568 CET [561984][client backend] [pg_regress/des][73/45:0] STATEMENT: select encode(decrypt_iv('\x50735067b073bb93', '0123456', 'abcd', 'des'), 'escape');
2024-11-25 19:08:08.568 CET [561984][client backend] [pg_regress/des][73/46:0] ERROR: encrypt error: Cipher cannot be initialized
2024-11-25 19:08:08.568 CET [561984][client backend] [pg_regress/des][73/46:0] STATEMENT: select encrypt('Lets try a longer message.', '01234567', 'des');
2024-11-25 19:08:08.568 CET [561984][client backend] [pg_regress/des][73/47:0] ERROR: encrypt error: Cipher cannot be initialized
2024-11-25 19:08:08.568 CET [561984][client backend] [pg_regress/des][73/47:0] STATEMENT: select encode(decrypt(encrypt('Lets try a longer message.', '01234567', 'des'), '01234567', 'des'), 'escape');
2024-11-25 19:08:08.568 CET [561984][client backend] [pg_regress/des][:0] LOG: disconnection: session time: 0:00:00.004 user=nkey database=regression_pgcrypto host=[local]
2024-11-25 19:08:08.573 CET [561897][client backend] [pg_regress/opr_sanity][:0] LOG: disconnection: session time: 0:00:00.550 user=nkey database=regression host=[local]
2024-11-25 19:08:08.574 CET [561990][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.574 CET [561990][client backend] [[unknown]][82/35:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.574 CET [561990][client backend] [[unknown]][82/35:0] LOG: connection authorized: user=nkey database=regression_pgcrypto application_name=pg_regress/3des
2024-11-25 19:08:08.577 CET [561980][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.027 user=nkey database=postgres host=[local]
2024-11-25 19:08:08.579 CET [561990][client backend] [pg_regress/3des][:0] LOG: disconnection: session time: 0:00:00.005 user=nkey database=regression_pgcrypto host=[local]
2024-11-25 19:08:08.580 CET [562005][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.581 CET [562005][client backend] [[unknown]][80/30:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.581 CET [562005][client backend] [[unknown]][80/30:0] LOG: connection authorized: user=nkey database=isolation_regression_pgrowlocks application_name=pg_regress
2024-11-25 19:08:08.584 CET [562011][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.584 CET [562011][client backend] [[unknown]][83/27:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.584 CET [562011][client backend] [[unknown]][83/27:0] LOG: connection authorized: user=nkey database=regression_pgcrypto application_name=pg_regress/cast5
2024-11-25 19:08:08.587 CET [562011][client backend] [pg_regress/cast5][83/28:0] ERROR: encrypt error: Cipher cannot be initialized
2024-11-25 19:08:08.587 CET [562011][client backend] [pg_regress/cast5][83/28:0] STATEMENT: SELECT encrypt('\x0123456789ABCDEF', '\x0123456712345678234567893456789A', 'cast5-ecb/pad:none');
2024-11-25 19:08:08.587 CET [562011][client backend] [pg_regress/cast5][83/29:0] ERROR: encrypt error: Cipher cannot be initialized
2024-11-25 19:08:08.587 CET [562011][client backend] [pg_regress/cast5][83/29:0] STATEMENT: SELECT encrypt('\x0123456789ABCDEF', '\x01234567123456782345', 'cast5-ecb/pad:none');
2024-11-25 19:08:08.587 CET [562011][client backend] [pg_regress/cast5][83/30:0] ERROR: encrypt error: Cipher cannot be initialized
2024-11-25 19:08:08.587 CET [562011][client backend] [pg_regress/cast5][83/30:0] STATEMENT: SELECT encrypt('\x0123456789ABCDEF', '\x0123456712', 'cast5-ecb/pad:none');
2024-11-25 19:08:08.587 CET [562011][client backend] [pg_regress/cast5][83/31:0] ERROR: encrypt error: Cipher cannot be initialized
2024-11-25 19:08:08.587 CET [562011][client backend] [pg_regress/cast5][83/31:0] STATEMENT: select encrypt('', 'foo', 'cast5');
2024-11-25 19:08:08.587 CET [562011][client backend] [pg_regress/cast5][83/32:0] ERROR: encrypt error: Cipher cannot be initialized
2024-11-25 19:08:08.587 CET [562011][client backend] [pg_regress/cast5][83/32:0] STATEMENT: select encrypt('foo', '0123456789', 'cast5');
2024-11-25 19:08:08.587 CET [562011][client backend] [pg_regress/cast5][83/33:0] ERROR: encrypt error: Cipher cannot be initialized
2024-11-25 19:08:08.587 CET [562011][client backend] [pg_regress/cast5][83/33:0] STATEMENT: select encode(decrypt(encrypt('foo', '0123456', 'cast5'), '0123456', 'cast5'), 'escape');
2024-11-25 19:08:08.588 CET [562011][client backend] [pg_regress/cast5][83/34:0] ERROR: encrypt_iv error: Cipher cannot be initialized
2024-11-25 19:08:08.588 CET [562011][client backend] [pg_regress/cast5][83/34:0] STATEMENT: select encrypt_iv('foo', '0123456', 'abcd', 'cast5');
2024-11-25 19:08:08.588 CET [562011][client backend] [pg_regress/cast5][83/35:0] ERROR: decrypt_iv error: Cipher cannot be initialized
2024-11-25 19:08:08.588 CET [562011][client backend] [pg_regress/cast5][83/35:0] STATEMENT: select encode(decrypt_iv('\x384a970695ce016a', '0123456', 'abcd', 'cast5'), 'escape');
2024-11-25 19:08:08.588 CET [562011][client backend] [pg_regress/cast5][83/36:0] ERROR: encrypt error: Cipher cannot be initialized
2024-11-25 19:08:08.588 CET [562011][client backend] [pg_regress/cast5][83/36:0] STATEMENT: select encrypt('Lets try a longer message.', '0123456789', 'cast5');
2024-11-25 19:08:08.588 CET [562011][client backend] [pg_regress/cast5][83/37:0] ERROR: encrypt error: Cipher cannot be initialized
2024-11-25 19:08:08.588 CET [562011][client backend] [pg_regress/cast5][83/37:0] STATEMENT: select encode(decrypt(encrypt('Lets try a longer message.', '0123456789', 'cast5'), '0123456789', 'cast5'), 'escape');
2024-11-25 19:08:08.588 CET [562011][client backend] [pg_regress/cast5][:0] LOG: disconnection: session time: 0:00:00.004 user=nkey database=regression_pgcrypto host=[local]
2024-11-25 19:08:08.591 CET [562005][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.011 user=nkey database=isolation_regression_pgrowlocks host=[local]
2024-11-25 19:08:08.594 CET [562038][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.595 CET [562038][client backend] [[unknown]][81/59:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.595 CET [562038][client backend] [[unknown]][81/59:0] LOG: connection authorized: user=nkey database=regression_pgcrypto application_name=pg_regress/crypt-des
2024-11-25 19:08:08.595 CET [562039][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.595 CET [562041][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.595 CET [562042][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.595 CET [562043][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.595 CET [562039][client backend] [[unknown]][90/33:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.596 CET [562039][client backend] [[unknown]][90/33:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/copy
2024-11-25 19:08:08.596 CET [562041][client backend] [[unknown]][88/14:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.596 CET [562041][client backend] [[unknown]][88/14:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/copydml
2024-11-25 19:08:08.596 CET [562042][client backend] [[unknown]][84/22:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.596 CET [562042][client backend] [[unknown]][84/22:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/copyselect
2024-11-25 19:08:08.596 CET [562043][client backend] [[unknown]][85/7:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.596 CET [562043][client backend] [[unknown]][85/7:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/insert
2024-11-25 19:08:08.597 CET [562044][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.597 CET [562044][client backend] [[unknown]][16/605:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.597 CET [562044][client backend] [[unknown]][16/605:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/insert_conflict
2024-11-25 19:08:08.598 CET [562045][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.598 CET [562045][client backend] [[unknown]][89/23:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.598 CET [562045][client backend] [[unknown]][89/23:0] LOG: connection authorized: user=nkey database=isolation_regression_pgrowlocks application_name=isolation/pgrowlocks
2024-11-25 19:08:08.600 CET [562038][client backend] [pg_regress/crypt-des][81/62:0] ERROR: invalid salt
2024-11-25 19:08:08.600 CET [562038][client backend] [pg_regress/crypt-des][81/62:0] STATEMENT: SELECT crypt('password', 'a');
2024-11-25 19:08:08.602 CET [562046][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.602 CET [562046][client backend] [[unknown]][87/7:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.602 CET [562046][client backend] [[unknown]][87/7:0] LOG: connection authorized: user=nkey database=isolation_regression_pgrowlocks application_name=isolation/pgrowlocks
2024-11-25 19:08:08.603 CET [562043][client backend] [pg_regress/insert][85/9:0] ERROR: null value in column "col2" of relation "inserttest" violates not-null constraint
2024-11-25 19:08:08.603 CET [562043][client backend] [pg_regress/insert][85/9:0] DETAIL: Failing row contains (null, null, testing).
2024-11-25 19:08:08.603 CET [562043][client backend] [pg_regress/insert][85/9:0] STATEMENT: insert into inserttest (col1, col2, col3) values (DEFAULT, DEFAULT, DEFAULT);
2024-11-25 19:08:08.607 CET [562043][client backend] [pg_regress/insert][85/15:0] ERROR: INSERT has more target columns than expressions at character 37
2024-11-25 19:08:08.607 CET [562043][client backend] [pg_regress/insert][85/15:0] STATEMENT: insert into inserttest (col1, col2, col3) values (DEFAULT, DEFAULT);
2024-11-25 19:08:08.609 CET [562041][client backend] [pg_regress/copydml][88/27:0] ERROR: COPY query must have a RETURNING clause
2024-11-25 19:08:08.609 CET [562041][client backend] [pg_regress/copydml][88/27:0] STATEMENT: copy (insert into copydml_test default values) to stdout;
2024-11-25 19:08:08.609 CET [562041][client backend] [pg_regress/copydml][88/28:0] ERROR: COPY query must have a RETURNING clause
2024-11-25 19:08:08.609 CET [562041][client backend] [pg_regress/copydml][88/28:0] STATEMENT: copy (update copydml_test set t = 'g') to stdout;
2024-11-25 19:08:08.609 CET [562043][client backend] [pg_regress/insert][85/16:0] ERROR: INSERT has more target columns than expressions at character 37
2024-11-25 19:08:08.609 CET [562043][client backend] [pg_regress/insert][85/16:0] STATEMENT: insert into inserttest (col1, col2, col3) values (1, 2);
2024-11-25 19:08:08.609 CET [562041][client backend] [pg_regress/copydml][88/29:0] ERROR: COPY query must have a RETURNING clause
2024-11-25 19:08:08.609 CET [562041][client backend] [pg_regress/copydml][88/29:0] STATEMENT: copy (delete from copydml_test) to stdout;
2024-11-25 19:08:08.610 CET [562044][client backend] [pg_regress/insert_conflict][16/612:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:08.610 CET [562044][client backend] [pg_regress/insert_conflict][16/612:0] STATEMENT: explain (costs off) insert into insertconflicttest values(0, 'Crowberry') on conflict (key) do nothing;
2024-11-25 19:08:08.610 CET [562044][client backend] [pg_regress/insert_conflict][16/613:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:08.610 CET [562044][client backend] [pg_regress/insert_conflict][16/613:0] STATEMENT: explain (costs off) insert into insertconflicttest values(0, 'Crowberry') on conflict (fruit) do nothing;
2024-11-25 19:08:08.610 CET [562041][client backend] [pg_regress/copydml][88/31:0] ERROR: DO INSTEAD NOTHING rules are not supported for COPY
2024-11-25 19:08:08.610 CET [562041][client backend] [pg_regress/copydml][88/31:0] STATEMENT: copy (insert into copydml_test default values) to stdout;
2024-11-25 19:08:08.612 CET [562038][client backend] [pg_regress/crypt-des][:0] LOG: disconnection: session time: 0:00:00.018 user=nkey database=regression_pgcrypto host=[local]
2024-11-25 19:08:08.613 CET [562047][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.614 CET [562047][client backend] [[unknown]][91/14:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.614 CET [562047][client backend] [[unknown]][91/14:0] LOG: connection authorized: user=nkey database=isolation_regression_pgrowlocks application_name=isolation/pgrowlocks
2024-11-25 19:08:08.614 CET [562042][client backend] [pg_regress/copyselect][84/37:0] ERROR: cannot copy from view "v_test1"
2024-11-25 19:08:08.614 CET [562042][client backend] [pg_regress/copyselect][84/37:0] HINT: Try the COPY (SELECT ...) TO variant.
2024-11-25 19:08:08.614 CET [562042][client backend] [pg_regress/copyselect][84/37:0] STATEMENT: copy v_test1 to stdout;
2024-11-25 19:08:08.616 CET [562042][client backend] [pg_regress/copyselect][84/40:0] ERROR: COPY (SELECT INTO) is not supported
2024-11-25 19:08:08.616 CET [562042][client backend] [pg_regress/copyselect][84/40:0] STATEMENT: copy (select t into temp test3 from test1 where id=3) to stdout;
2024-11-25 19:08:08.619 CET [562043][client backend] [pg_regress/insert][85/17:0] ERROR: INSERT has more expressions than target columns at character 42
2024-11-25 19:08:08.619 CET [562043][client backend] [pg_regress/insert][85/17:0] STATEMENT: insert into inserttest (col1) values (1, 2);
2024-11-25 19:08:08.619 CET [562041][client backend] [pg_regress/copydml][88/34:0] ERROR: DO ALSO rules are not supported for COPY
2024-11-25 19:08:08.619 CET [562041][client backend] [pg_regress/copydml][88/34:0] STATEMENT: copy (insert into copydml_test default values) to stdout;
2024-11-25 19:08:08.620 CET [562042][client backend] [pg_regress/copyselect][84/41:0] ERROR: syntax error at or near "from" at character 28
2024-11-25 19:08:08.620 CET [562042][client backend] [pg_regress/copyselect][84/41:0] STATEMENT: copy (select * from test1) from stdin;
2024-11-25 19:08:08.621 CET [562041][client backend] [pg_regress/copydml][88/37:0] ERROR: multi-statement DO INSTEAD rules are not supported for COPY
2024-11-25 19:08:08.621 CET [562041][client backend] [pg_regress/copydml][88/37:0] STATEMENT: copy (insert into copydml_test default values) to stdout;
2024-11-25 19:08:08.622 CET [562043][client backend] [pg_regress/insert][85/18:0] ERROR: INSERT has more expressions than target columns at character 48
2024-11-25 19:08:08.622 CET [562043][client backend] [pg_regress/insert][85/18:0] STATEMENT: insert into inserttest (col1) values (DEFAULT, DEFAULT);
2024-11-25 19:08:08.622 CET [562042][client backend] [pg_regress/copyselect][84/42:0] ERROR: syntax error at or near "(" at character 28
2024-11-25 19:08:08.622 CET [562042][client backend] [pg_regress/copyselect][84/42:0] STATEMENT: copy (select * from test1) (t,id) to stdout;
2024-11-25 19:08:08.623 CET [562051][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.624 CET [562041][client backend] [pg_regress/copydml][88/40:0] ERROR: conditional DO INSTEAD rules are not supported for COPY
2024-11-25 19:08:08.624 CET [562041][client backend] [pg_regress/copydml][88/40:0] STATEMENT: copy (insert into copydml_test default values) to stdout;
2024-11-25 19:08:08.624 CET [562051][client backend] [[unknown]][45/541:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.624 CET [562051][client backend] [[unknown]][45/541:0] LOG: connection authorized: user=nkey database=regression_pgcrypto application_name=pg_regress/crypt-md5
2024-11-25 19:08:08.626 CET [562041][client backend] [pg_regress/copydml][88/43:0] ERROR: DO INSTEAD NOTHING rules are not supported for COPY
2024-11-25 19:08:08.626 CET [562041][client backend] [pg_regress/copydml][88/43:0] STATEMENT: copy (update copydml_test set t = 'f') to stdout;
2024-11-25 19:08:08.628 CET [562042][client backend] [pg_regress/copyselect][84/48:0] ERROR: cannot copy from view "v_test1"
2024-11-25 19:08:08.628 CET [562042][client backend] [pg_regress/copyselect][84/48:0] HINT: Try the COPY (SELECT ...) TO variant.
2024-11-25 19:08:08.628 CET [562042][client backend] [pg_regress/copyselect][84/48:0] STATEMENT: COPY v_test1 TO STDOUT
2024-11-25 19:08:08.628 CET [562041][client backend] [pg_regress/copydml][88/46:0] ERROR: DO ALSO rules are not supported for COPY
2024-11-25 19:08:08.628 CET [562041][client backend] [pg_regress/copydml][88/46:0] STATEMENT: copy (update copydml_test set t = 'f') to stdout;
2024-11-25 19:08:08.629 CET [562044][client backend] [pg_regress/insert_conflict][16/630:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:08.629 CET [562044][client backend] [pg_regress/insert_conflict][16/630:0] STATEMENT: explain (costs off) insert into insertconflicttest values(0, 'Crowberry') on conflict (lower(fruit) text_pattern_ops, upper(fruit) collate "C") do nothing;
2024-11-25 19:08:08.629 CET [562041][client backend] [pg_regress/copydml][88/49:0] ERROR: multi-statement DO INSTEAD rules are not supported for COPY
2024-11-25 19:08:08.629 CET [562041][client backend] [pg_regress/copydml][88/49:0] STATEMENT: copy (update copydml_test set t = 'f') to stdout;
2024-11-25 19:08:08.630 CET [562039][client backend] [pg_regress/copy][90/51:0] ERROR: end-of-copy marker is not alone on its line
2024-11-25 19:08:08.630 CET [562039][client backend] [pg_regress/copy][90/51:0] CONTEXT: COPY copytest2, line 3
2024-11-25 19:08:08.630 CET [562039][client backend] [pg_regress/copy][90/51:0] STATEMENT: copy copytest2(test) from stdin;
2024-11-25 19:08:08.630 CET [562039][client backend] [pg_regress/copy][90/52:0] ERROR: end-of-copy marker is not alone on its line
2024-11-25 19:08:08.630 CET [562039][client backend] [pg_regress/copy][90/52:0] CONTEXT: COPY copytest2, line 3
2024-11-25 19:08:08.630 CET [562039][client backend] [pg_regress/copy][90/52:0] STATEMENT: copy copytest2(test) from stdin;
2024-11-25 19:08:08.630 CET [562041][client backend] [pg_regress/copydml][88/52:0] ERROR: conditional DO INSTEAD rules are not supported for COPY
2024-11-25 19:08:08.630 CET [562041][client backend] [pg_regress/copydml][88/52:0] STATEMENT: copy (update copydml_test set t = 'f') to stdout;
2024-11-25 19:08:08.632 CET [562041][client backend] [pg_regress/copydml][88/55:0] ERROR: DO INSTEAD NOTHING rules are not supported for COPY
2024-11-25 19:08:08.632 CET [562041][client backend] [pg_regress/copydml][88/55:0] STATEMENT: copy (delete from copydml_test) to stdout;
2024-11-25 19:08:08.633 CET [562041][client backend] [pg_regress/copydml][88/58:0] ERROR: DO ALSO rules are not supported for COPY
2024-11-25 19:08:08.633 CET [562041][client backend] [pg_regress/copydml][88/58:0] STATEMENT: copy (delete from copydml_test) to stdout;
2024-11-25 19:08:08.634 CET [562041][client backend] [pg_regress/copydml][88/61:0] ERROR: multi-statement DO INSTEAD rules are not supported for COPY
2024-11-25 19:08:08.634 CET [562041][client backend] [pg_regress/copydml][88/61:0] STATEMENT: copy (delete from copydml_test) to stdout;
2024-11-25 19:08:08.634 CET [562044][client backend] [pg_regress/insert_conflict][16/638:0] ERROR: ON CONFLICT DO UPDATE requires inference specification or constraint name at character 52
2024-11-25 19:08:08.634 CET [562044][client backend] [pg_regress/insert_conflict][16/638:0] HINT: For example, ON CONFLICT (column_name).
2024-11-25 19:08:08.634 CET [562044][client backend] [pg_regress/insert_conflict][16/638:0] STATEMENT: insert into insertconflicttest values (1, 'Apple') on conflict do update set fruit = excluded.fruit;
2024-11-25 19:08:08.635 CET [562041][client backend] [pg_regress/copydml][88/64:0] ERROR: conditional DO INSTEAD rules are not supported for COPY
2024-11-25 19:08:08.635 CET [562041][client backend] [pg_regress/copydml][88/64:0] STATEMENT: copy (delete from copydml_test) to stdout;
2024-11-25 19:08:08.635 CET [562041][client backend] [pg_regress/copydml][88/67:0] ERROR: COPY query must not be a utility command
2024-11-25 19:08:08.635 CET [562041][client backend] [pg_regress/copydml][88/67:0] STATEMENT: copy (insert into copydml_test default values) to stdout;
2024-11-25 19:08:08.638 CET [562044][client backend] [pg_regress/insert_conflict][16/642:0] ERROR: invalid reference to FROM-clause entry for table "excluded" at character 117
2024-11-25 19:08:08.638 CET [562044][client backend] [pg_regress/insert_conflict][16/642:0] DETAIL: There is an entry for table "excluded", but it cannot be referenced from this part of the query.
2024-11-25 19:08:08.638 CET [562044][client backend] [pg_regress/insert_conflict][16/642:0] STATEMENT: insert into insertconflicttest values (1, 'Apple') on conflict (key) do update set fruit = excluded.fruit RETURNING excluded.fruit;
2024-11-25 19:08:08.639 CET [562044][client backend] [pg_regress/insert_conflict][16/643:0] ERROR: column "keyy" does not exist at character 64
2024-11-25 19:08:08.639 CET [562044][client backend] [pg_regress/insert_conflict][16/643:0] HINT: Perhaps you meant to reference the column "insertconflicttest.key" or the column "excluded.key".
2024-11-25 19:08:08.639 CET [562044][client backend] [pg_regress/insert_conflict][16/643:0] STATEMENT: insert into insertconflicttest values (1, 'Apple') on conflict (keyy) do update set fruit = excluded.fruit;
2024-11-25 19:08:08.639 CET [562042][client backend] [pg_regress/copyselect][84/53:0] ERROR: division by zero
2024-11-25 19:08:08.639 CET [562042][client backend] [pg_regress/copyselect][84/53:0] STATEMENT: copy (select 1) to stdout; select 1/0;
2024-11-25 19:08:08.639 CET [562044][client backend] [pg_regress/insert_conflict][16/644:0] ERROR: column excluded.fruitt does not exist at character 92
2024-11-25 19:08:08.639 CET [562044][client backend] [pg_regress/insert_conflict][16/644:0] HINT: Perhaps you meant to reference the column "excluded.fruit".
2024-11-25 19:08:08.639 CET [562044][client backend] [pg_regress/insert_conflict][16/644:0] STATEMENT: insert into insertconflicttest values (1, 'Apple') on conflict (key) do update set fruit = excluded.fruitt;
2024-11-25 19:08:08.639 CET [562042][client backend] [pg_regress/copyselect][84/54:0] ERROR: division by zero
2024-11-25 19:08:08.639 CET [562042][client backend] [pg_regress/copyselect][84/54:0] STATEMENT: select 1/0; copy (select 1) to stdout;
2024-11-25 19:08:08.639 CET [562044][client backend] [pg_regress/insert_conflict][16/645:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:08.639 CET [562044][client backend] [pg_regress/insert_conflict][16/645:0] STATEMENT: insert into insertconflicttest values (3, 'Kiwi') on conflict (key, fruit) do update set fruit = excluded.fruit;
2024-11-25 19:08:08.640 CET [562044][client backend] [pg_regress/insert_conflict][16/646:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:08.640 CET [562044][client backend] [pg_regress/insert_conflict][16/646:0] STATEMENT: insert into insertconflicttest values (4, 'Mango') on conflict (fruit, key) do update set fruit = excluded.fruit;
2024-11-25 19:08:08.640 CET [562043][client backend] [pg_regress/insert][85/38:0] ERROR: cannot set an array element to DEFAULT at character 32
2024-11-25 19:08:08.640 CET [562043][client backend] [pg_regress/insert][85/38:0] STATEMENT: insert into inserttest (f2[1], f2[2]) values (1,default);
2024-11-25 19:08:08.640 CET [562044][client backend] [pg_regress/insert_conflict][16/647:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:08.640 CET [562044][client backend] [pg_regress/insert_conflict][16/647:0] STATEMENT: insert into insertconflicttest values (5, 'Lemon') on conflict (fruit) do update set fruit = excluded.fruit;
2024-11-25 19:08:08.640 CET [562044][client backend] [pg_regress/insert_conflict][16/648:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:08.640 CET [562044][client backend] [pg_regress/insert_conflict][16/648:0] STATEMENT: insert into insertconflicttest values (6, 'Passionfruit') on conflict (lower(fruit)) do update set fruit = excluded.fruit;
2024-11-25 19:08:08.642 CET [562044][client backend] [pg_regress/insert_conflict][16/651:0] ERROR: invalid reference to FROM-clause entry for table "insertconflicttest" at character 106
2024-11-25 19:08:08.642 CET [562044][client backend] [pg_regress/insert_conflict][16/651:0] HINT: Perhaps you meant to reference the table alias "ict".
2024-11-25 19:08:08.642 CET [562044][client backend] [pg_regress/insert_conflict][16/651:0] STATEMENT: insert into insertconflicttest AS ict values (6, 'Passionfruit') on conflict (key) do update set fruit = insertconflicttest.fruit;
2024-11-25 19:08:08.642 CET [562044][client backend] [pg_regress/insert_conflict][16/652:0] ERROR: column "insertconflicttest" of relation "insertconflicttest" does not exist at character 90
2024-11-25 19:08:08.642 CET [562044][client backend] [pg_regress/insert_conflict][16/652:0] HINT: SET target columns cannot be qualified with the relation name.
2024-11-25 19:08:08.642 CET [562044][client backend] [pg_regress/insert_conflict][16/652:0] STATEMENT: insert into insertconflicttest values (3, 'Kiwi') on conflict (key, fruit) do update set insertconflicttest.fruit = 'Mango';
2024-11-25 19:08:08.643 CET [562041][client backend] [pg_regress/copydml][:0] LOG: disconnection: session time: 0:00:00.047 user=nkey database=regression host=[local]
2024-11-25 19:08:08.643 CET [562043][client backend] [pg_regress/insert][85/42:0] ERROR: cannot set a subfield to DEFAULT at character 33
2024-11-25 19:08:08.643 CET [562043][client backend] [pg_regress/insert][85/42:0] STATEMENT: insert into inserttest (f3.if1, f3.if2) values (1,default);
2024-11-25 19:08:08.643 CET [562051][client backend] [pg_regress/crypt-md5][:0] LOG: disconnection: session time: 0:00:00.020 user=nkey database=regression_pgcrypto host=[local]
2024-11-25 19:08:08.645 CET [562044][client backend] [pg_regress/insert_conflict][16/657:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:08.645 CET [562044][client backend] [pg_regress/insert_conflict][16/657:0] STATEMENT: insert into insertconflicttest values (9, 'Banana') on conflict (key) do update set fruit = excluded.fruit;
2024-11-25 19:08:08.645 CET [562044][client backend] [pg_regress/insert_conflict][16/658:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:08.645 CET [562044][client backend] [pg_regress/insert_conflict][16/658:0] STATEMENT: insert into insertconflicttest values (10, 'Blueberry') on conflict (key, key, key) do update set fruit = excluded.fruit;
2024-11-25 19:08:08.645 CET [562044][client backend] [pg_regress/insert_conflict][16/659:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:08.645 CET [562044][client backend] [pg_regress/insert_conflict][16/659:0] STATEMENT: insert into insertconflicttest values (11, 'Cherry') on conflict (key, lower(fruit)) do update set fruit = excluded.fruit;
2024-11-25 19:08:08.645 CET [562044][client backend] [pg_regress/insert_conflict][16/660:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:08.645 CET [562044][client backend] [pg_regress/insert_conflict][16/660:0] STATEMENT: insert into insertconflicttest values (12, 'Date') on conflict (lower(fruit), key) do update set fruit = excluded.fruit;
2024-11-25 19:08:08.645 CET [562042][client backend] [pg_regress/copyselect][:0] LOG: disconnection: session time: 0:00:00.050 user=nkey database=regression host=[local]
2024-11-25 19:08:08.650 CET [562055][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.651 CET [562055][client backend] [[unknown]][97/66:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.651 CET [562055][client backend] [[unknown]][97/66:0] LOG: connection authorized: user=nkey database=regression_pgcrypto application_name=pg_regress/crypt-blowfish
2024-11-25 19:08:08.652 CET [562044][client backend] [pg_regress/insert_conflict][16/664:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:08.652 CET [562044][client backend] [pg_regress/insert_conflict][16/664:0] STATEMENT: insert into insertconflicttest values (13, 'Grape') on conflict (key, fruit) do update set fruit = excluded.fruit;
2024-11-25 19:08:08.653 CET [562044][client backend] [pg_regress/insert_conflict][16/665:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:08.653 CET [562044][client backend] [pg_regress/insert_conflict][16/665:0] STATEMENT: insert into insertconflicttest values (14, 'Raisin') on conflict (fruit, key) do update set fruit = excluded.fruit;
2024-11-25 19:08:08.653 CET [562044][client backend] [pg_regress/insert_conflict][16/666:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:08.653 CET [562044][client backend] [pg_regress/insert_conflict][16/666:0] STATEMENT: insert into insertconflicttest values (15, 'Cranberry') on conflict (key) do update set fruit = excluded.fruit;
2024-11-25 19:08:08.653 CET [562044][client backend] [pg_regress/insert_conflict][16/667:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:08.653 CET [562044][client backend] [pg_regress/insert_conflict][16/667:0] STATEMENT: insert into insertconflicttest values (16, 'Melon') on conflict (key, key, key) do update set fruit = excluded.fruit;
2024-11-25 19:08:08.653 CET [562044][client backend] [pg_regress/insert_conflict][16/668:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:08.653 CET [562044][client backend] [pg_regress/insert_conflict][16/668:0] STATEMENT: insert into insertconflicttest values (17, 'Mulberry') on conflict (key, lower(fruit)) do update set fruit = excluded.fruit;
2024-11-25 19:08:08.653 CET [562044][client backend] [pg_regress/insert_conflict][16/669:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:08.653 CET [562044][client backend] [pg_regress/insert_conflict][16/669:0] STATEMENT: insert into insertconflicttest values (18, 'Pineapple') on conflict (lower(fruit), key) do update set fruit = excluded.fruit;
2024-11-25 19:08:08.657 CET [562044][client backend] [pg_regress/insert_conflict][16/675:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:08.657 CET [562044][client backend] [pg_regress/insert_conflict][16/675:0] STATEMENT: insert into insertconflicttest values (22, 'Apricot') on conflict (upper(fruit)) do update set fruit = excluded.fruit;
2024-11-25 19:08:08.657 CET [562044][client backend] [pg_regress/insert_conflict][16/676:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:08.657 CET [562044][client backend] [pg_regress/insert_conflict][16/676:0] STATEMENT: insert into insertconflicttest values (23, 'Blackberry') on conflict (fruit) do update set fruit = excluded.fruit;
2024-11-25 19:08:08.660 CET [562039][client backend] [pg_regress/copy][90/71:528756] ERROR: cannot perform COPY FREEZE on a partitioned table
2024-11-25 19:08:08.660 CET [562039][client backend] [pg_regress/copy][90/71:528756] STATEMENT: copy parted_copytest from '/home/nkey/postgres/buildDir/testrun/regress-running/regress/results/parted_copytest.csv' (freeze);
2024-11-25 19:08:08.663 CET [562044][client backend] [pg_regress/insert_conflict][16/683:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:08.663 CET [562044][client backend] [pg_regress/insert_conflict][16/683:0] STATEMENT: insert into insertconflicttest values (27, 'Prune') on conflict (key, upper(fruit)) do update set fruit = excluded.fruit;
2024-11-25 19:08:08.663 CET [562044][client backend] [pg_regress/insert_conflict][16/684:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:08.663 CET [562044][client backend] [pg_regress/insert_conflict][16/684:0] STATEMENT: insert into insertconflicttest values (28, 'Redcurrant') on conflict (fruit, key) do update set fruit = excluded.fruit;
2024-11-25 19:08:08.663 CET [562044][client backend] [pg_regress/insert_conflict][16/685:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:08.663 CET [562044][client backend] [pg_regress/insert_conflict][16/685:0] STATEMENT: insert into insertconflicttest values (29, 'Nectarine') on conflict (key) do update set fruit = excluded.fruit;
2024-11-25 19:08:08.668 CET [562044][client backend] [pg_regress/insert_conflict][16/691:528772] ERROR: duplicate key value violates unique constraint "fruit_index"
2024-11-25 19:08:08.668 CET [562044][client backend] [pg_regress/insert_conflict][16/691:528772] DETAIL: Key (fruit)=(Peach) already exists.
2024-11-25 19:08:08.668 CET [562044][client backend] [pg_regress/insert_conflict][16/691:528772] STATEMENT: insert into insertconflicttest values (26, 'Peach') on conflict (key) do update set fruit = excluded.fruit;
2024-11-25 19:08:08.672 CET [562055][client backend] [pg_regress/crypt-blowfish][97/69:0] ERROR: invalid salt
2024-11-25 19:08:08.672 CET [562055][client backend] [pg_regress/crypt-blowfish][97/69:0] STATEMENT: SELECT crypt('foox', '$2a$');
2024-11-25 19:08:08.673 CET [562055][client backend] [pg_regress/crypt-blowfish][97/70:0] ERROR: invalid salt
2024-11-25 19:08:08.673 CET [562055][client backend] [pg_regress/crypt-blowfish][97/70:0] STATEMENT: SELECT crypt('foox', '$2a$40$RQiOJ.3ELirrXwxIZY8q0O');
2024-11-25 19:08:08.673 CET [562055][client backend] [pg_regress/crypt-blowfish][97/71:0] ERROR: invalid salt
2024-11-25 19:08:08.673 CET [562055][client backend] [pg_regress/crypt-blowfish][97/71:0] STATEMENT: SELECT crypt('foox', '$2a$00$RQiOJ.3ELirrXwxIZY8q0O');
2024-11-25 19:08:08.673 CET [562044][client backend] [pg_regress/insert_conflict][16/699:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:08.673 CET [562044][client backend] [pg_regress/insert_conflict][16/699:0] STATEMENT: insert into insertconflicttest values (23, 'Blackberry') on conflict (key) do update set fruit = excluded.fruit;
2024-11-25 19:08:08.673 CET [562044][client backend] [pg_regress/insert_conflict][16/700:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:08.673 CET [562044][client backend] [pg_regress/insert_conflict][16/700:0] STATEMENT: insert into insertconflicttest values (23, 'Blackberry') on conflict (key) where fruit like '%berry' or fruit = 'consequential' do nothing;
2024-11-25 19:08:08.673 CET [562044][client backend] [pg_regress/insert_conflict][16/701:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:08.673 CET [562044][client backend] [pg_regress/insert_conflict][16/701:0] STATEMENT: insert into insertconflicttest values (23, 'Blackberry') on conflict (fruit) where fruit like '%berry' do update set fruit = excluded.fruit;
2024-11-25 19:08:08.684 CET [562043][client backend] [pg_regress/insert][85/73:0] ERROR: cannot set an array element to DEFAULT at character 33
2024-11-25 19:08:08.684 CET [562043][client backend] [pg_regress/insert][85/73:0] STATEMENT: insert into inserttesta (f2[1], f2[2]) values (1,default);
2024-11-25 19:08:08.684 CET [562043][client backend] [pg_regress/insert][85/74:0] ERROR: value for domain insert_pos_ints violates check constraint "insert_pos_ints_check"
2024-11-25 19:08:08.684 CET [562043][client backend] [pg_regress/insert][85/74:0] STATEMENT: insert into inserttesta (f2[1], f2[2]) values (0,2);
2024-11-25 19:08:08.684 CET [562043][client backend] [pg_regress/insert][85/75:528812] ERROR: value for domain insert_pos_ints violates check constraint "insert_pos_ints_check"
2024-11-25 19:08:08.684 CET [562043][client backend] [pg_regress/insert][85/75:528812] STATEMENT: insert into inserttesta (f2[1], f2[2]) values (3,4), (0,6);
2024-11-25 19:08:08.685 CET [562043][client backend] [pg_regress/insert][85/76:0] ERROR: value for domain insert_pos_ints violates check constraint "insert_pos_ints_check"
2024-11-25 19:08:08.685 CET [562043][client backend] [pg_regress/insert][85/76:0] STATEMENT: insert into inserttesta (f2[1], f2[2]) select 0,8;
2024-11-25 19:08:08.687 CET [562043][client backend] [pg_regress/insert][85/80:0] ERROR: cannot set a subfield to DEFAULT at character 34
2024-11-25 19:08:08.687 CET [562043][client backend] [pg_regress/insert][85/80:0] STATEMENT: insert into inserttestb (f3.if1, f3.if2) values (1,default);
2024-11-25 19:08:08.687 CET [562043][client backend] [pg_regress/insert][85/81:0] ERROR: value for domain insert_test_domain violates check constraint "insert_test_domain_check"
2024-11-25 19:08:08.687 CET [562043][client backend] [pg_regress/insert][85/81:0] STATEMENT: insert into inserttestb (f3.if1, f3.if2) values (1,array[null]);
2024-11-25 19:08:08.687 CET [562043][client backend] [pg_regress/insert][85/82:0] ERROR: value for domain insert_test_domain violates check constraint "insert_test_domain_check"
2024-11-25 19:08:08.687 CET [562043][client backend] [pg_regress/insert][85/82:0] STATEMENT: insert into inserttestb (f3.if1, f3.if2) values (1,'{null}'), (2,'{bar}');
2024-11-25 19:08:08.688 CET [562043][client backend] [pg_regress/insert][85/83:0] ERROR: value for domain insert_test_domain violates check constraint "insert_test_domain_check"
2024-11-25 19:08:08.688 CET [562043][client backend] [pg_regress/insert][85/83:0] STATEMENT: insert into inserttestb (f3.if1, f3.if2) select 3, '{null,quux}';
2024-11-25 19:08:08.688 CET [562044][client backend] [pg_regress/insert_conflict][16/715:0] ERROR: column excluded.ctid does not exist at character 82
2024-11-25 19:08:08.688 CET [562044][client backend] [pg_regress/insert_conflict][16/715:0] STATEMENT: insert into syscolconflicttest values (1) on conflict (key) do update set data = excluded.ctid::text;
2024-11-25 19:08:08.706 CET [562039][client backend] [pg_regress/copy][90/97:0] ERROR: cannot use "match" with HEADER in COPY TO
2024-11-25 19:08:08.706 CET [562039][client backend] [pg_regress/copy][90/97:0] STATEMENT: copy header_copytest to stdout with (header match);
2024-11-25 19:08:08.706 CET [562039][client backend] [pg_regress/copy][90/98:0] ERROR: header requires a Boolean value or "match"
2024-11-25 19:08:08.706 CET [562039][client backend] [pg_regress/copy][90/98:0] STATEMENT: copy header_copytest from stdin with (header wrong_choice);
2024-11-25 19:08:08.707 CET [562039][client backend] [pg_regress/copy][90/102:0] ERROR: column name mismatch in header line field 1: got "a", expected "c"
2024-11-25 19:08:08.707 CET [562039][client backend] [pg_regress/copy][90/102:0] CONTEXT: COPY header_copytest, line 1: "a b c"
2024-11-25 19:08:08.707 CET [562039][client backend] [pg_regress/copy][90/102:0] STATEMENT: copy header_copytest (c, b, a) from stdin with (header match);
2024-11-25 19:08:08.708 CET [562039][client backend] [pg_regress/copy][90/103:0] ERROR: column name mismatch in header line field 3: got null value ("\N"), expected "c"
2024-11-25 19:08:08.708 CET [562039][client backend] [pg_regress/copy][90/103:0] CONTEXT: COPY header_copytest, line 1: "a b \N"
2024-11-25 19:08:08.708 CET [562039][client backend] [pg_regress/copy][90/103:0] STATEMENT: copy header_copytest from stdin with (header match);
2024-11-25 19:08:08.708 CET [562039][client backend] [pg_regress/copy][90/104:0] ERROR: wrong number of fields in header line: got 2, expected 3
2024-11-25 19:08:08.708 CET [562039][client backend] [pg_regress/copy][90/104:0] CONTEXT: COPY header_copytest, line 1: "a b"
2024-11-25 19:08:08.708 CET [562039][client backend] [pg_regress/copy][90/104:0] STATEMENT: copy header_copytest from stdin with (header match);
2024-11-25 19:08:08.708 CET [562039][client backend] [pg_regress/copy][90/105:0] ERROR: wrong number of fields in header line: got 4, expected 3
2024-11-25 19:08:08.708 CET [562039][client backend] [pg_regress/copy][90/105:0] CONTEXT: COPY header_copytest, line 1: "a b c d"
2024-11-25 19:08:08.708 CET [562039][client backend] [pg_regress/copy][90/105:0] STATEMENT: copy header_copytest from stdin with (header match);
2024-11-25 19:08:08.708 CET [562039][client backend] [pg_regress/copy][90/106:0] ERROR: column name mismatch in header line field 3: got "d", expected "c"
2024-11-25 19:08:08.708 CET [562039][client backend] [pg_regress/copy][90/106:0] CONTEXT: COPY header_copytest, line 1: "a b d"
2024-11-25 19:08:08.708 CET [562039][client backend] [pg_regress/copy][90/106:0] STATEMENT: copy header_copytest from stdin with (header match);
2024-11-25 19:08:08.709 CET [562043][client backend] [pg_regress/insert][85/114:0] ERROR: value for domain insert_nnarray violates check constraint "insert_nnarray_check"
2024-11-25 19:08:08.709 CET [562043][client backend] [pg_regress/insert][85/114:0] STATEMENT: insert into inserttesta (f1[1]) values (1);
2024-11-25 19:08:08.710 CET [561922][client backend] [pg_regress/gin][53/79:0] ERROR: invalid page size
2024-11-25 19:08:08.710 CET [561922][client backend] [pg_regress/gin][53/79:0] DETAIL: Expected 8192 bytes, got 3.
2024-11-25 19:08:08.710 CET [561922][client backend] [pg_regress/gin][53/79:0] STATEMENT: SELECT gin_leafpage_items('aaa'::bytea);
2024-11-25 19:08:08.710 CET [562039][client backend] [pg_regress/copy][90/111:0] ERROR: wrong number of fields in header line: got 3, expected 2
2024-11-25 19:08:08.710 CET [562039][client backend] [pg_regress/copy][90/111:0] CONTEXT: COPY header_copytest, line 1: "a ........pg.dropped.2........ c"
2024-11-25 19:08:08.710 CET [562039][client backend] [pg_regress/copy][90/111:0] STATEMENT: copy header_copytest from stdin with (header match);
2024-11-25 19:08:08.710 CET [561922][client backend] [pg_regress/gin][53/80:0] ERROR: invalid page size
2024-11-25 19:08:08.710 CET [561922][client backend] [pg_regress/gin][53/80:0] DETAIL: Expected 8192 bytes, got 3.
2024-11-25 19:08:08.710 CET [561922][client backend] [pg_regress/gin][53/80:0] STATEMENT: SELECT gin_metapage_info('bbb'::bytea);
2024-11-25 19:08:08.710 CET [561922][client backend] [pg_regress/gin][53/81:0] ERROR: invalid page size
2024-11-25 19:08:08.710 CET [561922][client backend] [pg_regress/gin][53/81:0] DETAIL: Expected 8192 bytes, got 3.
2024-11-25 19:08:08.710 CET [561922][client backend] [pg_regress/gin][53/81:0] STATEMENT: SELECT gin_page_opaque_info('ccc'::bytea);
2024-11-25 19:08:08.711 CET [562039][client backend] [pg_regress/copy][90/112:0] ERROR: wrong number of fields in header line: got 3, expected 2
2024-11-25 19:08:08.711 CET [562039][client backend] [pg_regress/copy][90/112:0] CONTEXT: COPY header_copytest, line 1: "a c b"
2024-11-25 19:08:08.711 CET [562039][client backend] [pg_regress/copy][90/112:0] STATEMENT: copy header_copytest (a, c) from stdin with (header match);
2024-11-25 19:08:08.711 CET [561922][client backend] [pg_regress/gin][53/82:0] ERROR: input page is not a valid GIN metapage
2024-11-25 19:08:08.711 CET [561922][client backend] [pg_regress/gin][53/82:0] DETAIL: Expected special size 8, got 0.
2024-11-25 19:08:08.711 CET [561922][client backend] [pg_regress/gin][53/82:0] STATEMENT: SELECT * FROM gin_metapage_info(get_raw_page('test1', 0));
2024-11-25 19:08:08.711 CET [561922][client backend] [pg_regress/gin][53/83:0] ERROR: input page is not a valid GIN data leaf page
2024-11-25 19:08:08.711 CET [561922][client backend] [pg_regress/gin][53/83:0] DETAIL: Expected special size 8, got 0.
2024-11-25 19:08:08.711 CET [561922][client backend] [pg_regress/gin][53/83:0] STATEMENT: SELECT * FROM gin_page_opaque_info(get_raw_page('test1', 0));
2024-11-25 19:08:08.711 CET [561922][client backend] [pg_regress/gin][53/84:0] ERROR: input page is not a valid GIN data leaf page
2024-11-25 19:08:08.711 CET [561922][client backend] [pg_regress/gin][53/84:0] DETAIL: Expected special size 8, got 0.
2024-11-25 19:08:08.711 CET [561922][client backend] [pg_regress/gin][53/84:0] STATEMENT: SELECT * FROM gin_leafpage_items(get_raw_page('test1', 0));
2024-11-25 19:08:08.713 CET [562045][client backend] [isolation/pgrowlocks/control connection][:0] LOG: disconnection: session time: 0:00:00.114 user=nkey database=isolation_regression_pgrowlocks host=[local]
2024-11-25 19:08:08.713 CET [562046][client backend] [isolation/pgrowlocks/s1][:0] LOG: disconnection: session time: 0:00:00.111 user=nkey database=isolation_regression_pgrowlocks host=[local]
2024-11-25 19:08:08.713 CET [562047][client backend] [isolation/pgrowlocks/s2][:0] LOG: disconnection: session time: 0:00:00.099 user=nkey database=isolation_regression_pgrowlocks host=[local]
2024-11-25 19:08:08.714 CET [562039][client backend] [pg_regress/copy][90/117:0] ERROR: value too long for type character varying(5)
2024-11-25 19:08:08.714 CET [562039][client backend] [pg_regress/copy][90/117:0] STATEMENT: copy oversized_column_default (col2) from stdin;
2024-11-25 19:08:08.715 CET [562039][client backend] [pg_regress/copy][90/118:0] ERROR: value too long for type character varying(5)
2024-11-25 19:08:08.715 CET [562039][client backend] [pg_regress/copy][90/118:0] STATEMENT: copy oversized_column_default from stdin (default '');
2024-11-25 19:08:08.715 CET [561922][client backend] [pg_regress/gin][:0] LOG: disconnection: session time: 0:00:00.501 user=nkey database=regression_pageinspect host=[local]
2024-11-25 19:08:08.716 CET [562043][client backend] [pg_regress/insert][85/117:0] ERROR: value for domain insert_test_domain violates check constraint "insert_test_domain_check"
2024-11-25 19:08:08.716 CET [562043][client backend] [pg_regress/insert][85/117:0] STATEMENT: insert into inserttestb (f1.if1) values (1);
2024-11-25 19:08:08.720 CET [562061][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.721 CET [562061][client backend] [[unknown]][93/50:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.721 CET [562061][client backend] [[unknown]][93/50:0] LOG: connection authorized: user=nkey database=regression_pageinspect application_name=pg_regress/gist
2024-11-25 19:08:08.724 CET [562043][client backend] [pg_regress/insert][85/124:0] ERROR: no partition of relation "range_parted" found for row
2024-11-25 19:08:08.724 CET [562043][client backend] [pg_regress/insert][85/124:0] DETAIL: Partition key of the failing row contains (a, (b + 0)) = (a, 11).
2024-11-25 19:08:08.724 CET [562043][client backend] [pg_regress/insert][85/124:0] STATEMENT: insert into range_parted values ('a', 11);
2024-11-25 19:08:08.729 CET [562055][client backend] [pg_regress/crypt-blowfish][:0] LOG: disconnection: session time: 0:00:00.078 user=nkey database=regression_pgcrypto host=[local]
2024-11-25 19:08:08.730 CET [562044][client backend] [pg_regress/insert_conflict][16/757:0] ERROR: table reference "excluded" is ambiguous at character 76
2024-11-25 19:08:08.730 CET [562044][client backend] [pg_regress/insert_conflict][16/757:0] STATEMENT: insert into excluded values(1, '2') on conflict (key) do update set data = excluded.data RETURNING *;
2024-11-25 19:08:08.734 CET [562066][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.734 CET [562043][client backend] [pg_regress/insert][85/129:0] ERROR: new row for relation "part1" violates partition constraint
2024-11-25 19:08:08.734 CET [562043][client backend] [pg_regress/insert][85/129:0] DETAIL: Failing row contains (a, 11).
2024-11-25 19:08:08.734 CET [562043][client backend] [pg_regress/insert][85/129:0] STATEMENT: insert into part1 values ('a', 11);
2024-11-25 19:08:08.734 CET [562043][client backend] [pg_regress/insert][85/130:0] ERROR: new row for relation "part1" violates partition constraint
2024-11-25 19:08:08.734 CET [562043][client backend] [pg_regress/insert][85/130:0] DETAIL: Failing row contains (b, 1).
2024-11-25 19:08:08.734 CET [562043][client backend] [pg_regress/insert][85/130:0] STATEMENT: insert into part1 values ('b', 1);
2024-11-25 19:08:08.734 CET [562066][client backend] [[unknown]][95/164:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.734 CET [562066][client backend] [[unknown]][95/164:0] LOG: connection authorized: user=nkey database=regression_pgcrypto application_name=pg_regress/crypt-xdes
2024-11-25 19:08:08.735 CET [562043][client backend] [pg_regress/insert][85/132:0] ERROR: new row for relation "part4" violates partition constraint
2024-11-25 19:08:08.735 CET [562043][client backend] [pg_regress/insert][85/132:0] DETAIL: Failing row contains (b, 21).
2024-11-25 19:08:08.735 CET [562043][client backend] [pg_regress/insert][85/132:0] STATEMENT: insert into part4 values ('b', 21);
2024-11-25 19:08:08.735 CET [562043][client backend] [pg_regress/insert][85/133:0] ERROR: new row for relation "part4" violates partition constraint
2024-11-25 19:08:08.735 CET [562043][client backend] [pg_regress/insert][85/133:0] DETAIL: Failing row contains (a, 10).
2024-11-25 19:08:08.735 CET [562043][client backend] [pg_regress/insert][85/133:0] STATEMENT: insert into part4 values ('a', 10);
2024-11-25 19:08:08.735 CET [562043][client backend] [pg_regress/insert][85/135:0] ERROR: new row for relation "part1" violates partition constraint
2024-11-25 19:08:08.735 CET [562043][client backend] [pg_regress/insert][85/135:0] DETAIL: Failing row contains (null, null).
2024-11-25 19:08:08.735 CET [562043][client backend] [pg_regress/insert][85/135:0] STATEMENT: insert into part1 values (null);
2024-11-25 19:08:08.735 CET [562043][client backend] [pg_regress/insert][85/136:0] ERROR: new row for relation "part1" violates partition constraint
2024-11-25 19:08:08.735 CET [562043][client backend] [pg_regress/insert][85/136:0] DETAIL: Failing row contains (1, null).
2024-11-25 19:08:08.735 CET [562043][client backend] [pg_regress/insert][85/136:0] STATEMENT: insert into part1 values (1);
2024-11-25 19:08:08.738 CET [562061][client backend] [pg_regress/gist][93/60:0] ERROR: "test_gist_btree" is not a GiST index
2024-11-25 19:08:08.738 CET [562061][client backend] [pg_regress/gist][93/60:0] STATEMENT: SELECT gist_page_items(get_raw_page('test_gist_btree', 0), 'test_gist_btree');
2024-11-25 19:08:08.738 CET [562061][client backend] [pg_regress/gist][93/61:0] ERROR: input page is not a valid GiST page
2024-11-25 19:08:08.738 CET [562061][client backend] [pg_regress/gist][93/61:0] DETAIL: Expected 0000ff81, got 00000000.
2024-11-25 19:08:08.738 CET [562061][client backend] [pg_regress/gist][93/61:0] STATEMENT: SELECT gist_page_items(get_raw_page('test_gist_btree', 0), 'test_gist_idx');
2024-11-25 19:08:08.738 CET [562066][client backend] [pg_regress/crypt-xdes][95/168:0] ERROR: invalid salt
2024-11-25 19:08:08.738 CET [562066][client backend] [pg_regress/crypt-xdes][95/168:0] STATEMENT: SELECT crypt('foox', '_J9..BWH');
2024-11-25 19:08:08.738 CET [562061][client backend] [pg_regress/gist][93/62:0] ERROR: invalid page size
2024-11-25 19:08:08.738 CET [562061][client backend] [pg_regress/gist][93/62:0] DETAIL: Expected 8192 bytes, got 3.
2024-11-25 19:08:08.738 CET [562061][client backend] [pg_regress/gist][93/62:0] STATEMENT: SELECT gist_page_items_bytea('aaa'::bytea);
2024-11-25 19:08:08.738 CET [562066][client backend] [pg_regress/crypt-xdes][95/169:0] ERROR: crypt(3) returned NULL
2024-11-25 19:08:08.738 CET [562066][client backend] [pg_regress/crypt-xdes][95/169:0] STATEMENT: SELECT crypt('password', '_........');
2024-11-25 19:08:08.738 CET [562066][client backend] [pg_regress/crypt-xdes][95/170:0] ERROR: crypt(3) returned NULL
2024-11-25 19:08:08.738 CET [562066][client backend] [pg_regress/crypt-xdes][95/170:0] STATEMENT: SELECT crypt('password', '_..!!!!!!');
2024-11-25 19:08:08.738 CET [562061][client backend] [pg_regress/gist][93/63:0] ERROR: invalid page size
2024-11-25 19:08:08.738 CET [562061][client backend] [pg_regress/gist][93/63:0] DETAIL: Expected 8192 bytes, got 3.
2024-11-25 19:08:08.738 CET [562061][client backend] [pg_regress/gist][93/63:0] STATEMENT: SELECT gist_page_items('aaa'::bytea, 'test_gist_idx'::regclass);
2024-11-25 19:08:08.738 CET [562061][client backend] [pg_regress/gist][93/64:0] ERROR: invalid page size
2024-11-25 19:08:08.738 CET [562061][client backend] [pg_regress/gist][93/64:0] DETAIL: Expected 8192 bytes, got 3.
2024-11-25 19:08:08.738 CET [562061][client backend] [pg_regress/gist][93/64:0] STATEMENT: SELECT gist_page_opaque_info('aaa'::bytea);
2024-11-25 19:08:08.739 CET [562061][client backend] [pg_regress/gist][93/65:0] ERROR: input page is not a valid GiST page
2024-11-25 19:08:08.739 CET [562061][client backend] [pg_regress/gist][93/65:0] DETAIL: Expected special size 16, got 0.
2024-11-25 19:08:08.739 CET [562061][client backend] [pg_regress/gist][93/65:0] STATEMENT: SELECT * FROM gist_page_opaque_info(get_raw_page('test_gist', 0));
2024-11-25 19:08:08.739 CET [562061][client backend] [pg_regress/gist][93/66:0] ERROR: input page is not a valid GiST page
2024-11-25 19:08:08.739 CET [562061][client backend] [pg_regress/gist][93/66:0] DETAIL: Expected special size 16, got 0.
2024-11-25 19:08:08.739 CET [562061][client backend] [pg_regress/gist][93/66:0] STATEMENT: SELECT gist_page_items_bytea(get_raw_page('test_gist', 0));
2024-11-25 19:08:08.739 CET [562061][client backend] [pg_regress/gist][93/67:0] ERROR: input page is not a valid GiST page
2024-11-25 19:08:08.739 CET [562061][client backend] [pg_regress/gist][93/67:0] DETAIL: Expected 0000ff81, got 00000000.
2024-11-25 19:08:08.739 CET [562061][client backend] [pg_regress/gist][93/67:0] STATEMENT: SELECT gist_page_items_bytea(get_raw_page('test_gist_btree', 0));
2024-11-25 19:08:08.741 CET [562043][client backend] [pg_regress/insert][85/141:0] ERROR: new row for relation "part_aa_bb" violates partition constraint
2024-11-25 19:08:08.741 CET [562043][client backend] [pg_regress/insert][85/141:0] DETAIL: Failing row contains (cc, 1).
2024-11-25 19:08:08.741 CET [562043][client backend] [pg_regress/insert][85/141:0] STATEMENT: insert into part_aa_bb values ('cc', 1);
2024-11-25 19:08:08.742 CET [562043][client backend] [pg_regress/insert][85/142:0] ERROR: new row for relation "part_aa_bb" violates partition constraint
2024-11-25 19:08:08.742 CET [562043][client backend] [pg_regress/insert][85/142:0] DETAIL: Failing row contains (AAa, 1).
2024-11-25 19:08:08.742 CET [562043][client backend] [pg_regress/insert][85/142:0] STATEMENT: insert into part_aa_bb values ('AAa', 1);
2024-11-25 19:08:08.742 CET [562043][client backend] [pg_regress/insert][85/143:0] ERROR: new row for relation "part_aa_bb" violates partition constraint
2024-11-25 19:08:08.742 CET [562043][client backend] [pg_regress/insert][85/143:0] DETAIL: Failing row contains (null, null).
2024-11-25 19:08:08.742 CET [562043][client backend] [pg_regress/insert][85/143:0] STATEMENT: insert into part_aa_bb values (null);
2024-11-25 19:08:08.745 CET [562066][client backend] [pg_regress/crypt-xdes][:0] LOG: disconnection: session time: 0:00:00.011 user=nkey database=regression_pgcrypto host=[local]
2024-11-25 19:08:08.747 CET [562061][client backend] [pg_regress/gist][:0] LOG: disconnection: session time: 0:00:00.027 user=nkey database=regression_pageinspect host=[local]
2024-11-25 19:08:08.750 CET [562043][client backend] [pg_regress/insert][85/150:0] ERROR: new row for relation "part_default" violates partition constraint
2024-11-25 19:08:08.750 CET [562043][client backend] [pg_regress/insert][85/150:0] DETAIL: Failing row contains (aa, 2).
2024-11-25 19:08:08.750 CET [562043][client backend] [pg_regress/insert][85/150:0] STATEMENT: insert into part_default values ('aa', 2);
2024-11-25 19:08:08.751 CET [562044][client backend] [pg_regress/insert_conflict][16/776:528983] ERROR: duplicate key value violates unique constraint "twoconstraints_f1_key"
2024-11-25 19:08:08.751 CET [562044][client backend] [pg_regress/insert_conflict][16/776:528983] DETAIL: Key (f1)=(1) already exists.
2024-11-25 19:08:08.751 CET [562044][client backend] [pg_regress/insert_conflict][16/776:528983] STATEMENT: insert into twoconstraints values(1, '((2,2),(3,3))');
2024-11-25 19:08:08.751 CET [562043][client backend] [pg_regress/insert][85/151:0] ERROR: new row for relation "part_default" violates partition constraint
2024-11-25 19:08:08.751 CET [562043][client backend] [pg_regress/insert][85/151:0] DETAIL: Failing row contains (null, 2).
2024-11-25 19:08:08.751 CET [562043][client backend] [pg_regress/insert][85/151:0] STATEMENT: insert into part_default values (null, 2);
2024-11-25 19:08:08.751 CET [562044][client backend] [pg_regress/insert_conflict][16/777:528984] ERROR: conflicting key value violates exclusion constraint "twoconstraints_f2_excl"
2024-11-25 19:08:08.751 CET [562044][client backend] [pg_regress/insert_conflict][16/777:528984] DETAIL: Key (f2)=((1,2),(0,0)) conflicts with existing key (f2)=((1,1),(0,0)).
2024-11-25 19:08:08.751 CET [562044][client backend] [pg_regress/insert_conflict][16/777:528984] STATEMENT: insert into twoconstraints values(2, '((0,0),(1,2))');
2024-11-25 19:08:08.751 CET [562072][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.751 CET [562044][client backend] [pg_regress/insert_conflict][16/778:528986] ERROR: conflicting key value violates exclusion constraint "twoconstraints_f2_excl"
2024-11-25 19:08:08.751 CET [562044][client backend] [pg_regress/insert_conflict][16/778:528986] DETAIL: Key (f2)=((1,2),(0,0)) conflicts with existing key (f2)=((1,1),(0,0)).
2024-11-25 19:08:08.751 CET [562044][client backend] [pg_regress/insert_conflict][16/778:528986] STATEMENT: insert into twoconstraints values(2, '((0,0),(1,2))')
on conflict on constraint twoconstraints_f1_key do nothing;
2024-11-25 19:08:08.752 CET [562072][client backend] [[unknown]][24/420:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.752 CET [562072][client backend] [[unknown]][24/420:0] LOG: connection authorized: user=nkey database=regression_pgcrypto application_name=pg_regress/pgp-armor
2024-11-25 19:08:08.755 CET [562076][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.756 CET [562076][client backend] [[unknown]][98/14:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.756 CET [562076][client backend] [[unknown]][98/14:0] LOG: connection authorized: user=nkey database=regression_pageinspect application_name=pg_regress/hash
2024-11-25 19:08:08.756 CET [562072][client backend] [pg_regress/pgp-armor][24/428:0] ERROR: Corrupt ascii-armor
2024-11-25 19:08:08.756 CET [562072][client backend] [pg_regress/pgp-armor][24/428:0] STATEMENT: select dearmor('
-----BEGIN PGP MESSAGE-----
em9va2E=
=ZZZZ
-----END PGP MESSAGE-----
');
2024-11-25 19:08:08.756 CET [562072][client backend] [pg_regress/pgp-armor][24/429:0] ERROR: Corrupt ascii-armor
2024-11-25 19:08:08.756 CET [562072][client backend] [pg_regress/pgp-armor][24/429:0] STATEMENT: select * from pgp_armor_headers('
-----BEGIN PGP MESSAGE-----
foo:
em9va2E=
=ZZZZ
-----END PGP MESSAGE-----
');
2024-11-25 19:08:08.756 CET [562072][client backend] [pg_regress/pgp-armor][24/430:0] ERROR: Corrupt ascii-armor
2024-11-25 19:08:08.756 CET [562072][client backend] [pg_regress/pgp-armor][24/430:0] STATEMENT: select * from pgp_armor_headers('
-----BEGIN PGP MESSAGE-----
em9va2E=
=ZZZZ
-----END PGP MESSAGE-----
');
2024-11-25 19:08:08.757 CET [562044][client backend] [pg_regress/insert_conflict][16/786:528999] ERROR: ON CONFLICT DO UPDATE command cannot affect row a second time
2024-11-25 19:08:08.757 CET [562044][client backend] [pg_regress/insert_conflict][16/786:528999] HINT: Ensure that no rows proposed for insertion within the same command have duplicate constrained values.
2024-11-25 19:08:08.757 CET [562044][client backend] [pg_regress/insert_conflict][16/786:528999] STATEMENT: insert into selfconflict values (4,1), (4,2) on conflict(f1) do update set f2 = 0;
2024-11-25 19:08:08.757 CET [562078][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.757 CET [562044][client backend] [pg_regress/insert_conflict][16/787:529001] ERROR: ON CONFLICT DO UPDATE command cannot affect row a second time
2024-11-25 19:08:08.757 CET [562044][client backend] [pg_regress/insert_conflict][16/787:529001] HINT: Ensure that no rows proposed for insertion within the same command have duplicate constrained values.
2024-11-25 19:08:08.757 CET [562044][client backend] [pg_regress/insert_conflict][16/787:529001] STATEMENT: insert into selfconflict values (5,1), (5,2) on conflict(f1) do update set f2 = 0;
2024-11-25 19:08:08.758 CET [562078][client backend] [[unknown]][86/220:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.758 CET [562078][client backend] [[unknown]][86/220:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:08.758 CET [562044][client backend] [pg_regress/insert_conflict][16/788:529003] ERROR: ON CONFLICT DO UPDATE command cannot affect row a second time
2024-11-25 19:08:08.758 CET [562044][client backend] [pg_regress/insert_conflict][16/788:529003] HINT: Ensure that no rows proposed for insertion within the same command have duplicate constrained values.
2024-11-25 19:08:08.758 CET [562044][client backend] [pg_regress/insert_conflict][16/788:529003] STATEMENT: insert into selfconflict values (6,1), (6,2) on conflict(f1) do update set f2 = 0;
2024-11-25 19:08:08.760 CET [562072][client backend] [pg_regress/pgp-armor][24/445:0] ERROR: mismatched array dimensions
2024-11-25 19:08:08.760 CET [562072][client backend] [pg_regress/pgp-armor][24/445:0] STATEMENT: select armor('', array['foo'], array['too', 'many']);
2024-11-25 19:08:08.760 CET [562072][client backend] [pg_regress/pgp-armor][24/446:0] ERROR: mismatched array dimensions
2024-11-25 19:08:08.760 CET [562072][client backend] [pg_regress/pgp-armor][24/446:0] STATEMENT: select armor('', array['too', 'many'], array['foo']);
2024-11-25 19:08:08.760 CET [562072][client backend] [pg_regress/pgp-armor][24/447:0] ERROR: wrong number of array subscripts
2024-11-25 19:08:08.760 CET [562072][client backend] [pg_regress/pgp-armor][24/447:0] STATEMENT: select armor('', array[['']], array['foo']);
2024-11-25 19:08:08.760 CET [562072][client backend] [pg_regress/pgp-armor][24/448:0] ERROR: wrong number of array subscripts
2024-11-25 19:08:08.760 CET [562072][client backend] [pg_regress/pgp-armor][24/448:0] STATEMENT: select armor('', array['foo'], array[['']]);
2024-11-25 19:08:08.760 CET [562072][client backend] [pg_regress/pgp-armor][24/449:0] ERROR: null value not allowed for header key
2024-11-25 19:08:08.760 CET [562072][client backend] [pg_regress/pgp-armor][24/449:0] STATEMENT: select armor('', array[null], array['foo']);
2024-11-25 19:08:08.760 CET [562072][client backend] [pg_regress/pgp-armor][24/450:0] ERROR: null value not allowed for header value
2024-11-25 19:08:08.760 CET [562072][client backend] [pg_regress/pgp-armor][24/450:0] STATEMENT: select armor('', array['foo'], array[null]);
2024-11-25 19:08:08.761 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:08.761 CET [562072][client backend] [pg_regress/pgp-armor][24/453:0] ERROR: header key must not contain newlines
2024-11-25 19:08:08.761 CET [562072][client backend] [pg_regress/pgp-armor][24/453:0] STATEMENT: select armor('', array[E'embedded\nnewline'], array['foo']);
2024-11-25 19:08:08.761 CET [562072][client backend] [pg_regress/pgp-armor][24/454:0] ERROR: header value must not contain newlines
2024-11-25 19:08:08.761 CET [562072][client backend] [pg_regress/pgp-armor][24/454:0] STATEMENT: select armor('', array['foo'], array[E'embedded\nnewline']);
2024-11-25 19:08:08.761 CET [562072][client backend] [pg_regress/pgp-armor][24/455:0] ERROR: header key must not contain ": "
2024-11-25 19:08:08.761 CET [562072][client backend] [pg_regress/pgp-armor][24/455:0] STATEMENT: select armor('', array['embedded: colon+space'], array['foo']);
2024-11-25 19:08:08.761 CET [562072][client backend] [pg_regress/pgp-armor][:0] LOG: disconnection: session time: 0:00:00.010 user=nkey database=regression_pgcrypto host=[local]
2024-11-25 19:08:08.762 CET [562043][client backend] [pg_regress/insert][85/160:0] ERROR: new row for relation "part_ee_ff1" violates partition constraint
2024-11-25 19:08:08.762 CET [562043][client backend] [pg_regress/insert][85/160:0] DETAIL: Failing row contains (EE, 11).
2024-11-25 19:08:08.762 CET [562043][client backend] [pg_regress/insert][85/160:0] STATEMENT: insert into part_ee_ff1 values ('EE', 11);
2024-11-25 19:08:08.763 CET [562043][client backend] [pg_regress/insert][85/161:0] ERROR: new row for relation "part_default_p2" violates partition constraint
2024-11-25 19:08:08.763 CET [562043][client backend] [pg_regress/insert][85/161:0] DETAIL: Failing row contains (gg, 43).
2024-11-25 19:08:08.763 CET [562043][client backend] [pg_regress/insert][85/161:0] STATEMENT: insert into part_default_p2 values ('gg', 43);
2024-11-25 19:08:08.763 CET [562043][client backend] [pg_regress/insert][85/162:0] ERROR: new row for relation "part_ee_ff1" violates partition constraint
2024-11-25 19:08:08.763 CET [562043][client backend] [pg_regress/insert][85/162:0] DETAIL: Failing row contains (cc, 1).
2024-11-25 19:08:08.763 CET [562043][client backend] [pg_regress/insert][85/162:0] STATEMENT: insert into part_ee_ff1 values ('cc', 1);
2024-11-25 19:08:08.763 CET [562043][client backend] [pg_regress/insert][85/163:0] ERROR: no partition of relation "part_default" found for row
2024-11-25 19:08:08.763 CET [562043][client backend] [pg_regress/insert][85/163:0] DETAIL: Partition key of the failing row contains (b) = (43).
2024-11-25 19:08:08.763 CET [562043][client backend] [pg_regress/insert][85/163:0] STATEMENT: insert into part_default values ('gg', 43);
2024-11-25 19:08:08.766 CET [562076][client backend] [pg_regress/hash][98/26:0] ERROR: block number 6 is out of range for relation "test_hash_a_idx"
2024-11-25 19:08:08.766 CET [562076][client backend] [pg_regress/hash][98/26:0] STATEMENT: SELECT hash_page_type(get_raw_page('test_hash_a_idx', 6));
2024-11-25 19:08:08.766 CET [562076][client backend] [pg_regress/hash][98/27:0] ERROR: invalid block number
2024-11-25 19:08:08.766 CET [562076][client backend] [pg_regress/hash][98/27:0] STATEMENT: SELECT * FROM hash_bitmap_info('test_hash_a_idx', -1);
2024-11-25 19:08:08.766 CET [562044][client backend] [pg_regress/insert_conflict][16/798:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:08.766 CET [562044][client backend] [pg_regress/insert_conflict][16/798:0] STATEMENT: insert into parted_conflict_test values (2, 'b') on conflict (b) do update set a = excluded.a;
2024-11-25 19:08:08.766 CET [562076][client backend] [pg_regress/hash][98/28:0] ERROR: invalid overflow block number 0
2024-11-25 19:08:08.766 CET [562076][client backend] [pg_regress/hash][98/28:0] STATEMENT: SELECT * FROM hash_bitmap_info('test_hash_a_idx', 0);
2024-11-25 19:08:08.766 CET [562082][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.766 CET [562076][client backend] [pg_regress/hash][98/29:0] ERROR: invalid overflow block number 1
2024-11-25 19:08:08.766 CET [562076][client backend] [pg_regress/hash][98/29:0] STATEMENT: SELECT * FROM hash_bitmap_info('test_hash_a_idx', 1);
2024-11-25 19:08:08.766 CET [562076][client backend] [pg_regress/hash][98/30:0] ERROR: invalid overflow block number 2
2024-11-25 19:08:08.766 CET [562076][client backend] [pg_regress/hash][98/30:0] STATEMENT: SELECT * FROM hash_bitmap_info('test_hash_a_idx', 2);
2024-11-25 19:08:08.767 CET [562076][client backend] [pg_regress/hash][98/31:0] ERROR: invalid overflow block number 3
2024-11-25 19:08:08.767 CET [562076][client backend] [pg_regress/hash][98/31:0] STATEMENT: SELECT * FROM hash_bitmap_info('test_hash_a_idx', 3);
2024-11-25 19:08:08.767 CET [562076][client backend] [pg_regress/hash][98/32:0] ERROR: invalid overflow block number 4
2024-11-25 19:08:08.767 CET [562076][client backend] [pg_regress/hash][98/32:0] STATEMENT: SELECT * FROM hash_bitmap_info('test_hash_a_idx', 4);
2024-11-25 19:08:08.767 CET [562082][client backend] [[unknown]][99/23:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.767 CET [562082][client backend] [[unknown]][99/23:0] LOG: connection authorized: user=nkey database=regression_pgcrypto application_name=pg_regress/pgp-decrypt
2024-11-25 19:08:08.767 CET [562076][client backend] [pg_regress/hash][98/33:0] ERROR: invalid overflow block number 5
2024-11-25 19:08:08.767 CET [562076][client backend] [pg_regress/hash][98/33:0] STATEMENT: SELECT * FROM hash_bitmap_info('test_hash_a_idx', 5);
2024-11-25 19:08:08.767 CET [562043][client backend] [pg_regress/insert][85/172:0] ERROR: no partition of relation "range_parted" found for row
2024-11-25 19:08:08.767 CET [562043][client backend] [pg_regress/insert][85/172:0] DETAIL: Partition key of the failing row contains (a, (b + 0)) = (a, 0).
2024-11-25 19:08:08.767 CET [562043][client backend] [pg_regress/insert][85/172:0] STATEMENT: insert into range_parted values ('a', 0);
2024-11-25 19:08:08.767 CET [562076][client backend] [pg_regress/hash][98/34:0] ERROR: block number 6 is out of range for relation "test_hash_a_idx"
2024-11-25 19:08:08.767 CET [562076][client backend] [pg_regress/hash][98/34:0] STATEMENT: SELECT * FROM hash_bitmap_info('test_hash_a_idx', 6);
2024-11-25 19:08:08.768 CET [562039][client backend] [pg_regress/copy][:0] LOG: disconnection: session time: 0:00:00.173 user=nkey database=regression host=[local]
2024-11-25 19:08:08.768 CET [562043][client backend] [pg_regress/insert][85/175:0] ERROR: no partition of relation "range_parted" found for row
2024-11-25 19:08:08.768 CET [562043][client backend] [pg_regress/insert][85/175:0] DETAIL: Partition key of the failing row contains (a, (b + 0)) = (a, 20).
2024-11-25 19:08:08.768 CET [562043][client backend] [pg_regress/insert][85/175:0] STATEMENT: insert into range_parted values ('a', 20);
2024-11-25 19:08:08.768 CET [562076][client backend] [pg_regress/hash][98/35:0] ERROR: "test_hash_part_idx" is not a hash index
2024-11-25 19:08:08.768 CET [562076][client backend] [pg_regress/hash][98/35:0] STATEMENT: SELECT * FROM hash_bitmap_info('test_hash_part_idx', 1);
2024-11-25 19:08:08.769 CET [562076][client backend] [pg_regress/hash][98/37:0] ERROR: page is not a hash meta page
2024-11-25 19:08:08.769 CET [562076][client backend] [pg_regress/hash][98/37:0] STATEMENT: SELECT magic, version, ntuples, bsize, bmsize, bmshift, maxbucket, highmask,
lowmask, ovflpoint, firstfree, nmaps, procid, spares, mapp FROM
hash_metapage_info(get_raw_page('test_hash_a_idx', 1));
2024-11-25 19:08:08.769 CET [562076][client backend] [pg_regress/hash][98/38:0] ERROR: page is not a hash meta page
2024-11-25 19:08:08.769 CET [562076][client backend] [pg_regress/hash][98/38:0] STATEMENT: SELECT magic, version, ntuples, bsize, bmsize, bmshift, maxbucket, highmask,
lowmask, ovflpoint, firstfree, nmaps, procid, spares, mapp FROM
hash_metapage_info(get_raw_page('test_hash_a_idx', 2));
2024-11-25 19:08:08.770 CET [562082][client backend] [pg_regress/pgp-decrypt][99/24:0] ERROR: Wrong key or corrupt data
2024-11-25 19:08:08.770 CET [562082][client backend] [pg_regress/pgp-decrypt][99/24:0] STATEMENT: select pgp_sym_decrypt(dearmor('
-----BEGIN PGP MESSAGE-----
Comment: dat1.blowfish.sha1.mdc.s2k3.z0
jA0EBAMCfFNwxnvodX9g0jwB4n4s26/g5VmKzVab1bX1SmwY7gvgvlWdF3jKisvS
yA6Ce1QTMK3KdL2MPfamsTUSAML8huCJMwYQFfE=
=JcP+
-----END PGP MESSAGE-----
'), 'foobar');
2024-11-25 19:08:08.770 CET [562076][client backend] [pg_regress/hash][98/39:0] ERROR: page is not a hash meta page
2024-11-25 19:08:08.770 CET [562076][client backend] [pg_regress/hash][98/39:0] STATEMENT: SELECT magic, version, ntuples, bsize, bmsize, bmshift, maxbucket, highmask,
lowmask, ovflpoint, firstfree, nmaps, procid, spares, mapp FROM
hash_metapage_info(get_raw_page('test_hash_a_idx', 3));
2024-11-25 19:08:08.770 CET [562043][client backend] [pg_regress/insert][85/178:0] ERROR: no partition of relation "range_parted" found for row
2024-11-25 19:08:08.770 CET [562043][client backend] [pg_regress/insert][85/178:0] DETAIL: Partition key of the failing row contains (a, (b + 0)) = (a, null).
2024-11-25 19:08:08.770 CET [562043][client backend] [pg_regress/insert][85/178:0] STATEMENT: insert into range_parted values ('a');
2024-11-25 19:08:08.770 CET [562076][client backend] [pg_regress/hash][98/40:0] ERROR: page is not a hash meta page
2024-11-25 19:08:08.770 CET [562076][client backend] [pg_regress/hash][98/40:0] STATEMENT: SELECT magic, version, ntuples, bsize, bmsize, bmshift, maxbucket, highmask,
lowmask, ovflpoint, firstfree, nmaps, procid, spares, mapp FROM
hash_metapage_info(get_raw_page('test_hash_a_idx', 4));
2024-11-25 19:08:08.770 CET [562076][client backend] [pg_regress/hash][98/41:0] ERROR: page is not a hash meta page
2024-11-25 19:08:08.770 CET [562076][client backend] [pg_regress/hash][98/41:0] STATEMENT: SELECT magic, version, ntuples, bsize, bmsize, bmshift, maxbucket, highmask,
lowmask, ovflpoint, firstfree, nmaps, procid, spares, mapp FROM
hash_metapage_info(get_raw_page('test_hash_a_idx', 5));
2024-11-25 19:08:08.770 CET [562076][client backend] [pg_regress/hash][98/42:0] ERROR: page is not a hash bucket or overflow page
2024-11-25 19:08:08.770 CET [562076][client backend] [pg_regress/hash][98/42:0] STATEMENT: SELECT live_items, dead_items, page_size, hasho_prevblkno, hasho_nextblkno,
hasho_bucket, hasho_flag, hasho_page_id FROM
hash_page_stats(get_raw_page('test_hash_a_idx', 0));
2024-11-25 19:08:08.771 CET [561776][client backend] [pg_regress/hstore][33/313:0] ERROR: hstore allows only one subscript
2024-11-25 19:08:08.771 CET [561776][client backend] [pg_regress/hstore][33/313:0] STATEMENT: select f2['d']['e'] from test_json_agg;
2024-11-25 19:08:08.771 CET [561776][client backend] [pg_regress/hstore][33/314:0] ERROR: hstore allows only one subscript
2024-11-25 19:08:08.771 CET [561776][client backend] [pg_regress/hstore][33/314:0] STATEMENT: select f2['d':'e'] from test_json_agg;
2024-11-25 19:08:08.771 CET [562076][client backend] [pg_regress/hash][98/47:0] ERROR: page is not a hash bucket or overflow page
2024-11-25 19:08:08.771 CET [562076][client backend] [pg_regress/hash][98/47:0] STATEMENT: SELECT live_items, dead_items, page_size, hasho_prevblkno, hasho_nextblkno,
hasho_bucket, hasho_flag, hasho_page_id FROM
hash_page_stats(get_raw_page('test_hash_a_idx', 5));
2024-11-25 19:08:08.772 CET [562076][client backend] [pg_regress/hash][98/48:0] ERROR: page is not a hash bucket or overflow page
2024-11-25 19:08:08.772 CET [562076][client backend] [pg_regress/hash][98/48:0] STATEMENT: SELECT * FROM hash_page_items(get_raw_page('test_hash_a_idx', 0));
2024-11-25 19:08:08.772 CET [562076][client backend] [pg_regress/hash][98/53:0] ERROR: page is not a hash bucket or overflow page
2024-11-25 19:08:08.772 CET [562076][client backend] [pg_regress/hash][98/53:0] STATEMENT: SELECT * FROM hash_page_items(get_raw_page('test_hash_a_idx', 5));
2024-11-25 19:08:08.773 CET [561776][client backend] [pg_regress/hstore][:0] LOG: disconnection: session time: 0:00:01.172 user=nkey database=regression_hstore host=[local]
2024-11-25 19:08:08.773 CET [562076][client backend] [pg_regress/hash][98/55:0] ERROR: "test_hash_a_btree" is not a hash index
2024-11-25 19:08:08.773 CET [562076][client backend] [pg_regress/hash][98/55:0] STATEMENT: SELECT hash_bitmap_info('test_hash_a_btree', 0);
2024-11-25 19:08:08.774 CET [562076][client backend] [pg_regress/hash][98/56:0] ERROR: invalid page size
2024-11-25 19:08:08.774 CET [562076][client backend] [pg_regress/hash][98/56:0] DETAIL: Expected 8192 bytes, got 3.
2024-11-25 19:08:08.774 CET [562076][client backend] [pg_regress/hash][98/56:0] STATEMENT: SELECT hash_metapage_info('aaa'::bytea);
2024-11-25 19:08:08.774 CET [562076][client backend] [pg_regress/hash][98/57:0] ERROR: invalid page size
2024-11-25 19:08:08.774 CET [562076][client backend] [pg_regress/hash][98/57:0] DETAIL: Expected 8192 bytes, got 3.
2024-11-25 19:08:08.774 CET [562076][client backend] [pg_regress/hash][98/57:0] STATEMENT: SELECT hash_page_items('bbb'::bytea);
2024-11-25 19:08:08.774 CET [562076][client backend] [pg_regress/hash][98/58:0] ERROR: invalid page size
2024-11-25 19:08:08.774 CET [562076][client backend] [pg_regress/hash][98/58:0] DETAIL: Expected 8192 bytes, got 3.
2024-11-25 19:08:08.774 CET [562076][client backend] [pg_regress/hash][98/58:0] STATEMENT: SELECT hash_page_stats('ccc'::bytea);
2024-11-25 19:08:08.774 CET [562043][client backend] [pg_regress/insert][85/180:0] ERROR: new row for relation "part_def" violates partition constraint
2024-11-25 19:08:08.774 CET [562043][client backend] [pg_regress/insert][85/180:0] DETAIL: Failing row contains (b, 10).
2024-11-25 19:08:08.774 CET [562043][client backend] [pg_regress/insert][85/180:0] STATEMENT: insert into part_def values ('b', 10);
2024-11-25 19:08:08.774 CET [562076][client backend] [pg_regress/hash][98/59:0] ERROR: invalid page size
2024-11-25 19:08:08.774 CET [562076][client backend] [pg_regress/hash][98/59:0] DETAIL: Expected 8192 bytes, got 3.
2024-11-25 19:08:08.774 CET [562076][client backend] [pg_regress/hash][98/59:0] STATEMENT: SELECT hash_page_type('ddd'::bytea);
2024-11-25 19:08:08.774 CET [562076][client backend] [pg_regress/hash][98/60:0] ERROR: input page is not a valid hash page
2024-11-25 19:08:08.774 CET [562076][client backend] [pg_regress/hash][98/60:0] DETAIL: Expected special size 16, got 0.
2024-11-25 19:08:08.774 CET [562076][client backend] [pg_regress/hash][98/60:0] STATEMENT: SELECT hash_metapage_info(get_raw_page('test_hash', 0));
2024-11-25 19:08:08.774 CET [562076][client backend] [pg_regress/hash][98/61:0] ERROR: input page is not a valid hash page
2024-11-25 19:08:08.774 CET [562076][client backend] [pg_regress/hash][98/61:0] DETAIL: Expected special size 16, got 0.
2024-11-25 19:08:08.774 CET [562076][client backend] [pg_regress/hash][98/61:0] STATEMENT: SELECT hash_page_items(get_raw_page('test_hash', 0));
2024-11-25 19:08:08.774 CET [562076][client backend] [pg_regress/hash][98/62:0] ERROR: input page is not a valid hash page
2024-11-25 19:08:08.774 CET [562076][client backend] [pg_regress/hash][98/62:0] DETAIL: Expected special size 16, got 0.
2024-11-25 19:08:08.774 CET [562076][client backend] [pg_regress/hash][98/62:0] STATEMENT: SELECT hash_page_stats(get_raw_page('test_hash', 0));
2024-11-25 19:08:08.775 CET [562076][client backend] [pg_regress/hash][98/63:0] ERROR: input page is not a valid hash page
2024-11-25 19:08:08.775 CET [562076][client backend] [pg_regress/hash][98/63:0] DETAIL: Expected special size 16, got 0.
2024-11-25 19:08:08.775 CET [562076][client backend] [pg_regress/hash][98/63:0] STATEMENT: SELECT hash_page_type(get_raw_page('test_hash', 0));
2024-11-25 19:08:08.775 CET [562076][client backend] [pg_regress/hash][98/65:0] ERROR: page is not a hash meta page
2024-11-25 19:08:08.775 CET [562076][client backend] [pg_regress/hash][98/65:0] STATEMENT: SELECT hash_metapage_info(decode(repeat('00', 8192), 'hex'));
2024-11-25 19:08:08.775 CET [562076][client backend] [pg_regress/hash][98/66:0] ERROR: page is not a hash bucket or overflow page
2024-11-25 19:08:08.775 CET [562076][client backend] [pg_regress/hash][98/66:0] STATEMENT: SELECT hash_page_items(decode(repeat('00', 8192), 'hex'));
2024-11-25 19:08:08.775 CET [562076][client backend] [pg_regress/hash][98/67:0] ERROR: page is not a hash bucket or overflow page
2024-11-25 19:08:08.775 CET [562076][client backend] [pg_regress/hash][98/67:0] STATEMENT: SELECT hash_page_stats(decode(repeat('00', 8192), 'hex'));
2024-11-25 19:08:08.777 CET [562043][client backend] [pg_regress/insert][85/189:0] ERROR: no partition of relation "part_ee_ff" found for row
2024-11-25 19:08:08.777 CET [562043][client backend] [pg_regress/insert][85/189:0] DETAIL: Partition key of the failing row contains (b) = (0).
2024-11-25 19:08:08.777 CET [562043][client backend] [pg_regress/insert][85/189:0] STATEMENT: insert into list_parted values ('EE', 0);
2024-11-25 19:08:08.777 CET [562043][client backend] [pg_regress/insert][85/190:0] ERROR: no partition of relation "part_ee_ff" found for row
2024-11-25 19:08:08.777 CET [562043][client backend] [pg_regress/insert][85/190:0] DETAIL: Partition key of the failing row contains (b) = (0).
2024-11-25 19:08:08.777 CET [562043][client backend] [pg_regress/insert][85/190:0] STATEMENT: insert into part_ee_ff values ('EE', 0);
2024-11-25 19:08:08.777 CET [562086][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.778 CET [562086][client backend] [[unknown]][96/51:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.778 CET [562086][client backend] [[unknown]][96/51:0] LOG: connection authorized: user=nkey database=regression_hstore application_name=pg_regress/hstore_utf8
2024-11-25 19:08:08.778 CET [562076][client backend] [pg_regress/hash][:0] LOG: disconnection: session time: 0:00:00.023 user=nkey database=regression_pageinspect host=[local]
2024-11-25 19:08:08.780 CET [562082][client backend] [pg_regress/pgp-decrypt][99/50:0] ERROR: Wrong key or corrupt data
2024-11-25 19:08:08.780 CET [562082][client backend] [pg_regress/pgp-decrypt][99/50:0] STATEMENT: select pgp_sym_decrypt(dearmor('
-----BEGIN PGP MESSAGE-----
ww0EBwMCxf8PTrQBmJdl0jcB6y2joE7GSLKRv7trbNsF5Z8ou5NISLUg31llVH/S0B2wl4bvzZjV
VsxxqLSPzNLAeIspJk5G
=mSd/
-----END PGP MESSAGE-----
'), 'wrong-key', 'debug=1');
2024-11-25 19:08:08.781 CET [562082][client backend] [pg_regress/pgp-decrypt][99/51:0] ERROR: Not text data
2024-11-25 19:08:08.781 CET [562082][client backend] [pg_regress/pgp-decrypt][99/51:0] STATEMENT: select pgp_sym_decrypt(pgp_sym_encrypt_bytea('P', 'key'), 'key', 'debug=1');
2024-11-25 19:08:08.781 CET [562082][client backend] [pg_regress/pgp-decrypt][99/52:0] ERROR: Wrong key or corrupt data
2024-11-25 19:08:08.781 CET [562082][client backend] [pg_regress/pgp-decrypt][99/52:0] STATEMENT: select pgp_sym_decrypt(dearmor('
-----BEGIN PGP MESSAGE-----
ww0EBwMC9rK/dMkF5Zlt0jcBlzAQ1mQY2qYbKYbw8h3EZ5Jk0K2IiY92R82TRhWzBIF/8cmXDPtP
GXsd65oYJZp3Khz0qfyn
=Nmpq
-----END PGP MESSAGE-----
'), 'wrong-key', 'debug=1');
2024-11-25 19:08:08.781 CET [562082][client backend] [pg_regress/pgp-decrypt][99/53:0] ERROR: Unsupported compression algorithm
2024-11-25 19:08:08.781 CET [562082][client backend] [pg_regress/pgp-decrypt][99/53:0] STATEMENT: select pgp_sym_decrypt(dearmor('
-----BEGIN PGP MESSAGE-----
jA0EBwMCRhFrAKNcLVJg0mMBLJG1cCASNk/x/3dt1zJ+2eo7jHfjgg3N6wpB3XIe
QCwkWJwlBG5pzbO5gu7xuPQN+TbPJ7aQ2sLx3bAHhtYb0i3vV9RO10Gw++yUyd4R
UCAAw2JRIISttRHMfDpDuZJpvYo=
=AZ9M
-----END PGP MESSAGE-----
'), 'key', 'debug=1');
2024-11-25 19:08:08.782 CET [562082][client backend] [pg_regress/pgp-decrypt][:0] LOG: disconnection: session time: 0:00:00.015 user=nkey database=regression_pgcrypto host=[local]
2024-11-25 19:08:08.782 CET [562086][client backend] [pg_regress/hstore_utf8][:0] LOG: disconnection: session time: 0:00:00.004 user=nkey database=regression_hstore host=[local]
2024-11-25 19:08:08.785 CET [562097][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.786 CET [562097][client backend] [[unknown]][18/121:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.786 CET [562097][client backend] [[unknown]][18/121:0] LOG: connection authorized: user=nkey database=regression_pageinspect application_name=pg_regress/checksum
2024-11-25 19:08:08.786 CET [561023][checkpointer] LOG: checkpoint complete: wrote 1555 buffers (9.5%), wrote 4 SLRU buffers; 0 WAL file(s) added, 0 removed, 1 recycled; write=0.021 s, sync=0.001 s, total=0.026 s; sync files=0, longest=0.000 s, average=0.000 s; distance=16153 kB, estimate=16153 kB; lsn=4/4A14AC68, redo lsn=4/49FA1768
2024-11-25 19:08:08.787 CET [562098][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.787 CET [562098][client backend] [[unknown]][4/93:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.787 CET [562098][client backend] [[unknown]][4/93:0] LOG: connection authorized: user=nkey database=regression_pgcrypto application_name=pg_regress/pgp-encrypt
2024-11-25 19:08:08.790 CET [562097][client backend] [pg_regress/checksum][:0] LOG: disconnection: session time: 0:00:00.005 user=nkey database=regression_pageinspect host=[local]
2024-11-25 19:08:08.794 CET [562098][client backend] [pg_regress/pgp-encrypt][4/97:0] ERROR: Not text data
2024-11-25 19:08:08.794 CET [562098][client backend] [pg_regress/pgp-encrypt][4/97:0] STATEMENT: select pgp_sym_decrypt(pgp_sym_encrypt_bytea('Binary', 'baz'), 'baz');
2024-11-25 19:08:08.796 CET [562103][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.797 CET [562103][client backend] [[unknown]][77/183:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.797 CET [562103][client backend] [[unknown]][77/183:0] LOG: connection authorized: user=nkey database=regression_pageinspect application_name=pg_regress/oldextversions
2024-11-25 19:08:08.799 CET [562078][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.042 user=nkey database=postgres host=[local]
2024-11-25 19:08:08.802 CET [562106][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.802 CET [562106][client backend] [[unknown]][26/129:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.802 CET [562106][client backend] [[unknown]][26/129:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:08.812 CET [562043][client backend] [pg_regress/insert][85/215:0] ERROR: new row for relation "hpart0" violates partition constraint
2024-11-25 19:08:08.812 CET [562043][client backend] [pg_regress/insert][85/215:0] DETAIL: Failing row contains (11).
2024-11-25 19:08:08.812 CET [562043][client backend] [pg_regress/insert][85/215:0] STATEMENT: insert into hpart0 values(11);
2024-11-25 19:08:08.824 CET [562110][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.824 CET [562110][client backend] [[unknown]][11/58:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.824 CET [562110][client backend] [[unknown]][11/58:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:08.825 CET [562044][client backend] [pg_regress/insert_conflict][16/837:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:08.825 CET [562044][client backend] [pg_regress/insert_conflict][16/837:0] STATEMENT: insert into parted_conflict_1 values (40, 'cuarenta')
on conflict (a) do update set b = excluded.b;
2024-11-25 19:08:08.825 CET [562103][client backend] [pg_regress/oldextversions][:0] LOG: disconnection: session time: 0:00:00.029 user=nkey database=regression_pageinspect host=[local]
2024-11-25 19:08:08.827 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:08.831 CET [562106][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.029 user=nkey database=postgres host=[local]
2024-11-25 19:08:08.835 CET [562114][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.835 CET [562114][client backend] [[unknown]][3/24:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.835 CET [562114][client backend] [[unknown]][3/24:0] LOG: connection authorized: user=nkey database=regression_pgstattuple application_name=pg_regress/pgstattuple
2024-11-25 19:08:08.843 CET [562044][client backend] [pg_regress/insert_conflict][:0] LOG: disconnection: session time: 0:00:00.246 user=nkey database=regression host=[local]
2024-11-25 19:08:08.853 CET [561023][checkpointer] LOG: checkpoint complete: wrote 1281 buffers (7.8%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 1 recycled; write=0.024 s, sync=0.001 s, total=0.026 s; sync files=0, longest=0.000 s, average=0.000 s; distance=7179 kB, estimate=15256 kB; lsn=4/4A802978, redo lsn=4/4A6A46D0
2024-11-25 19:08:08.859 CET [562043][client backend] [pg_regress/insert][85/261:0] ERROR: no partition of relation "mlparted1" found for row
2024-11-25 19:08:08.859 CET [562043][client backend] [pg_regress/insert][85/261:0] DETAIL: Partition key of the failing row contains ((b + 0)) = (5).
2024-11-25 19:08:08.859 CET [562043][client backend] [pg_regress/insert][85/261:0] STATEMENT: insert into mlparted (a, b) values (1, 5);
2024-11-25 19:08:08.860 CET [562114][client backend] [pg_regress/pgstattuple][3/48:0] ERROR: relation "test_pkey" is not a GIN index
2024-11-25 19:08:08.860 CET [562114][client backend] [pg_regress/pgstattuple][3/48:0] STATEMENT: select pgstatginindex('test_pkey');
2024-11-25 19:08:08.860 CET [562114][client backend] [pg_regress/pgstattuple][3/49:0] ERROR: relation "test_pkey" is not a hash index
2024-11-25 19:08:08.860 CET [562114][client backend] [pg_regress/pgstattuple][3/49:0] STATEMENT: select pgstathashindex('test_pkey');
2024-11-25 19:08:08.860 CET [562114][client backend] [pg_regress/pgstattuple][3/50:0] ERROR: relation "test_ginidx" is not a btree index
2024-11-25 19:08:08.860 CET [562114][client backend] [pg_regress/pgstattuple][3/50:0] STATEMENT: select pgstatindex('test_ginidx');
2024-11-25 19:08:08.860 CET [562114][client backend] [pg_regress/pgstattuple][3/51:0] ERROR: relation "test_ginidx" is not a hash index
2024-11-25 19:08:08.860 CET [562114][client backend] [pg_regress/pgstattuple][3/51:0] STATEMENT: select pgstathashindex('test_ginidx');
2024-11-25 19:08:08.860 CET [562114][client backend] [pg_regress/pgstattuple][3/52:0] ERROR: relation "test_hashidx" is not a btree index
2024-11-25 19:08:08.860 CET [562114][client backend] [pg_regress/pgstattuple][3/52:0] STATEMENT: select pgstatindex('test_hashidx');
2024-11-25 19:08:08.860 CET [562114][client backend] [pg_regress/pgstattuple][3/53:0] ERROR: relation "test_hashidx" is not a GIN index
2024-11-25 19:08:08.860 CET [562114][client backend] [pg_regress/pgstattuple][3/53:0] STATEMENT: select pgstatginindex('test_hashidx');
2024-11-25 19:08:08.862 CET [562114][client backend] [pg_regress/pgstattuple][3/57:0] ERROR: cannot get tuple-level statistics for relation "test_partitioned"
2024-11-25 19:08:08.862 CET [562114][client backend] [pg_regress/pgstattuple][3/57:0] DETAIL: This operation is not supported for partitioned tables.
2024-11-25 19:08:08.862 CET [562114][client backend] [pg_regress/pgstattuple][3/57:0] STATEMENT: select pgstattuple('test_partitioned');
2024-11-25 19:08:08.862 CET [562043][client backend] [pg_regress/insert][85/266:0] ERROR: new row for relation "mlparted11" violates check constraint "check_b"
2024-11-25 19:08:08.862 CET [562043][client backend] [pg_regress/insert][85/266:0] DETAIL: Failing row contains (1, 4).
2024-11-25 19:08:08.862 CET [562043][client backend] [pg_regress/insert][85/266:0] STATEMENT: insert into mlparted values (1, 2);
2024-11-25 19:08:08.862 CET [562114][client backend] [pg_regress/pgstattuple][3/58:0] ERROR: cannot get tuple-level statistics for relation "test_partitioned_index"
2024-11-25 19:08:08.862 CET [562114][client backend] [pg_regress/pgstattuple][3/58:0] DETAIL: This operation is not supported for partitioned indexes.
2024-11-25 19:08:08.862 CET [562114][client backend] [pg_regress/pgstattuple][3/58:0] STATEMENT: select pgstattuple('test_partitioned_index');
2024-11-25 19:08:08.862 CET [562114][client backend] [pg_regress/pgstattuple][3/59:0] ERROR: relation "test_partitioned" is of wrong relation kind
2024-11-25 19:08:08.862 CET [562114][client backend] [pg_regress/pgstattuple][3/59:0] DETAIL: This operation is not supported for partitioned tables.
2024-11-25 19:08:08.862 CET [562114][client backend] [pg_regress/pgstattuple][3/59:0] STATEMENT: select pgstattuple_approx('test_partitioned');
2024-11-25 19:08:08.862 CET [562114][client backend] [pg_regress/pgstattuple][3/60:0] ERROR: cannot get page count of relation "test_partitioned"
2024-11-25 19:08:08.862 CET [562114][client backend] [pg_regress/pgstattuple][3/60:0] DETAIL: This operation is not supported for partitioned tables.
2024-11-25 19:08:08.862 CET [562114][client backend] [pg_regress/pgstattuple][3/60:0] STATEMENT: select pg_relpages('test_partitioned');
2024-11-25 19:08:08.862 CET [562114][client backend] [pg_regress/pgstattuple][3/61:0] ERROR: relation "test_partitioned" is not a btree index
2024-11-25 19:08:08.862 CET [562114][client backend] [pg_regress/pgstattuple][3/61:0] STATEMENT: select pgstatindex('test_partitioned');
2024-11-25 19:08:08.862 CET [562114][client backend] [pg_regress/pgstattuple][3/62:0] ERROR: relation "test_partitioned" is not a GIN index
2024-11-25 19:08:08.862 CET [562114][client backend] [pg_regress/pgstattuple][3/62:0] STATEMENT: select pgstatginindex('test_partitioned');
2024-11-25 19:08:08.863 CET [562114][client backend] [pg_regress/pgstattuple][3/63:0] ERROR: relation "test_partitioned" is not a hash index
2024-11-25 19:08:08.863 CET [562114][client backend] [pg_regress/pgstattuple][3/63:0] STATEMENT: select pgstathashindex('test_partitioned');
2024-11-25 19:08:08.863 CET [562043][client backend] [pg_regress/insert][85/269:0] ERROR: new row for relation "mlparted1" violates partition constraint
2024-11-25 19:08:08.863 CET [562043][client backend] [pg_regress/insert][85/269:0] DETAIL: Failing row contains (3, 2).
2024-11-25 19:08:08.863 CET [562043][client backend] [pg_regress/insert][85/269:0] STATEMENT: insert into mlparted1 (a, b) values (2, 3);
2024-11-25 19:08:08.863 CET [562114][client backend] [pg_regress/pgstattuple][3/64:0] ERROR: relation "test_partitioned_hash_index" is not a hash index
2024-11-25 19:08:08.863 CET [562114][client backend] [pg_regress/pgstattuple][3/64:0] STATEMENT: select pgstathashindex('test_partitioned_hash_index');
2024-11-25 19:08:08.864 CET [562114][client backend] [pg_regress/pgstattuple][3/66:0] ERROR: cannot get tuple-level statistics for relation "test_view"
2024-11-25 19:08:08.864 CET [562114][client backend] [pg_regress/pgstattuple][3/66:0] DETAIL: This operation is not supported for views.
2024-11-25 19:08:08.864 CET [562114][client backend] [pg_regress/pgstattuple][3/66:0] STATEMENT: select pgstattuple('test_view');
2024-11-25 19:08:08.864 CET [562114][client backend] [pg_regress/pgstattuple][3/67:0] ERROR: relation "test_view" is of wrong relation kind
2024-11-25 19:08:08.864 CET [562114][client backend] [pg_regress/pgstattuple][3/67:0] DETAIL: This operation is not supported for views.
2024-11-25 19:08:08.864 CET [562114][client backend] [pg_regress/pgstattuple][3/67:0] STATEMENT: select pgstattuple_approx('test_view');
2024-11-25 19:08:08.864 CET [562114][client backend] [pg_regress/pgstattuple][3/68:0] ERROR: cannot get page count of relation "test_view"
2024-11-25 19:08:08.864 CET [562114][client backend] [pg_regress/pgstattuple][3/68:0] DETAIL: This operation is not supported for views.
2024-11-25 19:08:08.864 CET [562114][client backend] [pg_regress/pgstattuple][3/68:0] STATEMENT: select pg_relpages('test_view');
2024-11-25 19:08:08.864 CET [562114][client backend] [pg_regress/pgstattuple][3/69:0] ERROR: relation "test_view" is not a btree index
2024-11-25 19:08:08.864 CET [562114][client backend] [pg_regress/pgstattuple][3/69:0] STATEMENT: select pgstatindex('test_view');
2024-11-25 19:08:08.864 CET [562114][client backend] [pg_regress/pgstattuple][3/70:0] ERROR: relation "test_view" is not a GIN index
2024-11-25 19:08:08.864 CET [562114][client backend] [pg_regress/pgstattuple][3/70:0] STATEMENT: select pgstatginindex('test_view');
2024-11-25 19:08:08.864 CET [562043][client backend] [pg_regress/insert][85/272:0] ERROR: no partition of relation "lparted_nonullpart" found for row
2024-11-25 19:08:08.864 CET [562043][client backend] [pg_regress/insert][85/272:0] DETAIL: Partition key of the failing row contains (b) = (null).
2024-11-25 19:08:08.864 CET [562043][client backend] [pg_regress/insert][85/272:0] STATEMENT: insert into lparted_nonullpart values (1);
2024-11-25 19:08:08.864 CET [562114][client backend] [pg_regress/pgstattuple][3/71:0] ERROR: relation "test_view" is not a hash index
2024-11-25 19:08:08.864 CET [562114][client backend] [pg_regress/pgstattuple][3/71:0] STATEMENT: select pgstathashindex('test_view');
2024-11-25 19:08:08.865 CET [562119][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.866 CET [562114][client backend] [pg_regress/pgstattuple][3/75:0] ERROR: cannot get tuple-level statistics for relation "test_foreign_table"
2024-11-25 19:08:08.866 CET [562114][client backend] [pg_regress/pgstattuple][3/75:0] DETAIL: This operation is not supported for foreign tables.
2024-11-25 19:08:08.866 CET [562114][client backend] [pg_regress/pgstattuple][3/75:0] STATEMENT: select pgstattuple('test_foreign_table');
2024-11-25 19:08:08.866 CET [562114][client backend] [pg_regress/pgstattuple][3/76:0] ERROR: relation "test_foreign_table" is of wrong relation kind
2024-11-25 19:08:08.866 CET [562114][client backend] [pg_regress/pgstattuple][3/76:0] DETAIL: This operation is not supported for foreign tables.
2024-11-25 19:08:08.866 CET [562114][client backend] [pg_regress/pgstattuple][3/76:0] STATEMENT: select pgstattuple_approx('test_foreign_table');
2024-11-25 19:08:08.866 CET [562119][client backend] [[unknown]][94/9:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.866 CET [562119][client backend] [[unknown]][94/9:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:08.866 CET [562114][client backend] [pg_regress/pgstattuple][3/77:0] ERROR: cannot get page count of relation "test_foreign_table"
2024-11-25 19:08:08.866 CET [562114][client backend] [pg_regress/pgstattuple][3/77:0] DETAIL: This operation is not supported for foreign tables.
2024-11-25 19:08:08.866 CET [562114][client backend] [pg_regress/pgstattuple][3/77:0] STATEMENT: select pg_relpages('test_foreign_table');
2024-11-25 19:08:08.866 CET [562114][client backend] [pg_regress/pgstattuple][3/78:0] ERROR: relation "test_foreign_table" is not a btree index
2024-11-25 19:08:08.866 CET [562114][client backend] [pg_regress/pgstattuple][3/78:0] STATEMENT: select pgstatindex('test_foreign_table');
2024-11-25 19:08:08.866 CET [562114][client backend] [pg_regress/pgstattuple][3/79:0] ERROR: relation "test_foreign_table" is not a GIN index
2024-11-25 19:08:08.866 CET [562114][client backend] [pg_regress/pgstattuple][3/79:0] STATEMENT: select pgstatginindex('test_foreign_table');
2024-11-25 19:08:08.866 CET [562114][client backend] [pg_regress/pgstattuple][3/80:0] ERROR: relation "test_foreign_table" is not a hash index
2024-11-25 19:08:08.866 CET [562114][client backend] [pg_regress/pgstattuple][3/80:0] STATEMENT: select pgstathashindex('test_foreign_table');
2024-11-25 19:08:08.868 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:08.870 CET [562114][client backend] [pg_regress/pgstattuple][3/88:0] ERROR: relation "test_partition" is not a btree index
2024-11-25 19:08:08.870 CET [562114][client backend] [pg_regress/pgstattuple][3/88:0] STATEMENT: select pgstatindex('test_partition');
2024-11-25 19:08:08.870 CET [562114][client backend] [pg_regress/pgstattuple][3/89:0] ERROR: relation "test_partition" is not a GIN index
2024-11-25 19:08:08.870 CET [562114][client backend] [pg_regress/pgstattuple][3/89:0] STATEMENT: select pgstatginindex('test_partition');
2024-11-25 19:08:08.871 CET [562114][client backend] [pg_regress/pgstattuple][3/90:0] ERROR: relation "test_partition" is not a hash index
2024-11-25 19:08:08.871 CET [562114][client backend] [pg_regress/pgstattuple][3/90:0] STATEMENT: select pgstathashindex('test_partition');
2024-11-25 19:08:08.874 CET [562114][client backend] [pg_regress/pgstattuple][3/98:0] ERROR: relation "test_sequence" is not a btree index
2024-11-25 19:08:08.874 CET [562114][client backend] [pg_regress/pgstattuple][3/98:0] STATEMENT: select pgstatindex('test_sequence');
2024-11-25 19:08:08.874 CET [562114][client backend] [pg_regress/pgstattuple][3/99:0] ERROR: relation "test_sequence" is not a GIN index
2024-11-25 19:08:08.874 CET [562114][client backend] [pg_regress/pgstattuple][3/99:0] STATEMENT: select pgstatginindex('test_sequence');
2024-11-25 19:08:08.874 CET [562114][client backend] [pg_regress/pgstattuple][3/100:0] ERROR: relation "test_sequence" is not a hash index
2024-11-25 19:08:08.874 CET [562114][client backend] [pg_regress/pgstattuple][3/100:0] STATEMENT: select pgstathashindex('test_sequence');
2024-11-25 19:08:08.874 CET [562114][client backend] [pg_regress/pgstattuple][3/101:0] ERROR: relation "test_sequence" is of wrong relation kind
2024-11-25 19:08:08.874 CET [562114][client backend] [pg_regress/pgstattuple][3/101:0] DETAIL: This operation is not supported for sequences.
2024-11-25 19:08:08.874 CET [562114][client backend] [pg_regress/pgstattuple][3/101:0] STATEMENT: select pgstattuple_approx('test_sequence');
2024-11-25 19:08:08.876 CET [561023][checkpointer] LOG: checkpoint complete: wrote 370 buffers (2.3%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.007 s, sync=0.001 s, total=0.008 s; sync files=0, longest=0.000 s, average=0.000 s; distance=2149 kB, estimate=13945 kB; lsn=4/4A97ED88, redo lsn=4/4A8BDD90
2024-11-25 19:08:08.878 CET [562114][client backend] [pg_regress/pgstattuple][:0] LOG: disconnection: session time: 0:00:00.043 user=nkey database=regression_pgstattuple host=[local]
2024-11-25 19:08:08.882 CET [562043][client backend] [pg_regress/insert][85/290:0] ERROR: new row for relation "mlparted5a" violates check constraint "check_b"
2024-11-25 19:08:08.882 CET [562043][client backend] [pg_regress/insert][85/290:0] DETAIL: Failing row contains (1, 45, a).
2024-11-25 19:08:08.882 CET [562043][client backend] [pg_regress/insert][85/290:0] STATEMENT: insert into mlparted values (1, 45, 'a');
2024-11-25 19:08:08.883 CET [562043][client backend] [pg_regress/insert][85/293:0] ERROR: new row for relation "mlparted5a" violates partition constraint
2024-11-25 19:08:08.883 CET [562043][client backend] [pg_regress/insert][85/293:0] DETAIL: Failing row contains (b, 1, 40).
2024-11-25 19:08:08.883 CET [562043][client backend] [pg_regress/insert][85/293:0] STATEMENT: insert into mlparted5 (a, b, c) values (1, 40, 'a');
2024-11-25 19:08:08.892 CET [562043][client backend] [pg_regress/insert][85/302:0] ERROR: no partition of relation "mlparted_def" found for row
2024-11-25 19:08:08.892 CET [562043][client backend] [pg_regress/insert][85/302:0] DETAIL: Partition key of the failing row contains (a) = (70).
2024-11-25 19:08:08.892 CET [562043][client backend] [pg_regress/insert][85/302:0] STATEMENT: insert into mlparted values (70, 100);
2024-11-25 19:08:08.892 CET [562043][client backend] [pg_regress/insert][85/303:0] ERROR: new row for relation "mlparted_def1" violates partition constraint
2024-11-25 19:08:08.892 CET [562043][client backend] [pg_regress/insert][85/303:0] DETAIL: Failing row contains (52, 50, null).
2024-11-25 19:08:08.892 CET [562043][client backend] [pg_regress/insert][85/303:0] STATEMENT: insert into mlparted_def1 values (52, 50);
2024-11-25 19:08:08.892 CET [562043][client backend] [pg_regress/insert][85/304:0] ERROR: new row for relation "mlparted_def2" violates partition constraint
2024-11-25 19:08:08.892 CET [562043][client backend] [pg_regress/insert][85/304:0] DETAIL: Failing row contains (34, 50, null).
2024-11-25 19:08:08.892 CET [562043][client backend] [pg_regress/insert][85/304:0] STATEMENT: insert into mlparted_def2 values (34, 50);
2024-11-25 19:08:08.916 CET [562126][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:08.917 CET [562126][client backend] [[unknown]][6/98:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:08.917 CET [562126][client backend] [[unknown]][6/98:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:08.918 CET [562043][client backend] [pg_regress/insert][85/320:0] ERROR: no partition of relation "mlparted5_cd" found for row
2024-11-25 19:08:08.918 CET [562043][client backend] [pg_regress/insert][85/320:0] DETAIL: Partition key of the failing row contains (c) = (c).
2024-11-25 19:08:08.918 CET [562043][client backend] [pg_regress/insert][85/320:0] STATEMENT: insert into mlparted values (1, 45, 'c', 1);
2024-11-25 19:08:08.918 CET [562043][client backend] [pg_regress/insert][85/321:0] ERROR: no partition of relation "mlparted5" found for row
2024-11-25 19:08:08.918 CET [562043][client backend] [pg_regress/insert][85/321:0] DETAIL: Partition key of the failing row contains (c) = (f).
2024-11-25 19:08:08.918 CET [562043][client backend] [pg_regress/insert][85/321:0] STATEMENT: insert into mlparted values (1, 45, 'f', 1);
2024-11-25 19:08:08.919 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:08.924 CET [561023][checkpointer] LOG: checkpoint complete: wrote 354 buffers (2.2%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.004 s, sync=0.001 s, total=0.005 s; sync files=0, longest=0.000 s, average=0.000 s; distance=2956 kB, estimate=12846 kB; lsn=4/4AC14928, redo lsn=4/4ABA1080
2024-11-25 19:08:08.937 CET [562043][client backend] [pg_regress/insert][85/330:0] ERROR: no partition of relation "mlparted5_cd" found for row
2024-11-25 19:08:08.937 CET [562043][client backend] [pg_regress/insert][85/330:0] DETAIL: Partition key of the failing row contains (c) = (c).
2024-11-25 19:08:08.937 CET [562043][client backend] [pg_regress/insert][85/330:0] STATEMENT: insert into mlparted values (1, 45, 'c', 1);
2024-11-25 19:08:08.937 CET [562043][client backend] [pg_regress/insert][85/331:0] ERROR: no partition of relation "mlparted5" found for row
2024-11-25 19:08:08.937 CET [562043][client backend] [pg_regress/insert][85/331:0] DETAIL: Partition key of the failing row contains (c) = (f).
2024-11-25 19:08:08.937 CET [562043][client backend] [pg_regress/insert][85/331:0] STATEMENT: insert into mlparted values (1, 45, 'f', 1);
2024-11-25 19:08:08.941 CET [561774][client backend] [pg_regress/_int][72/417:529279] ERROR: value 0 out of bounds for option "siglen"
2024-11-25 19:08:08.941 CET [561774][client backend] [pg_regress/_int][72/417:529279] DETAIL: Valid values are between "1" and "2024".
2024-11-25 19:08:08.941 CET [561774][client backend] [pg_regress/_int][72/417:529279] STATEMENT: CREATE INDEX text_idx on test__int using gist (a gist__intbig_ops(siglen = 0));
2024-11-25 19:08:08.942 CET [561774][client backend] [pg_regress/_int][72/418:529280] ERROR: value 2025 out of bounds for option "siglen"
2024-11-25 19:08:08.942 CET [561774][client backend] [pg_regress/_int][72/418:529280] DETAIL: Valid values are between "1" and "2024".
2024-11-25 19:08:08.942 CET [561774][client backend] [pg_regress/_int][72/418:529280] STATEMENT: CREATE INDEX text_idx on test__int using gist (a gist__intbig_ops(siglen = 2025));
2024-11-25 19:08:08.944 CET [562043][client backend] [pg_regress/insert][85/341:0] ERROR: no partition of relation "key_desc_1" found for row
2024-11-25 19:08:08.944 CET [562043][client backend] [pg_regress/insert][85/341:0] STATEMENT: insert into key_desc values (1, 1);
2024-11-25 19:08:08.945 CET [562043][client backend] [pg_regress/insert][85/345:0] ERROR: no partition of relation "key_desc_1" found for row
2024-11-25 19:08:08.945 CET [562043][client backend] [pg_regress/insert][85/345:0] DETAIL: Partition key of the failing row contains (b) = (1).
2024-11-25 19:08:08.945 CET [562043][client backend] [pg_regress/insert][85/345:0] STATEMENT: insert into key_desc values (1, 1);
2024-11-25 19:08:08.945 CET [562043][client backend] [pg_regress/insert][85/346:0] ERROR: no partition of relation "key_desc" found for row
2024-11-25 19:08:08.945 CET [562043][client backend] [pg_regress/insert][85/346:0] STATEMENT: insert into key_desc values (2, 1);
2024-11-25 19:08:08.948 CET [562043][client backend] [pg_regress/insert][85/353:529297] ERROR: every bound following MINVALUE must also be MINVALUE at character 75
2024-11-25 19:08:08.948 CET [562043][client backend] [pg_regress/insert][85/353:529297] STATEMENT: create table mcrparted0 partition of mcrparted for values from (minvalue, 0, 0) to (1, maxvalue, maxvalue);
2024-11-25 19:08:08.948 CET [562043][client backend] [pg_regress/insert][85/354:529298] ERROR: every bound following MAXVALUE must also be MAXVALUE at character 100
2024-11-25 19:08:08.948 CET [562043][client backend] [pg_regress/insert][85/354:529298] STATEMENT: create table mcrparted2 partition of mcrparted for values from (10, 6, minvalue) to (10, maxvalue, minvalue);
2024-11-25 19:08:08.949 CET [562043][client backend] [pg_regress/insert][85/355:529299] ERROR: every bound following MINVALUE must also be MINVALUE at character 79
2024-11-25 19:08:08.949 CET [562043][client backend] [pg_regress/insert][85/355:529299] STATEMENT: create table mcrparted4 partition of mcrparted for values from (21, minvalue, 0) to (30, 20, minvalue);
2024-11-25 19:08:08.958 CET [562043][client backend] [pg_regress/insert][85/362:0] ERROR: no partition of relation "mcrparted" found for row
2024-11-25 19:08:08.958 CET [562043][client backend] [pg_regress/insert][85/362:0] DETAIL: Partition key of the failing row contains (a, abs(b), c) = (null, null, null).
2024-11-25 19:08:08.958 CET [562043][client backend] [pg_regress/insert][85/362:0] STATEMENT: insert into mcrparted values (null, null, null);
2024-11-25 19:08:08.962 CET [562043][client backend] [pg_regress/insert][85/375:0] ERROR: no partition of relation "mcrparted" found for row
2024-11-25 19:08:08.962 CET [562043][client backend] [pg_regress/insert][85/375:0] DETAIL: Partition key of the failing row contains (a, abs(b), c) = (11, 1, -1).
2024-11-25 19:08:08.962 CET [562043][client backend] [pg_regress/insert][85/375:0] STATEMENT: insert into mcrparted values (11, 1, -1);
2024-11-25 19:08:08.962 CET [562043][client backend] [pg_regress/insert][85/376:0] ERROR: new row for relation "mcrparted3" violates partition constraint
2024-11-25 19:08:08.962 CET [562043][client backend] [pg_regress/insert][85/376:0] DETAIL: Failing row contains (11, 1, -1).
2024-11-25 19:08:08.962 CET [562043][client backend] [pg_regress/insert][85/376:0] STATEMENT: insert into mcrparted3 values (11, 1, -1);
2024-11-25 19:08:08.963 CET [562043][client backend] [pg_regress/insert][85/379:0] ERROR: new row for relation "mcrparted4" violates partition constraint
2024-11-25 19:08:08.963 CET [562043][client backend] [pg_regress/insert][85/379:0] DETAIL: Failing row contains (30, 21, 20).
2024-11-25 19:08:08.963 CET [562043][client backend] [pg_regress/insert][85/379:0] STATEMENT: insert into mcrparted4 values (30, 21, 20);
2024-11-25 19:08:08.969 CET [562043][client backend] [pg_regress/insert][85/386:0] ERROR: new row for relation "brtrigpartcon1" violates partition constraint
2024-11-25 19:08:08.969 CET [562043][client backend] [pg_regress/insert][85/386:0] DETAIL: Failing row contains (2, hi there).
2024-11-25 19:08:08.969 CET [562043][client backend] [pg_regress/insert][85/386:0] STATEMENT: insert into brtrigpartcon values (1, 'hi there');
2024-11-25 19:08:08.969 CET [562043][client backend] [pg_regress/insert][85/387:0] ERROR: new row for relation "brtrigpartcon1" violates partition constraint
2024-11-25 19:08:08.969 CET [562043][client backend] [pg_regress/insert][85/387:0] DETAIL: Failing row contains (2, hi there).
2024-11-25 19:08:08.969 CET [562043][client backend] [pg_regress/insert][85/387:0] STATEMENT: insert into brtrigpartcon1 values (1, 'hi there');
2024-11-25 19:08:08.973 CET [562043][client backend] [pg_regress/insert][85/394:0] ERROR: new row for relation "brtrigpartcon1" violates partition constraint
2024-11-25 19:08:08.973 CET [562043][client backend] [pg_regress/insert][85/394:0] DETAIL: Failing row contains (a, b) = (2, hi there).
2024-11-25 19:08:08.973 CET [562043][client backend] [pg_regress/insert][85/394:0] STATEMENT: with result as (insert into brtrigpartcon values (1, 'hi there') returning 1)
insert into inserttest3 (f3) select * from result;
2024-11-25 19:08:09.048 CET [562110][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.224 user=nkey database=postgres host=[local]
2024-11-25 19:08:09.048 CET [562119][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.182 user=nkey database=postgres host=[local]
2024-11-25 19:08:09.049 CET [562098][client backend] [pg_regress/pgp-encrypt][:0] LOG: disconnection: session time: 0:00:00.261 user=nkey database=regression_pgcrypto host=[local]
2024-11-25 19:08:09.049 CET [562126][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.133 user=nkey database=postgres host=[local]
2024-11-25 19:08:09.051 CET [562136][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.051 CET [562137][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.052 CET [562138][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.052 CET [562137][client backend] [[unknown]][12/141:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.052 CET [562136][client backend] [[unknown]][21/235:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.052 CET [562137][client backend] [[unknown]][12/141:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:09.052 CET [562136][client backend] [[unknown]][21/235:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:09.052 CET [562138][client backend] [[unknown]][5/106:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.052 CET [562138][client backend] [[unknown]][5/106:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:09.053 CET [562139][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.053 CET [562139][client backend] [[unknown]][13/78:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.053 CET [562139][client backend] [[unknown]][13/78:0] LOG: connection authorized: user=nkey database=regression_pgcrypto application_name=pg_regress/pgp-encrypt-md5
2024-11-25 19:08:09.056 CET [562139][client backend] [pg_regress/pgp-encrypt-md5][:0] LOG: disconnection: session time: 0:00:00.003 user=nkey database=regression_pgcrypto host=[local]
2024-11-25 19:08:09.060 CET [562143][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.061 CET [562143][client backend] [[unknown]][10/128:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.061 CET [562143][client backend] [[unknown]][10/128:0] LOG: connection authorized: user=nkey database=regression_pgcrypto application_name=pg_regress/pgp-pubkey-decrypt
2024-11-25 19:08:09.077 CET [562143][client backend] [pg_regress/pgp-pubkey-decrypt][10/144:0] ERROR: Wrong key or corrupt data
2024-11-25 19:08:09.077 CET [562143][client backend] [pg_regress/pgp-pubkey-decrypt][10/144:0] STATEMENT: select pgp_pub_decrypt(dearmor(data), dearmor(seckey))
from keytbl, encdata where keytbl.id=2 and encdata.id=2;
2024-11-25 19:08:09.078 CET [562136][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.026 user=nkey database=postgres host=[local]
2024-11-25 19:08:09.078 CET [562138][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.026 user=nkey database=postgres host=[local]
2024-11-25 19:08:09.079 CET [562137][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.027 user=nkey database=postgres host=[local]
2024-11-25 19:08:09.081 CET [562147][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.081 CET [562148][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.081 CET [562149][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.082 CET [562148][client backend] [[unknown]][23/372:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.082 CET [562148][client backend] [[unknown]][23/372:0] LOG: connection authorized: user=nkey database=regression_pg_surgery application_name=pg_regress/heap_surgery
2024-11-25 19:08:09.082 CET [562147][client backend] [[unknown]][8/133:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.082 CET [562147][client backend] [[unknown]][8/133:0] LOG: connection authorized: user=nkey database=regression_pg_visibility application_name=pg_regress/pg_visibility
2024-11-25 19:08:09.082 CET [562149][client backend] [[unknown]][36/301:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.082 CET [562149][client backend] [[unknown]][36/301:0] LOG: connection authorized: user=nkey database=regression_pg_trgm application_name=pg_regress/pg_trgm
2024-11-25 19:08:09.082 CET [562143][client backend] [pg_regress/pgp-pubkey-decrypt][10/147:0] ERROR: Wrong key
2024-11-25 19:08:09.082 CET [562143][client backend] [pg_regress/pgp-pubkey-decrypt][10/147:0] STATEMENT: select pgp_pub_decrypt(dearmor(data), dearmor(seckey))
from keytbl, encdata where keytbl.id=2 and encdata.id=1;
2024-11-25 19:08:09.084 CET [562043][client backend] [pg_regress/insert][:0] LOG: disconnection: session time: 0:00:00.488 user=nkey database=regression host=[local]
2024-11-25 19:08:09.085 CET [562143][client backend] [pg_regress/pgp-pubkey-decrypt][10/148:0] ERROR: No encryption key found
2024-11-25 19:08:09.085 CET [562143][client backend] [pg_regress/pgp-pubkey-decrypt][10/148:0] STATEMENT: select pgp_pub_decrypt(dearmor(data), dearmor(seckey))
from keytbl, encdata where keytbl.id=4 and encdata.id=1;
2024-11-25 19:08:09.085 CET [562143][client backend] [pg_regress/pgp-pubkey-decrypt][10/149:0] ERROR: Wrong key or corrupt data
2024-11-25 19:08:09.085 CET [562143][client backend] [pg_regress/pgp-pubkey-decrypt][10/149:0] STATEMENT: select pgp_pub_decrypt(dearmor(data), dearmor(seckey), '123')
from keytbl, encdata where keytbl.id=7 and encdata.id=4;
2024-11-25 19:08:09.088 CET [562143][client backend] [pg_regress/pgp-pubkey-decrypt][10/151:0] ERROR: Need password for secret key
2024-11-25 19:08:09.088 CET [562143][client backend] [pg_regress/pgp-pubkey-decrypt][10/151:0] STATEMENT: select pgp_pub_decrypt(dearmor(data), dearmor(seckey))
from keytbl, encdata where keytbl.id=5 and encdata.id=1;
2024-11-25 19:08:09.089 CET [562143][client backend] [pg_regress/pgp-pubkey-decrypt][10/152:0] ERROR: Wrong key or corrupt data
2024-11-25 19:08:09.089 CET [562143][client backend] [pg_regress/pgp-pubkey-decrypt][10/152:0] STATEMENT: select pgp_pub_decrypt(dearmor(data), dearmor(seckey), 'foo')
from keytbl, encdata where keytbl.id=5 and encdata.id=1;
2024-11-25 19:08:09.092 CET [562143][client backend] [pg_regress/pgp-pubkey-decrypt][10/154:0] ERROR: Wrong key or corrupt data
2024-11-25 19:08:09.092 CET [562143][client backend] [pg_regress/pgp-pubkey-decrypt][10/154:0] STATEMENT: select pgp_pub_decrypt(dearmor(data), dearmor(seckey))
from keytbl, encdata where keytbl.id=6 and encdata.id=5;
2024-11-25 19:08:09.092 CET [562167][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.093 CET [562169][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.093 CET [562167][client backend] [[unknown]][9/491:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.093 CET [562172][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.093 CET [562167][client backend] [[unknown]][9/491:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/create_function_c
2024-11-25 19:08:09.094 CET [562143][client backend] [pg_regress/pgp-pubkey-decrypt][:0] LOG: disconnection: session time: 0:00:00.033 user=nkey database=regression_pgcrypto host=[local]
2024-11-25 19:08:09.094 CET [562169][client backend] [[unknown]][32/22:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.094 CET [562169][client backend] [[unknown]][32/22:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/create_procedure
2024-11-25 19:08:09.094 CET [562172][client backend] [[unknown]][29/17:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.094 CET [562172][client backend] [[unknown]][29/17:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/create_schema
2024-11-25 19:08:09.094 CET [562174][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.094 CET [562170][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.094 CET [562174][client backend] [[unknown]][2/495:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.094 CET [562174][client backend] [[unknown]][2/495:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/create_type
2024-11-25 19:08:09.095 CET [562169][client backend] [pg_regress/create_procedure][32/23:0] ERROR: procedure nonexistent() does not exist at character 6
2024-11-25 19:08:09.095 CET [562169][client backend] [pg_regress/create_procedure][32/23:0] HINT: No procedure matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:09.095 CET [562169][client backend] [pg_regress/create_procedure][32/23:0] STATEMENT: CALL nonexistent();
2024-11-25 19:08:09.095 CET [562168][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.096 CET [562169][client backend] [pg_regress/create_procedure][32/24:0] ERROR: random() is not a procedure at character 6
2024-11-25 19:08:09.096 CET [562169][client backend] [pg_regress/create_procedure][32/24:0] HINT: To call a function, use SELECT.
2024-11-25 19:08:09.096 CET [562169][client backend] [pg_regress/create_procedure][32/24:0] STATEMENT: CALL random();
2024-11-25 19:08:09.096 CET [562170][client backend] [[unknown]][25/163:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.096 CET [562170][client backend] [[unknown]][25/163:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/create_table
2024-11-25 19:08:09.096 CET [562167][client backend] [pg_regress/create_function_c][9/493:529445] ERROR: could not access file "nosuchfile": No such file or directory
2024-11-25 19:08:09.096 CET [562167][client backend] [pg_regress/create_function_c][9/493:529445] STATEMENT: CREATE FUNCTION test1 (int) RETURNS int LANGUAGE C
AS 'nosuchfile';
2024-11-25 19:08:09.096 CET [562168][client backend] [[unknown]][28/71:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.096 CET [562168][client backend] [[unknown]][28/71:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/create_misc
2024-11-25 19:08:09.096 CET [562167][client backend] [pg_regress/create_function_c][9/494:529449] ERROR: could not find function "nosuchsymbol" in file "/home/nkey/postgres/buildDir/src/test/regress/regress.so"
2024-11-25 19:08:09.096 CET [562167][client backend] [pg_regress/create_function_c][9/494:529449] STATEMENT: CREATE FUNCTION test1 (int) RETURNS int LANGUAGE C
AS '/home/nkey/postgres/buildDir/src/test/regress/regress.so', 'nosuchsymbol';
2024-11-25 19:08:09.097 CET [562172][client backend] [pg_regress/create_schema][29/19:529447] ERROR: CREATE specifies a schema (schema_not_existing) different from the one being created (regress_create_schema_role)
2024-11-25 19:08:09.097 CET [562172][client backend] [pg_regress/create_schema][29/19:529447] STATEMENT: CREATE SCHEMA AUTHORIZATION regress_create_schema_role
CREATE SEQUENCE schema_not_existing.seq;
2024-11-25 19:08:09.097 CET [562172][client backend] [pg_regress/create_schema][29/20:529450] ERROR: CREATE specifies a schema (schema_not_existing) different from the one being created (regress_create_schema_role)
2024-11-25 19:08:09.097 CET [562172][client backend] [pg_regress/create_schema][29/20:529450] STATEMENT: CREATE SCHEMA AUTHORIZATION regress_create_schema_role
CREATE TABLE schema_not_existing.tab (id int);
2024-11-25 19:08:09.097 CET [562172][client backend] [pg_regress/create_schema][29/21:529452] ERROR: CREATE specifies a schema (schema_not_existing) different from the one being created (regress_create_schema_role)
2024-11-25 19:08:09.097 CET [562172][client backend] [pg_regress/create_schema][29/21:529452] STATEMENT: CREATE SCHEMA AUTHORIZATION regress_create_schema_role
CREATE VIEW schema_not_existing.view AS SELECT 1;
2024-11-25 19:08:09.097 CET [562172][client backend] [pg_regress/create_schema][29/22:529455] ERROR: CREATE specifies a schema (schema_not_existing) different from the one being created (regress_create_schema_role)
2024-11-25 19:08:09.097 CET [562172][client backend] [pg_regress/create_schema][29/22:529455] STATEMENT: CREATE SCHEMA AUTHORIZATION regress_create_schema_role
CREATE INDEX ON schema_not_existing.tab (id);
2024-11-25 19:08:09.098 CET [562167][client backend] [pg_regress/create_function_c][9/496:529456] ERROR: there is no built-in function named "nosuch"
2024-11-25 19:08:09.098 CET [562167][client backend] [pg_regress/create_function_c][9/496:529456] STATEMENT: CREATE FUNCTION test1 (int) RETURNS int LANGUAGE internal
AS 'nosuch';
2024-11-25 19:08:09.098 CET [562172][client backend] [pg_regress/create_schema][29/23:529458] ERROR: CREATE specifies a schema (schema_not_existing) different from the one being created (regress_create_schema_role)
2024-11-25 19:08:09.098 CET [562172][client backend] [pg_regress/create_schema][29/23:529458] STATEMENT: CREATE SCHEMA AUTHORIZATION regress_create_schema_role
CREATE TRIGGER schema_trig BEFORE INSERT ON schema_not_existing.tab
EXECUTE FUNCTION schema_trig.no_func();
2024-11-25 19:08:09.098 CET [562170][client backend] [pg_regress/create_table][25/164:0] ERROR: column "u" has pseudo-type unknown
2024-11-25 19:08:09.098 CET [562170][client backend] [pg_regress/create_table][25/164:0] STATEMENT: CREATE TABLE unknowntab (
u unknown -- fail
);
2024-11-25 19:08:09.099 CET [562170][client backend] [pg_regress/create_table][25/165:0] ERROR: column "u" has pseudo-type unknown
2024-11-25 19:08:09.099 CET [562170][client backend] [pg_regress/create_table][25/165:0] STATEMENT: CREATE TYPE unknown_comptype AS (
u unknown -- fail
);
2024-11-25 19:08:09.099 CET [562178][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.099 CET [562170][client backend] [pg_regress/create_table][25/166:0] ERROR: unrecognized parameter "Fillfactor"
2024-11-25 19:08:09.099 CET [562170][client backend] [pg_regress/create_table][25/166:0] STATEMENT: CREATE TABLE tas_case WITH ("Fillfactor" = 10) AS SELECT 1 a;
2024-11-25 19:08:09.099 CET [562167][client backend] [pg_regress/create_function_c][:0] LOG: disconnection: session time: 0:00:00.006 user=nkey database=regression host=[local]
2024-11-25 19:08:09.099 CET [562178][client backend] [[unknown]][30/26:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.099 CET [562178][client backend] [[unknown]][30/26:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/create_operator
2024-11-25 19:08:09.099 CET [562174][client backend] [pg_regress/create_type][2/503:0] ERROR: type "shell" already exists
2024-11-25 19:08:09.099 CET [562174][client backend] [pg_regress/create_type][2/503:0] STATEMENT: CREATE TYPE shell;
2024-11-25 19:08:09.098 CET [562147][client backend] [pg_regress/pg_visibility][8/135:529442] ERROR: could not open relation with OID 1094889
2024-11-25 19:08:09.098 CET [562147][client backend] [pg_regress/pg_visibility][8/135:529442] STATEMENT: SELECT * FROM pg_visibility_map(1094889);
2024-11-25 19:08:09.100 CET [562174][client backend] [pg_regress/create_type][2/505:0] ERROR: type "shell" does not exist
2024-11-25 19:08:09.100 CET [562174][client backend] [pg_regress/create_type][2/505:0] STATEMENT: DROP TYPE shell;
2024-11-25 19:08:09.100 CET [562172][client backend] [pg_regress/create_schema][29/25:529472] ERROR: CREATE specifies a schema (schema_not_existing) different from the one being created (regress_create_schema_role)
2024-11-25 19:08:09.100 CET [562172][client backend] [pg_regress/create_schema][29/25:529472] STATEMENT: CREATE SCHEMA AUTHORIZATION CURRENT_ROLE
CREATE SEQUENCE schema_not_existing.seq;
2024-11-25 19:08:09.100 CET [562172][client backend] [pg_regress/create_schema][29/26:529473] ERROR: CREATE specifies a schema (schema_not_existing) different from the one being created (regress_create_schema_role)
2024-11-25 19:08:09.100 CET [562172][client backend] [pg_regress/create_schema][29/26:529473] STATEMENT: CREATE SCHEMA AUTHORIZATION CURRENT_ROLE
CREATE TABLE schema_not_existing.tab (id int);
2024-11-25 19:08:09.100 CET [562172][client backend] [pg_regress/create_schema][29/27:529475] ERROR: CREATE specifies a schema (schema_not_existing) different from the one being created (regress_create_schema_role)
2024-11-25 19:08:09.100 CET [562172][client backend] [pg_regress/create_schema][29/27:529475] STATEMENT: CREATE SCHEMA AUTHORIZATION CURRENT_ROLE
CREATE VIEW schema_not_existing.view AS SELECT 1;
2024-11-25 19:08:09.101 CET [562172][client backend] [pg_regress/create_schema][29/28:529477] ERROR: CREATE specifies a schema (schema_not_existing) different from the one being created (regress_create_schema_role)
2024-11-25 19:08:09.101 CET [562172][client backend] [pg_regress/create_schema][29/28:529477] STATEMENT: CREATE SCHEMA AUTHORIZATION CURRENT_ROLE
CREATE INDEX ON schema_not_existing.tab (id);
2024-11-25 19:08:09.101 CET [562172][client backend] [pg_regress/create_schema][29/29:529479] ERROR: CREATE specifies a schema (schema_not_existing) different from the one being created (regress_create_schema_role)
2024-11-25 19:08:09.101 CET [562172][client backend] [pg_regress/create_schema][29/29:529479] STATEMENT: CREATE SCHEMA AUTHORIZATION CURRENT_ROLE
CREATE TRIGGER schema_trig BEFORE INSERT ON schema_not_existing.tab
EXECUTE FUNCTION schema_trig.no_func();
2024-11-25 19:08:09.101 CET [562172][client backend] [pg_regress/create_schema][29/30:529480] ERROR: CREATE specifies a schema (schema_not_existing) different from the one being created (regress_schema_1)
2024-11-25 19:08:09.101 CET [562172][client backend] [pg_regress/create_schema][29/30:529480] STATEMENT: CREATE SCHEMA regress_schema_1 AUTHORIZATION CURRENT_ROLE
CREATE SEQUENCE schema_not_existing.seq;
2024-11-25 19:08:09.101 CET [562179][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.101 CET [562172][client backend] [pg_regress/create_schema][29/31:529482] ERROR: CREATE specifies a schema (schema_not_existing) different from the one being created (regress_schema_1)
2024-11-25 19:08:09.101 CET [562172][client backend] [pg_regress/create_schema][29/31:529482] STATEMENT: CREATE SCHEMA regress_schema_1 AUTHORIZATION CURRENT_ROLE
CREATE TABLE schema_not_existing.tab (id int);
2024-11-25 19:08:09.101 CET [562172][client backend] [pg_regress/create_schema][29/32:529483] ERROR: CREATE specifies a schema (schema_not_existing) different from the one being created (regress_schema_1)
2024-11-25 19:08:09.101 CET [562172][client backend] [pg_regress/create_schema][29/32:529483] STATEMENT: CREATE SCHEMA regress_schema_1 AUTHORIZATION CURRENT_ROLE
CREATE VIEW schema_not_existing.view AS SELECT 1;
2024-11-25 19:08:09.102 CET [562172][client backend] [pg_regress/create_schema][29/33:529485] ERROR: CREATE specifies a schema (schema_not_existing) different from the one being created (regress_schema_1)
2024-11-25 19:08:09.102 CET [562172][client backend] [pg_regress/create_schema][29/33:529485] STATEMENT: CREATE SCHEMA regress_schema_1 AUTHORIZATION CURRENT_ROLE
CREATE INDEX ON schema_not_existing.tab (id);
2024-11-25 19:08:09.102 CET [562179][client backend] [[unknown]][0/38:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.102 CET [562179][client backend] [[unknown]][0/38:0] LOG: connection authorized: user=nkey database=regression_pgcrypto application_name=pg_regress/pgp-pubkey-encrypt
2024-11-25 19:08:09.102 CET [562172][client backend] [pg_regress/create_schema][29/34:529487] ERROR: CREATE specifies a schema (schema_not_existing) different from the one being created (regress_schema_1)
2024-11-25 19:08:09.102 CET [562172][client backend] [pg_regress/create_schema][29/34:529487] STATEMENT: CREATE SCHEMA regress_schema_1 AUTHORIZATION CURRENT_ROLE
CREATE TRIGGER schema_trig BEFORE INSERT ON schema_not_existing.tab
EXECUTE FUNCTION schema_trig.no_func();
2024-11-25 19:08:09.102 CET [562147][client backend] [pg_regress/pg_visibility][8/135:529442] ERROR: could not open relation with OID 1094889
2024-11-25 19:08:09.102 CET [562147][client backend] [pg_regress/pg_visibility][8/135:529442] STATEMENT: SELECT * FROM pg_visibility_map(1094889);
2024-11-25 19:08:09.103 CET [562148][client backend] [pg_regress/heap_surgery][23/401:0] ERROR: argument must be empty or one-dimensional array
2024-11-25 19:08:09.103 CET [562148][client backend] [pg_regress/heap_surgery][23/401:0] STATEMENT: select heap_force_kill('htab2'::regclass, ARRAY[['(0, 2)']]::tid[]);
2024-11-25 19:08:09.103 CET [562147][client backend] [pg_regress/pg_visibility][8/137:0] ERROR: relation "test_partitioned" is of wrong relation kind
2024-11-25 19:08:09.103 CET [562147][client backend] [pg_regress/pg_visibility][8/137:0] DETAIL: This operation is not supported for partitioned tables.
2024-11-25 19:08:09.103 CET [562147][client backend] [pg_regress/pg_visibility][8/137:0] STATEMENT: select pg_visibility('test_partitioned', 0);
2024-11-25 19:08:09.103 CET [562148][client backend] [pg_regress/heap_surgery][23/402:0] ERROR: array must not contain nulls
2024-11-25 19:08:09.103 CET [562148][client backend] [pg_regress/heap_surgery][23/402:0] STATEMENT: select heap_force_kill('htab2'::regclass, ARRAY[NULL]::tid[]);
2024-11-25 19:08:09.103 CET [562178][client backend] [pg_regress/create_operator][30/29:0] ERROR: operator right argument type must be specified
2024-11-25 19:08:09.103 CET [562178][client backend] [pg_regress/create_operator][30/29:0] DETAIL: Postfix operators are not supported.
2024-11-25 19:08:09.103 CET [562178][client backend] [pg_regress/create_operator][30/29:0] STATEMENT: CREATE OPERATOR #%# (
leftarg = int8, -- fail, postfix is no longer supported
procedure = factorial
);
2024-11-25 19:08:09.104 CET [562147][client backend] [pg_regress/pg_visibility][8/138:0] ERROR: relation "test_partitioned" is of wrong relation kind
2024-11-25 19:08:09.104 CET [562147][client backend] [pg_regress/pg_visibility][8/138:0] DETAIL: This operation is not supported for partitioned tables.
2024-11-25 19:08:09.104 CET [562147][client backend] [pg_regress/pg_visibility][8/138:0] STATEMENT: select pg_visibility_map('test_partitioned');
2024-11-25 19:08:09.104 CET [562147][client backend] [pg_regress/pg_visibility][8/139:0] ERROR: relation "test_partitioned" is of wrong relation kind
2024-11-25 19:08:09.104 CET [562147][client backend] [pg_regress/pg_visibility][8/139:0] DETAIL: This operation is not supported for partitioned tables.
2024-11-25 19:08:09.104 CET [562147][client backend] [pg_regress/pg_visibility][8/139:0] STATEMENT: select pg_visibility_map_summary('test_partitioned');
2024-11-25 19:08:09.104 CET [562147][client backend] [pg_regress/pg_visibility][8/140:0] ERROR: relation "test_partitioned" is of wrong relation kind
2024-11-25 19:08:09.104 CET [562147][client backend] [pg_regress/pg_visibility][8/140:0] DETAIL: This operation is not supported for partitioned tables.
2024-11-25 19:08:09.104 CET [562147][client backend] [pg_regress/pg_visibility][8/140:0] STATEMENT: select pg_check_frozen('test_partitioned');
2024-11-25 19:08:09.104 CET [562178][client backend] [pg_regress/create_operator][30/31:0] ERROR: operator does not exist: ###### integer
2024-11-25 19:08:09.104 CET [562178][client backend] [pg_regress/create_operator][30/31:0] STATEMENT: COMMENT ON OPERATOR ###### (NONE, int4) IS 'bad prefix';
2024-11-25 19:08:09.104 CET [562147][client backend] [pg_regress/pg_visibility][8/141:529501] ERROR: relation "test_partitioned" is of wrong relation kind
2024-11-25 19:08:09.104 CET [562147][client backend] [pg_regress/pg_visibility][8/141:529501] DETAIL: This operation is not supported for partitioned tables.
2024-11-25 19:08:09.104 CET [562147][client backend] [pg_regress/pg_visibility][8/141:529501] STATEMENT: select pg_truncate_visibility_map('test_partitioned');
2024-11-25 19:08:09.104 CET [562178][client backend] [pg_regress/create_operator][30/32:0] ERROR: postfix operators are not supported
2024-11-25 19:08:09.104 CET [562178][client backend] [pg_regress/create_operator][30/32:0] STATEMENT: COMMENT ON OPERATOR ###### (int4, NONE) IS 'bad postfix';
2024-11-25 19:08:09.104 CET [562178][client backend] [pg_regress/create_operator][30/33:0] ERROR: operator does not exist: integer ###### bigint
2024-11-25 19:08:09.104 CET [562178][client backend] [pg_regress/create_operator][30/33:0] STATEMENT: COMMENT ON OPERATOR ###### (int4, int8) IS 'bad infix';
2024-11-25 19:08:09.105 CET [562178][client backend] [pg_regress/create_operator][30/34:0] ERROR: operator does not exist: ###### integer
2024-11-25 19:08:09.105 CET [562178][client backend] [pg_regress/create_operator][30/34:0] STATEMENT: DROP OPERATOR ###### (NONE, int4);
2024-11-25 19:08:09.105 CET [562178][client backend] [pg_regress/create_operator][30/35:0] ERROR: postfix operators are not supported
2024-11-25 19:08:09.105 CET [562178][client backend] [pg_regress/create_operator][30/35:0] STATEMENT: DROP OPERATOR ###### (int4, NONE);
2024-11-25 19:08:09.105 CET [562178][client backend] [pg_regress/create_operator][30/36:0] ERROR: operator does not exist: integer ###### bigint
2024-11-25 19:08:09.105 CET [562178][client backend] [pg_regress/create_operator][30/36:0] STATEMENT: DROP OPERATOR ###### (int4, int8);
2024-11-25 19:08:09.105 CET [562178][client backend] [pg_regress/create_operator][30/37:0] ERROR: syntax error at or near "=>" at character 17
2024-11-25 19:08:09.105 CET [562178][client backend] [pg_regress/create_operator][30/37:0] STATEMENT: CREATE OPERATOR => (
rightarg = int8,
procedure = factorial
);
2024-11-25 19:08:09.105 CET [562174][client backend] [pg_regress/create_type][2/519:0] WARNING: type attribute "Internallength" not recognized at character 27
2024-11-25 19:08:09.105 CET [562174][client backend] [pg_regress/create_type][2/519:0] WARNING: type attribute "Input" not recognized at character 50
2024-11-25 19:08:09.105 CET [562174][client backend] [pg_regress/create_type][2/519:0] WARNING: type attribute "Output" not recognized at character 71
2024-11-25 19:08:09.105 CET [562174][client backend] [pg_regress/create_type][2/519:0] WARNING: type attribute "Alignment" not recognized at character 94
2024-11-25 19:08:09.105 CET [562174][client backend] [pg_regress/create_type][2/519:0] WARNING: type attribute "Default" not recognized at character 115
2024-11-25 19:08:09.105 CET [562174][client backend] [pg_regress/create_type][2/519:0] WARNING: type attribute "Passedbyvalue" not recognized at character 132
2024-11-25 19:08:09.105 CET [562174][client backend] [pg_regress/create_type][2/519:0] ERROR: type input function must be specified
2024-11-25 19:08:09.105 CET [562174][client backend] [pg_regress/create_type][2/519:0] STATEMENT: CREATE TYPE bogus_type (
"Internallength" = 4,
"Input" = int42_in,
"Output" = int42_out,
"Alignment" = int4,
"Default" = 42,
"Passedbyvalue"
);
2024-11-25 19:08:09.106 CET [562178][client backend] [pg_regress/create_operator][30/40:0] ERROR: syntax error at or near ";" at character 14
2024-11-25 19:08:09.106 CET [562178][client backend] [pg_regress/create_operator][30/40:0] STATEMENT: SELECT 10 !=-;
2024-11-25 19:08:09.106 CET [562174][client backend] [pg_regress/create_type][2/520:0] ERROR: type input function array_in must return type bogus_type
2024-11-25 19:08:09.106 CET [562174][client backend] [pg_regress/create_type][2/520:0] STATEMENT: CREATE TYPE bogus_type (INPUT = array_in,
OUTPUT = array_out,
ELEMENT = int,
INTERNALLENGTH = 32);
2024-11-25 19:08:09.106 CET [562174][client backend] [pg_regress/create_type][2/522:0] ERROR: type "bogus_type" does not exist
2024-11-25 19:08:09.106 CET [562174][client backend] [pg_regress/create_type][2/522:0] HINT: Create the type as a shell type, then create its I/O functions, then do a full CREATE TYPE.
2024-11-25 19:08:09.106 CET [562174][client backend] [pg_regress/create_type][2/522:0] STATEMENT: CREATE TYPE bogus_type (INPUT = array_in,
OUTPUT = array_out,
ELEMENT = int,
INTERNALLENGTH = 32);
2024-11-25 19:08:09.107 CET [562147][client backend] [pg_regress/pg_visibility][8/144:0] ERROR: relation "test_index" is of wrong relation kind
2024-11-25 19:08:09.107 CET [562147][client backend] [pg_regress/pg_visibility][8/144:0] DETAIL: This operation is not supported for indexes.
2024-11-25 19:08:09.107 CET [562147][client backend] [pg_regress/pg_visibility][8/144:0] STATEMENT: select pg_visibility('test_index', 0);
2024-11-25 19:08:09.107 CET [562147][client backend] [pg_regress/pg_visibility][8/145:0] ERROR: relation "test_index" is of wrong relation kind
2024-11-25 19:08:09.107 CET [562147][client backend] [pg_regress/pg_visibility][8/145:0] DETAIL: This operation is not supported for indexes.
2024-11-25 19:08:09.107 CET [562147][client backend] [pg_regress/pg_visibility][8/145:0] STATEMENT: select pg_visibility_map('test_index');
2024-11-25 19:08:09.107 CET [562147][client backend] [pg_regress/pg_visibility][8/146:0] ERROR: relation "test_index" is of wrong relation kind
2024-11-25 19:08:09.107 CET [562147][client backend] [pg_regress/pg_visibility][8/146:0] DETAIL: This operation is not supported for indexes.
2024-11-25 19:08:09.107 CET [562147][client backend] [pg_regress/pg_visibility][8/146:0] STATEMENT: select pg_visibility_map_summary('test_index');
2024-11-25 19:08:09.107 CET [562147][client backend] [pg_regress/pg_visibility][8/147:0] ERROR: relation "test_index" is of wrong relation kind
2024-11-25 19:08:09.107 CET [562147][client backend] [pg_regress/pg_visibility][8/147:0] DETAIL: This operation is not supported for indexes.
2024-11-25 19:08:09.107 CET [562147][client backend] [pg_regress/pg_visibility][8/147:0] STATEMENT: select pg_check_frozen('test_index');
2024-11-25 19:08:09.107 CET [562147][client backend] [pg_regress/pg_visibility][8/148:529521] ERROR: relation "test_index" is of wrong relation kind
2024-11-25 19:08:09.107 CET [562147][client backend] [pg_regress/pg_visibility][8/148:529521] DETAIL: This operation is not supported for indexes.
2024-11-25 19:08:09.107 CET [562147][client backend] [pg_regress/pg_visibility][8/148:529521] STATEMENT: select pg_truncate_visibility_map('test_index');
2024-11-25 19:08:09.107 CET [562174][client backend] [pg_regress/create_type][2/526:0] ERROR: type "bad" does not exist
2024-11-25 19:08:09.107 CET [562174][client backend] [pg_regress/create_type][2/526:0] STATEMENT: COMMENT ON TYPE bad IS 'bad comment';
2024-11-25 19:08:09.108 CET [562174][client backend] [pg_regress/create_type][2/529:0] ERROR: column "nope" of relation "default_test_row" does not exist
2024-11-25 19:08:09.108 CET [562174][client backend] [pg_regress/create_type][2/529:0] STATEMENT: COMMENT ON COLUMN default_test_row.nope IS 'bad comment';
2024-11-25 19:08:09.108 CET [562147][client backend] [pg_regress/pg_visibility][8/150:0] ERROR: relation "test_view" is of wrong relation kind
2024-11-25 19:08:09.108 CET [562147][client backend] [pg_regress/pg_visibility][8/150:0] DETAIL: This operation is not supported for views.
2024-11-25 19:08:09.108 CET [562147][client backend] [pg_regress/pg_visibility][8/150:0] STATEMENT: select pg_visibility('test_view', 0);
2024-11-25 19:08:09.108 CET [562147][client backend] [pg_regress/pg_visibility][8/151:0] ERROR: relation "test_view" is of wrong relation kind
2024-11-25 19:08:09.108 CET [562147][client backend] [pg_regress/pg_visibility][8/151:0] DETAIL: This operation is not supported for views.
2024-11-25 19:08:09.108 CET [562147][client backend] [pg_regress/pg_visibility][8/151:0] STATEMENT: select pg_visibility_map('test_view');
2024-11-25 19:08:09.109 CET [562147][client backend] [pg_regress/pg_visibility][8/152:0] ERROR: relation "test_view" is of wrong relation kind
2024-11-25 19:08:09.109 CET [562147][client backend] [pg_regress/pg_visibility][8/152:0] DETAIL: This operation is not supported for views.
2024-11-25 19:08:09.109 CET [562147][client backend] [pg_regress/pg_visibility][8/152:0] STATEMENT: select pg_visibility_map_summary('test_view');
2024-11-25 19:08:09.109 CET [562174][client backend] [pg_regress/create_type][2/532:0] ERROR: type "text_w_default" already exists
2024-11-25 19:08:09.109 CET [562174][client backend] [pg_regress/create_type][2/532:0] STATEMENT: CREATE TYPE text_w_default;
2024-11-25 19:08:09.109 CET [562147][client backend] [pg_regress/pg_visibility][8/153:0] ERROR: relation "test_view" is of wrong relation kind
2024-11-25 19:08:09.109 CET [562147][client backend] [pg_regress/pg_visibility][8/153:0] DETAIL: This operation is not supported for views.
2024-11-25 19:08:09.109 CET [562147][client backend] [pg_regress/pg_visibility][8/153:0] STATEMENT: select pg_check_frozen('test_view');
2024-11-25 19:08:09.109 CET [562147][client backend] [pg_regress/pg_visibility][8/154:529541] ERROR: relation "test_view" is of wrong relation kind
2024-11-25 19:08:09.109 CET [562147][client backend] [pg_regress/pg_visibility][8/154:529541] DETAIL: This operation is not supported for views.
2024-11-25 19:08:09.109 CET [562147][client backend] [pg_regress/pg_visibility][8/154:529541] STATEMENT: select pg_truncate_visibility_map('test_view');
2024-11-25 19:08:09.109 CET [562148][client backend] [pg_regress/heap_surgery][23/406:0] ERROR: cannot operate on relation "vw"
2024-11-25 19:08:09.109 CET [562148][client backend] [pg_regress/heap_surgery][23/406:0] DETAIL: This operation is not supported for views.
2024-11-25 19:08:09.109 CET [562148][client backend] [pg_regress/heap_surgery][23/406:0] STATEMENT: select heap_force_kill('vw'::regclass, ARRAY['(0, 1)']::tid[]);
2024-11-25 19:08:09.110 CET [562178][client backend] [pg_regress/create_operator][30/50:529537] ERROR: permission denied for schema schema_op1
2024-11-25 19:08:09.110 CET [562178][client backend] [pg_regress/create_operator][30/50:529537] STATEMENT: CREATE OPERATOR schema_op1.#*# (
rightarg = int8,
procedure = factorial
);
2024-11-25 19:08:09.110 CET [562148][client backend] [pg_regress/heap_surgery][23/407:0] ERROR: cannot operate on relation "vw"
2024-11-25 19:08:09.110 CET [562148][client backend] [pg_regress/heap_surgery][23/407:0] DETAIL: This operation is not supported for views.
2024-11-25 19:08:09.110 CET [562148][client backend] [pg_regress/heap_surgery][23/407:0] STATEMENT: select heap_force_freeze('vw'::regclass, ARRAY['(0, 1)']::tid[]);
2024-11-25 19:08:09.110 CET [562170][client backend] [pg_regress/create_table][25/176:0] ERROR: only temporary relations may be created in temporary schemas at character 23
2024-11-25 19:08:09.110 CET [562170][client backend] [pg_regress/create_table][25/176:0] STATEMENT: CREATE UNLOGGED TABLE pg_temp.unlogged3 (a int primary key);
2024-11-25 19:08:09.110 CET [562178][client backend] [pg_regress/create_operator][30/51:0] ERROR: SETOF type not allowed for operator argument
2024-11-25 19:08:09.110 CET [562178][client backend] [pg_regress/create_operator][30/51:0] STATEMENT: CREATE OPERATOR #*# (
leftarg = SETOF int8,
procedure = factorial
);
2024-11-25 19:08:09.110 CET [562178][client backend] [pg_regress/create_operator][30/52:0] ERROR: SETOF type not allowed for operator argument
2024-11-25 19:08:09.110 CET [562178][client backend] [pg_regress/create_operator][30/52:0] STATEMENT: CREATE OPERATOR #*# (
rightarg = SETOF int8,
procedure = factorial
);
2024-11-25 19:08:09.111 CET [562147][client backend] [pg_regress/pg_visibility][8/156:0] ERROR: relation "test_sequence" is of wrong relation kind
2024-11-25 19:08:09.111 CET [562147][client backend] [pg_regress/pg_visibility][8/156:0] DETAIL: This operation is not supported for sequences.
2024-11-25 19:08:09.111 CET [562147][client backend] [pg_regress/pg_visibility][8/156:0] STATEMENT: select pg_visibility('test_sequence', 0);
2024-11-25 19:08:09.111 CET [562147][client backend] [pg_regress/pg_visibility][8/157:0] ERROR: relation "test_sequence" is of wrong relation kind
2024-11-25 19:08:09.111 CET [562147][client backend] [pg_regress/pg_visibility][8/157:0] DETAIL: This operation is not supported for sequences.
2024-11-25 19:08:09.111 CET [562147][client backend] [pg_regress/pg_visibility][8/157:0] STATEMENT: select pg_visibility_map('test_sequence');
2024-11-25 19:08:09.112 CET [562148][client backend] [pg_regress/heap_surgery][:0] LOG: disconnection: session time: 0:00:00.030 user=nkey database=regression_pg_surgery host=[local]
2024-11-25 19:08:09.112 CET [562178][client backend] [pg_regress/create_operator][30/54:0] WARNING: operator attribute "invalid_att" not recognized
2024-11-25 19:08:09.112 CET [562178][client backend] [pg_regress/create_operator][30/55:0] ERROR: operator argument types must be specified
2024-11-25 19:08:09.112 CET [562178][client backend] [pg_regress/create_operator][30/55:0] STATEMENT: CREATE OPERATOR #@%# (
procedure = factorial
);
2024-11-25 19:08:09.112 CET [562174][client backend] [pg_regress/create_type][2/539:0] ERROR: cannot drop function base_fn_in(cstring) because other objects depend on it
2024-11-25 19:08:09.112 CET [562174][client backend] [pg_regress/create_type][2/539:0] DETAIL: type base_type depends on function base_fn_in(cstring)
function base_fn_out(base_type) depends on type base_type
2024-11-25 19:08:09.112 CET [562174][client backend] [pg_regress/create_type][2/539:0] HINT: Use DROP ... CASCADE to drop the dependent objects too.
2024-11-25 19:08:09.112 CET [562174][client backend] [pg_regress/create_type][2/539:0] STATEMENT: DROP FUNCTION base_fn_in(cstring);
2024-11-25 19:08:09.112 CET [562178][client backend] [pg_regress/create_operator][30/56:0] ERROR: operator function must be specified
2024-11-25 19:08:09.112 CET [562178][client backend] [pg_regress/create_operator][30/56:0] STATEMENT: CREATE OPERATOR #@%# (
rightarg = int8
);
2024-11-25 19:08:09.112 CET [562147][client backend] [pg_regress/pg_visibility][8/158:0] ERROR: relation "test_sequence" is of wrong relation kind
2024-11-25 19:08:09.112 CET [562147][client backend] [pg_regress/pg_visibility][8/158:0] DETAIL: This operation is not supported for sequences.
2024-11-25 19:08:09.112 CET [562147][client backend] [pg_regress/pg_visibility][8/158:0] STATEMENT: select pg_visibility_map_summary('test_sequence');
2024-11-25 19:08:09.112 CET [562147][client backend] [pg_regress/pg_visibility][8/159:0] ERROR: relation "test_sequence" is of wrong relation kind
2024-11-25 19:08:09.112 CET [562147][client backend] [pg_regress/pg_visibility][8/159:0] DETAIL: This operation is not supported for sequences.
2024-11-25 19:08:09.112 CET [562147][client backend] [pg_regress/pg_visibility][8/159:0] STATEMENT: select pg_check_frozen('test_sequence');
2024-11-25 19:08:09.112 CET [562147][client backend] [pg_regress/pg_visibility][8/160:529569] ERROR: relation "test_sequence" is of wrong relation kind
2024-11-25 19:08:09.112 CET [562147][client backend] [pg_regress/pg_visibility][8/160:529569] DETAIL: This operation is not supported for sequences.
2024-11-25 19:08:09.112 CET [562147][client backend] [pg_regress/pg_visibility][8/160:529569] STATEMENT: select pg_truncate_visibility_map('test_sequence');
2024-11-25 19:08:09.113 CET [562170][client backend] [pg_regress/create_table][25/180:0] ERROR: cannot create temporary relation in non-temporary schema at character 19
2024-11-25 19:08:09.113 CET [562170][client backend] [pg_regress/create_table][25/180:0] STATEMENT: CREATE TEMP TABLE public.temp_to_perm (a int primary key);
2024-11-25 19:08:09.114 CET [562178][client backend] [pg_regress/create_operator][30/57:529568] ERROR: permission denied for type type_op3
2024-11-25 19:08:09.114 CET [562178][client backend] [pg_regress/create_operator][30/57:529568] STATEMENT: CREATE OPERATOR #*# (
leftarg = type_op3,
rightarg = int8,
procedure = fn_op3
);
2024-11-25 19:08:09.114 CET [562174][client backend] [pg_regress/create_type][2/540:0] ERROR: cannot drop function base_fn_out(base_type) because other objects depend on it
2024-11-25 19:08:09.114 CET [562174][client backend] [pg_regress/create_type][2/540:0] DETAIL: type base_type depends on function base_fn_out(base_type)
function base_fn_in(cstring) depends on type base_type
2024-11-25 19:08:09.114 CET [562174][client backend] [pg_regress/create_type][2/540:0] HINT: Use DROP ... CASCADE to drop the dependent objects too.
2024-11-25 19:08:09.114 CET [562174][client backend] [pg_regress/create_type][2/540:0] STATEMENT: DROP FUNCTION base_fn_out(base_type);
2024-11-25 19:08:09.114 CET [562174][client backend] [pg_regress/create_type][2/541:0] ERROR: cannot drop type base_type because other objects depend on it
2024-11-25 19:08:09.114 CET [562174][client backend] [pg_regress/create_type][2/541:0] DETAIL: function base_fn_in(cstring) depends on type base_type
function base_fn_out(base_type) depends on type base_type
2024-11-25 19:08:09.114 CET [562174][client backend] [pg_regress/create_type][2/541:0] HINT: Use DROP ... CASCADE to drop the dependent objects too.
2024-11-25 19:08:09.114 CET [562174][client backend] [pg_regress/create_type][2/541:0] STATEMENT: DROP TYPE base_type;
2024-11-25 19:08:09.114 CET [562147][client backend] [pg_regress/pg_visibility][8/164:0] ERROR: relation "test_foreign_table" is of wrong relation kind
2024-11-25 19:08:09.114 CET [562147][client backend] [pg_regress/pg_visibility][8/164:0] DETAIL: This operation is not supported for foreign tables.
2024-11-25 19:08:09.114 CET [562147][client backend] [pg_regress/pg_visibility][8/164:0] STATEMENT: select pg_visibility('test_foreign_table', 0);
2024-11-25 19:08:09.115 CET [562147][client backend] [pg_regress/pg_visibility][8/165:0] ERROR: relation "test_foreign_table" is of wrong relation kind
2024-11-25 19:08:09.115 CET [562147][client backend] [pg_regress/pg_visibility][8/165:0] DETAIL: This operation is not supported for foreign tables.
2024-11-25 19:08:09.115 CET [562147][client backend] [pg_regress/pg_visibility][8/165:0] STATEMENT: select pg_visibility_map('test_foreign_table');
2024-11-25 19:08:09.115 CET [562147][client backend] [pg_regress/pg_visibility][8/166:0] ERROR: relation "test_foreign_table" is of wrong relation kind
2024-11-25 19:08:09.115 CET [562147][client backend] [pg_regress/pg_visibility][8/166:0] DETAIL: This operation is not supported for foreign tables.
2024-11-25 19:08:09.115 CET [562147][client backend] [pg_regress/pg_visibility][8/166:0] STATEMENT: select pg_visibility_map_summary('test_foreign_table');
2024-11-25 19:08:09.115 CET [562147][client backend] [pg_regress/pg_visibility][8/167:0] ERROR: relation "test_foreign_table" is of wrong relation kind
2024-11-25 19:08:09.115 CET [562147][client backend] [pg_regress/pg_visibility][8/167:0] DETAIL: This operation is not supported for foreign tables.
2024-11-25 19:08:09.115 CET [562147][client backend] [pg_regress/pg_visibility][8/167:0] STATEMENT: select pg_check_frozen('test_foreign_table');
2024-11-25 19:08:09.115 CET [562170][client backend] [pg_regress/create_table][25/182:0] ERROR: partitioned tables cannot be unlogged
2024-11-25 19:08:09.115 CET [562170][client backend] [pg_regress/create_table][25/182:0] STATEMENT: CREATE UNLOGGED TABLE unlogged1 (a int) PARTITION BY RANGE (a);
2024-11-25 19:08:09.115 CET [562147][client backend] [pg_regress/pg_visibility][8/168:529582] ERROR: relation "test_foreign_table" is of wrong relation kind
2024-11-25 19:08:09.115 CET [562147][client backend] [pg_regress/pg_visibility][8/168:529582] DETAIL: This operation is not supported for foreign tables.
2024-11-25 19:08:09.115 CET [562147][client backend] [pg_regress/pg_visibility][8/168:529582] STATEMENT: select pg_truncate_visibility_map('test_foreign_table');
2024-11-25 19:08:09.115 CET [562178][client backend] [pg_regress/create_operator][30/58:529573] ERROR: permission denied for type type_op4
2024-11-25 19:08:09.115 CET [562178][client backend] [pg_regress/create_operator][30/58:529573] STATEMENT: CREATE OPERATOR #*# (
leftarg = int8,
rightarg = type_op4,
procedure = fn_op4
);
2024-11-25 19:08:09.115 CET [562174][client backend] [pg_regress/create_type][2/543:0] ERROR: invalid NUMERIC type modifier at character 30
2024-11-25 19:08:09.115 CET [562174][client backend] [pg_regress/create_type][2/543:0] STATEMENT: CREATE TEMP TABLE mytab (foo widget(42,13,7));
2024-11-25 19:08:09.116 CET [562169][client backend] [pg_regress/create_procedure][32/32:0] ERROR: ptest1(unknown) is a procedure at character 8
2024-11-25 19:08:09.116 CET [562169][client backend] [pg_regress/create_procedure][32/32:0] HINT: To call a procedure, use CALL.
2024-11-25 19:08:09.116 CET [562169][client backend] [pg_regress/create_procedure][32/32:0] STATEMENT: SELECT ptest1('x');
2024-11-25 19:08:09.117 CET [562178][client backend] [pg_regress/create_operator][30/59:529587] ERROR: permission denied for function fn_op5
2024-11-25 19:08:09.117 CET [562178][client backend] [pg_regress/create_operator][30/59:529587] STATEMENT: CREATE OPERATOR #*# (
leftarg = int8,
rightarg = int8,
procedure = fn_op5
);
2024-11-25 19:08:09.118 CET [562170][client backend] [pg_regress/create_table][25/184:529597] ERROR: ALTER action SET LOGGED cannot be performed on relation "unlogged1"
2024-11-25 19:08:09.118 CET [562170][client backend] [pg_regress/create_table][25/184:529597] DETAIL: This operation is not supported for partitioned tables.
2024-11-25 19:08:09.118 CET [562170][client backend] [pg_regress/create_table][25/184:529597] STATEMENT: ALTER TABLE unlogged1 SET LOGGED;
2024-11-25 19:08:09.118 CET [562170][client backend] [pg_regress/create_table][25/185:529607] ERROR: ALTER action SET UNLOGGED cannot be performed on relation "unlogged1"
2024-11-25 19:08:09.118 CET [562170][client backend] [pg_regress/create_table][25/185:529607] DETAIL: This operation is not supported for partitioned tables.
2024-11-25 19:08:09.118 CET [562170][client backend] [pg_regress/create_table][25/185:529607] STATEMENT: ALTER TABLE unlogged1 SET UNLOGGED;
2024-11-25 19:08:09.119 CET [562179][client backend] [pg_regress/pgp-pubkey-encrypt][0/43:0] ERROR: No encryption key found
2024-11-25 19:08:09.119 CET [562179][client backend] [pg_regress/pgp-pubkey-encrypt][0/43:0] STATEMENT: select pgp_pub_decrypt(
pgp_pub_encrypt('Secret msg', dearmor(pubkey)),
dearmor(seckey))
from keytbl where keytbl.id=4;
2024-11-25 19:08:09.119 CET [562179][client backend] [pg_regress/pgp-pubkey-encrypt][0/44:0] ERROR: Refusing to encrypt with secret key
2024-11-25 19:08:09.119 CET [562179][client backend] [pg_regress/pgp-pubkey-encrypt][0/44:0] STATEMENT: select pgp_pub_decrypt(
pgp_pub_encrypt('Secret msg', dearmor(seckey)),
dearmor(seckey))
from keytbl where keytbl.id=1;
2024-11-25 19:08:09.120 CET [562174][client backend] [pg_regress/create_type][2/552:0] ERROR: invalid input syntax for type widget: "(1,2)"
2024-11-25 19:08:09.120 CET [562174][client backend] [pg_regress/create_type][2/552:0] STATEMENT: SELECT pg_input_is_valid('(1,2)', 'widget');
2024-11-25 19:08:09.120 CET [562178][client backend] [pg_regress/create_operator][30/60:529601] ERROR: permission denied for type type_op6
2024-11-25 19:08:09.120 CET [562178][client backend] [pg_regress/create_operator][30/60:529601] STATEMENT: CREATE OPERATOR #*# (
leftarg = int8,
rightarg = int8,
procedure = fn_op6
);
2024-11-25 19:08:09.120 CET [562174][client backend] [pg_regress/create_type][2/554:0] ERROR: invalid input syntax for type widget: "(1,2)"
2024-11-25 19:08:09.120 CET [562174][client backend] [pg_regress/create_type][2/554:0] STATEMENT: SELECT pg_input_is_valid('{"(1,2)"}', 'widget[]');
2024-11-25 19:08:09.121 CET [562178][client backend] [pg_regress/create_operator][30/61:0] ERROR: operator cannot be its own negator
2024-11-25 19:08:09.121 CET [562178][client backend] [pg_regress/create_operator][30/61:0] STATEMENT: CREATE OPERATOR === (
leftarg = integer,
rightarg = integer,
procedure = int4eq,
negator = ===
);
2024-11-25 19:08:09.121 CET [562174][client backend] [pg_regress/create_type][2/556:0] ERROR: invalid input syntax for type widget: "(1,2)"
2024-11-25 19:08:09.121 CET [562174][client backend] [pg_regress/create_type][2/556:0] STATEMENT: SELECT pg_input_is_valid('("(1,2)")', 'mytab');
2024-11-25 19:08:09.121 CET [562179][client backend] [pg_regress/pgp-pubkey-encrypt][0/46:0] ERROR: Not text data
2024-11-25 19:08:09.121 CET [562179][client backend] [pg_regress/pgp-pubkey-encrypt][0/46:0] STATEMENT: select pgp_pub_decrypt(
pgp_pub_encrypt_bytea('Secret msg', dearmor(pubkey)),
dearmor(seckey))
from keytbl where keytbl.id=1;
2024-11-25 19:08:09.122 CET [562179][client backend] [pg_regress/pgp-pubkey-encrypt][:0] LOG: disconnection: session time: 0:00:00.020 user=nkey database=regression_pgcrypto host=[local]
2024-11-25 19:08:09.123 CET [562178][client backend] [pg_regress/create_operator][30/62:529629] ERROR: operator cannot be its own negator
2024-11-25 19:08:09.123 CET [562178][client backend] [pg_regress/create_operator][30/62:529629] STATEMENT: CREATE OPERATOR ===!!! (
leftarg = integer,
rightarg = integer,
procedure = int4ne,
negator = ===!!!
);
2024-11-25 19:08:09.123 CET [562178][client backend] [pg_regress/create_operator][30/63:529634] ERROR: commutator operator = is already the commutator of operator =
2024-11-25 19:08:09.123 CET [562178][client backend] [pg_regress/create_operator][30/63:529634] STATEMENT: CREATE OPERATOR === (
leftarg = integer,
rightarg = integer,
procedure = int4eq,
commutator = =
);
2024-11-25 19:08:09.124 CET [562178][client backend] [pg_regress/create_operator][30/64:529636] ERROR: negator operator <> is already the negator of operator =
2024-11-25 19:08:09.124 CET [562178][client backend] [pg_regress/create_operator][30/64:529636] STATEMENT: CREATE OPERATOR === (
leftarg = integer,
rightarg = integer,
procedure = int4eq,
negator = <>
);
2024-11-25 19:08:09.124 CET [562170][client backend] [pg_regress/create_table][25/188:0] ERROR: relation "as_select1" already exists
2024-11-25 19:08:09.124 CET [562170][client backend] [pg_regress/create_table][25/188:0] STATEMENT: CREATE TABLE as_select1 AS SELECT * FROM pg_class WHERE relkind = 'r';
2024-11-25 19:08:09.124 CET [562178][client backend] [pg_regress/create_operator][30/65:0] WARNING: operator attribute "Leftarg" not recognized
2024-11-25 19:08:09.124 CET [562178][client backend] [pg_regress/create_operator][30/65:0] WARNING: operator attribute "Rightarg" not recognized
2024-11-25 19:08:09.124 CET [562178][client backend] [pg_regress/create_operator][30/65:0] WARNING: operator attribute "Procedure" not recognized
2024-11-25 19:08:09.124 CET [562178][client backend] [pg_regress/create_operator][30/65:0] WARNING: operator attribute "Commutator" not recognized
2024-11-25 19:08:09.124 CET [562178][client backend] [pg_regress/create_operator][30/65:0] WARNING: operator attribute "Negator" not recognized
2024-11-25 19:08:09.124 CET [562178][client backend] [pg_regress/create_operator][30/65:0] WARNING: operator attribute "Restrict" not recognized
2024-11-25 19:08:09.124 CET [562178][client backend] [pg_regress/create_operator][30/65:0] WARNING: operator attribute "Join" not recognized
2024-11-25 19:08:09.124 CET [562178][client backend] [pg_regress/create_operator][30/65:0] WARNING: operator attribute "Hashes" not recognized
2024-11-25 19:08:09.124 CET [562178][client backend] [pg_regress/create_operator][30/65:0] WARNING: operator attribute "Merges" not recognized
2024-11-25 19:08:09.124 CET [562178][client backend] [pg_regress/create_operator][30/65:0] ERROR: operator function must be specified
2024-11-25 19:08:09.124 CET [562178][client backend] [pg_regress/create_operator][30/65:0] STATEMENT: CREATE OPERATOR ===
(
"Leftarg" = box,
"Rightarg" = box,
"Procedure" = area_equal_function,
"Commutator" = ===,
"Negator" = !==,
"Restrict" = area_restriction_function,
"Join" = area_join_function,
"Hashes",
"Merges"
);
2024-11-25 19:08:09.124 CET [562178][client backend] [pg_regress/create_operator][:0] LOG: disconnection: session time: 0:00:00.026 user=nkey database=regression host=[local]
2024-11-25 19:08:09.126 CET [562174][client backend] [pg_regress/create_type][2/568:0] ERROR: type "myvarchar" is only a shell
2024-11-25 19:08:09.126 CET [562174][client backend] [pg_regress/create_type][2/568:0] STATEMENT: ALTER TYPE myvarchar SET (storage = extended);
2024-11-25 19:08:09.127 CET [562174][client backend] [pg_regress/create_type][2/571:0] ERROR: cannot change type's storage to PLAIN
2024-11-25 19:08:09.127 CET [562174][client backend] [pg_regress/create_type][2/571:0] STATEMENT: ALTER TYPE myvarchar SET (storage = plain);
2024-11-25 19:08:09.128 CET [562170][client backend] [pg_regress/create_table][25/193:0] ERROR: relation "as_select1" already exists
2024-11-25 19:08:09.128 CET [562170][client backend] [pg_regress/create_table][25/193:0] STATEMENT: CREATE TABLE as_select1 AS EXECUTE select1;
2024-11-25 19:08:09.129 CET [562186][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.130 CET [562186][client backend] [[unknown]][34/25:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.130 CET [562186][client backend] [[unknown]][34/25:0] LOG: connection authorized: user=nkey database=regression_pgcrypto application_name=pg_regress/pgp-info
2024-11-25 19:08:09.132 CET [562174][client backend] [pg_regress/create_type][2/578:0] ERROR: cannot drop function myvarcharsend(myvarchar) because other objects depend on it
2024-11-25 19:08:09.132 CET [562174][client backend] [pg_regress/create_type][2/578:0] DETAIL: type myvarchar depends on function myvarcharsend(myvarchar)
function myvarcharin(cstring,oid,integer) depends on type myvarchar
function myvarcharout(myvarchar) depends on type myvarchar
function myvarcharrecv(internal,oid,integer) depends on type myvarchar
type myvarchardom depends on function myvarcharsend(myvarchar)
2024-11-25 19:08:09.132 CET [562174][client backend] [pg_regress/create_type][2/578:0] HINT: Use DROP ... CASCADE to drop the dependent objects too.
2024-11-25 19:08:09.132 CET [562174][client backend] [pg_regress/create_type][2/578:0] STATEMENT: DROP FUNCTION myvarcharsend(myvarchar);
2024-11-25 19:08:09.132 CET [562174][client backend] [pg_regress/create_type][2/579:0] ERROR: cannot drop type myvarchar because other objects depend on it
2024-11-25 19:08:09.132 CET [562174][client backend] [pg_regress/create_type][2/579:0] DETAIL: function myvarcharin(cstring,oid,integer) depends on type myvarchar
function myvarcharout(myvarchar) depends on type myvarchar
function myvarcharsend(myvarchar) depends on type myvarchar
function myvarcharrecv(internal,oid,integer) depends on type myvarchar
type myvarchardom depends on type myvarchar
2024-11-25 19:08:09.132 CET [562174][client backend] [pg_regress/create_type][2/579:0] HINT: Use DROP ... CASCADE to drop the dependent objects too.
2024-11-25 19:08:09.132 CET [562174][client backend] [pg_regress/create_type][2/579:0] STATEMENT: DROP TYPE myvarchar;
2024-11-25 19:08:09.134 CET [562174][client backend] [pg_regress/create_type][:0] LOG: disconnection: session time: 0:00:00.040 user=nkey database=regression host=[local]
2024-11-25 19:08:09.137 CET [562169][client backend] [pg_regress/create_procedure][32/42:0] ERROR: CREATE TABLE is not yet supported in unquoted SQL function body
2024-11-25 19:08:09.137 CET [562169][client backend] [pg_regress/create_procedure][32/42:0] STATEMENT: CREATE PROCEDURE ptestx()
LANGUAGE SQL
BEGIN ATOMIC
CREATE TABLE x (a int);
END;
2024-11-25 19:08:09.137 CET [562172][client backend] [pg_regress/create_schema][:0] LOG: disconnection: session time: 0:00:00.044 user=nkey database=regression host=[local]
2024-11-25 19:08:09.141 CET [562169][client backend] [pg_regress/create_procedure][32/51:529698] ERROR: calling procedures with output arguments is not supported in SQL functions
2024-11-25 19:08:09.141 CET [562169][client backend] [pg_regress/create_procedure][32/51:529698] CONTEXT: SQL function "ptest4b"
2024-11-25 19:08:09.141 CET [562169][client backend] [pg_regress/create_procedure][32/51:529698] STATEMENT: CREATE PROCEDURE ptest4b(INOUT b int, INOUT a int)
LANGUAGE SQL
AS $$
CALL ptest4a(a, b); -- error, not supported
$$;
2024-11-25 19:08:09.147 CET [562186][client backend] [pg_regress/pgp-info][34/29:0] ERROR: No encryption key found
2024-11-25 19:08:09.147 CET [562186][client backend] [pg_regress/pgp-info][34/29:0] STATEMENT: select pgp_key_id(dearmor(pubkey)) from keytbl where id=4;
2024-11-25 19:08:09.148 CET [562168][client backend] [pg_regress/create_misc][:0] LOG: disconnection: session time: 0:00:00.052 user=nkey database=regression host=[local]
2024-11-25 19:08:09.150 CET [562186][client backend] [pg_regress/pgp-info][34/35:0] ERROR: No encryption key found
2024-11-25 19:08:09.150 CET [562186][client backend] [pg_regress/pgp-info][34/35:0] STATEMENT: select pgp_key_id(dearmor(seckey)) from keytbl where id=4;
2024-11-25 19:08:09.152 CET [562186][client backend] [pg_regress/pgp-info][:0] LOG: disconnection: session time: 0:00:00.023 user=nkey database=regression_pgcrypto host=[local]
2024-11-25 19:08:09.157 CET [562169][client backend] [pg_regress/create_procedure][32/82:0] ERROR: procedure ptest9(numeric) does not exist at character 6
2024-11-25 19:08:09.157 CET [562169][client backend] [pg_regress/create_procedure][32/82:0] HINT: No procedure matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:09.157 CET [562169][client backend] [pg_regress/create_procedure][32/82:0] STATEMENT: CALL ptest9(1./0.);
2024-11-25 19:08:09.158 CET [562193][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.158 CET [562194][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.159 CET [562147][client backend] [pg_regress/pg_visibility][:0] LOG: disconnection: session time: 0:00:00.077 user=nkey database=regression_pg_visibility host=[local]
2024-11-25 19:08:09.159 CET [562193][client backend] [[unknown]][22/180:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.159 CET [562194][client backend] [[unknown]][17/141:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.159 CET [562193][client backend] [[unknown]][22/180:0] LOG: connection authorized: user=nkey database=regression_pgcrypto application_name=pg_regress/pgp-compression
2024-11-25 19:08:09.159 CET [562194][client backend] [[unknown]][17/141:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:09.161 CET [562169][client backend] [pg_regress/create_procedure][32/93:0] ERROR: procedure name "ptest10" is not unique
2024-11-25 19:08:09.161 CET [562169][client backend] [pg_regress/create_procedure][32/93:0] HINT: Specify the argument list to select the procedure unambiguously.
2024-11-25 19:08:09.161 CET [562169][client backend] [pg_regress/create_procedure][32/93:0] STATEMENT: drop procedure ptest10;
2024-11-25 19:08:09.161 CET [562169][client backend] [pg_regress/create_procedure][32/94:0] ERROR: procedure name "ptest10" is not unique
2024-11-25 19:08:09.161 CET [562169][client backend] [pg_regress/create_procedure][32/94:0] STATEMENT: drop procedure ptest10(int, int, int);
2024-11-25 19:08:09.162 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:09.165 CET [562149][client backend] [pg_regress/pg_trgm][36/333:529741] ERROR: value 0 out of bounds for option "siglen"
2024-11-25 19:08:09.165 CET [562149][client backend] [pg_regress/pg_trgm][36/333:529741] DETAIL: Valid values are between "1" and "2024".
2024-11-25 19:08:09.165 CET [562149][client backend] [pg_regress/pg_trgm][36/333:529741] STATEMENT: create index trgm_idx on test_trgm using gist (t gist_trgm_ops(siglen=0));
2024-11-25 19:08:09.166 CET [562149][client backend] [pg_regress/pg_trgm][36/334:529743] ERROR: value 2025 out of bounds for option "siglen"
2024-11-25 19:08:09.166 CET [562149][client backend] [pg_regress/pg_trgm][36/334:529743] DETAIL: Valid values are between "1" and "2024".
2024-11-25 19:08:09.166 CET [562149][client backend] [pg_regress/pg_trgm][36/334:529743] STATEMENT: create index trgm_idx on test_trgm using gist (t gist_trgm_ops(siglen=2025));
2024-11-25 19:08:09.166 CET [562169][client backend] [pg_regress/create_procedure][32/98:0] ERROR: version() is not a procedure at character 6
2024-11-25 19:08:09.166 CET [562169][client backend] [pg_regress/create_procedure][32/98:0] HINT: To call a function, use SELECT.
2024-11-25 19:08:09.166 CET [562169][client backend] [pg_regress/create_procedure][32/98:0] STATEMENT: CALL version();
2024-11-25 19:08:09.166 CET [562169][client backend] [pg_regress/create_procedure][32/99:0] ERROR: sum(integer) is not a procedure at character 6
2024-11-25 19:08:09.166 CET [562169][client backend] [pg_regress/create_procedure][32/99:0] HINT: To call a function, use SELECT.
2024-11-25 19:08:09.166 CET [562169][client backend] [pg_regress/create_procedure][32/99:0] STATEMENT: CALL sum(1);
2024-11-25 19:08:09.167 CET [562169][client backend] [pg_regress/create_procedure][32/100:0] ERROR: invalid attribute in procedure definition at character 40
2024-11-25 19:08:09.167 CET [562169][client backend] [pg_regress/create_procedure][32/100:0] STATEMENT: CREATE PROCEDURE ptestx() LANGUAGE SQL WINDOW AS $$ INSERT INTO cp_test VALUES (1, 'a') $$;
2024-11-25 19:08:09.167 CET [562169][client backend] [pg_regress/create_procedure][32/101:0] ERROR: invalid attribute in procedure definition at character 40
2024-11-25 19:08:09.167 CET [562169][client backend] [pg_regress/create_procedure][32/101:0] STATEMENT: CREATE PROCEDURE ptestx() LANGUAGE SQL STRICT AS $$ INSERT INTO cp_test VALUES (1, 'a') $$;
2024-11-25 19:08:09.167 CET [562169][client backend] [pg_regress/create_procedure][32/102:0] ERROR: VARIADIC parameter must be the last parameter at character 43
2024-11-25 19:08:09.167 CET [562169][client backend] [pg_regress/create_procedure][32/102:0] STATEMENT: CREATE PROCEDURE ptestx(a VARIADIC int[], b OUT int) LANGUAGE SQL
AS $$ SELECT a[1] $$;
2024-11-25 19:08:09.167 CET [562169][client backend] [pg_regress/create_procedure][32/103:0] ERROR: procedure OUT parameters cannot appear after one with a default value at character 43
2024-11-25 19:08:09.167 CET [562169][client backend] [pg_regress/create_procedure][32/103:0] STATEMENT: CREATE PROCEDURE ptestx(a int DEFAULT 42, b OUT int) LANGUAGE SQL
AS $$ SELECT a $$;
2024-11-25 19:08:09.167 CET [562169][client backend] [pg_regress/create_procedure][32/104:0] ERROR: invalid attribute in procedure definition at character 30
2024-11-25 19:08:09.167 CET [562169][client backend] [pg_regress/create_procedure][32/104:0] STATEMENT: ALTER PROCEDURE ptest1(text) STRICT;
2024-11-25 19:08:09.167 CET [562169][client backend] [pg_regress/create_procedure][32/105:0] ERROR: ptest1(text) is not a function
2024-11-25 19:08:09.167 CET [562169][client backend] [pg_regress/create_procedure][32/105:0] STATEMENT: ALTER FUNCTION ptest1(text) VOLATILE;
2024-11-25 19:08:09.167 CET [562169][client backend] [pg_regress/create_procedure][32/106:0] ERROR: cp_testfunc1(integer) is not a procedure
2024-11-25 19:08:09.167 CET [562169][client backend] [pg_regress/create_procedure][32/106:0] STATEMENT: ALTER PROCEDURE cp_testfunc1(int) VOLATILE;
2024-11-25 19:08:09.167 CET [562169][client backend] [pg_regress/create_procedure][32/107:0] ERROR: procedure nonexistent() does not exist
2024-11-25 19:08:09.167 CET [562169][client backend] [pg_regress/create_procedure][32/107:0] STATEMENT: ALTER PROCEDURE nonexistent() VOLATILE;
2024-11-25 19:08:09.167 CET [562169][client backend] [pg_regress/create_procedure][32/108:0] ERROR: ptest1(text) is not a function
2024-11-25 19:08:09.167 CET [562169][client backend] [pg_regress/create_procedure][32/108:0] STATEMENT: DROP FUNCTION ptest1(text);
2024-11-25 19:08:09.168 CET [562169][client backend] [pg_regress/create_procedure][32/109:0] ERROR: cp_testfunc1(integer) is not a procedure
2024-11-25 19:08:09.168 CET [562169][client backend] [pg_regress/create_procedure][32/109:0] STATEMENT: DROP PROCEDURE cp_testfunc1(int);
2024-11-25 19:08:09.168 CET [562169][client backend] [pg_regress/create_procedure][32/110:0] ERROR: procedure nonexistent() does not exist
2024-11-25 19:08:09.168 CET [562169][client backend] [pg_regress/create_procedure][32/110:0] STATEMENT: DROP PROCEDURE nonexistent();
2024-11-25 19:08:09.169 CET [562169][client backend] [pg_regress/create_procedure][32/115:0] ERROR: permission denied for procedure ptest1
2024-11-25 19:08:09.169 CET [562169][client backend] [pg_regress/create_procedure][32/115:0] STATEMENT: CALL ptest1('a');
2024-11-25 19:08:09.172 CET [562170][client backend] [pg_regress/create_table][25/203:0] ERROR: syntax error at or near "OIDS" at character 29
2024-11-25 19:08:09.172 CET [562170][client backend] [pg_regress/create_table][25/203:0] STATEMENT: CREATE TABLE withoid() WITH OIDS;
2024-11-25 19:08:09.172 CET [562170][client backend] [pg_regress/create_table][25/204:0] ERROR: tables declared WITH OIDS are not supported
2024-11-25 19:08:09.172 CET [562170][client backend] [pg_regress/create_table][25/204:0] STATEMENT: CREATE TABLE withoid() WITH (oids);
2024-11-25 19:08:09.172 CET [562170][client backend] [pg_regress/create_table][25/205:0] ERROR: tables declared WITH OIDS are not supported
2024-11-25 19:08:09.172 CET [562170][client backend] [pg_regress/create_table][25/205:0] STATEMENT: CREATE TABLE withoid() WITH (oids = true);
2024-11-25 19:08:09.174 CET [562169][client backend] [pg_regress/create_procedure][:0] LOG: disconnection: session time: 0:00:00.081 user=nkey database=regression host=[local]
2024-11-25 19:08:09.177 CET [562170][client backend] [pg_regress/create_table][25/210:529768] ERROR: cannot use column reference in DEFAULT expression at character 51
2024-11-25 19:08:09.177 CET [562170][client backend] [pg_regress/create_table][25/210:529768] STATEMENT: CREATE TABLE default_expr_column (id int DEFAULT (id));
2024-11-25 19:08:09.177 CET [562170][client backend] [pg_regress/create_table][25/211:529769] ERROR: cannot use column reference in DEFAULT expression at character 51
2024-11-25 19:08:09.177 CET [562170][client backend] [pg_regress/create_table][25/211:529769] STATEMENT: CREATE TABLE default_expr_column (id int DEFAULT (bar.id));
2024-11-25 19:08:09.178 CET [562170][client backend] [pg_regress/create_table][25/212:529770] ERROR: cannot use column reference in DEFAULT expression at character 59
2024-11-25 19:08:09.178 CET [562170][client backend] [pg_regress/create_table][25/212:529770] STATEMENT: CREATE TABLE default_expr_agg_column (id int DEFAULT (avg(id)));
2024-11-25 19:08:09.179 CET [562170][client backend] [pg_regress/create_table][25/213:529771] ERROR: cannot use column reference in DEFAULT expression at character 58
2024-11-25 19:08:09.179 CET [562170][client backend] [pg_regress/create_table][25/213:529771] STATEMENT: CREATE TABLE default_expr_non_column (a int DEFAULT (avg(non_existent)));
2024-11-25 19:08:09.180 CET [562170][client backend] [pg_regress/create_table][25/214:529772] ERROR: aggregate functions are not allowed in DEFAULT expressions at character 47
2024-11-25 19:08:09.180 CET [562170][client backend] [pg_regress/create_table][25/214:529772] STATEMENT: CREATE TABLE default_expr_agg (a int DEFAULT (avg(1)));
2024-11-25 19:08:09.180 CET [562170][client backend] [pg_regress/create_table][25/215:529774] ERROR: cannot use subquery in DEFAULT expression at character 46
2024-11-25 19:08:09.180 CET [562170][client backend] [pg_regress/create_table][25/215:529774] STATEMENT: CREATE TABLE default_expr_agg (a int DEFAULT (select 1));
2024-11-25 19:08:09.181 CET [562170][client backend] [pg_regress/create_table][25/216:529776] ERROR: set-returning functions are not allowed in DEFAULT expressions at character 47
2024-11-25 19:08:09.181 CET [562170][client backend] [pg_regress/create_table][25/216:529776] STATEMENT: CREATE TABLE default_expr_agg (a int DEFAULT (generate_series(1,3)));
2024-11-25 19:08:09.182 CET [562193][client backend] [pg_regress/pgp-compression][:0] LOG: disconnection: session time: 0:00:00.023 user=nkey database=regression_pgcrypto host=[local]
2024-11-25 19:08:09.189 CET [562170][client backend] [pg_regress/create_table][25/222:0] ERROR: cannot create partitioned table as inheritance child
2024-11-25 19:08:09.189 CET [562170][client backend] [pg_regress/create_table][25/222:0] STATEMENT: CREATE TABLE partitioned (
a int
) INHERITS (some_table) PARTITION BY LIST (a);
2024-11-25 19:08:09.189 CET [562170][client backend] [pg_regress/create_table][25/223:529786] ERROR: cannot use "list" partition strategy with more than one column
2024-11-25 19:08:09.189 CET [562170][client backend] [pg_regress/create_table][25/223:529786] STATEMENT: CREATE TABLE partitioned (
a1 int,
a2 int
) PARTITION BY LIST (a1, a2);
2024-11-25 19:08:09.191 CET [562170][client backend] [pg_regress/create_table][25/225:529788] ERROR: set-returning functions are not allowed in partition key expressions
2024-11-25 19:08:09.191 CET [562170][client backend] [pg_regress/create_table][25/225:529788] STATEMENT: CREATE TABLE partitioned (
a int
) PARTITION BY RANGE (retset(a));
2024-11-25 19:08:09.192 CET [562170][client backend] [pg_regress/create_table][25/227:529790] ERROR: aggregate functions are not allowed in partition key expressions
2024-11-25 19:08:09.192 CET [562170][client backend] [pg_regress/create_table][25/227:529790] STATEMENT: CREATE TABLE partitioned (
a int
) PARTITION BY RANGE ((avg(a)));
2024-11-25 19:08:09.193 CET [562170][client backend] [pg_regress/create_table][25/228:529792] ERROR: window functions are not allowed in partition key expressions
2024-11-25 19:08:09.193 CET [562170][client backend] [pg_regress/create_table][25/228:529792] STATEMENT: CREATE TABLE partitioned (
a int,
b int
) PARTITION BY RANGE ((avg(a) OVER (PARTITION BY b)));
2024-11-25 19:08:09.193 CET [562170][client backend] [pg_regress/create_table][25/229:529793] ERROR: cannot use subquery in partition key expression
2024-11-25 19:08:09.193 CET [562170][client backend] [pg_regress/create_table][25/229:529793] STATEMENT: CREATE TABLE partitioned (
a int
) PARTITION BY LIST ((a LIKE (SELECT 1)));
2024-11-25 19:08:09.194 CET [562170][client backend] [pg_regress/create_table][25/230:529795] ERROR: cannot use constant expression as partition key
2024-11-25 19:08:09.194 CET [562170][client backend] [pg_regress/create_table][25/230:529795] STATEMENT: CREATE TABLE partitioned (
a int
) PARTITION BY RANGE ((42));
2024-11-25 19:08:09.195 CET [562170][client backend] [pg_regress/create_table][25/232:529797] ERROR: cannot use constant expression as partition key
2024-11-25 19:08:09.195 CET [562170][client backend] [pg_regress/create_table][25/232:529797] STATEMENT: CREATE TABLE partitioned (
a int
) PARTITION BY RANGE (const_func());
2024-11-25 19:08:09.195 CET [562170][client backend] [pg_regress/create_table][25/234:0] ERROR: unrecognized partitioning strategy "magic" at character 53
2024-11-25 19:08:09.195 CET [562170][client backend] [pg_regress/create_table][25/234:0] STATEMENT: CREATE TABLE partitioned (
a int
) PARTITION BY MAGIC (a);
2024-11-25 19:08:09.195 CET [562170][client backend] [pg_regress/create_table][25/235:529800] ERROR: column "b" named in partition key does not exist at character 57
2024-11-25 19:08:09.195 CET [562170][client backend] [pg_regress/create_table][25/235:529800] STATEMENT: CREATE TABLE partitioned (
a int
) PARTITION BY RANGE (b);
2024-11-25 19:08:09.196 CET [562170][client backend] [pg_regress/create_table][25/236:529801] ERROR: cannot use system column "xmin" in partition key at character 57
2024-11-25 19:08:09.196 CET [562170][client backend] [pg_regress/create_table][25/236:529801] STATEMENT: CREATE TABLE partitioned (
a int
) PARTITION BY RANGE (xmin);
2024-11-25 19:08:09.196 CET [562170][client backend] [pg_regress/create_table][25/237:529802] ERROR: partition key column 1 has pseudo-type record
2024-11-25 19:08:09.196 CET [562170][client backend] [pg_regress/create_table][25/237:529802] STATEMENT: CREATE TABLE partitioned (
a int,
b int
) PARTITION BY RANGE (((a, b)));
2024-11-25 19:08:09.197 CET [562170][client backend] [pg_regress/create_table][25/238:529803] ERROR: partition key column 2 has pseudo-type unknown
2024-11-25 19:08:09.197 CET [562170][client backend] [pg_regress/create_table][25/238:529803] STATEMENT: CREATE TABLE partitioned (
a int,
b int
) PARTITION BY RANGE (a, ('unknown'));
2024-11-25 19:08:09.198 CET [562170][client backend] [pg_regress/create_table][25/240:529805] ERROR: functions in partition key expression must be marked IMMUTABLE
2024-11-25 19:08:09.198 CET [562170][client backend] [pg_regress/create_table][25/240:529805] STATEMENT: CREATE TABLE partitioned (
a int
) PARTITION BY RANGE (immut_func(a));
2024-11-25 19:08:09.199 CET [562170][client backend] [pg_regress/create_table][25/242:529808] ERROR: data type point has no default operator class for access method "btree"
2024-11-25 19:08:09.199 CET [562170][client backend] [pg_regress/create_table][25/242:529808] HINT: You must specify a btree operator class or define a default btree operator class for the data type.
2024-11-25 19:08:09.199 CET [562170][client backend] [pg_regress/create_table][25/242:529808] STATEMENT: CREATE TABLE partitioned (
a point
) PARTITION BY LIST (a);
2024-11-25 19:08:09.200 CET [562170][client backend] [pg_regress/create_table][25/243:529809] ERROR: operator class "point_ops" does not exist for access method "btree"
2024-11-25 19:08:09.200 CET [562170][client backend] [pg_regress/create_table][25/243:529809] STATEMENT: CREATE TABLE partitioned (
a point
) PARTITION BY LIST (a point_ops);
2024-11-25 19:08:09.200 CET [562170][client backend] [pg_regress/create_table][25/244:529810] ERROR: data type point has no default operator class for access method "btree"
2024-11-25 19:08:09.200 CET [562170][client backend] [pg_regress/create_table][25/244:529810] HINT: You must specify a btree operator class or define a default btree operator class for the data type.
2024-11-25 19:08:09.200 CET [562170][client backend] [pg_regress/create_table][25/244:529810] STATEMENT: CREATE TABLE partitioned (
a point
) PARTITION BY RANGE (a);
2024-11-25 19:08:09.202 CET [562170][client backend] [pg_regress/create_table][25/245:529811] ERROR: operator class "point_ops" does not exist for access method "btree"
2024-11-25 19:08:09.202 CET [562170][client backend] [pg_regress/create_table][25/245:529811] STATEMENT: CREATE TABLE partitioned (
a point
) PARTITION BY RANGE (a point_ops);
2024-11-25 19:08:09.202 CET [562170][client backend] [pg_regress/create_table][25/246:529812] ERROR: cannot add NO INHERIT constraint to partitioned table "partitioned"
2024-11-25 19:08:09.202 CET [562170][client backend] [pg_regress/create_table][25/246:529812] STATEMENT: CREATE TABLE partitioned (
a int,
CONSTRAINT check_a CHECK (a > 0) NO INHERIT
) PARTITION BY RANGE (a);
2024-11-25 19:08:09.204 CET [562170][client backend] [pg_regress/create_table][25/250:529815] ERROR: cannot drop function plusone(integer) because other objects depend on it
2024-11-25 19:08:09.204 CET [562170][client backend] [pg_regress/create_table][25/250:529815] DETAIL: table partitioned depends on function plusone(integer)
2024-11-25 19:08:09.204 CET [562170][client backend] [pg_regress/create_table][25/250:529815] HINT: Use DROP ... CASCADE to drop the dependent objects too.
2024-11-25 19:08:09.204 CET [562170][client backend] [pg_regress/create_table][25/250:529815] STATEMENT: DROP FUNCTION plusone(int);
2024-11-25 19:08:09.205 CET [562170][client backend] [pg_regress/create_table][25/252:0] ERROR: cannot inherit from partitioned table "partitioned2"
2024-11-25 19:08:09.205 CET [562170][client backend] [pg_regress/create_table][25/252:0] STATEMENT: CREATE TABLE fail () INHERITS (partitioned2);
2024-11-25 19:08:09.207 CET [562204][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.208 CET [562204][client backend] [[unknown]][35/38:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.208 CET [562204][client backend] [[unknown]][35/38:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:09.221 CET [562208][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.221 CET [562208][client backend] [[unknown]][27/158:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.221 CET [562208][client backend] [[unknown]][27/158:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:09.225 CET [562170][client backend] [pg_regress/create_table][25/276:0] ERROR: no partition of relation "partitioned2" found for row
2024-11-25 19:08:09.225 CET [562170][client backend] [pg_regress/create_table][25/276:0] DETAIL: Partition key of the failing row contains ((a + 1), substr(b, 1, 5)) = (2, hello).
2024-11-25 19:08:09.225 CET [562170][client backend] [pg_regress/create_table][25/276:0] STATEMENT: INSERT INTO partitioned2 VALUES (1, 'hello');
2024-11-25 19:08:09.254 CET [562209][autovacuum worker] LOG: automatic analyze of table "regression_pg_visibility.pg_catalog.pg_authid"
avg read rate: 1.116 MB/s, avg write rate: 14.509 MB/s
buffer usage: 568 hits, 1 reads, 13 dirtied
WAL usage: 43 records, 10 full page images, 79748 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:09.255 CET [562209][autovacuum worker] LOG: automatic vacuum of table "regression_pg_visibility.pg_catalog.pg_db_role_setting": index scans: 1
pages: 0 removed, 6 remain, 6 scanned (100.00% of total)
tuples: 6 removed, 127 remain, 60 are dead but not yet removable
removable cutoff: 527798, which was 2054 XIDs old when operation ended
new relfrozenxid: 525686, which is 524952 XIDs ahead of previous value
new relminmxid: 2904, which is 2903 MXIDs ahead of previous value
frozen: 0 pages from table (0.00% of total) had 0 tuples frozen
index scan needed: 1 pages from table (16.67% of total) had 1 dead item identifiers removed
index "pg_db_role_setting_databaseid_rol_index": pages: 2 in total, 0 newly deleted, 0 currently deleted, 0 reusable
avg read rate: 0.000 MB/s, avg write rate: 211.149 MB/s
buffer usage: 40 hits, 0 reads, 6 dirtied
WAL usage: 9 records, 6 full page images, 38064 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:09.255 CET [562170][client backend] [pg_regress/create_table][25/311:529852] ERROR: cannot drop column "a" because it is part of the partition key of relation "partitioned"
2024-11-25 19:08:09.255 CET [562170][client backend] [pg_regress/create_table][25/311:529852] STATEMENT: alter table partitioned drop column a;
2024-11-25 19:08:09.256 CET [562170][client backend] [pg_regress/create_table][25/312:529853] ERROR: cannot drop type intdom1 because other objects depend on it
2024-11-25 19:08:09.256 CET [562170][client backend] [pg_regress/create_table][25/312:529853] DETAIL: table partitioned depends on type intdom1
2024-11-25 19:08:09.256 CET [562170][client backend] [pg_regress/create_table][25/312:529853] HINT: Use DROP ... CASCADE to drop the dependent objects too.
2024-11-25 19:08:09.256 CET [562170][client backend] [pg_regress/create_table][25/312:529853] STATEMENT: drop domain intdom1;
2024-11-25 19:08:09.256 CET [562170][client backend] [pg_regress/create_table][25/314:0] ERROR: relation "partitioned" does not exist at character 7
2024-11-25 19:08:09.256 CET [562170][client backend] [pg_regress/create_table][25/314:0] STATEMENT: table partitioned;
2024-11-25 19:08:09.258 CET [562170][client backend] [pg_regress/create_table][25/317:529857] ERROR: cannot drop column "a" because it is part of the partition key of relation "partitioned"
2024-11-25 19:08:09.258 CET [562170][client backend] [pg_regress/create_table][25/317:529857] STATEMENT: alter table partitioned drop column a;
2024-11-25 19:08:09.258 CET [562170][client backend] [pg_regress/create_table][25/318:529858] ERROR: cannot drop type intdom1 because other objects depend on it
2024-11-25 19:08:09.258 CET [562170][client backend] [pg_regress/create_table][25/318:529858] DETAIL: table partitioned depends on type intdom1
2024-11-25 19:08:09.258 CET [562170][client backend] [pg_regress/create_table][25/318:529858] HINT: Use DROP ... CASCADE to drop the dependent objects too.
2024-11-25 19:08:09.258 CET [562170][client backend] [pg_regress/create_table][25/318:529858] STATEMENT: drop domain intdom1;
2024-11-25 19:08:09.259 CET [562170][client backend] [pg_regress/create_table][25/320:0] ERROR: relation "partitioned" does not exist at character 7
2024-11-25 19:08:09.259 CET [562170][client backend] [pg_regress/create_table][25/320:0] STATEMENT: table partitioned;
2024-11-25 19:08:09.259 CET [562209][autovacuum worker] LOG: automatic analyze of table "regression_pg_visibility.pg_catalog.pg_db_role_setting"
avg read rate: 0.000 MB/s, avg write rate: 1.562 MB/s
buffer usage: 167 hits, 0 reads, 1 dirtied
WAL usage: 9 records, 1 full page images, 10347 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:09.260 CET [562209][autovacuum worker] LOG: automatic vacuum of table "regression_pg_visibility.pg_catalog.pg_shdepend": index scans: 1
pages: 0 removed, 2 remain, 2 scanned (100.00% of total)
tuples: 36 removed, 23 remain, 15 are dead but not yet removable
removable cutoff: 527798, which was 2067 XIDs old when operation ended
new relfrozenxid: 527244, which is 526510 XIDs ahead of previous value
new relminmxid: 2904, which is 2903 MXIDs ahead of previous value
frozen: 0 pages from table (0.00% of total) had 0 tuples frozen
index scan needed: 2 pages from table (100.00% of total) had 36 dead item identifiers removed
index "pg_shdepend_depender_index": pages: 8 in total, 0 newly deleted, 4 currently deleted, 4 reusable
index "pg_shdepend_reference_index": pages: 2 in total, 0 newly deleted, 0 currently deleted, 0 reusable
avg read rate: 89.627 MB/s, avg write rate: 44.814 MB/s
buffer usage: 87 hits, 6 reads, 3 dirtied
WAL usage: 10 records, 2 full page images, 10553 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:09.264 CET [561023][checkpointer] LOG: checkpoint complete: wrote 4535 buffers (27.7%), wrote 2 SLRU buffers; 0 WAL file(s) added, 0 removed, 2 recycled; write=0.097 s, sync=0.001 s, total=0.103 s; sync files=0, longest=0.000 s, average=0.000 s; distance=23186 kB, estimate=23186 kB; lsn=4/4C60B6B0, redo lsn=4/4C245940
2024-11-25 19:08:09.265 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:09.270 CET [562170][client backend] [pg_regress/create_table][25/338:529870] ERROR: cannot use column reference in partition bound expression at character 75
2024-11-25 19:08:09.270 CET [562170][client backend] [pg_regress/create_table][25/338:529870] STATEMENT: CREATE TABLE part_bogus_expr_fail PARTITION OF list_parted FOR VALUES IN (somename);
2024-11-25 19:08:09.270 CET [562170][client backend] [pg_regress/create_table][25/339:529871] ERROR: cannot use column reference in partition bound expression at character 75
2024-11-25 19:08:09.270 CET [562170][client backend] [pg_regress/create_table][25/339:529871] STATEMENT: CREATE TABLE part_bogus_expr_fail PARTITION OF list_parted FOR VALUES IN (somename.somename);
2024-11-25 19:08:09.271 CET [562170][client backend] [pg_regress/create_table][25/340:529872] ERROR: cannot use column reference in partition bound expression at character 75
2024-11-25 19:08:09.271 CET [562170][client backend] [pg_regress/create_table][25/340:529872] STATEMENT: CREATE TABLE part_bogus_expr_fail PARTITION OF list_parted FOR VALUES IN (a);
2024-11-25 19:08:09.271 CET [562170][client backend] [pg_regress/create_table][25/341:529874] ERROR: cannot use column reference in partition bound expression at character 79
2024-11-25 19:08:09.271 CET [562170][client backend] [pg_regress/create_table][25/341:529874] STATEMENT: CREATE TABLE part_bogus_expr_fail PARTITION OF list_parted FOR VALUES IN (sum(a));
2024-11-25 19:08:09.272 CET [562170][client backend] [pg_regress/create_table][25/342:529875] ERROR: cannot use column reference in partition bound expression at character 79
2024-11-25 19:08:09.272 CET [562170][client backend] [pg_regress/create_table][25/342:529875] STATEMENT: CREATE TABLE part_bogus_expr_fail PARTITION OF list_parted FOR VALUES IN (sum(somename));
2024-11-25 19:08:09.272 CET [562170][client backend] [pg_regress/create_table][25/343:529877] ERROR: aggregate functions are not allowed in partition bound at character 75
2024-11-25 19:08:09.272 CET [562170][client backend] [pg_regress/create_table][25/343:529877] STATEMENT: CREATE TABLE part_bogus_expr_fail PARTITION OF list_parted FOR VALUES IN (sum(1));
2024-11-25 19:08:09.273 CET [562170][client backend] [pg_regress/create_table][25/344:529878] ERROR: cannot use subquery in partition bound at character 75
2024-11-25 19:08:09.273 CET [562170][client backend] [pg_regress/create_table][25/344:529878] STATEMENT: CREATE TABLE part_bogus_expr_fail PARTITION OF list_parted FOR VALUES IN ((select 1));
2024-11-25 19:08:09.273 CET [562170][client backend] [pg_regress/create_table][25/345:529880] ERROR: set-returning functions are not allowed in partition bound at character 75
2024-11-25 19:08:09.273 CET [562170][client backend] [pg_regress/create_table][25/345:529880] STATEMENT: CREATE TABLE part_bogus_expr_fail PARTITION OF list_parted FOR VALUES IN (generate_series(4, 6));
2024-11-25 19:08:09.274 CET [562170][client backend] [pg_regress/create_table][25/346:529881] ERROR: collations are not supported by type integer at character 81
2024-11-25 19:08:09.274 CET [562170][client backend] [pg_regress/create_table][25/346:529881] STATEMENT: CREATE TABLE part_bogus_expr_fail PARTITION OF list_parted FOR VALUES IN ((1+1) collate "POSIX");
2024-11-25 19:08:09.274 CET [562170][client backend] [pg_regress/create_table][25/347:0] ERROR: syntax error at or near ")" at character 64
2024-11-25 19:08:09.274 CET [562170][client backend] [pg_regress/create_table][25/347:0] STATEMENT: CREATE TABLE fail_part PARTITION OF list_parted FOR VALUES IN ();
2024-11-25 19:08:09.274 CET [562170][client backend] [pg_regress/create_table][25/348:529882] ERROR: invalid bound specification for a list partition at character 60
2024-11-25 19:08:09.274 CET [562170][client backend] [pg_regress/create_table][25/348:529882] STATEMENT: CREATE TABLE fail_part PARTITION OF list_parted FOR VALUES FROM (1) TO (2);
2024-11-25 19:08:09.275 CET [562170][client backend] [pg_regress/create_table][25/349:529883] ERROR: invalid bound specification for a list partition at character 60
2024-11-25 19:08:09.275 CET [562170][client backend] [pg_regress/create_table][25/349:529883] STATEMENT: CREATE TABLE fail_part PARTITION OF list_parted FOR VALUES WITH (MODULUS 10, REMAINDER 1);
2024-11-25 19:08:09.276 CET [562170][client backend] [pg_regress/create_table][25/351:529886] ERROR: partition "fail_default_part" conflicts with existing default partition "part_default" at character 57
2024-11-25 19:08:09.276 CET [562170][client backend] [pg_regress/create_table][25/351:529886] STATEMENT: CREATE TABLE fail_default_part PARTITION OF list_parted DEFAULT;
2024-11-25 19:08:09.277 CET [562170][client backend] [pg_regress/create_table][25/353:529888] ERROR: specified value cannot be cast to type boolean for column "a" at character 59
2024-11-25 19:08:09.277 CET [562170][client backend] [pg_regress/create_table][25/353:529888] STATEMENT: CREATE TABLE bools_true PARTITION OF bools FOR VALUES IN (1);
2024-11-25 19:08:09.283 CET [562170][client backend] [pg_regress/create_table][25/362:529900] ERROR: partition "bigintp_10_2" would overlap partition "bigintp_10" at character 63
2024-11-25 19:08:09.283 CET [562170][client backend] [pg_regress/create_table][25/362:529900] STATEMENT: CREATE TABLE bigintp_10_2 PARTITION OF bigintp FOR VALUES IN ('10');
2024-11-25 19:08:09.285 CET [562170][client backend] [pg_regress/create_table][25/365:529903] ERROR: cannot use column reference in partition bound expression at character 80
2024-11-25 19:08:09.285 CET [562170][client backend] [pg_regress/create_table][25/365:529903] STATEMENT: CREATE TABLE part_bogus_expr_fail PARTITION OF range_parted
FOR VALUES FROM (somename) TO ('2019-01-01');
2024-11-25 19:08:09.286 CET [562170][client backend] [pg_regress/create_table][25/366:529905] ERROR: cannot use column reference in partition bound expression at character 80
2024-11-25 19:08:09.286 CET [562170][client backend] [pg_regress/create_table][25/366:529905] STATEMENT: CREATE TABLE part_bogus_expr_fail PARTITION OF range_parted
FOR VALUES FROM (somename.somename) TO ('2019-01-01');
2024-11-25 19:08:09.286 CET [562170][client backend] [pg_regress/create_table][25/367:529906] ERROR: cannot use column reference in partition bound expression at character 80
2024-11-25 19:08:09.286 CET [562170][client backend] [pg_regress/create_table][25/367:529906] STATEMENT: CREATE TABLE part_bogus_expr_fail PARTITION OF range_parted
FOR VALUES FROM (a) TO ('2019-01-01');
2024-11-25 19:08:09.286 CET [562170][client backend] [pg_regress/create_table][25/368:529907] ERROR: cannot use column reference in partition bound expression at character 84
2024-11-25 19:08:09.286 CET [562170][client backend] [pg_regress/create_table][25/368:529907] STATEMENT: CREATE TABLE part_bogus_expr_fail PARTITION OF range_parted
FOR VALUES FROM (max(a)) TO ('2019-01-01');
2024-11-25 19:08:09.287 CET [562170][client backend] [pg_regress/create_table][25/369:529908] ERROR: cannot use column reference in partition bound expression at character 84
2024-11-25 19:08:09.287 CET [562170][client backend] [pg_regress/create_table][25/369:529908] STATEMENT: CREATE TABLE part_bogus_expr_fail PARTITION OF range_parted
FOR VALUES FROM (max(somename)) TO ('2019-01-01');
2024-11-25 19:08:09.287 CET [562170][client backend] [pg_regress/create_table][25/370:529909] ERROR: aggregate functions are not allowed in partition bound at character 80
2024-11-25 19:08:09.287 CET [562170][client backend] [pg_regress/create_table][25/370:529909] STATEMENT: CREATE TABLE part_bogus_expr_fail PARTITION OF range_parted
FOR VALUES FROM (max('2019-02-01'::date)) TO ('2019-01-01');
2024-11-25 19:08:09.288 CET [562170][client backend] [pg_regress/create_table][25/371:529910] ERROR: cannot use subquery in partition bound at character 80
2024-11-25 19:08:09.288 CET [562170][client backend] [pg_regress/create_table][25/371:529910] STATEMENT: CREATE TABLE part_bogus_expr_fail PARTITION OF range_parted
FOR VALUES FROM ((select 1)) TO ('2019-01-01');
2024-11-25 19:08:09.288 CET [562170][client backend] [pg_regress/create_table][25/372:529911] ERROR: set-returning functions are not allowed in partition bound at character 80
2024-11-25 19:08:09.288 CET [562170][client backend] [pg_regress/create_table][25/372:529911] STATEMENT: CREATE TABLE part_bogus_expr_fail PARTITION OF range_parted
FOR VALUES FROM (generate_series(1, 3)) TO ('2019-01-01');
2024-11-25 19:08:09.289 CET [562170][client backend] [pg_regress/create_table][25/373:529912] ERROR: invalid bound specification for a range partition at character 61
2024-11-25 19:08:09.289 CET [562170][client backend] [pg_regress/create_table][25/373:529912] STATEMENT: CREATE TABLE fail_part PARTITION OF range_parted FOR VALUES IN ('a');
2024-11-25 19:08:09.289 CET [562170][client backend] [pg_regress/create_table][25/374:529913] ERROR: invalid bound specification for a range partition at character 61
2024-11-25 19:08:09.289 CET [562170][client backend] [pg_regress/create_table][25/374:529913] STATEMENT: CREATE TABLE fail_part PARTITION OF range_parted FOR VALUES WITH (MODULUS 10, REMAINDER 1);
2024-11-25 19:08:09.290 CET [562170][client backend] [pg_regress/create_table][25/375:529914] ERROR: FROM must specify exactly one value per partitioning column
2024-11-25 19:08:09.290 CET [562170][client backend] [pg_regress/create_table][25/375:529914] STATEMENT: CREATE TABLE fail_part PARTITION OF range_parted FOR VALUES FROM ('a', 1) TO ('z');
2024-11-25 19:08:09.290 CET [561023][checkpointer] LOG: checkpoint complete: wrote 718 buffers (4.4%), wrote 2 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.023 s, sync=0.001 s, total=0.025 s; sync files=0, longest=0.000 s, average=0.000 s; distance=4018 kB, estimate=21269 kB; lsn=4/4C6CEDA8, redo lsn=4/4C632260
2024-11-25 19:08:09.291 CET [562170][client backend] [pg_regress/create_table][25/376:529915] ERROR: TO must specify exactly one value per partitioning column
2024-11-25 19:08:09.291 CET [562170][client backend] [pg_regress/create_table][25/376:529915] STATEMENT: CREATE TABLE fail_part PARTITION OF range_parted FOR VALUES FROM ('a') TO ('z', 1);
2024-11-25 19:08:09.291 CET [562170][client backend] [pg_regress/create_table][25/377:529917] ERROR: cannot specify NULL in range bound
2024-11-25 19:08:09.291 CET [562170][client backend] [pg_regress/create_table][25/377:529917] STATEMENT: CREATE TABLE fail_part PARTITION OF range_parted FOR VALUES FROM (null) TO (maxvalue);
2024-11-25 19:08:09.292 CET [562170][client backend] [pg_regress/create_table][25/378:529919] ERROR: invalid bound specification for a range partition at character 61
2024-11-25 19:08:09.292 CET [562170][client backend] [pg_regress/create_table][25/378:529919] STATEMENT: CREATE TABLE fail_part PARTITION OF range_parted FOR VALUES WITH (MODULUS 10, REMAINDER 1);
2024-11-25 19:08:09.296 CET [562170][client backend] [pg_regress/create_table][25/384:529927] ERROR: every hash partition modulus must be a factor of the next larger modulus
2024-11-25 19:08:09.296 CET [562170][client backend] [pg_regress/create_table][25/384:529927] DETAIL: The new modulus 25 is not divisible by 10, the modulus of existing partition "hpart_4".
2024-11-25 19:08:09.296 CET [562170][client backend] [pg_regress/create_table][25/384:529927] STATEMENT: CREATE TABLE fail_part PARTITION OF hash_parted FOR VALUES WITH (MODULUS 25, REMAINDER 3);
2024-11-25 19:08:09.296 CET [562170][client backend] [pg_regress/create_table][25/385:529928] ERROR: every hash partition modulus must be a factor of the next larger modulus
2024-11-25 19:08:09.296 CET [562170][client backend] [pg_regress/create_table][25/385:529928] DETAIL: The new modulus 150 is not a factor of 200, the modulus of existing partition "hpart_3".
2024-11-25 19:08:09.296 CET [562170][client backend] [pg_regress/create_table][25/385:529928] STATEMENT: CREATE TABLE fail_part PARTITION OF hash_parted FOR VALUES WITH (MODULUS 150, REMAINDER 3);
2024-11-25 19:08:09.297 CET [562170][client backend] [pg_regress/create_table][25/386:529929] ERROR: partition "fail_part" would overlap partition "hpart_4" at character 60
2024-11-25 19:08:09.297 CET [562170][client backend] [pg_regress/create_table][25/386:529929] STATEMENT: CREATE TABLE fail_part PARTITION OF hash_parted FOR VALUES WITH (MODULUS 100, REMAINDER 3);
2024-11-25 19:08:09.297 CET [562170][client backend] [pg_regress/create_table][25/387:529930] ERROR: invalid bound specification for a hash partition at character 60
2024-11-25 19:08:09.297 CET [562170][client backend] [pg_regress/create_table][25/387:529930] STATEMENT: CREATE TABLE fail_part PARTITION OF hash_parted FOR VALUES FROM ('a', 1) TO ('z');
2024-11-25 19:08:09.298 CET [562170][client backend] [pg_regress/create_table][25/388:529931] ERROR: invalid bound specification for a hash partition at character 60
2024-11-25 19:08:09.298 CET [562170][client backend] [pg_regress/create_table][25/388:529931] STATEMENT: CREATE TABLE fail_part PARTITION OF hash_parted FOR VALUES IN (1000);
2024-11-25 19:08:09.298 CET [562170][client backend] [pg_regress/create_table][25/389:529932] ERROR: a hash-partitioned table may not have a default partition
2024-11-25 19:08:09.298 CET [562170][client backend] [pg_regress/create_table][25/389:529932] STATEMENT: CREATE TABLE fail_default_part PARTITION OF hash_parted DEFAULT;
2024-11-25 19:08:09.299 CET [562170][client backend] [pg_regress/create_table][25/391:529934] ERROR: "unparted" is not partitioned
2024-11-25 19:08:09.299 CET [562170][client backend] [pg_regress/create_table][25/391:529934] STATEMENT: CREATE TABLE fail_part PARTITION OF unparted FOR VALUES IN ('a');
2024-11-25 19:08:09.300 CET [562170][client backend] [pg_regress/create_table][25/392:529935] ERROR: "unparted" is not partitioned
2024-11-25 19:08:09.300 CET [562170][client backend] [pg_regress/create_table][25/392:529935] STATEMENT: CREATE TABLE fail_part PARTITION OF unparted FOR VALUES WITH (MODULUS 2, REMAINDER 1);
2024-11-25 19:08:09.301 CET [562170][client backend] [pg_regress/create_table][25/395:529940] ERROR: cannot create a permanent relation as partition of temporary relation "temp_parted"
2024-11-25 19:08:09.301 CET [562170][client backend] [pg_regress/create_table][25/395:529940] STATEMENT: CREATE TABLE fail_part PARTITION OF temp_parted FOR VALUES IN ('a');
2024-11-25 19:08:09.302 CET [562194][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.144 user=nkey database=postgres host=[local]
2024-11-25 19:08:09.305 CET [562212][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.305 CET [562212][client backend] [[unknown]][44/29:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.305 CET [562212][client backend] [[unknown]][44/29:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:09.308 CET [562170][client backend] [pg_regress/create_table][25/401:529948] ERROR: partition "fail_part" would overlap partition "part_null_z" at character 65
2024-11-25 19:08:09.308 CET [562170][client backend] [pg_regress/create_table][25/401:529948] STATEMENT: CREATE TABLE fail_part PARTITION OF list_parted2 FOR VALUES IN (null);
2024-11-25 19:08:09.308 CET [562170][client backend] [pg_regress/create_table][25/402:529949] ERROR: partition "fail_part" would overlap partition "part_ab" at character 65
2024-11-25 19:08:09.308 CET [562170][client backend] [pg_regress/create_table][25/402:529949] STATEMENT: CREATE TABLE fail_part PARTITION OF list_parted2 FOR VALUES IN ('b', 'c');
2024-11-25 19:08:09.309 CET [562170][client backend] [pg_regress/create_table][25/404:529951] ERROR: updated partition constraint for default partition "list_parted2_def" would be violated by some row
2024-11-25 19:08:09.309 CET [562170][client backend] [pg_regress/create_table][25/404:529951] STATEMENT: CREATE TABLE fail_part PARTITION OF list_parted2 FOR VALUES IN ('W', 'X', 'Y');
2024-11-25 19:08:09.310 CET [562170][client backend] [pg_regress/create_table][25/406:529954] ERROR: empty range bound specified for partition "fail_part" at character 68
2024-11-25 19:08:09.310 CET [562170][client backend] [pg_regress/create_table][25/406:529954] DETAIL: Specified lower bound (1) is greater than or equal to upper bound (0).
2024-11-25 19:08:09.310 CET [562170][client backend] [pg_regress/create_table][25/406:529954] STATEMENT: CREATE TABLE fail_part PARTITION OF range_parted2 FOR VALUES FROM (1) TO (0);
2024-11-25 19:08:09.311 CET [562170][client backend] [pg_regress/create_table][25/407:529955] ERROR: empty range bound specified for partition "fail_part" at character 68
2024-11-25 19:08:09.311 CET [562170][client backend] [pg_regress/create_table][25/407:529955] DETAIL: Specified lower bound (1) is greater than or equal to upper bound (1).
2024-11-25 19:08:09.311 CET [562170][client backend] [pg_regress/create_table][25/407:529955] STATEMENT: CREATE TABLE fail_part PARTITION OF range_parted2 FOR VALUES FROM (1) TO (1);
2024-11-25 19:08:09.312 CET [562170][client backend] [pg_regress/create_table][25/409:529959] ERROR: partition "fail_part" would overlap partition "part0" at character 68
2024-11-25 19:08:09.312 CET [562170][client backend] [pg_regress/create_table][25/409:529959] STATEMENT: CREATE TABLE fail_part PARTITION OF range_parted2 FOR VALUES FROM (minvalue) TO (2);
2024-11-25 19:08:09.314 CET [562170][client backend] [pg_regress/create_table][25/411:529962] ERROR: partition "fail_part" would overlap partition "part0" at character 68
2024-11-25 19:08:09.314 CET [562170][client backend] [pg_regress/create_table][25/411:529962] STATEMENT: CREATE TABLE fail_part PARTITION OF range_parted2 FOR VALUES FROM (-1) TO (1);
2024-11-25 19:08:09.314 CET [562170][client backend] [pg_regress/create_table][25/412:529963] ERROR: partition "fail_part" would overlap partition "part1" at character 68
2024-11-25 19:08:09.314 CET [562170][client backend] [pg_regress/create_table][25/412:529963] STATEMENT: CREATE TABLE fail_part PARTITION OF range_parted2 FOR VALUES FROM (9) TO (maxvalue);
2024-11-25 19:08:09.317 CET [562170][client backend] [pg_regress/create_table][25/415:529967] ERROR: partition "fail_part" would overlap partition "part2" at character 76
2024-11-25 19:08:09.317 CET [562170][client backend] [pg_regress/create_table][25/415:529967] STATEMENT: CREATE TABLE fail_part PARTITION OF range_parted2 FOR VALUES FROM (10) TO (30);
2024-11-25 19:08:09.317 CET [562170][client backend] [pg_regress/create_table][25/416:529968] ERROR: partition "fail_part" would overlap partition "part2" at character 76
2024-11-25 19:08:09.317 CET [562170][client backend] [pg_regress/create_table][25/416:529968] STATEMENT: CREATE TABLE fail_part PARTITION OF range_parted2 FOR VALUES FROM (10) TO (50);
2024-11-25 19:08:09.319 CET [562170][client backend] [pg_regress/create_table][25/418:529970] ERROR: partition "fail_default_part" conflicts with existing default partition "range2_default" at character 59
2024-11-25 19:08:09.319 CET [562170][client backend] [pg_regress/create_table][25/418:529970] STATEMENT: CREATE TABLE fail_default_part PARTITION OF range_parted2 DEFAULT;
2024-11-25 19:08:09.320 CET [562170][client backend] [pg_regress/create_table][25/420:529972] ERROR: updated partition constraint for default partition "range2_default" would be violated by some row
2024-11-25 19:08:09.320 CET [562170][client backend] [pg_regress/create_table][25/420:529972] STATEMENT: CREATE TABLE fail_part PARTITION OF range_parted2 FOR VALUES FROM (80) TO (90);
2024-11-25 19:08:09.323 CET [562170][client backend] [pg_regress/create_table][25/424:529977] ERROR: partition "fail_part" would overlap partition "part00" at character 68
2024-11-25 19:08:09.323 CET [562170][client backend] [pg_regress/create_table][25/424:529977] STATEMENT: CREATE TABLE fail_part PARTITION OF range_parted3 FOR VALUES FROM (0, minvalue) TO (0, 1);
2024-11-25 19:08:09.324 CET [562208][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.103 user=nkey database=postgres host=[local]
2024-11-25 19:08:09.325 CET [562204][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.117 user=nkey database=postgres host=[local]
2024-11-25 19:08:09.326 CET [562170][client backend] [pg_regress/create_table][25/428:529983] ERROR: partition "fail_part" would overlap partition "part12" at character 71
2024-11-25 19:08:09.326 CET [562170][client backend] [pg_regress/create_table][25/428:529983] STATEMENT: CREATE TABLE fail_part PARTITION OF range_parted3 FOR VALUES FROM (1, 10) TO (1, 20);
2024-11-25 19:08:09.327 CET [562217][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.327 CET [562218][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.328 CET [562217][client backend] [[unknown]][14/299:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.328 CET [562217][client backend] [[unknown]][14/299:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:09.328 CET [562218][client backend] [[unknown]][40/45:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.328 CET [562218][client backend] [[unknown]][40/45:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:09.328 CET [562170][client backend] [pg_regress/create_table][25/430:529986] ERROR: partition "fail_part" would overlap partition "part10" at character 68
2024-11-25 19:08:09.328 CET [562170][client backend] [pg_regress/create_table][25/430:529986] STATEMENT: CREATE TABLE fail_part PARTITION OF range_parted3 FOR VALUES FROM (1, minvalue) TO (1, maxvalue);
2024-11-25 19:08:09.334 CET [562212][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.029 user=nkey database=postgres host=[local]
2024-11-25 19:08:09.337 CET [562170][client backend] [pg_regress/create_table][25/436:529997] ERROR: partition "fail_part" would overlap partition "h2part_4" at character 61
2024-11-25 19:08:09.337 CET [562170][client backend] [pg_regress/create_table][25/436:529997] STATEMENT: CREATE TABLE fail_part PARTITION OF hash_parted2 FOR VALUES WITH (MODULUS 2, REMAINDER 1);
2024-11-25 19:08:09.337 CET [562220][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.338 CET [562170][client backend] [pg_regress/create_table][25/437:529998] ERROR: modulus for hash partition must be an integer value greater than zero
2024-11-25 19:08:09.338 CET [562170][client backend] [pg_regress/create_table][25/437:529998] STATEMENT: CREATE TABLE fail_part PARTITION OF hash_parted2 FOR VALUES WITH (MODULUS 0, REMAINDER 1);
2024-11-25 19:08:09.338 CET [562220][client backend] [[unknown]][92/369:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.338 CET [562220][client backend] [[unknown]][92/369:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=pg_regress/postgres_fdw
2024-11-25 19:08:09.338 CET [562170][client backend] [pg_regress/create_table][25/438:530000] ERROR: remainder for hash partition must be less than modulus
2024-11-25 19:08:09.338 CET [562170][client backend] [pg_regress/create_table][25/438:530000] STATEMENT: CREATE TABLE fail_part PARTITION OF hash_parted2 FOR VALUES WITH (MODULUS 8, REMAINDER 8);
2024-11-25 19:08:09.342 CET [562170][client backend] [pg_regress/create_table][25/442:530004] ERROR: column "b" specified more than once
2024-11-25 19:08:09.342 CET [562170][client backend] [pg_regress/create_table][25/442:530004] STATEMENT: CREATE TABLE part_b PARTITION OF parted (
b NOT NULL,
b DEFAULT 1,
b CHECK (b >= 0),
CONSTRAINT check_a CHECK (length(a) > 0)
) FOR VALUES IN ('b');
2024-11-25 19:08:09.347 CET [562170][client backend] [pg_regress/create_table][25/447:530008] ERROR: cannot drop inherited constraint "check_a" of relation "part_b"
2024-11-25 19:08:09.347 CET [562170][client backend] [pg_regress/create_table][25/447:530008] STATEMENT: ALTER TABLE part_b DROP CONSTRAINT check_a;
2024-11-25 19:08:09.347 CET [562170][client backend] [pg_regress/create_table][25/448:530009] ERROR: cannot drop inherited constraint "check_b" of relation "part_b"
2024-11-25 19:08:09.347 CET [562170][client backend] [pg_regress/create_table][25/448:530009] STATEMENT: ALTER TABLE part_b DROP CONSTRAINT check_b;
2024-11-25 19:08:09.350 CET [562170][client backend] [pg_regress/create_table][25/451:530013] ERROR: column "c" named in partition key does not exist at character 98
2024-11-25 19:08:09.350 CET [562170][client backend] [pg_regress/create_table][25/451:530013] STATEMENT: CREATE TABLE fail_part_col_not_found PARTITION OF parted FOR VALUES IN ('c') PARTITION BY RANGE (c);
2024-11-25 19:08:09.355 CET [562170][client backend] [pg_regress/create_table][25/456:0] ERROR: null value in column "b" of relation "parted_notnull_inh_test1" violates not-null constraint
2024-11-25 19:08:09.355 CET [562170][client backend] [pg_regress/create_table][25/456:0] DETAIL: Failing row contains (1, null).
2024-11-25 19:08:09.355 CET [562170][client backend] [pg_regress/create_table][25/456:0] STATEMENT: insert into parted_notnull_inh_test (b) values (null);
2024-11-25 19:08:09.355 CET [562217][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.028 user=nkey database=postgres host=[local]
2024-11-25 19:08:09.356 CET [562218][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.028 user=nkey database=postgres host=[local]
2024-11-25 19:08:09.358 CET [562223][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.359 CET [562224][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.359 CET [562223][client backend] [[unknown]][42/71:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.359 CET [562223][client backend] [[unknown]][42/71:0] LOG: connection authorized: user=nkey database=regression_seg application_name=pg_regress/security
2024-11-25 19:08:09.359 CET [562224][client backend] [[unknown]][7/657:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.359 CET [562224][client backend] [[unknown]][7/657:0] LOG: connection authorized: user=nkey database=regression_tablefunc application_name=pg_regress/tablefunc
2024-11-25 19:08:09.371 CET [562224][client backend] [pg_regress/tablefunc][7/660:0] ERROR: number of rows cannot be negative
2024-11-25 19:08:09.371 CET [562224][client backend] [pg_regress/tablefunc][7/660:0] STATEMENT: SELECT avg(normal_rand)::int, count(*) FROM normal_rand(-1, 250, 0.2);
2024-11-25 19:08:09.394 CET [562224][client backend] [pg_regress/tablefunc][7/680:0] ERROR: invalid crosstab source data query
2024-11-25 19:08:09.394 CET [562224][client backend] [pg_regress/tablefunc][7/680:0] DETAIL: The query must return 3 columns: row_name, category, and value.
2024-11-25 19:08:09.394 CET [562224][client backend] [pg_regress/tablefunc][7/680:0] STATEMENT: SELECT * FROM crosstab('SELECT rowid, val FROM ct where rowclass = ''group1'' and (attribute = ''att2'' or attribute = ''att3'') ORDER BY 1,2;')
AS ct(row_name text, category_1 text, category_2 text);
2024-11-25 19:08:09.394 CET [562223][client backend] [pg_regress/security][:0] LOG: disconnection: session time: 0:00:00.035 user=nkey database=regression_seg host=[local]
2024-11-25 19:08:09.394 CET [562224][client backend] [pg_regress/tablefunc][7/681:0] ERROR: invalid crosstab return type
2024-11-25 19:08:09.394 CET [562224][client backend] [pg_regress/tablefunc][7/681:0] DETAIL: Return row must have at least two columns.
2024-11-25 19:08:09.394 CET [562224][client backend] [pg_regress/tablefunc][7/681:0] STATEMENT: SELECT * FROM crosstab('SELECT rowid, attribute, val FROM ct where rowclass = ''group1'' and (attribute = ''att2'' or attribute = ''att3'') ORDER BY 1,2;')
AS ct(row_name text);
2024-11-25 19:08:09.394 CET [562224][client backend] [pg_regress/tablefunc][7/682:0] ERROR: invalid crosstab return type
2024-11-25 19:08:09.394 CET [562224][client backend] [pg_regress/tablefunc][7/682:0] DETAIL: Source row_name datatype text does not match return row_name datatype integer.
2024-11-25 19:08:09.394 CET [562224][client backend] [pg_regress/tablefunc][7/682:0] STATEMENT: SELECT * FROM crosstab('SELECT rowid, attribute, val FROM ct where rowclass = ''group1'' and (attribute = ''att2'' or attribute = ''att3'') ORDER BY 1,2;')
AS ct(row_name int, category_1 text, category_2 text);
2024-11-25 19:08:09.395 CET [562224][client backend] [pg_regress/tablefunc][7/683:0] ERROR: invalid crosstab return type
2024-11-25 19:08:09.395 CET [562224][client backend] [pg_regress/tablefunc][7/683:0] DETAIL: Source value datatype text does not match return value datatype integer in column 3.
2024-11-25 19:08:09.395 CET [562224][client backend] [pg_regress/tablefunc][7/683:0] STATEMENT: SELECT * FROM crosstab('SELECT rowid, attribute, val FROM ct where rowclass = ''group1'' and (attribute = ''att2'' or attribute = ''att3'') ORDER BY 1,2;')
AS ct(row_name text, category_1 text, category_2 int);
2024-11-25 19:08:09.395 CET [562220][client backend] [pg_regress/postgres_fdw][92/406:0] ERROR: parameter "extensions" must be a list of extension names
2024-11-25 19:08:09.395 CET [562220][client backend] [pg_regress/postgres_fdw][92/406:0] STATEMENT: ALTER SERVER testserver1 OPTIONS (ADD extensions 'foo; bar');
2024-11-25 19:08:09.396 CET [562220][client backend] [pg_regress/postgres_fdw][92/407:0] WARNING: extension "foo" is not installed
2024-11-25 19:08:09.396 CET [562220][client backend] [pg_regress/postgres_fdw][92/407:0] WARNING: extension "bar" is not installed
2024-11-25 19:08:09.396 CET [562220][client backend] [pg_regress/postgres_fdw][92/410:0] ERROR: invalid option "sslmode"
2024-11-25 19:08:09.396 CET [562220][client backend] [pg_regress/postgres_fdw][92/410:0] STATEMENT: ALTER USER MAPPING FOR public SERVER testserver1
OPTIONS (ADD sslmode 'require');
2024-11-25 19:08:09.399 CET [562228][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.399 CET [562228][client backend] [[unknown]][43/47:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.399 CET [562228][client backend] [[unknown]][43/47:0] LOG: connection authorized: user=nkey database=regression_seg application_name=pg_regress/seg
2024-11-25 19:08:09.404 CET [562224][client backend] [pg_regress/tablefunc][7/700:0] ERROR: crosstab categories query must return at least one row
2024-11-25 19:08:09.404 CET [562224][client backend] [pg_regress/tablefunc][7/700:0] STATEMENT: SELECT * FROM crosstab(
'SELECT rowid, rowdt, attribute, val FROM cth ORDER BY 1',
'SELECT DISTINCT attribute FROM cth WHERE attribute = ''a'' ORDER BY 1')
AS c(rowid text, rowdt timestamp, temperature int4, test_result text, test_startdate timestamp, volts float8);
2024-11-25 19:08:09.405 CET [562224][client backend] [pg_regress/tablefunc][7/701:0] ERROR: invalid crosstab categories query
2024-11-25 19:08:09.405 CET [562224][client backend] [pg_regress/tablefunc][7/701:0] DETAIL: The query must return one column.
2024-11-25 19:08:09.405 CET [562224][client backend] [pg_regress/tablefunc][7/701:0] STATEMENT: SELECT * FROM crosstab(
'SELECT rowid, rowdt, attribute, val FROM cth ORDER BY 1',
'SELECT DISTINCT rowdt, attribute FROM cth ORDER BY 2')
AS c(rowid text, rowdt timestamp, temperature int4, test_result text, test_startdate timestamp, volts float8);
2024-11-25 19:08:09.405 CET [562224][client backend] [pg_regress/tablefunc][7/702:0] ERROR: crosstab category value must not be null
2024-11-25 19:08:09.405 CET [562224][client backend] [pg_regress/tablefunc][7/702:0] STATEMENT: SELECT * FROM crosstab(
'SELECT rowid, rowdt, attribute, val FROM cth ORDER BY 1',
'SELECT NULL::text')
AS c(rowid text, rowdt timestamp, temperature int4, test_result text, test_startdate timestamp, volts float8);
2024-11-25 19:08:09.405 CET [562229][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.406 CET [562229][client backend] [[unknown]][47/35:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.406 CET [562229][client backend] [[unknown]][47/35:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:09.406 CET [562224][client backend] [pg_regress/tablefunc][7/705:0] ERROR: invalid crosstab source data query
2024-11-25 19:08:09.406 CET [562224][client backend] [pg_regress/tablefunc][7/705:0] DETAIL: The query must return at least 3 columns: row_name, category, and value.
2024-11-25 19:08:09.406 CET [562224][client backend] [pg_regress/tablefunc][7/705:0] STATEMENT: SELECT * FROM crosstab(
'SELECT rowid, attribute FROM cth ORDER BY 1',
'SELECT DISTINCT attribute FROM cth ORDER BY 1')
AS c(rowid text, temperature text, test_result text, test_startdate text, volts text);
2024-11-25 19:08:09.406 CET [562224][client backend] [pg_regress/tablefunc][7/706:0] ERROR: invalid crosstab return type
2024-11-25 19:08:09.406 CET [562224][client backend] [pg_regress/tablefunc][7/706:0] DETAIL: Return row must have 7 columns, not 6.
2024-11-25 19:08:09.406 CET [562224][client backend] [pg_regress/tablefunc][7/706:0] STATEMENT: SELECT * FROM crosstab(
'SELECT rowid, rowdt, rowdt, attribute, val FROM cth ORDER BY 1',
'SELECT DISTINCT attribute FROM cth ORDER BY 1')
AS c(rowid text, rowdt timestamp, temperature int4, test_result text, test_startdate timestamp, volts float8);
2024-11-25 19:08:09.407 CET [562224][client backend] [pg_regress/tablefunc][7/707:0] ERROR: invalid crosstab return type
2024-11-25 19:08:09.407 CET [562224][client backend] [pg_regress/tablefunc][7/707:0] DETAIL: Return row must have at least two columns.
2024-11-25 19:08:09.407 CET [562224][client backend] [pg_regress/tablefunc][7/707:0] STATEMENT: SELECT * FROM crosstab(
'SELECT rowid, attribute, val FROM cth ORDER BY 1',
'SELECT DISTINCT attribute FROM cth ORDER BY 1')
AS c(rowid text);
2024-11-25 19:08:09.411 CET [562229][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.006 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:09.412 CET [562230][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.413 CET [562230][client backend] [[unknown]][46/112:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.413 CET [562230][client backend] [[unknown]][46/112:0] LOG: connection authorized: user=nkey database=no such database application_name=postgres_fdw
2024-11-25 19:08:09.413 CET [562230][client backend] [[unknown]][46/112:0] FATAL: database "no such database" does not exist
2024-11-25 19:08:09.413 CET [562220][client backend] [pg_regress/postgres_fdw][92/420:0] ERROR: could not connect to server "loopback"
2024-11-25 19:08:09.413 CET [562220][client backend] [pg_regress/postgres_fdw][92/420:0] DETAIL: connection to server on socket "/tmp/.s.PGSQL.5432" failed: FATAL: database "no such database" does not exist
2024-11-25 19:08:09.413 CET [562220][client backend] [pg_regress/postgres_fdw][92/420:0] STATEMENT: SELECT c3, c4 FROM ft1 ORDER BY c3, c1 LIMIT 1;
2024-11-25 19:08:09.414 CET [562231][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.414 CET [562231][client backend] [[unknown]][51/14:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.414 CET [562231][client backend] [[unknown]][51/14:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:09.417 CET [562224][client backend] [pg_regress/tablefunc][7/726:0] ERROR: infinite recursion detected
2024-11-25 19:08:09.417 CET [562224][client backend] [pg_regress/tablefunc][7/726:0] STATEMENT: SELECT * FROM connectby('connectby_int', 'keyid', 'parent_keyid', '2', 0, '~') AS t(keyid int, parent_keyid int, level int, branch text);
2024-11-25 19:08:09.420 CET [562231][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.005 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:09.420 CET [562232][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.421 CET [562232][client backend] [[unknown]][15/226:0] LOG: connection authenticated: user="no such user" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.421 CET [562232][client backend] [[unknown]][15/226:0] LOG: connection authorized: user=no such user database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:09.421 CET [562232][client backend] [[unknown]][15/226:0] FATAL: role "no such user" does not exist
2024-11-25 19:08:09.421 CET [562220][client backend] [pg_regress/postgres_fdw][92/424:0] ERROR: could not connect to server "loopback"
2024-11-25 19:08:09.421 CET [562220][client backend] [pg_regress/postgres_fdw][92/424:0] DETAIL: connection to server on socket "/tmp/.s.PGSQL.5432" failed: FATAL: role "no such user" does not exist
2024-11-25 19:08:09.421 CET [562220][client backend] [pg_regress/postgres_fdw][92/424:0] STATEMENT: SELECT c3, c4 FROM ft1 ORDER BY c3, c1 LIMIT 1;
2024-11-25 19:08:09.421 CET [562224][client backend] [pg_regress/tablefunc][7/728:0] ERROR: invalid connectby return type
2024-11-25 19:08:09.421 CET [562224][client backend] [pg_regress/tablefunc][7/728:0] DETAIL: Source key type integer does not match return key type text.
2024-11-25 19:08:09.421 CET [562224][client backend] [pg_regress/tablefunc][7/728:0] STATEMENT: SELECT * FROM connectby('connectby_int', 'keyid', 'parent_keyid', '2', 0, '~') AS t(keyid text, parent_keyid int, level int, branch text);
2024-11-25 19:08:09.421 CET [562224][client backend] [pg_regress/tablefunc][7/729:0] ERROR: invalid connectby return type
2024-11-25 19:08:09.421 CET [562224][client backend] [pg_regress/tablefunc][7/729:0] DETAIL: Source key type integer does not match return key type double precision.
2024-11-25 19:08:09.421 CET [562224][client backend] [pg_regress/tablefunc][7/729:0] STATEMENT: SELECT * FROM connectby('connectby_int', 'keyid', 'parent_keyid', '2', 0, '~') AS t(keyid float8, parent_keyid float8, level int, branch text);
2024-11-25 19:08:09.421 CET [562224][client backend] [pg_regress/tablefunc][7/730:0] ERROR: invalid connectby return type
2024-11-25 19:08:09.421 CET [562224][client backend] [pg_regress/tablefunc][7/730:0] DETAIL: Source parent key type integer does not match return parent key type double precision.
2024-11-25 19:08:09.421 CET [562224][client backend] [pg_regress/tablefunc][7/730:0] STATEMENT: SELECT * FROM connectby('connectby_int', 'keyid', 'parent_keyid', '2', 0, '~') AS t(keyid int, parent_keyid float8, level int, branch text);
2024-11-25 19:08:09.422 CET [562224][client backend] [pg_regress/tablefunc][7/731:0] ERROR: invalid connectby return type
2024-11-25 19:08:09.422 CET [562224][client backend] [pg_regress/tablefunc][7/731:0] DETAIL: Return row must have 3 columns, not 4.
2024-11-25 19:08:09.422 CET [562224][client backend] [pg_regress/tablefunc][7/731:0] STATEMENT: SELECT * FROM connectby('connectby_int', 'keyid', 'parent_keyid', '2', 0) AS t(keyid int, parent_keyid int, level int, branch text);
2024-11-25 19:08:09.422 CET [562224][client backend] [pg_regress/tablefunc][7/732:0] ERROR: invalid connectby return type
2024-11-25 19:08:09.422 CET [562224][client backend] [pg_regress/tablefunc][7/732:0] DETAIL: Return row must have 4 columns, not 3.
2024-11-25 19:08:09.422 CET [562224][client backend] [pg_regress/tablefunc][7/732:0] STATEMENT: SELECT * FROM connectby('connectby_int', 'keyid', 'parent_keyid', '2', 0, '~') AS t(keyid int, parent_keyid int, level int);
2024-11-25 19:08:09.422 CET [562233][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.422 CET [562224][client backend] [pg_regress/tablefunc][7/733:0] ERROR: invalid connectby return type
2024-11-25 19:08:09.422 CET [562224][client backend] [pg_regress/tablefunc][7/733:0] DETAIL: Source parent key type integer does not match return parent key type text.
2024-11-25 19:08:09.422 CET [562224][client backend] [pg_regress/tablefunc][7/733:0] STATEMENT: SELECT * FROM connectby('connectby_int', 'keyid', 'parent_keyid', '2', 0) AS t(keyid int, parent_keyid text, level int);
2024-11-25 19:08:09.422 CET [562224][client backend] [pg_regress/tablefunc][7/734:0] ERROR: invalid connectby return type
2024-11-25 19:08:09.422 CET [562224][client backend] [pg_regress/tablefunc][7/734:0] DETAIL: Third return column (depth) must be type integer.
2024-11-25 19:08:09.422 CET [562224][client backend] [pg_regress/tablefunc][7/734:0] STATEMENT: SELECT * FROM connectby('connectby_int', 'keyid', 'parent_keyid', '2', 0, '~') AS t(keyid int, parent_keyid int, level float, branch float);
2024-11-25 19:08:09.422 CET [562224][client backend] [pg_regress/tablefunc][7/735:0] ERROR: invalid connectby return type
2024-11-25 19:08:09.422 CET [562224][client backend] [pg_regress/tablefunc][7/735:0] DETAIL: Fourth return column (branch) must be type text.
2024-11-25 19:08:09.422 CET [562224][client backend] [pg_regress/tablefunc][7/735:0] STATEMENT: SELECT * FROM connectby('connectby_int', 'keyid', 'parent_keyid', '2', 0, '~') AS t(keyid int, parent_keyid int, level int, branch float);
2024-11-25 19:08:09.422 CET [562233][client backend] [[unknown]][50/77:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.422 CET [562233][client backend] [[unknown]][50/77:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:09.422 CET [562224][client backend] [pg_regress/tablefunc][7/736:0] ERROR: invalid connectby return type
2024-11-25 19:08:09.422 CET [562224][client backend] [pg_regress/tablefunc][7/736:0] DETAIL: Fifth return column (serial) must be type integer.
2024-11-25 19:08:09.422 CET [562224][client backend] [pg_regress/tablefunc][7/736:0] STATEMENT: SELECT * FROM connectby('connectby_text', 'keyid', 'parent_keyid', 'pos', 'row2', 0, '~') AS t(keyid text, parent_keyid text, level int, branch text, pos text);
2024-11-25 19:08:09.423 CET [562224][client backend] [pg_regress/tablefunc][7/737:0] ERROR: invalid connectby return type
2024-11-25 19:08:09.423 CET [562224][client backend] [pg_regress/tablefunc][7/737:0] DETAIL: Fourth return column (serial) must be type integer.
2024-11-25 19:08:09.423 CET [562224][client backend] [pg_regress/tablefunc][7/737:0] STATEMENT: SELECT * FROM connectby('connectby_text', 'keyid', 'parent_keyid', 'pos', 'row2', 0) AS t(keyid text, parent_keyid text, level int, pos text);
2024-11-25 19:08:09.423 CET [562224][client backend] [pg_regress/tablefunc][7/738:0] ERROR: invalid connectby source data query
2024-11-25 19:08:09.423 CET [562224][client backend] [pg_regress/tablefunc][7/738:0] DETAIL: The query must return at least two columns.
2024-11-25 19:08:09.423 CET [562224][client backend] [pg_regress/tablefunc][7/738:0] STATEMENT: SELECT * FROM connectby('connectby_int', '1; --', 'parent_keyid', '2', 0) AS t(keyid int, parent_keyid int, level int);
2024-11-25 19:08:09.423 CET [562224][client backend] [pg_regress/tablefunc][7/740:0] ERROR: infinite recursion detected
2024-11-25 19:08:09.423 CET [562224][client backend] [pg_regress/tablefunc][7/740:0] STATEMENT: SELECT * FROM connectby('connectby_int', '1::int, NULL::int; --', 'parent_keyid', '2', 0) AS t(keyid int, parent_keyid int, level int);
2024-11-25 19:08:09.428 CET [562228][client backend] [pg_regress/seg][43/113:0] ERROR: bad seg representation at character 8
2024-11-25 19:08:09.428 CET [562228][client backend] [pg_regress/seg][43/113:0] DETAIL: syntax error at end of input
2024-11-25 19:08:09.428 CET [562228][client backend] [pg_regress/seg][43/113:0] STATEMENT: SELECT ''::seg AS seg;
2024-11-25 19:08:09.428 CET [562228][client backend] [pg_regress/seg][43/114:0] ERROR: bad seg representation at character 8
2024-11-25 19:08:09.428 CET [562228][client backend] [pg_regress/seg][43/114:0] DETAIL: syntax error at or near "A"
2024-11-25 19:08:09.428 CET [562228][client backend] [pg_regress/seg][43/114:0] STATEMENT: SELECT 'ABC'::seg AS seg;
2024-11-25 19:08:09.428 CET [562228][client backend] [pg_regress/seg][43/115:0] ERROR: bad seg representation at character 8
2024-11-25 19:08:09.428 CET [562228][client backend] [pg_regress/seg][43/115:0] DETAIL: syntax error at or near "A"
2024-11-25 19:08:09.428 CET [562228][client backend] [pg_regress/seg][43/115:0] STATEMENT: SELECT '1ABC'::seg AS seg;
2024-11-25 19:08:09.428 CET [562228][client backend] [pg_regress/seg][43/116:0] ERROR: bad seg representation at character 8
2024-11-25 19:08:09.428 CET [562228][client backend] [pg_regress/seg][43/116:0] DETAIL: syntax error at or near "."
2024-11-25 19:08:09.428 CET [562228][client backend] [pg_regress/seg][43/116:0] STATEMENT: SELECT '1.'::seg AS seg;
2024-11-25 19:08:09.428 CET [562228][client backend] [pg_regress/seg][43/117:0] ERROR: bad seg representation at character 8
2024-11-25 19:08:09.428 CET [562228][client backend] [pg_regress/seg][43/117:0] DETAIL: syntax error at or near ".."
2024-11-25 19:08:09.428 CET [562228][client backend] [pg_regress/seg][43/117:0] STATEMENT: SELECT '1.....'::seg AS seg;
2024-11-25 19:08:09.428 CET [562224][client backend] [pg_regress/tablefunc][:0] LOG: disconnection: session time: 0:00:00.069 user=nkey database=regression_tablefunc host=[local]
2024-11-25 19:08:09.428 CET [562228][client backend] [pg_regress/seg][43/118:0] ERROR: bad seg representation at character 8
2024-11-25 19:08:09.428 CET [562228][client backend] [pg_regress/seg][43/118:0] DETAIL: syntax error at or near "."
2024-11-25 19:08:09.428 CET [562228][client backend] [pg_regress/seg][43/118:0] STATEMENT: SELECT '.1'::seg AS seg;
2024-11-25 19:08:09.428 CET [562228][client backend] [pg_regress/seg][43/119:0] ERROR: bad seg representation at character 8
2024-11-25 19:08:09.428 CET [562228][client backend] [pg_regress/seg][43/119:0] DETAIL: syntax error at or near "."
2024-11-25 19:08:09.428 CET [562228][client backend] [pg_regress/seg][43/119:0] STATEMENT: SELECT '1..2.'::seg AS seg;
2024-11-25 19:08:09.428 CET [562228][client backend] [pg_regress/seg][43/120:0] ERROR: bad seg representation at character 8
2024-11-25 19:08:09.428 CET [562228][client backend] [pg_regress/seg][43/120:0] DETAIL: syntax error at or near "e"
2024-11-25 19:08:09.428 CET [562228][client backend] [pg_regress/seg][43/120:0] STATEMENT: SELECT '1 e7'::seg AS seg;
2024-11-25 19:08:09.428 CET [562228][client backend] [pg_regress/seg][43/121:0] ERROR: "1e700" is out of range for type real at character 8
2024-11-25 19:08:09.428 CET [562228][client backend] [pg_regress/seg][43/121:0] STATEMENT: SELECT '1e700'::seg AS seg;
2024-11-25 19:08:09.438 CET [562220][client backend] [pg_regress/postgres_fdw][92/429:530153] ERROR: cannot add relation "ft1" to publication
2024-11-25 19:08:09.438 CET [562220][client backend] [pg_regress/postgres_fdw][92/429:530153] DETAIL: This operation is not supported for foreign tables.
2024-11-25 19:08:09.438 CET [562220][client backend] [pg_regress/postgres_fdw][92/429:530153] STATEMENT: CREATE PUBLICATION testpub_ftbl FOR TABLE ft1;
2024-11-25 19:08:09.468 CET [562228][client backend] [pg_regress/seg][:0] LOG: disconnection: session time: 0:00:00.069 user=nkey database=regression_seg host=[local]
2024-11-25 19:08:09.473 CET [562243][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.473 CET [562243][client backend] [[unknown]][63/24:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.473 CET [562243][client backend] [[unknown]][63/24:0] LOG: connection authorized: user=nkey database=regression_seg application_name=pg_regress/partition
2024-11-25 19:08:09.475 CET [562244][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.476 CET [562244][client backend] [[unknown]][52/49:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.476 CET [562244][client backend] [[unknown]][52/49:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:09.478 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:09.495 CET [562170][client backend] [pg_regress/create_table][25/610:0] ERROR: cannot specify storage parameters for a partitioned table
2024-11-25 19:08:09.495 CET [562170][client backend] [pg_regress/create_table][25/610:0] HINT: Specify storage parameters for its leaf partitions instead.
2024-11-25 19:08:09.495 CET [562170][client backend] [pg_regress/create_table][25/610:0] STATEMENT: CREATE TABLE parted_col_comment (a int, b text) PARTITION BY LIST (a) WITH (fillfactor=100);
2024-11-25 19:08:09.520 CET [562170][client backend] [pg_regress/create_table][25/642:530222] ERROR: cannot create a permanent relation as partition of temporary relation "temp_parted"
2024-11-25 19:08:09.520 CET [562170][client backend] [pg_regress/create_table][25/642:530222] STATEMENT: create table perm_part partition of temp_parted default;
2024-11-25 19:08:09.520 CET [562170][client backend] [pg_regress/create_table][25/643:530223] ERROR: cannot create a temporary relation as partition of permanent relation "perm_parted"
2024-11-25 19:08:09.520 CET [562170][client backend] [pg_regress/create_table][25/643:530223] STATEMENT: create temp table temp_part partition of perm_parted default;
2024-11-25 19:08:09.522 CET [562243][client backend] [pg_regress/partition][:0] LOG: disconnection: session time: 0:00:00.049 user=nkey database=regression_seg host=[local]
2024-11-25 19:08:09.525 CET [562170][client backend] [pg_regress/create_table][25/650:530231] ERROR: cannot CREATE TABLE .. PARTITION OF "tab_part_create" because it is being used by active queries in this session
2024-11-25 19:08:09.525 CET [562170][client backend] [pg_regress/create_table][25/650:530231] CONTEXT: SQL statement "create table tab_part_create_1 partition of tab_part_create for values in (1)"
PL/pgSQL function func_part_create() line 3 at EXECUTE
2024-11-25 19:08:09.525 CET [562170][client backend] [pg_regress/create_table][25/650:530231] STATEMENT: insert into tab_part_create values (1);
2024-11-25 19:08:09.541 CET [562220][client backend] [pg_regress/postgres_fdw][92/469:0] ERROR: access to non-system foreign table is restricted
2024-11-25 19:08:09.541 CET [562220][client backend] [pg_regress/postgres_fdw][92/469:0] STATEMENT: SELECT * from ft1 where c1 < 1;
2024-11-25 19:08:09.541 CET [562170][client backend] [pg_regress/create_table][25/666:530254] ERROR: updated partition constraint for default partition "defcheck_def" would be violated by some row
2024-11-25 19:08:09.541 CET [562170][client backend] [pg_regress/create_table][25/666:530254] STATEMENT: create table defcheck_0 partition of defcheck for values in (0);
2024-11-25 19:08:09.541 CET [562220][client backend] [pg_regress/postgres_fdw][92/470:0] ERROR: access to non-system foreign table is restricted
2024-11-25 19:08:09.541 CET [562220][client backend] [pg_regress/postgres_fdw][92/470:0] STATEMENT: INSERT INTO ft1 (c1) VALUES (1);
2024-11-25 19:08:09.541 CET [562220][client backend] [pg_regress/postgres_fdw][92/471:0] ERROR: access to non-system foreign table is restricted
2024-11-25 19:08:09.541 CET [562220][client backend] [pg_regress/postgres_fdw][92/471:0] STATEMENT: DELETE FROM ft1 WHERE c1 = 1;
2024-11-25 19:08:09.541 CET [562220][client backend] [pg_regress/postgres_fdw][92/472:0] ERROR: access to non-system foreign table is restricted
2024-11-25 19:08:09.541 CET [562220][client backend] [pg_regress/postgres_fdw][92/472:0] STATEMENT: TRUNCATE ft1;
2024-11-25 19:08:09.555 CET [561023][checkpointer] LOG: checkpoint complete: wrote 4077 buffers (24.9%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 1 recycled; write=0.073 s, sync=0.001 s, total=0.077 s; sync files=0, longest=0.000 s, average=0.000 s; distance=16147 kB, estimate=20757 kB; lsn=4/4D73C788, redo lsn=4/4D5F7048
2024-11-25 19:08:09.578 CET [562170][client backend] [pg_regress/create_table][:0] LOG: disconnection: session time: 0:00:00.484 user=nkey database=regression host=[local]
2024-11-25 19:08:09.587 CET [562262][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.588 CET [562262][client backend] [[unknown]][49/266:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.588 CET [562262][client backend] [[unknown]][49/266:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:09.591 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:09.593 CET [562272][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.593 CET [562274][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.593 CET [562274][client backend] [[unknown]][61/32:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.593 CET [562274][client backend] [[unknown]][61/32:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/create_index_spgist
2024-11-25 19:08:09.593 CET [562271][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.594 CET [562272][client backend] [[unknown]][69/22:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.594 CET [562272][client backend] [[unknown]][69/22:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/index_including_gist
2024-11-25 19:08:09.594 CET [562271][client backend] [[unknown]][58/406:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.594 CET [562271][client backend] [[unknown]][58/406:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/create_index
2024-11-25 19:08:09.595 CET [562273][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.596 CET [562244][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.120 user=nkey database=postgres host=[local]
2024-11-25 19:08:09.596 CET [562273][client backend] [[unknown]][55/175:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.596 CET [562273][client backend] [[unknown]][55/175:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/create_view
2024-11-25 19:08:09.598 CET [562275][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.599 CET [562275][client backend] [[unknown]][39/85:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.599 CET [562275][client backend] [[unknown]][39/85:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/index_including
2024-11-25 19:08:09.599 CET [562271][client backend] [pg_regress/create_index][58/409:0] ERROR: syntax error at or near "ON" at character 28
2024-11-25 19:08:09.599 CET [562271][client backend] [pg_regress/create_index][58/409:0] STATEMENT: CREATE INDEX IF NOT EXISTS ON onek USING btree(unique1 int4_ops);
2024-11-25 19:08:09.603 CET [562278][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.604 CET [562278][client backend] [[unknown]][48/80:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.604 CET [562278][client backend] [[unknown]][48/80:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:09.622 CET [562275][client backend] [pg_regress/index_including][39/103:530311] ERROR: could not create unique index "tbl_include_unique2_idx_unique"
2024-11-25 19:08:09.622 CET [562275][client backend] [pg_regress/index_including][39/103:530311] DETAIL: Key (c1, c2)=(1, 2) is duplicated.
2024-11-25 19:08:09.622 CET [562275][client backend] [pg_regress/index_including][39/103:530311] STATEMENT: CREATE UNIQUE INDEX tbl_include_unique2_idx_unique ON tbl_include_unique2 using btree (c1, c2) INCLUDE (c3, c4);
2024-11-25 19:08:09.623 CET [562275][client backend] [pg_regress/index_including][39/104:530313] ERROR: could not create unique index "tbl_include_unique2_c1_c2_c3_c4_key"
2024-11-25 19:08:09.623 CET [562275][client backend] [pg_regress/index_including][39/104:530313] DETAIL: Key (c1, c2)=(1, 2) is duplicated.
2024-11-25 19:08:09.623 CET [562275][client backend] [pg_regress/index_including][39/104:530313] STATEMENT: ALTER TABLE tbl_include_unique2 add UNIQUE (c1, c2) INCLUDE (c3, c4);
2024-11-25 19:08:09.623 CET [562273][client backend] [pg_regress/create_view][55/184:0] ERROR: relation "noview" does not exist
2024-11-25 19:08:09.623 CET [562273][client backend] [pg_regress/create_view][55/184:0] STATEMENT: COMMENT ON VIEW noview IS 'no view';
2024-11-25 19:08:09.631 CET [562273][client backend] [pg_regress/create_view][55/189:530325] ERROR: cannot drop constraint view_base_table_pkey on table view_base_table because other objects depend on it
2024-11-25 19:08:09.631 CET [562273][client backend] [pg_regress/create_view][55/189:530325] DETAIL: view key_dependent_view depends on constraint view_base_table_pkey on table view_base_table
2024-11-25 19:08:09.631 CET [562273][client backend] [pg_regress/create_view][55/189:530325] HINT: Use DROP ... CASCADE to drop the dependent objects too.
2024-11-25 19:08:09.631 CET [562273][client backend] [pg_regress/create_view][55/189:530325] STATEMENT: ALTER TABLE view_base_table DROP CONSTRAINT view_base_table_pkey;
2024-11-25 19:08:09.640 CET [562273][client backend] [pg_regress/create_view][55/198:530339] ERROR: cannot drop columns from view
2024-11-25 19:08:09.640 CET [562273][client backend] [pg_regress/create_view][55/198:530339] STATEMENT: CREATE OR REPLACE VIEW viewtest AS
SELECT a FROM viewtest_tbl WHERE a <> 20;
2024-11-25 19:08:09.640 CET [562273][client backend] [pg_regress/create_view][55/199:530341] ERROR: cannot change name of view column "a" to "?column?"
2024-11-25 19:08:09.640 CET [562273][client backend] [pg_regress/create_view][55/199:530341] HINT: Use ALTER VIEW ... RENAME COLUMN ... to change name of view column instead.
2024-11-25 19:08:09.640 CET [562273][client backend] [pg_regress/create_view][55/199:530341] STATEMENT: CREATE OR REPLACE VIEW viewtest AS
SELECT 1, * FROM viewtest_tbl;
2024-11-25 19:08:09.640 CET [562273][client backend] [pg_regress/create_view][55/200:530343] ERROR: cannot change data type of view column "b" from integer to numeric
2024-11-25 19:08:09.640 CET [562273][client backend] [pg_regress/create_view][55/200:530343] STATEMENT: CREATE OR REPLACE VIEW viewtest AS
SELECT a, b::numeric, c, d FROM viewtest_tbl;
2024-11-25 19:08:09.640 CET [562273][client backend] [pg_regress/create_view][55/201:530345] ERROR: cannot change data type of view column "c" from numeric(10,1) to numeric(10,2)
2024-11-25 19:08:09.640 CET [562273][client backend] [pg_regress/create_view][55/201:530345] STATEMENT: CREATE OR REPLACE VIEW viewtest AS
SELECT a, b, c::numeric(10,2), d FROM viewtest_tbl;
2024-11-25 19:08:09.640 CET [562273][client backend] [pg_regress/create_view][55/202:530346] ERROR: cannot change collation of view column "d" from "C" to "POSIX"
2024-11-25 19:08:09.640 CET [562273][client backend] [pg_regress/create_view][55/202:530346] STATEMENT: CREATE OR REPLACE VIEW viewtest AS
SELECT a, b, c, d COLLATE "POSIX" FROM viewtest_tbl;
2024-11-25 19:08:09.641 CET [562275][client backend] [pg_regress/index_including][39/116:530344] ERROR: could not create unique index "tbl_include_box_pk_pkey"
2024-11-25 19:08:09.641 CET [562275][client backend] [pg_regress/index_including][39/116:530344] DETAIL: Key (c1, c2)=(1, 2) is duplicated.
2024-11-25 19:08:09.641 CET [562275][client backend] [pg_regress/index_including][39/116:530344] STATEMENT: ALTER TABLE tbl_include_box_pk add PRIMARY KEY (c1, c2) INCLUDE (c3, c4);
2024-11-25 19:08:09.642 CET [561023][checkpointer] LOG: checkpoint complete: wrote 619 buffers (3.8%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.050 s, sync=0.001 s, total=0.052 s; sync files=0, longest=0.000 s, average=0.000 s; distance=1469 kB, estimate=18828 kB; lsn=4/4DE49C98, redo lsn=4/4D766698
2024-11-25 19:08:09.644 CET [562275][client backend] [pg_regress/index_including][39/120:530351] ERROR: duplicate key value violates unique constraint "covering"
2024-11-25 19:08:09.644 CET [562275][client backend] [pg_regress/index_including][39/120:530351] DETAIL: Key (c1, c2)=(1, 2) already exists.
2024-11-25 19:08:09.644 CET [562275][client backend] [pg_regress/index_including][39/120:530351] STATEMENT: INSERT INTO tbl SELECT 1, 2, 3*x, box('4,4,4,4') FROM generate_series(1,10) AS x;
2024-11-25 19:08:09.649 CET [562278][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.045 user=nkey database=postgres host=[local]
2024-11-25 19:08:09.651 CET [562275][client backend] [pg_regress/index_including][39/125:530358] ERROR: duplicate key value violates unique constraint "covering"
2024-11-25 19:08:09.651 CET [562275][client backend] [pg_regress/index_including][39/125:530358] DETAIL: Key (c1, c2)=(1, 2) already exists.
2024-11-25 19:08:09.651 CET [562275][client backend] [pg_regress/index_including][39/125:530358] STATEMENT: INSERT INTO tbl SELECT 1, 2, 3*x, box('4,4,4,4') FROM generate_series(1,10) AS x;
2024-11-25 19:08:09.651 CET [562275][client backend] [pg_regress/index_including][39/126:0] ERROR: null value in column "c2" of relation "tbl" violates not-null constraint
2024-11-25 19:08:09.651 CET [562275][client backend] [pg_regress/index_including][39/126:0] DETAIL: Failing row contains (1, null, 3, (4,4),(4,4)).
2024-11-25 19:08:09.651 CET [562275][client backend] [pg_regress/index_including][39/126:0] STATEMENT: INSERT INTO tbl SELECT 1, NULL, 3*x, box('4,4,4,4') FROM generate_series(1,10) AS x;
2024-11-25 19:08:09.658 CET [562281][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.658 CET [562281][client backend] [[unknown]][64/20:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.658 CET [562281][client backend] [[unknown]][64/20:0] LOG: connection authorized: user=nkey database=isolation_regression_tcn application_name=pg_regress
2024-11-25 19:08:09.664 CET [562275][client backend] [pg_regress/index_including][39/138:530369] ERROR: duplicate key value violates unique constraint "tbl_c1_c2_c3_c4_key"
2024-11-25 19:08:09.664 CET [562275][client backend] [pg_regress/index_including][39/138:530369] DETAIL: Key (c1, c2)=(1, 2) already exists.
2024-11-25 19:08:09.664 CET [562275][client backend] [pg_regress/index_including][39/138:530369] STATEMENT: INSERT INTO tbl SELECT 1, 2, 3*x, box('4,4,4,4') FROM generate_series(1,10) AS x;
2024-11-25 19:08:09.665 CET [562273][client backend] [pg_regress/create_view][55/213:0] ERROR: cannot create temporary relation in non-temporary schema
2024-11-25 19:08:09.665 CET [562273][client backend] [pg_regress/create_view][55/213:0] STATEMENT: CREATE VIEW temp_view_test.v3_temp AS SELECT * FROM temp_table;
2024-11-25 19:08:09.665 CET [562273][client backend] [pg_regress/create_view][55/214:530371] ERROR: cannot create temporary relation in non-temporary schema
2024-11-25 19:08:09.665 CET [562273][client backend] [pg_regress/create_view][55/214:530371] STATEMENT: CREATE SCHEMA test_view_schema
CREATE TEMP VIEW testview AS SELECT 1;
2024-11-25 19:08:09.668 CET [562281][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.011 user=nkey database=isolation_regression_tcn host=[local]
2024-11-25 19:08:09.675 CET [562285][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.675 CET [562285][client backend] [[unknown]][54/151:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.675 CET [562285][client backend] [[unknown]][54/151:0] LOG: connection authorized: user=nkey database=isolation_regression_tcn application_name=isolation/tcn
2024-11-25 19:08:09.676 CET [562275][client backend] [pg_regress/index_including][39/143:530387] ERROR: duplicate key value violates unique constraint "tbl_pkey"
2024-11-25 19:08:09.676 CET [562275][client backend] [pg_regress/index_including][39/143:530387] DETAIL: Key (c1, c2)=(1, 2) already exists.
2024-11-25 19:08:09.676 CET [562275][client backend] [pg_regress/index_including][39/143:530387] STATEMENT: INSERT INTO tbl SELECT 1, 2, 3*x, box('4,4,4,4') FROM generate_series(1,10) AS x;
2024-11-25 19:08:09.676 CET [562275][client backend] [pg_regress/index_including][39/144:0] ERROR: null value in column "c2" of relation "tbl" violates not-null constraint
2024-11-25 19:08:09.676 CET [562275][client backend] [pg_regress/index_including][39/144:0] DETAIL: Failing row contains (1, null, 3, (4,4),(4,4)).
2024-11-25 19:08:09.676 CET [562275][client backend] [pg_regress/index_including][39/144:0] STATEMENT: INSERT INTO tbl SELECT 1, NULL, 3*x, box('4,4,4,4') FROM generate_series(1,10) AS x;
2024-11-25 19:08:09.680 CET [562286][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.680 CET [562275][client backend] [pg_regress/index_including][39/150:530399] ERROR: conflicting key value violates exclusion constraint "tbl_c1_c3_c4_excl"
2024-11-25 19:08:09.680 CET [562275][client backend] [pg_regress/index_including][39/150:530399] DETAIL: Key (c1)=(1) conflicts with existing key (c1)=(1).
2024-11-25 19:08:09.680 CET [562275][client backend] [pg_regress/index_including][39/150:530399] STATEMENT: INSERT INTO tbl SELECT 1, 2, 3*x, box('4,4,4,4') FROM generate_series(1,10) AS x;
2024-11-25 19:08:09.681 CET [562286][client backend] [[unknown]][62/35:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.681 CET [562286][client backend] [[unknown]][62/35:0] LOG: connection authorized: user=nkey database=isolation_regression_tcn application_name=isolation/tcn
2024-11-25 19:08:09.695 CET [562262][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.108 user=nkey database=postgres host=[local]
2024-11-25 19:08:09.706 CET [562289][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.708 CET [562289][client backend] [[unknown]][67/38:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.708 CET [562289][client backend] [[unknown]][67/38:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:09.712 CET [562275][client backend] [pg_regress/index_including][39/174:0] ERROR: cannot alter statistics on non-expression column "c1" of index "tbl_idx"
2024-11-25 19:08:09.712 CET [562275][client backend] [pg_regress/index_including][39/174:0] HINT: Alter statistics on table column instead.
2024-11-25 19:08:09.712 CET [562275][client backend] [pg_regress/index_including][39/174:0] STATEMENT: ALTER INDEX tbl_idx ALTER COLUMN 1 SET STATISTICS 1000;
2024-11-25 19:08:09.712 CET [562275][client backend] [pg_regress/index_including][39/176:0] ERROR: cannot alter statistics on included column "c2" of index "tbl_idx"
2024-11-25 19:08:09.712 CET [562275][client backend] [pg_regress/index_including][39/176:0] STATEMENT: ALTER INDEX tbl_idx ALTER COLUMN 3 SET STATISTICS 1000;
2024-11-25 19:08:09.712 CET [562275][client backend] [pg_regress/index_including][39/177:0] ERROR: column number 4 of relation "tbl_idx" does not exist
2024-11-25 19:08:09.712 CET [562275][client backend] [pg_regress/index_including][39/177:0] STATEMENT: ALTER INDEX tbl_idx ALTER COLUMN 4 SET STATISTICS 1000;
2024-11-25 19:08:09.727 CET [562273][client backend] [pg_regress/create_view][55/264:0] ERROR: invalid value for boolean option "security_barrier": 100
2024-11-25 19:08:09.727 CET [562273][client backend] [pg_regress/create_view][55/264:0] STATEMENT: CREATE VIEW mysecview5 WITH (security_barrier=100) -- Error
AS SELECT * FROM tbl1 WHERE a > 100;
2024-11-25 19:08:09.727 CET [562273][client backend] [pg_regress/create_view][55/265:0] ERROR: unrecognized parameter "invalid_option"
2024-11-25 19:08:09.727 CET [562273][client backend] [pg_regress/create_view][55/265:0] STATEMENT: CREATE VIEW mysecview6 WITH (invalid_option) -- Error
AS SELECT * FROM tbl1 WHERE a < 100;
2024-11-25 19:08:09.728 CET [562285][client backend] [isolation/tcn/control connection][:0] LOG: disconnection: session time: 0:00:00.053 user=nkey database=isolation_regression_tcn host=[local]
2024-11-25 19:08:09.728 CET [562286][client backend] [isolation/tcn/s1][:0] LOG: disconnection: session time: 0:00:00.048 user=nkey database=isolation_regression_tcn host=[local]
2024-11-25 19:08:09.730 CET [562273][client backend] [pg_regress/create_view][55/269:0] ERROR: invalid value for boolean option "security_invoker": 100
2024-11-25 19:08:09.730 CET [562273][client backend] [pg_regress/create_view][55/269:0] STATEMENT: CREATE VIEW mysecview10 WITH (security_invoker=100) -- Error
AS SELECT * FROM tbl1 WHERE a <> 100;
2024-11-25 19:08:09.735 CET [562271][client backend] [pg_regress/create_index][58/423:0] ERROR: relation "six_wrong" does not exist
2024-11-25 19:08:09.735 CET [562271][client backend] [pg_regress/create_index][58/423:0] STATEMENT: COMMENT ON INDEX six_wrong IS 'bad index';
2024-11-25 19:08:09.746 CET [562233][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.324 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:09.746 CET [562289][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.040 user=nkey database=postgres host=[local]
2024-11-25 19:08:09.749 CET [562293][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.750 CET [562293][client backend] [[unknown]][56/15:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.750 CET [562293][client backend] [[unknown]][56/15:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:09.753 CET [562295][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.754 CET [562295][client backend] [[unknown]][57/129:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.754 CET [562295][client backend] [[unknown]][57/129:0] LOG: connection authorized: user=nkey database=regression_tsm_system_rows application_name=pg_regress/tsm_system_rows
2024-11-25 19:08:09.775 CET [562295][client backend] [pg_regress/tsm_system_rows][57/139:0] ERROR: sample size must not be negative
2024-11-25 19:08:09.775 CET [562295][client backend] [pg_regress/tsm_system_rows][57/139:0] STATEMENT: SELECT id FROM test_tablesample TABLESAMPLE system_rows (-1);
2024-11-25 19:08:09.775 CET [562295][client backend] [pg_regress/tsm_system_rows][57/140:0] ERROR: tablesample method system_rows does not support REPEATABLE at character 44
2024-11-25 19:08:09.775 CET [562295][client backend] [pg_regress/tsm_system_rows][57/140:0] STATEMENT: SELECT * FROM test_tablesample TABLESAMPLE system_rows (10) REPEATABLE (0);
2024-11-25 19:08:09.779 CET [562295][client backend] [pg_regress/tsm_system_rows][57/145:530523] ERROR: cannot drop extension tsm_system_rows because other objects depend on it
2024-11-25 19:08:09.779 CET [562295][client backend] [pg_regress/tsm_system_rows][57/145:530523] DETAIL: view vv depends on function system_rows(internal)
2024-11-25 19:08:09.779 CET [562295][client backend] [pg_regress/tsm_system_rows][57/145:530523] HINT: Use DROP ... CASCADE to drop the dependent objects too.
2024-11-25 19:08:09.779 CET [562295][client backend] [pg_regress/tsm_system_rows][57/145:530523] STATEMENT: DROP EXTENSION tsm_system_rows;
2024-11-25 19:08:09.780 CET [562295][client backend] [pg_regress/tsm_system_rows][:0] LOG: disconnection: session time: 0:00:00.027 user=nkey database=regression_tsm_system_rows host=[local]
2024-11-25 19:08:09.816 CET [562275][client backend] [pg_regress/index_including][39/191:0] ERROR: relation "tbl_c1_c2_c3_c4_key" does not exist
2024-11-25 19:08:09.816 CET [562275][client backend] [pg_regress/index_including][39/191:0] STATEMENT: REINDEX INDEX tbl_c1_c2_c3_c4_key;
2024-11-25 19:08:09.820 CET [562303][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.820 CET [562302][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.821 CET [562302][client backend] [[unknown]][65/72:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.821 CET [562302][client backend] [[unknown]][65/72:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=pg_regress/postgres_fdw
2024-11-25 19:08:09.821 CET [562303][client backend] [[unknown]][68/21:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.821 CET [562303][client backend] [[unknown]][68/21:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:09.824 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:09.824 CET [562220][client backend] [pg_regress/postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.487 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:09.824 CET [562275][client backend] [pg_regress/index_including][39/197:0] ERROR: access method "brin" does not support included columns
2024-11-25 19:08:09.824 CET [562275][client backend] [pg_regress/index_including][39/197:0] STATEMENT: CREATE INDEX on tbl USING brin(c1, c2) INCLUDE (c3, c4);
2024-11-25 19:08:09.827 CET [562293][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.078 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:09.828 CET [562304][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.829 CET [562304][client backend] [[unknown]][38/369:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.829 CET [562304][client backend] [[unknown]][38/369:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:09.829 CET [562275][client backend] [pg_regress/index_including][39/200:0] ERROR: access method "gin" does not support included columns
2024-11-25 19:08:09.829 CET [562275][client backend] [pg_regress/index_including][39/200:0] STATEMENT: CREATE INDEX on tbl USING gin(c1, c2) INCLUDE (c3, c4);
2024-11-25 19:08:09.830 CET [562275][client backend] [pg_regress/index_including][39/201:0] ERROR: access method "hash" does not support included columns
2024-11-25 19:08:09.830 CET [562275][client backend] [pg_regress/index_including][39/201:0] STATEMENT: CREATE INDEX on tbl USING hash(c1, c2) INCLUDE (c3, c4);
2024-11-25 19:08:09.837 CET [562308][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.839 CET [562308][client backend] [[unknown]][66/28:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.839 CET [562308][client backend] [[unknown]][66/28:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:09.839 CET [562275][client backend] [pg_regress/index_including][39/210:530577] ERROR: duplicate key value violates unique constraint "tbl_idx_unique"
2024-11-25 19:08:09.839 CET [562275][client backend] [pg_regress/index_including][39/210:530577] DETAIL: Key (c1, c2)=(1, 2) already exists.
2024-11-25 19:08:09.839 CET [562275][client backend] [pg_regress/index_including][39/210:530577] STATEMENT: UPDATE tbl SET c2 = 2 WHERE c1 = 1;
2024-11-25 19:08:09.878 CET [562275][client backend] [pg_regress/index_including][:0] LOG: disconnection: session time: 0:00:00.280 user=nkey database=regression host=[local]
2024-11-25 19:08:09.880 CET [561023][checkpointer] LOG: checkpoint complete: wrote 3867 buffers (23.6%), wrote 2 SLRU buffers; 0 WAL file(s) added, 0 removed, 1 recycled; write=0.054 s, sync=0.001 s, total=0.056 s; sync files=0, longest=0.000 s, average=0.000 s; distance=21043 kB, estimate=21043 kB; lsn=4/4F09A260, redo lsn=4/4EBF3608
2024-11-25 19:08:09.881 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:09.894 CET [561023][checkpointer] LOG: checkpoint complete: wrote 758 buffers (4.6%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 1 recycled; write=0.013 s, sync=0.001 s, total=0.014 s; sync files=0, longest=0.000 s, average=0.000 s; distance=4960 kB, estimate=19435 kB; lsn=4/4F1FC9F0, redo lsn=4/4F0CB750
2024-11-25 19:08:09.898 CET [562303][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.078 user=nkey database=postgres host=[local]
2024-11-25 19:08:09.902 CET [562311][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.902 CET [562311][client backend] [[unknown]][71/22:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.902 CET [562311][client backend] [[unknown]][71/22:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:09.908 CET [562308][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.071 user=nkey database=postgres host=[local]
2024-11-25 19:08:09.923 CET [562314][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.924 CET [562314][client backend] [[unknown]][70/67:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.924 CET [562314][client backend] [[unknown]][70/67:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:09.933 CET [562311][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.031 user=nkey database=postgres host=[local]
2024-11-25 19:08:09.936 CET [562316][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.937 CET [562316][client backend] [[unknown]][75/22:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.937 CET [562316][client backend] [[unknown]][75/22:0] LOG: connection authorized: user=nkey database=regression_tsm_system_time application_name=pg_regress/tsm_system_time
2024-11-25 19:08:09.952 CET [562316][client backend] [pg_regress/tsm_system_time][75/30:0] ERROR: sample collection time must not be negative
2024-11-25 19:08:09.952 CET [562316][client backend] [pg_regress/tsm_system_time][75/30:0] STATEMENT: SELECT id FROM test_tablesample TABLESAMPLE system_time (-1);
2024-11-25 19:08:09.952 CET [562316][client backend] [pg_regress/tsm_system_time][75/31:0] ERROR: tablesample method system_time does not support REPEATABLE at character 44
2024-11-25 19:08:09.952 CET [562316][client backend] [pg_regress/tsm_system_time][75/31:0] STATEMENT: SELECT * FROM test_tablesample TABLESAMPLE system_time (10) REPEATABLE (0);
2024-11-25 19:08:09.954 CET [562314][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.030 user=nkey database=postgres host=[local]
2024-11-25 19:08:09.955 CET [562316][client backend] [pg_regress/tsm_system_time][75/38:530719] ERROR: cannot drop extension tsm_system_time because other objects depend on it
2024-11-25 19:08:09.955 CET [562316][client backend] [pg_regress/tsm_system_time][75/38:530719] DETAIL: view vv depends on function system_time(internal)
2024-11-25 19:08:09.955 CET [562316][client backend] [pg_regress/tsm_system_time][75/38:530719] HINT: Use DROP ... CASCADE to drop the dependent objects too.
2024-11-25 19:08:09.955 CET [562316][client backend] [pg_regress/tsm_system_time][75/38:530719] STATEMENT: DROP EXTENSION tsm_system_time;
2024-11-25 19:08:09.955 CET [562316][client backend] [pg_regress/tsm_system_time][:0] LOG: disconnection: session time: 0:00:00.019 user=nkey database=regression_tsm_system_time host=[local]
2024-11-25 19:08:09.957 CET [562320][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:09.958 CET [562320][client backend] [[unknown]][78/27:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:09.958 CET [562320][client backend] [[unknown]][78/27:0] LOG: connection authorized: user=nkey database=regression_unaccent application_name=pg_regress/unaccent
2024-11-25 19:08:09.960 CET [562273][client backend] [pg_regress/create_view][55/557:530724] ERROR: cannot drop column f3 of table tt14t because other objects depend on it
2024-11-25 19:08:09.960 CET [562273][client backend] [pg_regress/create_view][55/557:530724] DETAIL: view tt14v depends on column f3 of table tt14t
2024-11-25 19:08:09.960 CET [562273][client backend] [pg_regress/create_view][55/557:530724] HINT: Use DROP ... CASCADE to drop the dependent objects too.
2024-11-25 19:08:09.960 CET [562273][client backend] [pg_regress/create_view][55/557:530724] STATEMENT: alter table tt14t drop column f3;
2024-11-25 19:08:09.965 CET [562273][client backend] [pg_regress/create_view][55/558:530726] ERROR: attribute 3 of type record has been dropped
2024-11-25 19:08:09.965 CET [562273][client backend] [pg_regress/create_view][55/558:530726] STATEMENT: select * from tt14v;
2024-11-25 19:08:09.965 CET [562273][client backend] [pg_regress/create_view][55/559:530729] ERROR: cannot alter type of a column used by a view or rule
2024-11-25 19:08:09.965 CET [562273][client backend] [pg_regress/create_view][55/559:530729] DETAIL: rule _RETURN on view tt14v depends on column "f4"
2024-11-25 19:08:09.965 CET [562273][client backend] [pg_regress/create_view][55/559:530729] STATEMENT: alter table tt14t alter column f4 type integer using f4::integer;
2024-11-25 19:08:09.972 CET [562273][client backend] [pg_regress/create_view][55/560:530733] ERROR: attribute 4 of type record has wrong type
2024-11-25 19:08:09.972 CET [562273][client backend] [pg_regress/create_view][55/560:530733] DETAIL: Table has type integer, but query expects text.
2024-11-25 19:08:09.972 CET [562273][client backend] [pg_regress/create_view][55/560:530733] STATEMENT: select * from tt14v;
2024-11-25 19:08:09.979 CET [562320][client backend] [pg_regress/unaccent][:0] LOG: disconnection: session time: 0:00:00.021 user=nkey database=regression_unaccent host=[local]
2024-11-25 19:08:09.996 CET [562273][client backend] [pg_regress/create_view][55/593:0] ERROR: operator does not exist: text = text[] at character 20
2024-11-25 19:08:09.996 CET [562273][client backend] [pg_regress/create_view][55/593:0] HINT: No operator matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:09.996 CET [562273][client backend] [pg_regress/create_view][55/593:0] STATEMENT: select 'foo'::text = any((select array['abc','def','foo']::text[]));
2024-11-25 19:08:10.001 CET [562328][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.002 CET [562328][client backend] [[unknown]][59/183:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.002 CET [562328][client backend] [[unknown]][59/183:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:10.004 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:10.024 CET [562332][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.024 CET [562332][client backend] [[unknown]][79/45:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.024 CET [562332][client backend] [[unknown]][79/45:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:10.025 CET [562304][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.197 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:10.026 CET [562273][client backend] [pg_regress/create_view][55/619:0] ERROR: access to non-system view "tt27v" is restricted
2024-11-25 19:08:10.026 CET [562273][client backend] [pg_regress/create_view][55/619:0] STATEMENT: select a from tt27v where a > 0;
2024-11-25 19:08:10.026 CET [562273][client backend] [pg_regress/create_view][55/620:0] ERROR: access to non-system view "tt27v" is restricted
2024-11-25 19:08:10.026 CET [562273][client backend] [pg_regress/create_view][55/620:0] STATEMENT: insert into tt27v values (1);
2024-11-25 19:08:10.026 CET [562333][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.027 CET [562333][client backend] [[unknown]][1/24:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.027 CET [562333][client backend] [[unknown]][1/24:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:10.034 CET [562333][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.007 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:10.035 CET [562334][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.036 CET [562334][client backend] [[unknown]][76/46:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.036 CET [562334][client backend] [[unknown]][76/46:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:10.047 CET [561023][checkpointer] LOG: checkpoint complete: wrote 3574 buffers (21.8%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 1 recycled; write=0.042 s, sync=0.001 s, total=0.043 s; sync files=0, longest=0.000 s, average=0.000 s; distance=18196 kB, estimate=19311 kB; lsn=4/505EDF20, redo lsn=4/502909D0
2024-11-25 19:08:10.048 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:10.059 CET [561486][client backend] [isolation/receipt-report/control connection][:0] LOG: disconnection: session time: 0:00:03.107 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:10.059 CET [561489][client backend] [isolation/receipt-report/s1][:0] LOG: disconnection: session time: 0:00:03.104 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:10.059 CET [561493][client backend] [isolation/receipt-report/s3][:0] LOG: disconnection: session time: 0:00:03.098 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:10.061 CET [561023][checkpointer] LOG: checkpoint complete: wrote 999 buffers (6.1%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.012 s, sync=0.001 s, total=0.013 s; sync files=0, longest=0.000 s, average=0.000 s; distance=3664 kB, estimate=17746 kB; lsn=4/5078F998, redo lsn=4/50624BF8
2024-11-25 19:08:10.061 CET [561492][client backend] [isolation/receipt-report/s2][:0] LOG: disconnection: session time: 0:00:03.102 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:10.064 CET [562328][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.063 user=nkey database=postgres host=[local]
2024-11-25 19:08:10.065 CET [562272][client backend] [pg_regress/index_including_gist][69/82:530820] ERROR: conflicting key value violates exclusion constraint "tbl_gist_c4_c1_c2_c3_excl"
2024-11-25 19:08:10.065 CET [562272][client backend] [pg_regress/index_including_gist][69/82:530820] DETAIL: Key (c4)=((4,5),(2,3)) conflicts with existing key (c4)=((2,3),(1,2)).
2024-11-25 19:08:10.065 CET [562272][client backend] [pg_regress/index_including_gist][69/82:530820] STATEMENT: INSERT INTO tbl_gist SELECT x, 2*x, 3*x, box(point(x,x+1),point(2*x,2*x+1)) FROM generate_series(1,10) AS x;
2024-11-25 19:08:10.067 CET [562340][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.067 CET [562341][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.067 CET [562340][client backend] [[unknown]][73/48:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.067 CET [562340][client backend] [[unknown]][73/48:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/temporal-range-integrity
2024-11-25 19:08:10.067 CET [562341][client backend] [[unknown]][60/153:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.068 CET [562341][client backend] [[unknown]][60/153:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:10.070 CET [562342][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.071 CET [562342][client backend] [[unknown]][74/23:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.071 CET [562342][client backend] [[unknown]][74/23:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/temporal-range-integrity
2024-11-25 19:08:10.072 CET [562332][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.049 user=nkey database=postgres host=[local]
2024-11-25 19:08:10.075 CET [562345][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.075 CET [562272][client backend] [pg_regress/index_including_gist][:0] LOG: disconnection: session time: 0:00:00.482 user=nkey database=regression host=[local]
2024-11-25 19:08:10.075 CET [562345][client backend] [[unknown]][82/45:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.075 CET [562345][client backend] [[unknown]][82/45:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/temporal-range-integrity
2024-11-25 19:08:10.076 CET [562346][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.076 CET [562346][client backend] [[unknown]][83/38:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.076 CET [562346][client backend] [[unknown]][83/38:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:10.079 CET [562273][client backend] [pg_regress/create_view][:0] LOG: disconnection: session time: 0:00:00.483 user=nkey database=regression host=[local]
2024-11-25 19:08:10.091 CET [562271][client backend] [pg_regress/create_index][58/599:530841] ERROR: duplicate key value violates unique constraint "unique_idx2"
2024-11-25 19:08:10.091 CET [562271][client backend] [pg_regress/create_index][58/599:530841] DETAIL: Key (i)=(null) already exists.
2024-11-25 19:08:10.091 CET [562271][client backend] [pg_regress/create_index][58/599:530841] STATEMENT: INSERT INTO unique_tbl (t) VALUES ('seven');
2024-11-25 19:08:10.094 CET [562271][client backend] [pg_regress/create_index][58/603:530847] ERROR: could not create unique index "unique_idx4"
2024-11-25 19:08:10.094 CET [562271][client backend] [pg_regress/create_index][58/603:530847] DETAIL: Key (i)=(null) is duplicated.
2024-11-25 19:08:10.094 CET [562271][client backend] [pg_regress/create_index][58/603:530847] STATEMENT: CREATE UNIQUE INDEX unique_idx4 ON unique_tbl (i) NULLS NOT DISTINCT;
2024-11-25 19:08:10.098 CET [562341][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.031 user=nkey database=postgres host=[local]
2024-11-25 19:08:10.102 CET [562348][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.103 CET [562348][client backend] [[unknown]][80/32:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.103 CET [562348][client backend] [[unknown]][80/32:0] LOG: connection authorized: user=nkey database=regression_xml2 application_name=pg_regress/xml2
2024-11-25 19:08:10.105 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/48:530854] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.105 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/48:530854] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:10.105 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/48:530854] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.105 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/48:530854] STATEMENT: DELETE FROM statute WHERE statute_cite = '123.45(1)a' AND eff_date = DATE '2008-01-01';
2024-11-25 19:08:10.106 CET [562346][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.030 user=nkey database=postgres host=[local]
2024-11-25 19:08:10.113 CET [562352][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.114 CET [562352][client backend] [[unknown]][81/69:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.114 CET [562352][client backend] [[unknown]][81/69:0] LOG: connection authorized: user=nkey database=isolation_regression_brin application_name=isolation/summarization-and-inprogress-insertion
2024-11-25 19:08:10.117 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/49:530866] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.117 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/49:530866] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.117 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/49:530866] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.117 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/49:530866] STATEMENT: COMMIT;
2024-11-25 19:08:10.117 CET [562271][client backend] [pg_regress/create_index][58/631:530869] ERROR: duplicate key value violates unique constraint "func_index_index"
2024-11-25 19:08:10.117 CET [562271][client backend] [pg_regress/create_index][58/631:530869] DETAIL: Key (textcat(f1, f2))=(ABCDEF) already exists.
2024-11-25 19:08:10.117 CET [562271][client backend] [pg_regress/create_index][58/631:530869] STATEMENT: INSERT INTO func_index_heap VALUES('ABCD', 'EF');
2024-11-25 19:08:10.124 CET [562353][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.125 CET [562353][client backend] [[unknown]][88/77:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.125 CET [562353][client backend] [[unknown]][88/77:0] LOG: connection authorized: user=nkey database=isolation_regression_brin application_name=isolation/summarization-and-inprogress-insertion
2024-11-25 19:08:10.127 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/28:530878] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.127 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/28:530878] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.127 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/28:530878] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.127 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/28:530878] STATEMENT: COMMIT;
2024-11-25 19:08:10.129 CET [562354][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.130 CET [562354][client backend] [[unknown]][45/550:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.130 CET [562354][client backend] [[unknown]][45/550:0] LOG: connection authorized: user=nkey database=isolation_regression_brin application_name=isolation/summarization-and-inprogress-insertion
2024-11-25 19:08:10.132 CET [562271][client backend] [pg_regress/create_index][58/652:530892] ERROR: duplicate key value violates unique constraint "func_index_index"
2024-11-25 19:08:10.132 CET [562271][client backend] [pg_regress/create_index][58/652:530892] DETAIL: Key ((f1 || f2))=(ABCDEF) already exists.
2024-11-25 19:08:10.132 CET [562271][client backend] [pg_regress/create_index][58/652:530892] STATEMENT: INSERT INTO func_index_heap VALUES('ABCD', 'EF');
runtime error: element output
File write for 0wn3d.txt refused
runtime error: element output
xsltDocumentElem: write rights for 0wn3d.txt denied
2024-11-25 19:08:10.134 CET [562348][client backend] [pg_regress/xml2][80/59:0] ERROR: failed to apply stylesheet
2024-11-25 19:08:10.134 CET [562348][client backend] [pg_regress/xml2][80/59:0] STATEMENT: SELECT xslt_process('<xml><foo>Hello from XML</foo></xml>',
$$<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:sax="http://icl.com/saxon"
extension-element-prefixes="sax">
<xsl:template match="//foo">
<sax:output href="0wn3d.txt" method="text">
<xsl:value-of select="'0wn3d via xml2 extension and libxslt'"/>
<xsl:apply-templates/>
</sax:output>
</xsl:template>
</xsl:stylesheet>$$);
2024-11-25 19:08:10.134 CET [562348][client backend] [pg_regress/xml2][:0] LOG: disconnection: session time: 0:00:00.031 user=nkey database=regression_xml2 host=[local]
2024-11-25 19:08:10.139 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/51:530897] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.139 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/51:530897] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:10.139 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/51:530897] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.139 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/51:530897] STATEMENT: DELETE FROM statute WHERE statute_cite = '123.45(1)a' AND eff_date = DATE '2008-01-01';
2024-11-25 19:08:10.142 CET [562271][client backend] [pg_regress/create_index][58/667:0] ERROR: column "row" has pseudo-type record
2024-11-25 19:08:10.142 CET [562271][client backend] [pg_regress/create_index][58/667:0] STATEMENT: create index on func_index_heap ((f1 || f2), (row(f1, f2)));
2024-11-25 19:08:10.146 CET [562271][client backend] [pg_regress/create_index][58/672:530904] ERROR: duplicate key value violates unique constraint "covering_index_index"
2024-11-25 19:08:10.146 CET [562271][client backend] [pg_regress/create_index][58/672:530904] DETAIL: Key (f1, f2)=(1, 2) already exists.
2024-11-25 19:08:10.146 CET [562271][client backend] [pg_regress/create_index][58/672:530904] STATEMENT: INSERT INTO covering_index_heap VALUES(1,2,'BBB');
2024-11-25 19:08:10.149 CET [562358][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.150 CET [562358][client backend] [[unknown]][84/60:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.150 CET [562358][client backend] [[unknown]][84/60:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:10.151 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/52:530911] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.151 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/52:530911] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.151 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/52:530911] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.151 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/52:530911] STATEMENT: COMMIT;
2024-11-25 19:08:10.161 CET [562352][client backend] [isolation/summarization-and-inprogress-insertion/control connec][:0] LOG: disconnection: session time: 0:00:00.047 user=nkey database=isolation_regression_brin host=[local]
2024-11-25 19:08:10.161 CET [562353][client backend] [isolation/summarization-and-inprogress-insertion/s1][:0] LOG: disconnection: session time: 0:00:00.036 user=nkey database=isolation_regression_brin host=[local]
2024-11-25 19:08:10.161 CET [562354][client backend] [isolation/summarization-and-inprogress-insertion/s2][:0] LOG: disconnection: session time: 0:00:00.032 user=nkey database=isolation_regression_brin host=[local]
2024-11-25 19:08:10.162 CET [562359][autovacuum worker] LOG: automatic vacuum of table "regression_postgres_fdw.public.loct_empty": index scans: 0
pages: 0 removed, 1 remain, 1 scanned (100.00% of total)
tuples: 0 removed, 100 remain, 100 are dead but not yet removable
removable cutoff: 529282, which was 1645 XIDs old when operation ended
frozen: 0 pages from table (0.00% of total) had 0 tuples frozen
index scan not needed: 0 pages from table (0.00% of total) had 0 dead item identifiers removed
avg read rate: 0.000 MB/s, avg write rate: 66.774 MB/s
buffer usage: 28 hits, 0 reads, 3 dirtied
WAL usage: 4 records, 3 full page images, 24977 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:10.163 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/31:530926] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.163 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/31:530926] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.163 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/31:530926] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.163 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/31:530926] STATEMENT: COMMIT;
2024-11-25 19:08:10.164 CET [562271][client backend] [pg_regress/create_index][58/690:530930] ERROR: duplicate key value violates unique constraint "concur_index2"
2024-11-25 19:08:10.164 CET [562271][client backend] [pg_regress/create_index][58/690:530930] DETAIL: Key (f1)=(b) already exists.
2024-11-25 19:08:10.164 CET [562271][client backend] [pg_regress/create_index][58/690:530930] STATEMENT: INSERT INTO concur_heap VALUES ('b','x');
2024-11-25 19:08:10.165 CET [562271][client backend] [pg_regress/create_index][58/692:0] ERROR: could not create unique index "concur_index3"
2024-11-25 19:08:10.165 CET [562271][client backend] [pg_regress/create_index][58/692:0] DETAIL: Key (f2)=(b) is duplicated.
2024-11-25 19:08:10.165 CET [562271][client backend] [pg_regress/create_index][58/692:0] STATEMENT: CREATE UNIQUE INDEX CONCURRENTLY concur_index3 ON concur_heap(f2);
2024-11-25 19:08:10.166 CET [562359][autovacuum worker] LOG: automatic analyze of table "regression_postgres_fdw.public.loct_empty"
avg read rate: 0.000 MB/s, avg write rate: 0.000 MB/s
buffer usage: 144 hits, 0 reads, 0 dirtied
WAL usage: 0 records, 0 full page images, 0 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:10.166 CET [562359][autovacuum worker] LOG: automatic vacuum of table "regression_postgres_fdw.pg_catalog.pg_db_role_setting": index scans: 1
pages: 0 removed, 6 remain, 6 scanned (100.00% of total)
tuples: 36 removed, 145 remain, 78 are dead but not yet removable
removable cutoff: 528692, which was 2243 XIDs old when operation ended
new relfrozenxid: 525686, which is 524952 XIDs ahead of previous value
new relminmxid: 2904, which is 2903 MXIDs ahead of previous value
frozen: 0 pages from table (0.00% of total) had 0 tuples frozen
index scan needed: 5 pages from table (83.33% of total) had 6 dead item identifiers removed
index "pg_db_role_setting_databaseid_rol_index": pages: 2 in total, 0 newly deleted, 0 currently deleted, 0 reusable
avg read rate: 0.000 MB/s, avg write rate: 231.291 MB/s
buffer usage: 44 hits, 0 reads, 9 dirtied
WAL usage: 19 records, 9 full page images, 58179 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:10.172 CET [562359][autovacuum worker] LOG: automatic analyze of table "regression_postgres_fdw.pg_catalog.pg_db_role_setting"
avg read rate: 0.000 MB/s, avg write rate: 2.604 MB/s
buffer usage: 237 hits, 0 reads, 2 dirtied
WAL usage: 7 records, 2 full page images, 11890 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:10.174 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/54:530939] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.174 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/54:530939] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.174 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/54:530939] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.174 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/54:530939] STATEMENT: COMMIT;
2024-11-25 19:08:10.176 CET [562365][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.176 CET [562365][client backend] [[unknown]][89/50:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.176 CET [562365][client backend] [[unknown]][89/50:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:10.180 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:10.187 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/33:530949] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.187 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/33:530949] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.187 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/33:530949] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.187 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/33:530949] STATEMENT: COMMIT;
2024-11-25 19:08:10.197 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/34:530953] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.197 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/34:530953] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:10.197 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/34:530953] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.197 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/34:530953] STATEMENT: INSERT INTO offense VALUES (1, '123.45(1)a', DATE '2009-05-15');
2024-11-25 19:08:10.209 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/57:530957] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.209 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/57:530957] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:10.209 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/57:530957] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.209 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/57:530957] STATEMENT: DELETE FROM statute WHERE statute_cite = '123.45(1)a' AND eff_date = DATE '2008-01-01';
2024-11-25 19:08:10.213 CET [562370][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.214 CET [562370][client backend] [[unknown]][87/21:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.214 CET [562370][client backend] [[unknown]][87/21:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:10.215 CET [562271][client backend] [pg_regress/create_index][58/705:0] ERROR: CREATE INDEX CONCURRENTLY cannot run inside a transaction block
2024-11-25 19:08:10.215 CET [562271][client backend] [pg_regress/create_index][58/705:0] STATEMENT: CREATE INDEX CONCURRENTLY concur_index7 ON concur_heap(f1);
2024-11-25 19:08:10.218 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/58:530964] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.218 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/58:530964] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.218 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/58:530964] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.218 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/58:530964] STATEMENT: COMMIT;
2024-11-25 19:08:10.225 CET [561023][checkpointer] LOG: checkpoint complete: wrote 3860 buffers (23.6%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 1 recycled; write=0.043 s, sync=0.001 s, total=0.046 s; sync files=0, longest=0.000 s, average=0.000 s; distance=21211 kB, estimate=21211 kB; lsn=4/51EFC4C0, redo lsn=4/51ADBA78
2024-11-25 19:08:10.226 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:10.226 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/37:530970] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.226 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/37:530970] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.226 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/37:530970] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.226 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/37:530970] STATEMENT: COMMIT;
2024-11-25 19:08:10.237 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/60:530980] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.237 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/60:530980] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.237 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/60:530980] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.237 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/60:530980] STATEMENT: COMMIT;
2024-11-25 19:08:10.238 CET [562271][client backend] [pg_regress/create_index][58/717:530983] ERROR: could not create unique index "concur_index3"
2024-11-25 19:08:10.238 CET [562271][client backend] [pg_regress/create_index][58/717:530983] DETAIL: Key (f2)=(b) is duplicated.
2024-11-25 19:08:10.238 CET [562271][client backend] [pg_regress/create_index][58/717:530983] STATEMENT: REINDEX TABLE concur_heap;
2024-11-25 19:08:10.245 CET [561023][checkpointer] LOG: checkpoint complete: wrote 731 buffers (4.5%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.009 s, sync=0.001 s, total=0.020 s; sync files=0, longest=0.000 s, average=0.000 s; distance=4501 kB, estimate=19540 kB; lsn=4/52166E30, redo lsn=4/51F41010
2024-11-25 19:08:10.248 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/39:530989] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.248 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/39:530989] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.248 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/39:530989] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.248 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/39:530989] STATEMENT: COMMIT;
2024-11-25 19:08:10.248 CET [562365][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.073 user=nkey database=postgres host=[local]
2024-11-25 19:08:10.249 CET [562373][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.250 CET [562373][client backend] [[unknown]][91/28:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.250 CET [562373][client backend] [[unknown]][91/28:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:10.257 CET [562370][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.044 user=nkey database=postgres host=[local]
2024-11-25 19:08:10.259 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/40:530995] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.259 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/40:530995] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:10.259 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/40:530995] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.259 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/40:530995] STATEMENT: INSERT INTO offense VALUES (1, '123.45(1)a', DATE '2009-05-15');
2024-11-25 19:08:10.260 CET [562376][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.261 CET [562376][client backend] [[unknown]][53/90:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.261 CET [562376][client backend] [[unknown]][53/90:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:10.271 CET [562271][client backend] [pg_regress/create_index][58/746:531004] ERROR: CREATE INDEX CONCURRENTLY cannot run inside a transaction block
2024-11-25 19:08:10.271 CET [562271][client backend] [pg_regress/create_index][58/746:531004] STATEMENT: CREATE INDEX CONCURRENTLY concur_temp_ind ON concur_temp(f1);
2024-11-25 19:08:10.272 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/63:531005] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.272 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/63:531005] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.272 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/63:531005] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.272 CET [562345][client backend] [isolation/temporal-range-integrity/s2][82/63:531005] STATEMENT: COMMIT;
2024-11-25 19:08:10.276 CET [562271][client backend] [pg_regress/create_index][58/756:0] ERROR: DROP INDEX CONCURRENTLY does not support dropping multiple objects
2024-11-25 19:08:10.276 CET [562271][client backend] [pg_regress/create_index][58/756:0] STATEMENT: DROP INDEX CONCURRENTLY "concur_index2", "concur_index3";
2024-11-25 19:08:10.276 CET [562271][client backend] [pg_regress/create_index][58/757:0] ERROR: DROP INDEX CONCURRENTLY cannot run inside a transaction block
2024-11-25 19:08:10.276 CET [562271][client backend] [pg_regress/create_index][58/757:0] STATEMENT: DROP INDEX CONCURRENTLY "concur_index5";
2024-11-25 19:08:10.279 CET [562373][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.029 user=nkey database=postgres host=[local]
2024-11-25 19:08:10.282 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/42:531034] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.282 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/42:531034] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.282 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/42:531034] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.282 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/42:531034] STATEMENT: COMMIT;
2024-11-25 19:08:10.283 CET [562380][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.284 CET [562380][client backend] [[unknown]][97/78:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.284 CET [562380][client backend] [[unknown]][97/78:0] LOG: connection authorized: user=nkey database=isolation_regression_delay_execution application_name=isolation/partition-addition
2024-11-25 19:08:10.286 CET [562376][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.025 user=nkey database=postgres host=[local]
2024-11-25 19:08:10.289 CET [562382][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.290 CET [562382][client backend] [[unknown]][95/178:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.290 CET [562382][client backend] [[unknown]][95/178:0] LOG: connection authorized: user=nkey database=regression_dummy_index_am application_name=pg_regress/reloptions
2024-11-25 19:08:10.292 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/43:531050] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.292 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/43:531050] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:10.292 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/43:531050] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.292 CET [562342][client backend] [isolation/temporal-range-integrity/s1][74/43:531050] STATEMENT: INSERT INTO offense VALUES (1, '123.45(1)a', DATE '2009-05-15');
2024-11-25 19:08:10.292 CET [562383][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.293 CET [562383][client backend] [[unknown]][93/77:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.293 CET [562383][client backend] [[unknown]][93/77:0] LOG: connection authorized: user=nkey database=isolation_regression_delay_execution application_name=isolation/partition-addition
2024-11-25 19:08:10.295 CET [562384][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.296 CET [562384][client backend] [[unknown]][24/456:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.296 CET [562384][client backend] [[unknown]][24/456:0] LOG: connection authorized: user=nkey database=isolation_regression_delay_execution application_name=isolation/partition-addition
2024-11-25 19:08:10.300 CET [562149][client backend] [pg_regress/pg_trgm][:0] LOG: disconnection: session time: 0:00:01.219 user=nkey database=regression_pg_trgm host=[local]
2024-11-25 19:08:10.302 CET [562388][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.303 CET [562388][client backend] [[unknown]][90/128:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.303 CET [562388][client backend] [[unknown]][90/128:0] LOG: connection authorized: user=nkey database=regression_pg_trgm application_name=pg_regress/pg_word_trgm
2024-11-25 19:08:10.307 CET [562382][client backend] [pg_regress/reloptions][95/195:531077] ERROR: invalid value for enum option "option_enum": three
2024-11-25 19:08:10.307 CET [562382][client backend] [pg_regress/reloptions][95/195:531077] DETAIL: Valid values are "one" and "two".
2024-11-25 19:08:10.307 CET [562382][client backend] [pg_regress/reloptions][95/195:531077] STATEMENT: ALTER INDEX dummy_test_idx SET (option_enum = 'three');
2024-11-25 19:08:10.308 CET [562340][client backend] [isolation/temporal-range-integrity/control connection][:0] LOG: disconnection: session time: 0:00:00.242 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:10.309 CET [562271][client backend] [pg_regress/create_index][58/815:531082] ERROR: cannot drop index cwi_replaced_pkey because constraint cwi_replaced_pkey on table cwi_test requires it
2024-11-25 19:08:10.309 CET [562271][client backend] [pg_regress/create_index][58/815:531082] HINT: You can drop constraint cwi_replaced_pkey on table cwi_test instead.
2024-11-25 19:08:10.309 CET [562271][client backend] [pg_regress/create_index][58/815:531082] STATEMENT: DROP INDEX cwi_replaced_pkey;
2024-11-25 19:08:10.309 CET [562342][client backend] [isolation/temporal-range-integrity/s1][:0] LOG: disconnection: session time: 0:00:00.238 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:10.309 CET [562345][client backend] [isolation/temporal-range-integrity/s2][:0] LOG: disconnection: session time: 0:00:00.234 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:10.310 CET [562382][client backend] [pg_regress/reloptions][95/205:531088] ERROR: invalid value for integer option "option_int": true
2024-11-25 19:08:10.310 CET [562382][client backend] [pg_regress/reloptions][95/205:531088] STATEMENT: ALTER INDEX dummy_test_idx SET (option_int = true);
2024-11-25 19:08:10.310 CET [562382][client backend] [pg_regress/reloptions][95/206:531090] ERROR: invalid value for integer option "option_int": val3
2024-11-25 19:08:10.310 CET [562382][client backend] [pg_regress/reloptions][95/206:531090] STATEMENT: ALTER INDEX dummy_test_idx SET (option_int = 'val3');
2024-11-25 19:08:10.310 CET [562271][client backend] [pg_regress/create_index][58/817:531089] ERROR: index "cwi_uniq3_idx" column number 1 does not have default sorting behavior at character 26
2024-11-25 19:08:10.310 CET [562271][client backend] [pg_regress/create_index][58/817:531089] DETAIL: Cannot create a primary key or unique constraint using such an index.
2024-11-25 19:08:10.310 CET [562271][client backend] [pg_regress/create_index][58/817:531089] STATEMENT: ALTER TABLE cwi_test ADD UNIQUE USING INDEX cwi_uniq3_idx;
2024-11-25 19:08:10.311 CET [562382][client backend] [pg_regress/reloptions][95/209:531093] ERROR: invalid value for boolean option "option_bool": 4
2024-11-25 19:08:10.311 CET [562382][client backend] [pg_regress/reloptions][95/209:531093] STATEMENT: ALTER INDEX dummy_test_idx SET (option_bool = 4);
2024-11-25 19:08:10.311 CET [562382][client backend] [pg_regress/reloptions][95/211:531096] ERROR: invalid value for boolean option "option_bool": 3.4
2024-11-25 19:08:10.311 CET [562382][client backend] [pg_regress/reloptions][95/211:531096] STATEMENT: ALTER INDEX dummy_test_idx SET (option_bool = 3.4);
2024-11-25 19:08:10.311 CET [562271][client backend] [pg_regress/create_index][58/819:531095] ERROR: index "cwi_uniq4_idx" column number 1 does not have default sorting behavior at character 26
2024-11-25 19:08:10.311 CET [562271][client backend] [pg_regress/create_index][58/819:531095] DETAIL: Cannot create a primary key or unique constraint using such an index.
2024-11-25 19:08:10.311 CET [562271][client backend] [pg_regress/create_index][58/819:531095] STATEMENT: ALTER TABLE cwi_test ADD UNIQUE USING INDEX cwi_uniq4_idx;
2024-11-25 19:08:10.311 CET [562382][client backend] [pg_regress/reloptions][95/212:531097] ERROR: invalid value for boolean option "option_bool": val4
2024-11-25 19:08:10.311 CET [562382][client backend] [pg_regress/reloptions][95/212:531097] STATEMENT: ALTER INDEX dummy_test_idx SET (option_bool = 'val4');
2024-11-25 19:08:10.312 CET [562382][client backend] [pg_regress/reloptions][95/216:531101] ERROR: invalid value for floating point option "option_real": true
2024-11-25 19:08:10.312 CET [562382][client backend] [pg_regress/reloptions][95/216:531101] STATEMENT: ALTER INDEX dummy_test_idx SET (option_real = true);
2024-11-25 19:08:10.312 CET [562382][client backend] [pg_regress/reloptions][95/217:531102] ERROR: invalid value for floating point option "option_real": val5
2024-11-25 19:08:10.312 CET [562382][client backend] [pg_regress/reloptions][95/217:531102] STATEMENT: ALTER INDEX dummy_test_idx SET (option_real = 'val5');
2024-11-25 19:08:10.313 CET [562392][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.313 CET [562382][client backend] [pg_regress/reloptions][95/221:531106] ERROR: invalid value for enum option "option_enum": 0
2024-11-25 19:08:10.313 CET [562382][client backend] [pg_regress/reloptions][95/221:531106] DETAIL: Valid values are "one" and "two".
2024-11-25 19:08:10.313 CET [562382][client backend] [pg_regress/reloptions][95/221:531106] STATEMENT: ALTER INDEX dummy_test_idx SET (option_enum = 0);
2024-11-25 19:08:10.313 CET [562382][client backend] [pg_regress/reloptions][95/222:531107] ERROR: invalid value for enum option "option_enum": true
2024-11-25 19:08:10.313 CET [562382][client backend] [pg_regress/reloptions][95/222:531107] DETAIL: Valid values are "one" and "two".
2024-11-25 19:08:10.313 CET [562382][client backend] [pg_regress/reloptions][95/222:531107] STATEMENT: ALTER INDEX dummy_test_idx SET (option_enum = true);
2024-11-25 19:08:10.313 CET [562382][client backend] [pg_regress/reloptions][95/223:531108] ERROR: invalid value for enum option "option_enum": three
2024-11-25 19:08:10.313 CET [562382][client backend] [pg_regress/reloptions][95/223:531108] DETAIL: Valid values are "one" and "two".
2024-11-25 19:08:10.313 CET [562382][client backend] [pg_regress/reloptions][95/223:531108] STATEMENT: ALTER INDEX dummy_test_idx SET (option_enum = 'three');
2024-11-25 19:08:10.313 CET [562392][client backend] [[unknown]][33/319:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.313 CET [562392][client backend] [[unknown]][33/319:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/project-manager
2024-11-25 19:08:10.314 CET [562271][client backend] [pg_regress/create_index][58/823:531112] ERROR: ALTER TABLE / ADD CONSTRAINT USING INDEX is not supported on partitioned tables
2024-11-25 19:08:10.314 CET [562271][client backend] [pg_regress/create_index][58/823:531112] STATEMENT: alter table cwi_test add primary key using index cwi_test_a_idx ;
2024-11-25 19:08:10.315 CET [562382][client backend] [pg_regress/reloptions][:0] LOG: disconnection: session time: 0:00:00.026 user=nkey database=regression_dummy_index_am host=[local]
2024-11-25 19:08:10.315 CET [562393][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.316 CET [562393][client backend] [[unknown]][98/71:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.316 CET [562393][client backend] [[unknown]][98/71:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/project-manager
2024-11-25 19:08:10.316 CET [562271][client backend] [pg_regress/create_index][58/827:531120] ERROR: primary keys cannot use NULLS NOT DISTINCT indexes
2024-11-25 19:08:10.316 CET [562271][client backend] [pg_regress/create_index][58/827:531120] STATEMENT: ALTER TABLE cwi_test ADD PRIMARY KEY USING INDEX cwi_a_nnd;
2024-11-25 19:08:10.318 CET [562271][client backend] [pg_regress/create_index][58/830:0] ERROR: relation "syscolcol_table" does not exist
2024-11-25 19:08:10.318 CET [562271][client backend] [pg_regress/create_index][58/830:0] STATEMENT: CREATE INDEX ON syscolcol_table (ctid);
2024-11-25 19:08:10.318 CET [562271][client backend] [pg_regress/create_index][58/831:0] ERROR: index creation on system columns is not supported
2024-11-25 19:08:10.318 CET [562271][client backend] [pg_regress/create_index][58/831:0] STATEMENT: CREATE INDEX ON syscol_table ((ctid >= '(1000,0)'));
2024-11-25 19:08:10.318 CET [562271][client backend] [pg_regress/create_index][58/832:0] ERROR: index creation on system columns is not supported
2024-11-25 19:08:10.318 CET [562271][client backend] [pg_regress/create_index][58/832:0] STATEMENT: CREATE INDEX ON syscol_table (a) WHERE ctid >= '(1000,0)';
2024-11-25 19:08:10.319 CET [562396][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.320 CET [562396][client backend] [[unknown]][99/54:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.320 CET [562396][client backend] [[unknown]][99/54:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/project-manager
2024-11-25 19:08:10.339 CET [562380][client backend] [isolation/partition-addition/control connection][:0] LOG: disconnection: session time: 0:00:00.055 user=nkey database=isolation_regression_delay_execution host=[local]
2024-11-25 19:08:10.339 CET [562383][client backend] [isolation/partition-addition/s1][:0] LOG: disconnection: session time: 0:00:00.046 user=nkey database=isolation_regression_delay_execution host=[local]
2024-11-25 19:08:10.339 CET [562384][client backend] [isolation/partition-addition/s2][:0] LOG: disconnection: session time: 0:00:00.044 user=nkey database=isolation_regression_delay_execution host=[local]
2024-11-25 19:08:10.345 CET [562396][client backend] [isolation/project-manager/s2][99/57:531144] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.345 CET [562396][client backend] [isolation/project-manager/s2][99/57:531144] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:10.345 CET [562396][client backend] [isolation/project-manager/s2][99/57:531144] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.345 CET [562396][client backend] [isolation/project-manager/s2][99/57:531144] STATEMENT: UPDATE person SET is_project_manager = false WHERE person_id = 1;
2024-11-25 19:08:10.349 CET [562401][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.350 CET [562401][client backend] [[unknown]][96/63:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.350 CET [562401][client backend] [[unknown]][96/63:0] LOG: connection authorized: user=nkey database=isolation_regression_delay_execution application_name=isolation/partition-removal-1
2024-11-25 19:08:10.353 CET [562403][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.354 CET [562403][client backend] [[unknown]][18/125:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.354 CET [562403][client backend] [[unknown]][18/125:0] LOG: connection authorized: user=nkey database=isolation_regression_delay_execution application_name=isolation/partition-removal-1
2024-11-25 19:08:10.356 CET [562406][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.357 CET [562406][client backend] [[unknown]][86/223:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.357 CET [562406][client backend] [[unknown]][86/223:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:10.358 CET [562396][client backend] [isolation/project-manager/s2][99/58:531152] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.358 CET [562396][client backend] [isolation/project-manager/s2][99/58:531152] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.358 CET [562396][client backend] [isolation/project-manager/s2][99/58:531152] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.358 CET [562396][client backend] [isolation/project-manager/s2][99/58:531152] STATEMENT: COMMIT;
2024-11-25 19:08:10.358 CET [562407][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.359 CET [562407][client backend] [[unknown]][77/199:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.359 CET [562407][client backend] [[unknown]][77/199:0] LOG: connection authorized: user=nkey database=isolation_regression_delay_execution application_name=isolation/partition-removal-1
2024-11-25 19:08:10.360 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:10.362 CET [562408][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.363 CET [562408][client backend] [[unknown]][26/132:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.363 CET [562408][client backend] [[unknown]][26/132:0] LOG: connection authorized: user=nkey database=isolation_regression_delay_execution application_name=isolation/partition-removal-1
2024-11-25 19:08:10.366 CET [562393][client backend] [isolation/project-manager/s1][98/76:531156] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.366 CET [562393][client backend] [isolation/project-manager/s1][98/76:531156] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.366 CET [562393][client backend] [isolation/project-manager/s1][98/76:531156] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.366 CET [562393][client backend] [isolation/project-manager/s1][98/76:531156] STATEMENT: COMMIT;
2024-11-25 19:08:10.372 CET [562388][client backend] [pg_regress/pg_word_trgm][:0] LOG: disconnection: session time: 0:00:00.069 user=nkey database=regression_pg_trgm host=[local]
2024-11-25 19:08:10.376 CET [562396][client backend] [isolation/project-manager/s2][99/60:531162] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.376 CET [562396][client backend] [isolation/project-manager/s2][99/60:531162] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:10.376 CET [562396][client backend] [isolation/project-manager/s2][99/60:531162] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.376 CET [562396][client backend] [isolation/project-manager/s2][99/60:531162] STATEMENT: UPDATE person SET is_project_manager = false WHERE person_id = 1;
2024-11-25 19:08:10.377 CET [562412][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.377 CET [562412][client backend] [[unknown]][16/855:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.377 CET [562412][client backend] [[unknown]][16/855:0] LOG: connection authorized: user=nkey database=regression_pg_trgm application_name=pg_regress/pg_strict_word_trgm
2024-11-25 19:08:10.381 CET [562412][client backend] [pg_regress/pg_strict_word_trgm][16/857:0] ERROR: relation "test_trgm3" does not exist
2024-11-25 19:08:10.381 CET [562412][client backend] [pg_regress/pg_strict_word_trgm][16/857:0] STATEMENT: COPY test_trgm3 FROM STDIN
2024-11-25 19:08:10.386 CET [562396][client backend] [isolation/project-manager/s2][99/61:531169] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.386 CET [562396][client backend] [isolation/project-manager/s2][99/61:531169] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.386 CET [562396][client backend] [isolation/project-manager/s2][99/61:531169] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.386 CET [562396][client backend] [isolation/project-manager/s2][99/61:531169] STATEMENT: COMMIT;
2024-11-25 19:08:10.405 CET [562393][client backend] [isolation/project-manager/s1][98/79:531173] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.405 CET [562393][client backend] [isolation/project-manager/s1][98/79:531173] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.405 CET [562393][client backend] [isolation/project-manager/s1][98/79:531173] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.405 CET [562393][client backend] [isolation/project-manager/s1][98/79:531173] STATEMENT: COMMIT;
2024-11-25 19:08:10.416 CET [562274][client backend] [pg_regress/create_index_spgist][:0] LOG: disconnection: session time: 0:00:00.823 user=nkey database=regression host=[local]
2024-11-25 19:08:10.418 CET [562396][client backend] [isolation/project-manager/s2][99/63:531181] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.418 CET [562396][client backend] [isolation/project-manager/s2][99/63:531181] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.418 CET [562396][client backend] [isolation/project-manager/s2][99/63:531181] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.418 CET [562396][client backend] [isolation/project-manager/s2][99/63:531181] STATEMENT: COMMIT;
2024-11-25 19:08:10.426 CET [562393][client backend] [isolation/project-manager/s1][98/81:531191] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.426 CET [562393][client backend] [isolation/project-manager/s1][98/81:531191] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.426 CET [562393][client backend] [isolation/project-manager/s1][98/81:531191] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.426 CET [562393][client backend] [isolation/project-manager/s1][98/81:531191] STATEMENT: COMMIT;
2024-11-25 19:08:10.427 CET [561023][checkpointer] LOG: checkpoint complete: wrote 4645 buffers (28.4%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 2 recycled; write=0.051 s, sync=0.001 s, total=0.068 s; sync files=0, longest=0.000 s, average=0.000 s; distance=20969 kB, estimate=20969 kB; lsn=4/54B8AC80, redo lsn=4/533BB7D8
2024-11-25 19:08:10.434 CET [562393][client backend] [isolation/project-manager/s1][98/82:531205] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.434 CET [562393][client backend] [isolation/project-manager/s1][98/82:531205] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:10.434 CET [562393][client backend] [isolation/project-manager/s1][98/82:531205] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.434 CET [562393][client backend] [isolation/project-manager/s1][98/82:531205] STATEMENT: INSERT INTO project VALUES (101, 'Build Great Wall', 1);
2024-11-25 19:08:10.435 CET [562271][client backend] [pg_regress/create_index][58/946:0] ERROR: concurrent index creation for exclusion constraints is not supported
2024-11-25 19:08:10.435 CET [562271][client backend] [pg_regress/create_index][58/946:0] STATEMENT: REINDEX INDEX CONCURRENTLY concur_reindex_tab3_c2_excl;
2024-11-25 19:08:10.435 CET [562271][client backend] [pg_regress/create_index][58/947:0] WARNING: cannot reindex exclusion constraint index "public.concur_reindex_tab3_c2_excl" concurrently, skipping
2024-11-25 19:08:10.437 CET [562271][client backend] [pg_regress/create_index][58/957:531214] ERROR: conflicting key value violates exclusion constraint "concur_reindex_tab3_c2_excl"
2024-11-25 19:08:10.437 CET [562271][client backend] [pg_regress/create_index][58/957:531214] DETAIL: Key (c2)=([2,5)) conflicts with existing key (c2)=([1,3)).
2024-11-25 19:08:10.437 CET [562271][client backend] [pg_regress/create_index][58/957:531214] STATEMENT: INSERT INTO concur_reindex_tab3 VALUES (4, '[2,4]');
2024-11-25 19:08:10.438 CET [562406][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.081 user=nkey database=postgres host=[local]
2024-11-25 19:08:10.441 CET [562415][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.442 CET [562396][client backend] [isolation/project-manager/s2][99/66:531217] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.442 CET [562396][client backend] [isolation/project-manager/s2][99/66:531217] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:10.442 CET [562396][client backend] [isolation/project-manager/s2][99/66:531217] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.442 CET [562396][client backend] [isolation/project-manager/s2][99/66:531217] STATEMENT: UPDATE person SET is_project_manager = false WHERE person_id = 1;
2024-11-25 19:08:10.442 CET [562415][client backend] [[unknown]][3/108:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.442 CET [562415][client backend] [[unknown]][3/108:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:10.444 CET [562412][client backend] [pg_regress/pg_strict_word_trgm][:0] LOG: disconnection: session time: 0:00:00.067 user=nkey database=regression_pg_trgm host=[local]
2024-11-25 19:08:10.451 CET [562396][client backend] [isolation/project-manager/s2][99/67:531238] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.451 CET [562396][client backend] [isolation/project-manager/s2][99/67:531238] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.451 CET [562396][client backend] [isolation/project-manager/s2][99/67:531238] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.451 CET [562396][client backend] [isolation/project-manager/s2][99/67:531238] STATEMENT: COMMIT;
2024-11-25 19:08:10.464 CET [562393][client backend] [isolation/project-manager/s1][98/85:531262] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.464 CET [562393][client backend] [isolation/project-manager/s1][98/85:531262] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.464 CET [562393][client backend] [isolation/project-manager/s1][98/85:531262] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.464 CET [562393][client backend] [isolation/project-manager/s1][98/85:531262] STATEMENT: COMMIT;
2024-11-25 19:08:10.468 CET [562415][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.026 user=nkey database=postgres host=[local]
2024-11-25 19:08:10.474 CET [562396][client backend] [isolation/project-manager/s2][99/69:531286] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.474 CET [562396][client backend] [isolation/project-manager/s2][99/69:531286] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.474 CET [562396][client backend] [isolation/project-manager/s2][99/69:531286] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.474 CET [562396][client backend] [isolation/project-manager/s2][99/69:531286] STATEMENT: COMMIT;
2024-11-25 19:08:10.480 CET [562422][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.481 CET [562422][client backend] [[unknown]][11/61:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.481 CET [562422][client backend] [[unknown]][11/61:0] LOG: connection authorized: user=nkey database=regression_dummy_seclabel application_name=pg_regress/dummy_seclabel
2024-11-25 19:08:10.482 CET [562393][client backend] [isolation/project-manager/s1][98/87:531298] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.482 CET [562393][client backend] [isolation/project-manager/s1][98/87:531298] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.482 CET [562393][client backend] [isolation/project-manager/s1][98/87:531298] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.482 CET [562393][client backend] [isolation/project-manager/s1][98/87:531298] STATEMENT: COMMIT;
2024-11-25 19:08:10.486 CET [562424][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.486 CET [562424][client backend] [[unknown]][94/12:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.486 CET [562424][client backend] [[unknown]][94/12:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:10.489 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:10.492 CET [562393][client backend] [isolation/project-manager/s1][98/88:531317] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.492 CET [562393][client backend] [isolation/project-manager/s1][98/88:531317] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:10.492 CET [562393][client backend] [isolation/project-manager/s1][98/88:531317] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.492 CET [562393][client backend] [isolation/project-manager/s1][98/88:531317] STATEMENT: INSERT INTO project VALUES (101, 'Build Great Wall', 1);
2024-11-25 19:08:10.501 CET [562271][client backend] [pg_regress/create_index][58/1141:0] ERROR: "concur_reindex_part_index" is not a table or materialized view
2024-11-25 19:08:10.501 CET [562271][client backend] [pg_regress/create_index][58/1141:0] STATEMENT: REINDEX TABLE concur_reindex_part_index;
2024-11-25 19:08:10.501 CET [562271][client backend] [pg_regress/create_index][58/1142:0] ERROR: "concur_reindex_part_index" is not a table or materialized view
2024-11-25 19:08:10.501 CET [562271][client backend] [pg_regress/create_index][58/1142:0] STATEMENT: REINDEX TABLE CONCURRENTLY concur_reindex_part_index;
2024-11-25 19:08:10.501 CET [562271][client backend] [pg_regress/create_index][58/1143:0] ERROR: "concur_reindex_part_index_10" is not a table or materialized view
2024-11-25 19:08:10.501 CET [562271][client backend] [pg_regress/create_index][58/1143:0] STATEMENT: REINDEX TABLE concur_reindex_part_index_10;
2024-11-25 19:08:10.501 CET [562271][client backend] [pg_regress/create_index][58/1144:0] ERROR: "concur_reindex_part_index_10" is not a table or materialized view
2024-11-25 19:08:10.501 CET [562271][client backend] [pg_regress/create_index][58/1144:0] STATEMENT: REINDEX TABLE CONCURRENTLY concur_reindex_part_index_10;
2024-11-25 19:08:10.501 CET [562271][client backend] [pg_regress/create_index][58/1145:531347] ERROR: REINDEX INDEX cannot run inside a transaction block
2024-11-25 19:08:10.501 CET [562271][client backend] [pg_regress/create_index][58/1145:531347] CONTEXT: while reindexing partitioned index "public.concur_reindex_part_index"
2024-11-25 19:08:10.501 CET [562271][client backend] [pg_regress/create_index][58/1145:531347] STATEMENT: REINDEX INDEX concur_reindex_part_index;
2024-11-25 19:08:10.504 CET [562396][client backend] [isolation/project-manager/s2][99/72:531353] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.504 CET [562396][client backend] [isolation/project-manager/s2][99/72:531353] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.504 CET [562396][client backend] [isolation/project-manager/s2][99/72:531353] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.504 CET [562396][client backend] [isolation/project-manager/s2][99/72:531353] STATEMENT: COMMIT;
2024-11-25 19:08:10.505 CET [562422][client backend] [pg_regress/dummy_seclabel][11/82:0] ERROR: column name must be qualified
2024-11-25 19:08:10.505 CET [562422][client backend] [pg_regress/dummy_seclabel][11/82:0] STATEMENT: SECURITY LABEL ON COLUMN dummy_seclabel_tbl1 IS 'unclassified';
2024-11-25 19:08:10.505 CET [562422][client backend] [pg_regress/dummy_seclabel][11/83:0] ERROR: '...invalid label...' is not a valid security label
2024-11-25 19:08:10.505 CET [562422][client backend] [pg_regress/dummy_seclabel][11/83:0] STATEMENT: SECURITY LABEL ON TABLE dummy_seclabel_tbl1 IS '...invalid label...';
2024-11-25 19:08:10.505 CET [562422][client backend] [pg_regress/dummy_seclabel][11/85:0] ERROR: security label provider "unknown_seclabel" is not loaded
2024-11-25 19:08:10.505 CET [562422][client backend] [pg_regress/dummy_seclabel][11/85:0] STATEMENT: SECURITY LABEL FOR 'unknown_seclabel' ON TABLE dummy_seclabel_tbl1 IS 'classified';
2024-11-25 19:08:10.505 CET [562422][client backend] [pg_regress/dummy_seclabel][11/86:0] ERROR: must be owner of table dummy_seclabel_tbl2
2024-11-25 19:08:10.505 CET [562422][client backend] [pg_regress/dummy_seclabel][11/86:0] STATEMENT: SECURITY LABEL ON TABLE dummy_seclabel_tbl2 IS 'unclassified';
2024-11-25 19:08:10.505 CET [562422][client backend] [pg_regress/dummy_seclabel][11/87:0] ERROR: only superuser can set 'secret' label
2024-11-25 19:08:10.505 CET [562422][client backend] [pg_regress/dummy_seclabel][11/87:0] STATEMENT: SECURITY LABEL ON TABLE dummy_seclabel_tbl1 IS 'secret';
2024-11-25 19:08:10.505 CET [562422][client backend] [pg_regress/dummy_seclabel][11/88:0] ERROR: relation "dummy_seclabel_tbl3" does not exist
2024-11-25 19:08:10.505 CET [562422][client backend] [pg_regress/dummy_seclabel][11/88:0] STATEMENT: SECURITY LABEL ON TABLE dummy_seclabel_tbl3 IS 'unclassified';
2024-11-25 19:08:10.506 CET [562422][client backend] [pg_regress/dummy_seclabel][11/90:0] ERROR: must be owner of table dummy_seclabel_tbl1
2024-11-25 19:08:10.506 CET [562422][client backend] [pg_regress/dummy_seclabel][11/90:0] STATEMENT: SECURITY LABEL ON TABLE dummy_seclabel_tbl1 IS 'unclassified';
2024-11-25 19:08:10.506 CET [562422][client backend] [pg_regress/dummy_seclabel][11/94:0] ERROR: '...invalid label...' is not a valid security label
2024-11-25 19:08:10.506 CET [562422][client backend] [pg_regress/dummy_seclabel][11/94:0] STATEMENT: SECURITY LABEL ON ROLE regress_dummy_seclabel_user3 IS '...invalid label...';
2024-11-25 19:08:10.507 CET [562422][client backend] [pg_regress/dummy_seclabel][11/96:0] ERROR: security label provider "unknown_seclabel" is not loaded
2024-11-25 19:08:10.507 CET [562422][client backend] [pg_regress/dummy_seclabel][11/96:0] STATEMENT: SECURITY LABEL FOR 'unknown_seclabel' ON ROLE regress_dummy_seclabel_user1 IS 'unclassified';
2024-11-25 19:08:10.507 CET [562422][client backend] [pg_regress/dummy_seclabel][11/97:0] ERROR: only superuser can set 'secret' label
2024-11-25 19:08:10.507 CET [562422][client backend] [pg_regress/dummy_seclabel][11/97:0] STATEMENT: SECURITY LABEL ON ROLE regress_dummy_seclabel_user3 IS 'secret';
2024-11-25 19:08:10.507 CET [562422][client backend] [pg_regress/dummy_seclabel][11/98:0] ERROR: role "regress_dummy_seclabel_user4" does not exist
2024-11-25 19:08:10.507 CET [562422][client backend] [pg_regress/dummy_seclabel][11/98:0] STATEMENT: SECURITY LABEL ON ROLE regress_dummy_seclabel_user4 IS 'unclassified';
2024-11-25 19:08:10.507 CET [562422][client backend] [pg_regress/dummy_seclabel][11/100:0] ERROR: permission denied
2024-11-25 19:08:10.507 CET [562422][client backend] [pg_regress/dummy_seclabel][11/100:0] DETAIL: The current user must have the CREATEROLE attribute.
2024-11-25 19:08:10.507 CET [562422][client backend] [pg_regress/dummy_seclabel][11/100:0] STATEMENT: SECURITY LABEL ON ROLE regress_dummy_seclabel_user2 IS 'unclassified';
2024-11-25 19:08:10.507 CET [561023][checkpointer] LOG: checkpoint complete: wrote 1260 buffers (7.7%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 2 recycled; write=0.016 s, sync=0.001 s, total=0.019 s; sync files=0, longest=0.000 s, average=0.000 s; distance=29655 kB, estimate=29655 kB; lsn=4/55174220, redo lsn=4/550B14A0
2024-11-25 19:08:10.509 CET [562422][client backend] [pg_regress/dummy_seclabel][11/110:531382] WARNING: "wal_level" is insufficient to publish logical changes
2024-11-25 19:08:10.509 CET [562422][client backend] [pg_regress/dummy_seclabel][11/110:531382] HINT: Set "wal_level" to "logical" before creating subscriptions.
2024-11-25 19:08:10.510 CET [562422][client backend] [pg_regress/dummy_seclabel][11/111:531386] WARNING: subscription was created, but is not connected
2024-11-25 19:08:10.510 CET [562422][client backend] [pg_regress/dummy_seclabel][11/111:531386] HINT: To initiate replication, you must manually create the replication slot, enable the subscription, and refresh the subscription.
2024-11-25 19:08:10.512 CET [562393][client backend] [isolation/project-manager/s1][98/90:531395] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.512 CET [562393][client backend] [isolation/project-manager/s1][98/90:531395] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.512 CET [562393][client backend] [isolation/project-manager/s1][98/90:531395] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.512 CET [562393][client backend] [isolation/project-manager/s1][98/90:531395] STATEMENT: COMMIT;
2024-11-25 19:08:10.513 CET [562271][client backend] [pg_regress/create_index][58/1180:0] ERROR: "concur_reindex_part" is not an index
2024-11-25 19:08:10.513 CET [562271][client backend] [pg_regress/create_index][58/1180:0] STATEMENT: REINDEX INDEX concur_reindex_part;
2024-11-25 19:08:10.513 CET [562271][client backend] [pg_regress/create_index][58/1181:0] ERROR: "concur_reindex_part" is not an index
2024-11-25 19:08:10.513 CET [562271][client backend] [pg_regress/create_index][58/1181:0] STATEMENT: REINDEX INDEX CONCURRENTLY concur_reindex_part;
2024-11-25 19:08:10.513 CET [562271][client backend] [pg_regress/create_index][58/1182:0] ERROR: "concur_reindex_part_10" is not an index
2024-11-25 19:08:10.513 CET [562271][client backend] [pg_regress/create_index][58/1182:0] STATEMENT: REINDEX INDEX concur_reindex_part_10;
2024-11-25 19:08:10.513 CET [562271][client backend] [pg_regress/create_index][58/1183:0] ERROR: "concur_reindex_part_10" is not an index
2024-11-25 19:08:10.513 CET [562271][client backend] [pg_regress/create_index][58/1183:0] STATEMENT: REINDEX INDEX CONCURRENTLY concur_reindex_part_10;
2024-11-25 19:08:10.513 CET [562271][client backend] [pg_regress/create_index][58/1184:0] ERROR: REINDEX TABLE cannot run inside a transaction block
2024-11-25 19:08:10.513 CET [562271][client backend] [pg_regress/create_index][58/1184:0] CONTEXT: while reindexing partitioned table "public.concur_reindex_part"
2024-11-25 19:08:10.513 CET [562271][client backend] [pg_regress/create_index][58/1184:0] STATEMENT: REINDEX TABLE concur_reindex_part;
2024-11-25 19:08:10.517 CET [562424][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.031 user=nkey database=postgres host=[local]
2024-11-25 19:08:10.519 CET [562393][client backend] [isolation/project-manager/s1][98/91:531410] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.519 CET [562393][client backend] [isolation/project-manager/s1][98/91:531410] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:10.519 CET [562393][client backend] [isolation/project-manager/s1][98/91:531410] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.519 CET [562393][client backend] [isolation/project-manager/s1][98/91:531410] STATEMENT: INSERT INTO project VALUES (101, 'Build Great Wall', 1);
2024-11-25 19:08:10.520 CET [562427][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.520 CET [562427][client backend] [[unknown]][4/117:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.520 CET [562427][client backend] [[unknown]][4/117:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:10.524 CET [562271][client backend] [pg_regress/create_index][58/1220:0] ERROR: REINDEX CONCURRENTLY cannot run inside a transaction block
2024-11-25 19:08:10.524 CET [562271][client backend] [pg_regress/create_index][58/1220:0] STATEMENT: REINDEX TABLE CONCURRENTLY concur_reindex_tab;
2024-11-25 19:08:10.525 CET [562271][client backend] [pg_regress/create_index][58/1221:0] ERROR: cannot reindex system catalogs concurrently
2024-11-25 19:08:10.525 CET [562271][client backend] [pg_regress/create_index][58/1221:0] STATEMENT: REINDEX TABLE CONCURRENTLY pg_class;
2024-11-25 19:08:10.525 CET [562271][client backend] [pg_regress/create_index][58/1222:0] ERROR: cannot reindex system catalogs concurrently
2024-11-25 19:08:10.525 CET [562271][client backend] [pg_regress/create_index][58/1222:0] STATEMENT: REINDEX INDEX CONCURRENTLY pg_class_oid_index;
2024-11-25 19:08:10.525 CET [562271][client backend] [pg_regress/create_index][58/1223:0] ERROR: cannot reindex system catalogs concurrently
2024-11-25 19:08:10.525 CET [562271][client backend] [pg_regress/create_index][58/1223:0] STATEMENT: REINDEX TABLE CONCURRENTLY pg_toast.pg_toast_1262;
2024-11-25 19:08:10.525 CET [562271][client backend] [pg_regress/create_index][58/1224:0] ERROR: cannot reindex system catalogs concurrently
2024-11-25 19:08:10.525 CET [562271][client backend] [pg_regress/create_index][58/1224:0] STATEMENT: REINDEX INDEX CONCURRENTLY pg_toast.pg_toast_1262_index;
2024-11-25 19:08:10.525 CET [562271][client backend] [pg_regress/create_index][58/1225:0] ERROR: cannot reindex system catalogs concurrently
2024-11-25 19:08:10.525 CET [562271][client backend] [pg_regress/create_index][58/1225:0] STATEMENT: REINDEX SYSTEM CONCURRENTLY postgres;
2024-11-25 19:08:10.525 CET [562271][client backend] [pg_regress/create_index][58/1226:0] ERROR: cannot reindex system catalogs concurrently
2024-11-25 19:08:10.525 CET [562271][client backend] [pg_regress/create_index][58/1226:0] STATEMENT: REINDEX (CONCURRENTLY) SYSTEM postgres;
2024-11-25 19:08:10.525 CET [562271][client backend] [pg_regress/create_index][58/1227:0] ERROR: cannot reindex system catalogs concurrently
2024-11-25 19:08:10.525 CET [562271][client backend] [pg_regress/create_index][58/1227:0] STATEMENT: REINDEX (CONCURRENTLY) SYSTEM;
2024-11-25 19:08:10.525 CET [562271][client backend] [pg_regress/create_index][58/1228:0] WARNING: cannot reindex system catalogs concurrently, skipping all
2024-11-25 19:08:10.526 CET [562271][client backend] [pg_regress/create_index][58/1230:0] ERROR: can only reindex the currently open database
2024-11-25 19:08:10.526 CET [562271][client backend] [pg_regress/create_index][58/1230:0] STATEMENT: REINDEX DATABASE not_current_database;
2024-11-25 19:08:10.530 CET [562422][client backend] [pg_regress/dummy_seclabel][:0] LOG: disconnection: session time: 0:00:00.050 user=nkey database=regression_dummy_seclabel host=[local]
2024-11-25 19:08:10.534 CET [562392][client backend] [isolation/project-manager/control connection][:0] LOG: disconnection: session time: 0:00:00.221 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:10.534 CET [562393][client backend] [isolation/project-manager/s1][:0] LOG: disconnection: session time: 0:00:00.218 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:10.534 CET [562396][client backend] [isolation/project-manager/s2][:0] LOG: disconnection: session time: 0:00:00.215 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:10.537 CET [562433][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.538 CET [562433][client backend] [[unknown]][6/101:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.538 CET [562433][client backend] [[unknown]][6/101:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/classroom-scheduling
2024-11-25 19:08:10.542 CET [562435][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.542 CET [562271][client backend] [pg_regress/create_index][58/1248:0] ERROR: could not create unique index "concur_reindex_ind5"
2024-11-25 19:08:10.542 CET [562271][client backend] [pg_regress/create_index][58/1248:0] DETAIL: Key (c1)=(1) is duplicated.
2024-11-25 19:08:10.542 CET [562271][client backend] [pg_regress/create_index][58/1248:0] STATEMENT: CREATE UNIQUE INDEX CONCURRENTLY concur_reindex_ind5 ON concur_reindex_tab4 (c1);
2024-11-25 19:08:10.543 CET [562271][client backend] [pg_regress/create_index][58/1251:0] ERROR: could not create unique index "concur_reindex_ind5_ccnew"
2024-11-25 19:08:10.543 CET [562271][client backend] [pg_regress/create_index][58/1251:0] DETAIL: Key (c1)=(1) is duplicated.
2024-11-25 19:08:10.543 CET [562271][client backend] [pg_regress/create_index][58/1251:0] STATEMENT: REINDEX INDEX CONCURRENTLY concur_reindex_ind5;
2024-11-25 19:08:10.543 CET [562435][client backend] [[unknown]][13/80:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.543 CET [562435][client backend] [[unknown]][13/80:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/classroom-scheduling
2024-11-25 19:08:10.546 CET [562436][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.547 CET [562427][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.027 user=nkey database=postgres host=[local]
2024-11-25 19:08:10.547 CET [562436][client backend] [[unknown]][21/238:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.547 CET [562436][client backend] [[unknown]][21/238:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/classroom-scheduling
2024-11-25 19:08:10.550 CET [562438][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.550 CET [562271][client backend] [pg_regress/create_index][58/1263:0] WARNING: skipping reindex of invalid index "public.concur_reindex_ind5"
2024-11-25 19:08:10.550 CET [562271][client backend] [pg_regress/create_index][58/1263:0] HINT: Use DROP INDEX or REINDEX INDEX.
2024-11-25 19:08:10.550 CET [562438][client backend] [[unknown]][5/109:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.550 CET [562438][client backend] [[unknown]][5/109:0] LOG: connection authorized: user=nkey database=regression_gin application_name=pg_regress/gin_incomplete_splits
2024-11-25 19:08:10.553 CET [562334][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.517 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:10.553 CET [562358][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.403 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:10.556 CET [562439][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.557 CET [562439][client backend] [[unknown]][12/144:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.557 CET [562439][client backend] [[unknown]][12/144:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:10.567 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/241:531473] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.567 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/241:531473] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:10.567 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/241:531473] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.567 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/241:531473] STATEMENT: UPDATE room_reservation SET start_time = TIMESTAMP WITH TIME ZONE '2010-04-01 13:30', end_time = TIMESTAMP WITH TIME ZONE '2010-04-01 14:30' WHERE room_id = '101' AND start_time = TIMESTAMP WITH TIME ZONE '2010-04-01 10:00';
2024-11-25 19:08:10.570 CET [562443][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.571 CET [562443][client backend] [[unknown]][85/529:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.571 CET [562443][client backend] [[unknown]][85/529:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:10.573 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:10.575 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/242:531498] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.575 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/242:531498] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.575 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/242:531498] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.575 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/242:531498] STATEMENT: COMMIT;
2024-11-25 19:08:10.581 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/85:531525] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.581 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/85:531525] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.581 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/85:531525] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.581 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/85:531525] STATEMENT: COMMIT;
2024-11-25 19:08:10.586 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/244:531541] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.586 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/244:531541] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:10.586 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/244:531541] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.586 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/244:531541] STATEMENT: UPDATE room_reservation SET start_time = TIMESTAMP WITH TIME ZONE '2010-04-01 13:30', end_time = TIMESTAMP WITH TIME ZONE '2010-04-01 14:30' WHERE room_id = '101' AND start_time = TIMESTAMP WITH TIME ZONE '2010-04-01 10:00';
2024-11-25 19:08:10.592 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/245:531567] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.592 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/245:531567] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.592 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/245:531567] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.592 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/245:531567] STATEMENT: COMMIT;
2024-11-25 19:08:10.593 CET [561023][checkpointer] LOG: checkpoint complete: wrote 1483 buffers (9.1%), wrote 2 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.018 s, sync=0.001 s, total=0.020 s; sync files=0, longest=0.000 s, average=0.000 s; distance=7478 kB, estimate=27437 kB; lsn=4/558EB478, redo lsn=4/557FF060
2024-11-25 19:08:10.595 CET [562271][client backend] [pg_regress/create_index][58/1335:0] ERROR: REINDEX CONCURRENTLY cannot run inside a transaction block
2024-11-25 19:08:10.595 CET [562271][client backend] [pg_regress/create_index][58/1335:0] STATEMENT: REINDEX INDEX CONCURRENTLY concur_temp_ind_1;
2024-11-25 19:08:10.597 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/88:531590] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.597 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/88:531590] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.597 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/88:531590] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.597 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/88:531590] STATEMENT: COMMIT;
2024-11-25 19:08:10.601 CET [562271][client backend] [pg_regress/create_index][58/1340:531603] ERROR: REINDEX CONCURRENTLY cannot run inside a transaction block
2024-11-25 19:08:10.601 CET [562271][client backend] [pg_regress/create_index][58/1340:531603] STATEMENT: REINDEX INDEX CONCURRENTLY concur_temp_ind_3;
2024-11-25 19:08:10.602 CET [562443][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.032 user=nkey database=postgres host=[local]
2024-11-25 19:08:10.605 CET [562446][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.605 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/247:531614] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.605 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/247:531614] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.605 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/247:531614] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.605 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/247:531614] STATEMENT: COMMIT;
2024-11-25 19:08:10.606 CET [562446][client backend] [[unknown]][10/155:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.606 CET [562446][client backend] [[unknown]][10/155:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:10.609 CET [561140][client backend] [pg_regress/check_btree][:0] LOG: disconnection: session time: 0:00:04.126 user=nkey database=regression_amcheck host=[local]
2024-11-25 19:08:10.613 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/90:531648] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.613 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/90:531648] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.613 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/90:531648] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.613 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/90:531648] STATEMENT: COMMIT;
2024-11-25 19:08:10.613 CET [562450][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.614 CET [562450][client backend] [[unknown]][9/497:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.614 CET [562450][client backend] [[unknown]][9/497:0] LOG: connection authorized: user=nkey database=regression_amcheck application_name=pg_regress/check_heap
2024-11-25 19:08:10.618 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/91:531668] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.618 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/91:531668] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:10.618 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/91:531668] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.618 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/91:531668] STATEMENT: INSERT INTO room_reservation VALUES ('101', TIMESTAMP WITH TIME ZONE '2010-04-01 13:00', TIMESTAMP WITH TIME ZONE '2010-04-01 14:00', 'Carol');
2024-11-25 19:08:10.619 CET [562450][client backend] [pg_regress/check_heap][9/500:0] ERROR: invalid skip option
2024-11-25 19:08:10.619 CET [562450][client backend] [pg_regress/check_heap][9/500:0] HINT: Valid skip options are "all-visible", "all-frozen", and "none".
2024-11-25 19:08:10.619 CET [562450][client backend] [pg_regress/check_heap][9/500:0] STATEMENT: SELECT * FROM verify_heapam(relation := 'heaptest', skip := 'rope');
2024-11-25 19:08:10.623 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/250:531690] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.623 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/250:531690] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:10.623 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/250:531690] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.623 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/250:531690] STATEMENT: UPDATE room_reservation SET start_time = TIMESTAMP WITH TIME ZONE '2010-04-01 13:30', end_time = TIMESTAMP WITH TIME ZONE '2010-04-01 14:30' WHERE room_id = '101' AND start_time = TIMESTAMP WITH TIME ZONE '2010-04-01 10:00';
2024-11-25 19:08:10.628 CET [562450][client backend] [pg_regress/check_heap][9/522:0] ERROR: permission denied for function verify_heapam
2024-11-25 19:08:10.628 CET [562450][client backend] [pg_regress/check_heap][9/522:0] STATEMENT: SELECT * FROM verify_heapam(relation := 'heaptest');
2024-11-25 19:08:10.630 CET [562450][client backend] [pg_regress/check_heap][9/528:0] ERROR: ending block number must be between 0 and 0
2024-11-25 19:08:10.630 CET [562450][client backend] [pg_regress/check_heap][9/528:0] STATEMENT: SELECT * FROM verify_heapam(relation := 'heaptest', startblock := 0, endblock := 10000);
2024-11-25 19:08:10.630 CET [562450][client backend] [pg_regress/check_heap][9/529:0] ERROR: starting block number must be between 0 and 0
2024-11-25 19:08:10.630 CET [562450][client backend] [pg_regress/check_heap][9/529:0] STATEMENT: SELECT * FROM verify_heapam(relation := 'heaptest', startblock := 10000, endblock := 11000);
2024-11-25 19:08:10.631 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/251:531710] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.631 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/251:531710] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.631 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/251:531710] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.631 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/251:531710] STATEMENT: COMMIT;
2024-11-25 19:08:10.634 CET [562450][client backend] [pg_regress/check_heap][9/539:0] ERROR: cannot check relation "test_partitioned"
2024-11-25 19:08:10.634 CET [562450][client backend] [pg_regress/check_heap][9/539:0] DETAIL: This operation is not supported for partitioned tables.
2024-11-25 19:08:10.634 CET [562450][client backend] [pg_regress/check_heap][9/539:0] STATEMENT: SELECT * FROM verify_heapam('test_partitioned',
startblock := NULL,
endblock := NULL);
2024-11-25 19:08:10.634 CET [562446][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.029 user=nkey database=postgres host=[local]
2024-11-25 19:08:10.637 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/94:531732] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.637 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/94:531732] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.637 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/94:531732] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.637 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/94:531732] STATEMENT: COMMIT;
2024-11-25 19:08:10.639 CET [562454][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.639 CET [562454][client backend] [[unknown]][23/411:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.639 CET [562454][client backend] [[unknown]][23/411:0] LOG: connection authorized: user=nkey database=isolation_regression_injection_points application_name=isolation/basic
2024-11-25 19:08:10.643 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/253:531755] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.643 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/253:531755] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.643 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/253:531755] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.643 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/253:531755] STATEMENT: COMMIT;
2024-11-25 19:08:10.644 CET [562271][client backend] [pg_regress/create_index][58/1353:0] ERROR: schema "schema_to_reindex" does not exist
2024-11-25 19:08:10.644 CET [562271][client backend] [pg_regress/create_index][58/1353:0] STATEMENT: REINDEX SCHEMA schema_to_reindex;
2024-11-25 19:08:10.647 CET [562455][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.648 CET [562455][client backend] [[unknown]][0/47:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.648 CET [562455][client backend] [[unknown]][0/47:0] LOG: connection authorized: user=nkey database=isolation_regression_injection_points application_name=isolation/basic
2024-11-25 19:08:10.649 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/96:531779] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.649 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/96:531779] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.649 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/96:531779] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.649 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/96:531779] STATEMENT: COMMIT;
2024-11-25 19:08:10.653 CET [562456][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.653 CET [562456][client backend] [[unknown]][30/66:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.653 CET [562456][client backend] [[unknown]][30/66:0] LOG: connection authorized: user=nkey database=isolation_regression_injection_points application_name=isolation/basic
2024-11-25 19:08:10.654 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/97:531800] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.654 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/97:531800] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:10.654 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/97:531800] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.654 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/97:531800] STATEMENT: INSERT INTO room_reservation VALUES ('101', TIMESTAMP WITH TIME ZONE '2010-04-01 13:00', TIMESTAMP WITH TIME ZONE '2010-04-01 14:00', 'Carol');
2024-11-25 19:08:10.660 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/256:531824] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.660 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/256:531824] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.660 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/256:531824] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.660 CET [562436][client backend] [isolation/classroom-scheduling/s2][21/256:531824] STATEMENT: COMMIT;
2024-11-25 19:08:10.662 CET [562439][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.106 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:10.663 CET [562457][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.664 CET [562457][client backend] [[unknown]][2/582:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.664 CET [562457][client backend] [[unknown]][2/582:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:10.666 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/99:531854] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.666 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/99:531854] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.666 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/99:531854] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.666 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/99:531854] STATEMENT: COMMIT;
2024-11-25 19:08:10.671 CET [562457][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.007 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:10.672 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/100:531879] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.672 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/100:531879] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:10.672 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/100:531879] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.672 CET [562435][client backend] [isolation/classroom-scheduling/s1][13/100:531879] STATEMENT: INSERT INTO room_reservation VALUES ('101', TIMESTAMP WITH TIME ZONE '2010-04-01 13:00', TIMESTAMP WITH TIME ZONE '2010-04-01 14:00', 'Carol');
2024-11-25 19:08:10.673 CET [562271][client backend] [pg_regress/create_index][58/1382:0] ERROR: REINDEX SCHEMA cannot run inside a transaction block
2024-11-25 19:08:10.673 CET [562271][client backend] [pg_regress/create_index][58/1382:0] STATEMENT: REINDEX SCHEMA schema_to_reindex;
2024-11-25 19:08:10.676 CET [562450][client backend] [pg_regress/check_heap][9/546:0] ERROR: cannot check relation "test_index"
2024-11-25 19:08:10.676 CET [562450][client backend] [pg_regress/check_heap][9/546:0] DETAIL: This operation is not supported for indexes.
2024-11-25 19:08:10.676 CET [562450][client backend] [pg_regress/check_heap][9/546:0] STATEMENT: SELECT * FROM verify_heapam('test_index',
startblock := NULL,
endblock := NULL);
2024-11-25 19:08:10.677 CET [562450][client backend] [pg_regress/check_heap][9/548:0] ERROR: cannot check relation "test_view"
2024-11-25 19:08:10.677 CET [562450][client backend] [pg_regress/check_heap][9/548:0] DETAIL: This operation is not supported for views.
2024-11-25 19:08:10.677 CET [562450][client backend] [pg_regress/check_heap][9/548:0] STATEMENT: SELECT * FROM verify_heapam('test_view',
startblock := NULL,
endblock := NULL);
2024-11-25 19:08:10.678 CET [562458][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.678 CET [562458][client backend] [[unknown]][29/69:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.678 CET [562458][client backend] [[unknown]][29/69:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:10.680 CET [562435][client backend] [isolation/classroom-scheduling/s1][:0] LOG: disconnection: session time: 0:00:00.139 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:10.680 CET [562433][client backend] [isolation/classroom-scheduling/control connection][:0] LOG: disconnection: session time: 0:00:00.142 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:10.680 CET [562436][client backend] [isolation/classroom-scheduling/s2][:0] LOG: disconnection: session time: 0:00:00.133 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:10.680 CET [562450][client backend] [pg_regress/check_heap][9/554:0] ERROR: cannot check relation "test_foreign_table"
2024-11-25 19:08:10.680 CET [562450][client backend] [pg_regress/check_heap][9/554:0] DETAIL: This operation is not supported for foreign tables.
2024-11-25 19:08:10.680 CET [562450][client backend] [pg_regress/check_heap][9/554:0] STATEMENT: SELECT * FROM verify_heapam('test_foreign_table',
startblock := NULL,
endblock := NULL);
2024-11-25 19:08:10.681 CET [562460][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.681 CET [562460][client backend] [[unknown]][28/178:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.681 CET [562460][client backend] [[unknown]][28/178:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:10.682 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:10.683 CET [562271][client backend] [pg_regress/create_index][58/1425:0] ERROR: must be owner of schema schema_to_reindex
2024-11-25 19:08:10.683 CET [562271][client backend] [pg_regress/create_index][58/1425:0] STATEMENT: REINDEX SCHEMA schema_to_reindex;
2024-11-25 19:08:10.684 CET [562271][client backend] [pg_regress/create_index][58/1429:0] ERROR: permission denied for table pg_toast_1262
2024-11-25 19:08:10.684 CET [562271][client backend] [pg_regress/create_index][58/1429:0] STATEMENT: REINDEX TABLE pg_toast.pg_toast_1262;
2024-11-25 19:08:10.684 CET [562271][client backend] [pg_regress/create_index][58/1430:0] ERROR: permission denied for index pg_toast_1262_index
2024-11-25 19:08:10.684 CET [562271][client backend] [pg_regress/create_index][58/1430:0] STATEMENT: REINDEX INDEX pg_toast.pg_toast_1262_index;
2024-11-25 19:08:10.684 CET [562463][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.685 CET [562463][client backend] [[unknown]][34/39:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.685 CET [562463][client backend] [[unknown]][34/39:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/total-cash
2024-11-25 19:08:10.686 CET [562456][client backend] [isolation/basic/s2][30/71:0] ERROR: could not find injection point injection-points-wait to wake up
2024-11-25 19:08:10.686 CET [562456][client backend] [isolation/basic/s2][30/71:0] STATEMENT: SELECT injection_points_wakeup('injection-points-wait');
2024-11-25 19:08:10.687 CET [562464][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.687 CET [562454][client backend] [isolation/basic/control connection][:0] LOG: disconnection: session time: 0:00:00.048 user=nkey database=isolation_regression_injection_points host=[local]
2024-11-25 19:08:10.687 CET [562455][client backend] [isolation/basic/s1][:0] LOG: disconnection: session time: 0:00:00.040 user=nkey database=isolation_regression_injection_points host=[local]
2024-11-25 19:08:10.687 CET [562456][client backend] [isolation/basic/s2][:0] LOG: disconnection: session time: 0:00:00.034 user=nkey database=isolation_regression_injection_points host=[local]
2024-11-25 19:08:10.687 CET [562464][client backend] [[unknown]][8/218:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.687 CET [562464][client backend] [[unknown]][8/218:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/total-cash
2024-11-25 19:08:10.690 CET [562468][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.690 CET [562468][client backend] [[unknown]][32/131:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.690 CET [562468][client backend] [[unknown]][32/131:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/total-cash
2024-11-25 19:08:10.691 CET [562471][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.692 CET [562471][client backend] [[unknown]][22/189:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.692 CET [562471][client backend] [[unknown]][22/189:0] LOG: connection authorized: user=nkey database=isolation_regression_injection_points application_name=isolation/inplace
2024-11-25 19:08:10.692 CET [562271][client backend] [pg_regress/create_index][:0] LOG: disconnection: session time: 0:00:01.099 user=nkey database=regression host=[local]
2024-11-25 19:08:10.694 CET [562476][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.695 CET [562476][client backend] [[unknown]][17/144:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.695 CET [562476][client backend] [[unknown]][17/144:0] LOG: connection authorized: user=nkey database=isolation_regression_injection_points application_name=isolation/inplace
2024-11-25 19:08:10.696 CET [562302][client backend] [pg_regress/postgres_fdw][65/210:0] ERROR: user mapping not found for user "regress_view_owner_another", server "loopback"
2024-11-25 19:08:10.696 CET [562302][client backend] [pg_regress/postgres_fdw][65/210:0] STATEMENT: EXPLAIN (VERBOSE, COSTS OFF) SELECT * FROM v4;
2024-11-25 19:08:10.696 CET [562302][client backend] [pg_regress/postgres_fdw][65/211:0] ERROR: user mapping not found for user "regress_view_owner_another", server "loopback"
2024-11-25 19:08:10.696 CET [562302][client backend] [pg_regress/postgres_fdw][65/211:0] STATEMENT: EXPLAIN (VERBOSE, COSTS OFF) SELECT * FROM (SELECT * FROM v4 UNION ALL SELECT * FROM v4);
2024-11-25 19:08:10.697 CET [562481][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.697 CET [562482][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.697 CET [562481][client backend] [[unknown]][27/161:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.697 CET [562481][client backend] [[unknown]][27/161:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:10.698 CET [562482][client backend] [[unknown]][35/41:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.698 CET [562482][client backend] [[unknown]][35/41:0] LOG: connection authorized: user=nkey database=isolation_regression_injection_points application_name=isolation/inplace
2024-11-25 19:08:10.699 CET [562499][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.700 CET [562501][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.700 CET [562502][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.700 CET [562503][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.700 CET [562500][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.700 CET [562504][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.701 CET [562499][client backend] [[unknown]][40/48:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.701 CET [562499][client backend] [[unknown]][40/48:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/create_cast
2024-11-25 19:08:10.701 CET [562503][client backend] [[unknown]][42/83:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.701 CET [562503][client backend] [[unknown]][42/83:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/typed_table
2024-11-25 19:08:10.701 CET [562500][client backend] [[unknown]][47/42:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.701 CET [562500][client backend] [[unknown]][47/42:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/create_aggregate
2024-11-25 19:08:10.701 CET [562505][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.702 CET [562504][client backend] [[unknown]][46/113:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.702 CET [562504][client backend] [[unknown]][46/113:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/constraints
2024-11-25 19:08:10.702 CET [562505][client backend] [[unknown]][51/21:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.702 CET [562505][client backend] [[unknown]][51/21:0] LOG: connection authorized: user=nkey database=isolation_regression_injection_points application_name=isolation/inplace
2024-11-25 19:08:10.702 CET [562501][client backend] [[unknown]][44/32:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.702 CET [562501][client backend] [[unknown]][44/32:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/select
2024-11-25 19:08:10.702 CET [562506][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.703 CET [562511][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.703 CET [562506][client backend] [[unknown]][15/227:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.703 CET [562506][client backend] [[unknown]][15/227:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/hash_func
2024-11-25 19:08:10.703 CET [562511][client backend] [[unknown]][7/749:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.703 CET [562511][client backend] [[unknown]][7/749:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/updatable_views
2024-11-25 19:08:10.703 CET [562503][client backend] [pg_regress/typed_table][42/84:0] ERROR: type "nothing" does not exist
2024-11-25 19:08:10.703 CET [562503][client backend] [pg_regress/typed_table][42/84:0] STATEMENT: CREATE TABLE ttable1 OF nothing;
2024-11-25 19:08:10.704 CET [562500][client backend] [pg_regress/create_aggregate][47/44:0] ERROR: aggregate newavg_wrong(integer) does not exist
2024-11-25 19:08:10.704 CET [562500][client backend] [pg_regress/create_aggregate][47/44:0] STATEMENT: COMMENT ON AGGREGATE newavg_wrong (int4) IS 'an agg comment';
2024-11-25 19:08:10.704 CET [562508][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.704 CET [562510][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.705 CET [562507][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.705 CET [562510][client backend] [[unknown]][63/59:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.705 CET [562510][client backend] [[unknown]][63/59:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/roleattributes
2024-11-25 19:08:10.705 CET [562507][client backend] [[unknown]][25/701:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.705 CET [562514][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.705 CET [562507][client backend] [[unknown]][25/701:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/create_am
2024-11-25 19:08:10.706 CET [562515][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.706 CET [562508][client backend] [[unknown]][43/214:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.706 CET [562508][client backend] [[unknown]][43/214:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/inherit
2024-11-25 19:08:10.706 CET [562514][client backend] [[unknown]][52/52:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.706 CET [562514][client backend] [[unknown]][52/52:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/drop_if_exists
2024-11-25 19:08:10.706 CET [562515][client backend] [[unknown]][48/83:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.706 CET [562515][client backend] [[unknown]][48/83:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/infinite_recurse
2024-11-25 19:08:10.707 CET [562502][client backend] [[unknown]][14/302:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.707 CET [562502][client backend] [[unknown]][14/302:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/triggers
2024-11-25 19:08:10.708 CET [562514][client backend] [pg_regress/drop_if_exists][52/53:0] ERROR: table "test_exists" does not exist
2024-11-25 19:08:10.708 CET [562514][client backend] [pg_regress/drop_if_exists][52/53:0] STATEMENT: DROP TABLE test_exists;
2024-11-25 19:08:10.709 CET [562481][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.011 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:10.709 CET [562507][client backend] [pg_regress/create_am][25/703:0] ERROR: function int4in(internal) does not exist
2024-11-25 19:08:10.709 CET [562507][client backend] [pg_regress/create_am][25/703:0] STATEMENT: CREATE ACCESS METHOD bogus TYPE INDEX HANDLER int4in;
2024-11-25 19:08:10.710 CET [562507][client backend] [pg_regress/create_am][25/704:0] ERROR: function heap_tableam_handler must return type index_am_handler
2024-11-25 19:08:10.710 CET [562507][client backend] [pg_regress/create_am][25/704:0] STATEMENT: CREATE ACCESS METHOD bogus TYPE INDEX HANDLER heap_tableam_handler;
2024-11-25 19:08:10.710 CET [562507][client backend] [pg_regress/create_am][25/705:0] ERROR: data type box has no default operator class for access method "gist2"
2024-11-25 19:08:10.710 CET [562507][client backend] [pg_regress/create_am][25/705:0] HINT: You must specify an operator class for the index or define a default operator class for the data type.
2024-11-25 19:08:10.710 CET [562507][client backend] [pg_regress/create_am][25/705:0] STATEMENT: CREATE INDEX grect2ind2 ON fast_emp4000 USING gist2 (home_base);
2024-11-25 19:08:10.711 CET [562513][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.711 CET [562514][client backend] [pg_regress/drop_if_exists][52/56:0] ERROR: view "test_view_exists" does not exist
2024-11-25 19:08:10.711 CET [562514][client backend] [pg_regress/drop_if_exists][52/56:0] STATEMENT: DROP VIEW test_view_exists;
2024-11-25 19:08:10.711 CET [562499][client backend] [pg_regress/create_cast][40/54:0] ERROR: function casttestfunc(text) does not exist at character 8
2024-11-25 19:08:10.711 CET [562499][client backend] [pg_regress/create_cast][40/54:0] HINT: No function matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:10.711 CET [562499][client backend] [pg_regress/create_cast][40/54:0] STATEMENT: SELECT casttestfunc('foo'::text);
2024-11-25 19:08:10.712 CET [562499][client backend] [pg_regress/create_cast][40/56:0] ERROR: function casttestfunc(text) does not exist at character 8
2024-11-25 19:08:10.712 CET [562499][client backend] [pg_regress/create_cast][40/56:0] HINT: No function matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:10.712 CET [562499][client backend] [pg_regress/create_cast][40/56:0] STATEMENT: SELECT casttestfunc('foo'::text);
2024-11-25 19:08:10.713 CET [562460][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.032 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:10.713 CET [562513][client backend] [[unknown]][64/22:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.713 CET [562513][client backend] [[unknown]][64/22:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/errors
2024-11-25 19:08:10.715 CET [562514][client backend] [pg_regress/drop_if_exists][52/60:0] ERROR: view "test_view_exists" does not exist
2024-11-25 19:08:10.715 CET [562514][client backend] [pg_regress/drop_if_exists][52/60:0] STATEMENT: DROP VIEW test_view_exists;
2024-11-25 19:08:10.715 CET [562500][client backend] [pg_regress/create_aggregate][47/51:0] ERROR: aggregate nosuchagg(*) does not exist
2024-11-25 19:08:10.715 CET [562500][client backend] [pg_regress/create_aggregate][47/51:0] STATEMENT: COMMENT ON AGGREGATE nosuchagg (*) IS 'should fail';
2024-11-25 19:08:10.715 CET [562514][client backend] [pg_regress/drop_if_exists][52/61:0] ERROR: index "test_index_exists" does not exist
2024-11-25 19:08:10.715 CET [562514][client backend] [pg_regress/drop_if_exists][52/61:0] STATEMENT: DROP INDEX test_index_exists;
2024-11-25 19:08:10.715 CET [562499][client backend] [pg_regress/create_cast][40/61:0] ERROR: cannot cast type integer to casttesttype at character 18
2024-11-25 19:08:10.715 CET [562499][client backend] [pg_regress/create_cast][40/61:0] STATEMENT: SELECT 1234::int4::casttesttype;
2024-11-25 19:08:10.715 CET [561023][checkpointer] LOG: checkpoint complete: wrote 1607 buffers (9.8%), wrote 2 SLRU buffers; 0 WAL file(s) added, 0 removed, 1 recycled; write=0.025 s, sync=0.001 s, total=0.034 s; sync files=0, longest=0.000 s, average=0.000 s; distance=12398 kB, estimate=25933 kB; lsn=4/56575890, redo lsn=4/5641ABA8
2024-11-25 19:08:10.716 CET [562468][client backend] [isolation/total-cash/s2][32/134:532064] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.716 CET [562468][client backend] [isolation/total-cash/s2][32/134:532064] DETAIL: Reason code: Canceled on conflict out to pivot 532050, during read.
2024-11-25 19:08:10.716 CET [562468][client backend] [isolation/total-cash/s2][32/134:532064] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.716 CET [562468][client backend] [isolation/total-cash/s2][32/134:532064] STATEMENT: SELECT SUM(balance) FROM accounts;
2024-11-25 19:08:10.716 CET [562509][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.717 CET [562514][client backend] [pg_regress/drop_if_exists][52/65:0] ERROR: index "test_index_exists" does not exist
2024-11-25 19:08:10.717 CET [562514][client backend] [pg_regress/drop_if_exists][52/65:0] STATEMENT: DROP INDEX test_index_exists;
2024-11-25 19:08:10.717 CET [562514][client backend] [pg_regress/drop_if_exists][52/66:0] ERROR: sequence "test_sequence_exists" does not exist
2024-11-25 19:08:10.717 CET [562514][client backend] [pg_regress/drop_if_exists][52/66:0] STATEMENT: DROP SEQUENCE test_sequence_exists;
2024-11-25 19:08:10.717 CET [562509][client backend] [[unknown]][49/269:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.717 CET [562509][client backend] [[unknown]][49/269:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/create_function_sql
2024-11-25 19:08:10.718 CET [562514][client backend] [pg_regress/drop_if_exists][52/70:0] ERROR: sequence "test_sequence_exists" does not exist
2024-11-25 19:08:10.718 CET [562514][client backend] [pg_regress/drop_if_exists][52/70:0] STATEMENT: DROP SEQUENCE test_sequence_exists;
2024-11-25 19:08:10.718 CET [562514][client backend] [pg_regress/drop_if_exists][52/71:0] ERROR: schema "test_schema_exists" does not exist
2024-11-25 19:08:10.718 CET [562514][client backend] [pg_regress/drop_if_exists][52/71:0] STATEMENT: DROP SCHEMA test_schema_exists;
2024-11-25 19:08:10.719 CET [562500][client backend] [pg_regress/create_aggregate][47/62:0] ERROR: function least_accum(bigint, bigint) requires run-time type coercion
2024-11-25 19:08:10.719 CET [562500][client backend] [pg_regress/create_aggregate][47/62:0] STATEMENT: create aggregate least_agg(int4) (
stype = int8, sfunc = least_accum
);
2024-11-25 19:08:10.719 CET [562514][client backend] [pg_regress/drop_if_exists][52/75:0] ERROR: schema "test_schema_exists" does not exist
2024-11-25 19:08:10.719 CET [562514][client backend] [pg_regress/drop_if_exists][52/75:0] STATEMENT: DROP SCHEMA test_schema_exists;
2024-11-25 19:08:10.719 CET [562514][client backend] [pg_regress/drop_if_exists][52/76:0] ERROR: type "test_type_exists" does not exist
2024-11-25 19:08:10.719 CET [562514][client backend] [pg_regress/drop_if_exists][52/76:0] STATEMENT: DROP TYPE test_type_exists;
2024-11-25 19:08:10.719 CET [562506][client backend] [pg_regress/hash_func][15/244:0] ERROR: could not identify a hash function for type bit varying
2024-11-25 19:08:10.719 CET [562506][client backend] [pg_regress/hash_func][15/244:0] STATEMENT: SELECT v as value, hash_array(v)::bit(32) as standard
FROM (VALUES ('{101}'::varbit[])) x(v);
2024-11-25 19:08:10.720 CET [562506][client backend] [pg_regress/hash_func][15/245:0] ERROR: could not identify an extended hash function for type bit varying
2024-11-25 19:08:10.720 CET [562506][client backend] [pg_regress/hash_func][15/245:0] STATEMENT: SELECT v as value, hash_array_extended(v, 0)::bit(32) as extended0
FROM (VALUES ('{101}'::varbit[])) x(v);
2024-11-25 19:08:10.720 CET [562500][client backend] [pg_regress/create_aggregate][47/65:0] ERROR: function least_accum(bigint, bigint) requires run-time type coercion
2024-11-25 19:08:10.720 CET [562500][client backend] [pg_regress/create_aggregate][47/65:0] STATEMENT: create aggregate least_agg(int4) (
stype = int8, sfunc = least_accum
);
2024-11-25 19:08:10.721 CET [562499][client backend] [pg_regress/create_cast][:0] LOG: disconnection: session time: 0:00:00.021 user=nkey database=regression host=[local]
2024-11-25 19:08:10.721 CET [562512][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.721 CET [562514][client backend] [pg_regress/drop_if_exists][52/80:0] ERROR: type "test_type_exists" does not exist
2024-11-25 19:08:10.721 CET [562514][client backend] [pg_regress/drop_if_exists][52/80:0] STATEMENT: DROP TYPE test_type_exists;
2024-11-25 19:08:10.721 CET [562514][client backend] [pg_regress/drop_if_exists][52/81:0] ERROR: type "test_domain_exists" does not exist
2024-11-25 19:08:10.721 CET [562514][client backend] [pg_regress/drop_if_exists][52/81:0] STATEMENT: DROP DOMAIN test_domain_exists;
2024-11-25 19:08:10.722 CET [562512][client backend] [[unknown]][62/46:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.722 CET [562512][client backend] [[unknown]][62/46:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/vacuum
2024-11-25 19:08:10.723 CET [562514][client backend] [pg_regress/drop_if_exists][52/85:0] ERROR: type "test_domain_exists" does not exist
2024-11-25 19:08:10.723 CET [562514][client backend] [pg_regress/drop_if_exists][52/85:0] STATEMENT: DROP DOMAIN test_domain_exists;
2024-11-25 19:08:10.724 CET [562514][client backend] [pg_regress/drop_if_exists][52/89:0] ERROR: role "regress_test_u2" does not exist
2024-11-25 19:08:10.724 CET [562514][client backend] [pg_regress/drop_if_exists][52/89:0] STATEMENT: DROP USER regress_test_u2;
2024-11-25 19:08:10.725 CET [562514][client backend] [pg_regress/drop_if_exists][52/91:0] ERROR: role "regress_test_u1" does not exist
2024-11-25 19:08:10.725 CET [562514][client backend] [pg_regress/drop_if_exists][52/91:0] STATEMENT: DROP USER regress_test_u1;
2024-11-25 19:08:10.725 CET [562514][client backend] [pg_regress/drop_if_exists][52/92:0] ERROR: role "regress_test_r2" does not exist
2024-11-25 19:08:10.725 CET [562514][client backend] [pg_regress/drop_if_exists][52/92:0] STATEMENT: DROP ROLE regress_test_r2;
2024-11-25 19:08:10.725 CET [562514][client backend] [pg_regress/drop_if_exists][52/94:0] ERROR: role "regress_test_r1" does not exist
2024-11-25 19:08:10.725 CET [562514][client backend] [pg_regress/drop_if_exists][52/94:0] STATEMENT: DROP ROLE regress_test_r1;
2024-11-25 19:08:10.725 CET [562514][client backend] [pg_regress/drop_if_exists][52/95:0] ERROR: role "regress_test_g2" does not exist
2024-11-25 19:08:10.725 CET [562514][client backend] [pg_regress/drop_if_exists][52/95:0] STATEMENT: DROP GROUP regress_test_g2;
2024-11-25 19:08:10.726 CET [562514][client backend] [pg_regress/drop_if_exists][52/97:0] ERROR: role "regress_test_g1" does not exist
2024-11-25 19:08:10.726 CET [562514][client backend] [pg_regress/drop_if_exists][52/97:0] STATEMENT: DROP GROUP regress_test_g1;
2024-11-25 19:08:10.727 CET [562513][client backend] [pg_regress/errors][64/25:0] ERROR: relation "nonesuch" does not exist at character 15
2024-11-25 19:08:10.727 CET [562513][client backend] [pg_regress/errors][64/25:0] STATEMENT: select * from nonesuch;
2024-11-25 19:08:10.727 CET [562514][client backend] [pg_regress/drop_if_exists][52/99:0] ERROR: conversion "test_conversion_exists" does not exist
2024-11-25 19:08:10.727 CET [562514][client backend] [pg_regress/drop_if_exists][52/99:0] STATEMENT: DROP CONVERSION test_conversion_exists;
2024-11-25 19:08:10.727 CET [562513][client backend] [pg_regress/errors][64/26:0] ERROR: column "nonesuch" does not exist at character 8
2024-11-25 19:08:10.727 CET [562513][client backend] [pg_regress/errors][64/26:0] STATEMENT: select nonesuch from pg_database;
2024-11-25 19:08:10.727 CET [562513][client backend] [pg_regress/errors][64/27:0] ERROR: syntax error at or near "from" at character 17
2024-11-25 19:08:10.727 CET [562513][client backend] [pg_regress/errors][64/27:0] STATEMENT: select distinct from pg_database;
2024-11-25 19:08:10.727 CET [562513][client backend] [pg_regress/errors][64/28:0] ERROR: column "nonesuch" does not exist at character 33
2024-11-25 19:08:10.727 CET [562513][client backend] [pg_regress/errors][64/28:0] STATEMENT: select * from pg_database where nonesuch = pg_database.datname;
2024-11-25 19:08:10.727 CET [562513][client backend] [pg_regress/errors][64/29:0] ERROR: column "nonesuch" does not exist at character 55
2024-11-25 19:08:10.727 CET [562513][client backend] [pg_regress/errors][64/29:0] STATEMENT: select * from pg_database where pg_database.datname = nonesuch;
2024-11-25 19:08:10.727 CET [562513][client backend] [pg_regress/errors][64/30:0] ERROR: column "foobar" does not exist at character 21
2024-11-25 19:08:10.727 CET [562513][client backend] [pg_regress/errors][64/30:0] STATEMENT: select distinct on (foobar) * from pg_database;
2024-11-25 19:08:10.728 CET [562513][client backend] [pg_regress/errors][64/31:0] ERROR: FOR UPDATE is not allowed with GROUP BY clause
2024-11-25 19:08:10.728 CET [562513][client backend] [pg_regress/errors][64/31:0] STATEMENT: select null from pg_database group by datname for update;
2024-11-25 19:08:10.728 CET [562514][client backend] [pg_regress/drop_if_exists][52/103:0] ERROR: text search parser "test_tsparser_exists" does not exist
2024-11-25 19:08:10.728 CET [562514][client backend] [pg_regress/drop_if_exists][52/103:0] STATEMENT: DROP TEXT SEARCH PARSER test_tsparser_exists;
2024-11-25 19:08:10.728 CET [562513][client backend] [pg_regress/errors][64/32:0] ERROR: FOR UPDATE is not allowed with GROUP BY clause
2024-11-25 19:08:10.728 CET [562513][client backend] [pg_regress/errors][64/32:0] STATEMENT: select null from pg_database group by grouping sets (()) for update;
2024-11-25 19:08:10.728 CET [562513][client backend] [pg_regress/errors][64/33:0] ERROR: syntax error at or near ";" at character 12
2024-11-25 19:08:10.728 CET [562513][client backend] [pg_regress/errors][64/33:0] STATEMENT: delete from;
2024-11-25 19:08:10.728 CET [562513][client backend] [pg_regress/errors][64/34:0] ERROR: relation "nonesuch" does not exist at character 13
2024-11-25 19:08:10.728 CET [562513][client backend] [pg_regress/errors][64/34:0] STATEMENT: delete from nonesuch;
2024-11-25 19:08:10.728 CET [562514][client backend] [pg_regress/drop_if_exists][52/105:0] ERROR: text search dictionary "test_tsdict_exists" does not exist
2024-11-25 19:08:10.728 CET [562514][client backend] [pg_regress/drop_if_exists][52/105:0] STATEMENT: DROP TEXT SEARCH DICTIONARY test_tsdict_exists;
2024-11-25 19:08:10.728 CET [562513][client backend] [pg_regress/errors][64/35:0] ERROR: syntax error at or near ";" at character 11
2024-11-25 19:08:10.728 CET [562513][client backend] [pg_regress/errors][64/35:0] STATEMENT: drop table;
2024-11-25 19:08:10.728 CET [562504][client backend] [pg_regress/constraints][46/128:0] ERROR: syntax error at or near ")" at character 45
2024-11-25 19:08:10.728 CET [562504][client backend] [pg_regress/constraints][46/128:0] STATEMENT: CREATE TABLE error_tbl (i int DEFAULT (100, ));
2024-11-25 19:08:10.728 CET [562513][client backend] [pg_regress/errors][64/36:0] ERROR: table "nonesuch" does not exist
2024-11-25 19:08:10.728 CET [562513][client backend] [pg_regress/errors][64/36:0] STATEMENT: drop table nonesuch;
2024-11-25 19:08:10.729 CET [562513][client backend] [pg_regress/errors][64/37:0] ERROR: syntax error at or near ";" at character 19
2024-11-25 19:08:10.729 CET [562513][client backend] [pg_regress/errors][64/37:0] STATEMENT: alter table rename;
2024-11-25 19:08:10.729 CET [562504][client backend] [pg_regress/constraints][46/129:0] ERROR: syntax error at or near "IN" at character 43
2024-11-25 19:08:10.729 CET [562504][client backend] [pg_regress/constraints][46/129:0] STATEMENT: CREATE TABLE error_tbl (b1 bool DEFAULT 1 IN (1, 2));
2024-11-25 19:08:10.729 CET [562513][client backend] [pg_regress/errors][64/38:0] ERROR: relation "nonesuch" does not exist
2024-11-25 19:08:10.729 CET [562513][client backend] [pg_regress/errors][64/38:0] STATEMENT: alter table nonesuch rename to newnonesuch;
2024-11-25 19:08:10.730 CET [562468][client backend] [isolation/total-cash/s2][32/135:532150] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.730 CET [562468][client backend] [isolation/total-cash/s2][32/135:532150] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.730 CET [562468][client backend] [isolation/total-cash/s2][32/135:532150] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.730 CET [562468][client backend] [isolation/total-cash/s2][32/135:532150] STATEMENT: COMMIT;
2024-11-25 19:08:10.731 CET [562513][client backend] [pg_regress/errors][64/39:0] ERROR: relation "nonesuch" does not exist
2024-11-25 19:08:10.731 CET [562513][client backend] [pg_regress/errors][64/39:0] STATEMENT: alter table nonesuch rename to stud_emp;
2024-11-25 19:08:10.732 CET [562500][client backend] [pg_regress/create_aggregate][47/78:0] ERROR: must specify both or neither of serialization and deserialization functions
2024-11-25 19:08:10.732 CET [562500][client backend] [pg_regress/create_aggregate][47/78:0] STATEMENT: CREATE AGGREGATE myavg (numeric)
(
stype = internal,
sfunc = numeric_avg_accum,
serialfunc = numeric_avg_serialize
);
2024-11-25 19:08:10.732 CET [562500][client backend] [pg_regress/create_aggregate][47/79:0] ERROR: function numeric_avg_deserialize(internal) does not exist
2024-11-25 19:08:10.732 CET [562500][client backend] [pg_regress/create_aggregate][47/79:0] STATEMENT: CREATE AGGREGATE myavg (numeric)
(
stype = internal,
sfunc = numeric_avg_accum,
serialfunc = numeric_avg_deserialize,
deserialfunc = numeric_avg_deserialize
);
2024-11-25 19:08:10.732 CET [562500][client backend] [pg_regress/create_aggregate][47/80:0] ERROR: function numeric_avg_serialize(bytea, internal) does not exist
2024-11-25 19:08:10.732 CET [562500][client backend] [pg_regress/create_aggregate][47/80:0] STATEMENT: CREATE AGGREGATE myavg (numeric)
(
stype = internal,
sfunc = numeric_avg_accum,
serialfunc = numeric_avg_serialize,
deserialfunc = numeric_avg_serialize
);
2024-11-25 19:08:10.732 CET [562500][client backend] [pg_regress/create_aggregate][47/81:0] ERROR: function int4larger(internal, internal) does not exist
2024-11-25 19:08:10.732 CET [562500][client backend] [pg_regress/create_aggregate][47/81:0] STATEMENT: CREATE AGGREGATE myavg (numeric)
(
stype = internal,
sfunc = numeric_avg_accum,
serialfunc = numeric_avg_serialize,
deserialfunc = numeric_avg_deserialize,
combinefunc = int4larger
);
2024-11-25 19:08:10.733 CET [562513][client backend] [pg_regress/errors][64/40:532205] ERROR: relation "student" already exists
2024-11-25 19:08:10.733 CET [562513][client backend] [pg_regress/errors][64/40:532205] STATEMENT: alter table stud_emp rename to student;
2024-11-25 19:08:10.733 CET [562513][client backend] [pg_regress/errors][64/41:532206] ERROR: relation "stud_emp" already exists
2024-11-25 19:08:10.733 CET [562513][client backend] [pg_regress/errors][64/41:532206] STATEMENT: alter table stud_emp rename to stud_emp;
2024-11-25 19:08:10.733 CET [562513][client backend] [pg_regress/errors][64/42:0] ERROR: relation "nonesuchrel" does not exist
2024-11-25 19:08:10.733 CET [562513][client backend] [pg_regress/errors][64/42:0] STATEMENT: alter table nonesuchrel rename column nonesuchatt to newnonesuchatt;
2024-11-25 19:08:10.733 CET [562450][client backend] [pg_regress/check_heap][:0] LOG: disconnection: session time: 0:00:00.120 user=nkey database=regression_amcheck host=[local]
2024-11-25 19:08:10.733 CET [562513][client backend] [pg_regress/errors][64/43:532209] ERROR: column "nonesuchatt" does not exist
2024-11-25 19:08:10.733 CET [562513][client backend] [pg_regress/errors][64/43:532209] STATEMENT: alter table emp rename column nonesuchatt to newnonesuchatt;
2024-11-25 19:08:10.734 CET [562513][client backend] [pg_regress/errors][64/44:532212] ERROR: column "manager" of relation "stud_emp" already exists
2024-11-25 19:08:10.734 CET [562513][client backend] [pg_regress/errors][64/44:532212] STATEMENT: alter table emp rename column salary to manager;
2024-11-25 19:08:10.734 CET [562513][client backend] [pg_regress/errors][64/45:532214] ERROR: column name "ctid" conflicts with a system column name
2024-11-25 19:08:10.734 CET [562513][client backend] [pg_regress/errors][64/45:532214] STATEMENT: alter table emp rename column salary to ctid;
2024-11-25 19:08:10.734 CET [562513][client backend] [pg_regress/errors][64/46:0] WARNING: there is no transaction in progress
2024-11-25 19:08:10.734 CET [562513][client backend] [pg_regress/errors][64/47:0] WARNING: there is no transaction in progress
2024-11-25 19:08:10.735 CET [562513][client backend] [pg_regress/errors][64/48:0] ERROR: function int2um(integer) does not exist
2024-11-25 19:08:10.735 CET [562513][client backend] [pg_regress/errors][64/48:0] STATEMENT: create aggregate newavg2 (sfunc = int4pl,
basetype = int4,
stype = int4,
finalfunc = int2um,
initcond = '0');
2024-11-25 19:08:10.735 CET [562513][client backend] [pg_regress/errors][64/49:0] ERROR: aggregate input type must be specified
2024-11-25 19:08:10.735 CET [562513][client backend] [pg_regress/errors][64/49:0] STATEMENT: create aggregate newcnt1 (sfunc = int4inc,
stype = int4,
initcond = '0');
2024-11-25 19:08:10.735 CET [562513][client backend] [pg_regress/errors][64/50:0] ERROR: syntax error at or near ";" at character 11
2024-11-25 19:08:10.735 CET [562513][client backend] [pg_regress/errors][64/50:0] STATEMENT: drop index;
2024-11-25 19:08:10.735 CET [562513][client backend] [pg_regress/errors][64/51:0] ERROR: syntax error at or near "314159" at character 12
2024-11-25 19:08:10.735 CET [562513][client backend] [pg_regress/errors][64/51:0] STATEMENT: drop index 314159;
2024-11-25 19:08:10.735 CET [562513][client backend] [pg_regress/errors][64/52:0] ERROR: index "nonesuch" does not exist
2024-11-25 19:08:10.735 CET [562513][client backend] [pg_regress/errors][64/52:0] STATEMENT: drop index nonesuch;
2024-11-25 19:08:10.735 CET [562513][client backend] [pg_regress/errors][64/53:0] ERROR: syntax error at or near ";" at character 15
2024-11-25 19:08:10.735 CET [562513][client backend] [pg_regress/errors][64/53:0] STATEMENT: drop aggregate;
2024-11-25 19:08:10.735 CET [562513][client backend] [pg_regress/errors][64/54:0] ERROR: syntax error at or near ";" at character 23
2024-11-25 19:08:10.735 CET [562513][client backend] [pg_regress/errors][64/54:0] STATEMENT: drop aggregate newcnt1;
2024-11-25 19:08:10.735 CET [562513][client backend] [pg_regress/errors][64/55:0] ERROR: syntax error at or near "314159" at character 16
2024-11-25 19:08:10.735 CET [562513][client backend] [pg_regress/errors][64/55:0] STATEMENT: drop aggregate 314159 (int);
2024-11-25 19:08:10.735 CET [562513][client backend] [pg_regress/errors][64/56:0] ERROR: type "nonesuch" does not exist
2024-11-25 19:08:10.735 CET [562513][client backend] [pg_regress/errors][64/56:0] STATEMENT: drop aggregate newcnt (nonesuch);
2024-11-25 19:08:10.735 CET [562513][client backend] [pg_regress/errors][64/57:0] ERROR: aggregate nonesuch(integer) does not exist
2024-11-25 19:08:10.735 CET [562513][client backend] [pg_regress/errors][64/57:0] STATEMENT: drop aggregate nonesuch (int4);
2024-11-25 19:08:10.735 CET [562513][client backend] [pg_regress/errors][64/58:0] ERROR: aggregate newcnt(real) does not exist
2024-11-25 19:08:10.735 CET [562513][client backend] [pg_regress/errors][64/58:0] STATEMENT: drop aggregate newcnt (float4);
2024-11-25 19:08:10.735 CET [562513][client backend] [pg_regress/errors][64/59:0] ERROR: syntax error at or near "(" at character 15
2024-11-25 19:08:10.735 CET [562513][client backend] [pg_regress/errors][64/59:0] STATEMENT: drop function ();
2024-11-25 19:08:10.735 CET [562513][client backend] [pg_regress/errors][64/60:0] ERROR: syntax error at or near "314159" at character 15
2024-11-25 19:08:10.735 CET [562513][client backend] [pg_regress/errors][64/60:0] STATEMENT: drop function 314159();
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/61:0] ERROR: function nonesuch() does not exist
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/61:0] STATEMENT: drop function nonesuch();
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/62:0] ERROR: syntax error at or near ";" at character 10
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/62:0] STATEMENT: drop type;
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/63:0] ERROR: syntax error at or near "314159" at character 11
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/63:0] STATEMENT: drop type 314159;
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/64:0] ERROR: type "nonesuch" does not exist
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/64:0] STATEMENT: drop type nonesuch;
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/65:0] ERROR: syntax error at or near ";" at character 14
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/65:0] STATEMENT: drop operator;
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/66:0] ERROR: syntax error at or near ";" at character 21
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/66:0] STATEMENT: drop operator equals;
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/67:0] ERROR: syntax error at or near ";" at character 18
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/67:0] STATEMENT: drop operator ===;
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/68:0] ERROR: syntax error at or near "," at character 19
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/68:0] STATEMENT: drop operator int4, int4;
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/69:0] ERROR: syntax error at or near "(" at character 15
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/69:0] STATEMENT: drop operator (int4, int4);
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/70:0] ERROR: syntax error at or near ")" at character 20
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/70:0] STATEMENT: drop operator === ();
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/71:0] ERROR: missing argument at character 24
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/71:0] HINT: Use NONE to denote the missing argument of a unary operator.
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/71:0] STATEMENT: drop operator === (int4);
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/72:0] ERROR: operator does not exist: integer === integer
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/72:0] STATEMENT: drop operator === (int4, int4);
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/73:0] ERROR: missing argument at character 26
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/73:0] HINT: Use NONE to denote the missing argument of a unary operator.
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/73:0] STATEMENT: drop operator = (nonesuch);
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/74:0] ERROR: syntax error at or near "," at character 19
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/74:0] STATEMENT: drop operator = ( , int4);
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/75:0] ERROR: type "nonesuch" does not exist
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/75:0] STATEMENT: drop operator = (nonesuch, int4);
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/76:0] ERROR: type "nonesuch" does not exist
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/76:0] STATEMENT: drop operator = (int4, nonesuch);
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/77:0] ERROR: syntax error at or near ")" at character 24
2024-11-25 19:08:10.736 CET [562513][client backend] [pg_regress/errors][64/77:0] STATEMENT: drop operator = (int4, );
2024-11-25 19:08:10.737 CET [562513][client backend] [pg_regress/errors][64/78:0] ERROR: syntax error at or near ";" at character 10
2024-11-25 19:08:10.737 CET [562513][client backend] [pg_regress/errors][64/78:0] STATEMENT: drop rule;
2024-11-25 19:08:10.737 CET [562513][client backend] [pg_regress/errors][64/79:0] ERROR: syntax error at or near "314159" at character 11
2024-11-25 19:08:10.737 CET [562513][client backend] [pg_regress/errors][64/79:0] STATEMENT: drop rule 314159;
2024-11-25 19:08:10.737 CET [562513][client backend] [pg_regress/errors][64/80:0] ERROR: relation "noplace" does not exist
2024-11-25 19:08:10.737 CET [562513][client backend] [pg_regress/errors][64/80:0] STATEMENT: drop rule nonesuch on noplace;
2024-11-25 19:08:10.737 CET [562513][client backend] [pg_regress/errors][64/81:0] ERROR: syntax error at or near "tuple" at character 6
2024-11-25 19:08:10.737 CET [562513][client backend] [pg_regress/errors][64/81:0] STATEMENT: drop tuple rule nonesuch;
2024-11-25 19:08:10.737 CET [562513][client backend] [pg_regress/errors][64/82:0] ERROR: syntax error at or near "instance" at character 6
2024-11-25 19:08:10.737 CET [562513][client backend] [pg_regress/errors][64/82:0] STATEMENT: drop instance rule nonesuch on noplace;
2024-11-25 19:08:10.737 CET [562513][client backend] [pg_regress/errors][64/83:0] ERROR: syntax error at or near "rewrite" at character 6
2024-11-25 19:08:10.737 CET [562513][client backend] [pg_regress/errors][64/83:0] STATEMENT: drop rewrite rule nonesuch;
2024-11-25 19:08:10.737 CET [562464][client backend] [isolation/total-cash/s1][8/223:532226] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.737 CET [562464][client backend] [isolation/total-cash/s1][8/223:532226] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.737 CET [562464][client backend] [isolation/total-cash/s1][8/223:532226] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.737 CET [562464][client backend] [isolation/total-cash/s1][8/223:532226] STATEMENT: COMMIT;
2024-11-25 19:08:10.737 CET [562513][client backend] [pg_regress/errors][64/84:0] ERROR: division by zero
2024-11-25 19:08:10.737 CET [562513][client backend] [pg_regress/errors][64/84:0] STATEMENT: select 1/0;
2024-11-25 19:08:10.737 CET [562513][client backend] [pg_regress/errors][64/85:0] ERROR: division by zero
2024-11-25 19:08:10.737 CET [562513][client backend] [pg_regress/errors][64/85:0] STATEMENT: select 1::int8/0;
2024-11-25 19:08:10.737 CET [562513][client backend] [pg_regress/errors][64/86:0] ERROR: division by zero
2024-11-25 19:08:10.737 CET [562513][client backend] [pg_regress/errors][64/86:0] STATEMENT: select 1/0::int8;
2024-11-25 19:08:10.737 CET [562513][client backend] [pg_regress/errors][64/87:0] ERROR: division by zero
2024-11-25 19:08:10.737 CET [562513][client backend] [pg_regress/errors][64/87:0] STATEMENT: select 1::int2/0;
2024-11-25 19:08:10.738 CET [562513][client backend] [pg_regress/errors][64/88:0] ERROR: division by zero
2024-11-25 19:08:10.738 CET [562513][client backend] [pg_regress/errors][64/88:0] STATEMENT: select 1/0::int2;
2024-11-25 19:08:10.738 CET [562513][client backend] [pg_regress/errors][64/89:0] ERROR: division by zero
2024-11-25 19:08:10.738 CET [562513][client backend] [pg_regress/errors][64/89:0] STATEMENT: select 1::numeric/0;
2024-11-25 19:08:10.738 CET [562513][client backend] [pg_regress/errors][64/90:0] ERROR: division by zero
2024-11-25 19:08:10.738 CET [562513][client backend] [pg_regress/errors][64/90:0] STATEMENT: select 1/0::numeric;
2024-11-25 19:08:10.738 CET [562513][client backend] [pg_regress/errors][64/91:0] ERROR: division by zero
2024-11-25 19:08:10.738 CET [562513][client backend] [pg_regress/errors][64/91:0] STATEMENT: select 1::float8/0;
2024-11-25 19:08:10.740 CET [562513][client backend] [pg_regress/errors][64/92:0] ERROR: division by zero
2024-11-25 19:08:10.740 CET [562513][client backend] [pg_regress/errors][64/92:0] STATEMENT: select 1/0::float8;
2024-11-25 19:08:10.740 CET [562513][client backend] [pg_regress/errors][64/93:0] ERROR: division by zero
2024-11-25 19:08:10.740 CET [562513][client backend] [pg_regress/errors][64/93:0] STATEMENT: select 1::float4/0;
2024-11-25 19:08:10.740 CET [562513][client backend] [pg_regress/errors][64/94:0] ERROR: division by zero
2024-11-25 19:08:10.740 CET [562513][client backend] [pg_regress/errors][64/94:0] STATEMENT: select 1/0::float4;
2024-11-25 19:08:10.741 CET [562513][client backend] [pg_regress/errors][64/95:0] ERROR: syntax error at or near "xxx" at character 1
2024-11-25 19:08:10.741 CET [562513][client backend] [pg_regress/errors][64/95:0] STATEMENT: xxx;
2024-11-25 19:08:10.741 CET [562513][client backend] [pg_regress/errors][64/96:0] ERROR: syntax error at or near "foo" at character 8
2024-11-25 19:08:10.741 CET [562513][client backend] [pg_regress/errors][64/96:0] STATEMENT: CREATE foo;
2024-11-25 19:08:10.741 CET [562513][client backend] [pg_regress/errors][64/97:0] ERROR: syntax error at or near ";" at character 14
2024-11-25 19:08:10.741 CET [562513][client backend] [pg_regress/errors][64/97:0] STATEMENT: CREATE TABLE ;
2024-11-25 19:08:10.741 CET [562513][client backend] [pg_regress/errors][64/98:0] ERROR: syntax error at end of input at character 13
2024-11-25 19:08:10.741 CET [562513][client backend] [pg_regress/errors][64/98:0] STATEMENT: CREATE TABLE
2024-11-25 19:08:10.741 CET [562513][client backend] [pg_regress/errors][64/99:0] ERROR: syntax error at or near "foo" at character 29
2024-11-25 19:08:10.741 CET [562513][client backend] [pg_regress/errors][64/99:0] STATEMENT: INSERT INTO foo VALUES(123) foo;
2024-11-25 19:08:10.741 CET [562513][client backend] [pg_regress/errors][64/100:0] ERROR: syntax error at or near "123" at character 13
2024-11-25 19:08:10.741 CET [562513][client backend] [pg_regress/errors][64/100:0] STATEMENT: INSERT INTO 123
VALUES(123);
2024-11-25 19:08:10.741 CET [562513][client backend] [pg_regress/errors][64/101:0] ERROR: syntax error at or near "123" at character 29
2024-11-25 19:08:10.741 CET [562513][client backend] [pg_regress/errors][64/101:0] STATEMENT: INSERT INTO foo
VALUES(123) 123
;
2024-11-25 19:08:10.741 CET [562513][client backend] [pg_regress/errors][64/102:0] ERROR: syntax error at or near "NUL" at character 94
2024-11-25 19:08:10.741 CET [562513][client backend] [pg_regress/errors][64/102:0] STATEMENT: CREATE TABLE foo
(id INT4 UNIQUE NOT NULL, id2 TEXT NOT NULL PRIMARY KEY,
id3 INTEGER NOT NUL,
id4 INT4 UNIQUE NOT NULL, id5 TEXT UNIQUE NOT NULL);
2024-11-25 19:08:10.741 CET [562513][client backend] [pg_regress/errors][64/103:0] ERROR: syntax error at or near "NUL" at character 90
2024-11-25 19:08:10.741 CET [562513][client backend] [pg_regress/errors][64/103:0] STATEMENT: CREATE TABLE foo(id INT4 UNIQUE NOT NULL, id2 TEXT NOT NULL PRIMARY KEY, id3 INTEGER NOT NUL,
id4 INT4 UNIQUE NOT NULL, id5 TEXT UNIQUE NOT NULL);
2024-11-25 19:08:10.742 CET [562513][client backend] [pg_regress/errors][64/104:0] ERROR: syntax error at or near "NUL" at character 35
2024-11-25 19:08:10.742 CET [562513][client backend] [pg_regress/errors][64/104:0] STATEMENT: CREATE TABLE foo(
id3 INTEGER NOT NUL, id4 INT4 UNIQUE NOT NULL, id5 TEXT UNIQUE NOT NULL, id INT4 UNIQUE NOT NULL, id2 TEXT NOT NULL PRIMARY KEY);
2024-11-25 19:08:10.742 CET [562513][client backend] [pg_regress/errors][64/105:0] ERROR: syntax error at or near "NUL" at character 90
2024-11-25 19:08:10.742 CET [562513][client backend] [pg_regress/errors][64/105:0] STATEMENT: CREATE TABLE foo(id INT4 UNIQUE NOT NULL, id2 TEXT NOT NULL PRIMARY KEY, id3 INTEGER NOT NUL, id4 INT4 UNIQUE NOT NULL, id5 TEXT UNIQUE NOT NULL);
2024-11-25 19:08:10.742 CET [562513][client backend] [pg_regress/errors][64/106:0] ERROR: syntax error at or near "NUL" at character 100
2024-11-25 19:08:10.742 CET [562513][client backend] [pg_regress/errors][64/106:0] STATEMENT: CREATE
TEMPORARY
TABLE
foo(id INT4 UNIQUE NOT NULL, id2 TEXT NOT NULL PRIMARY KEY, id3 INTEGER NOT NUL,
id4 INT4
UNIQUE
NOT
NULL,
id5 TEXT
UNIQUE
NOT
NULL)
;
2024-11-25 19:08:10.742 CET [562513][client backend] [pg_regress/errors][64/107:0] ERROR: syntax error at or near "NUL" at character 45
2024-11-25 19:08:10.742 CET [562513][client backend] [pg_regress/errors][64/107:0] STATEMENT: CREATE
TEMPORARY
TABLE
foo(
id3 INTEGER NOT NUL, id4 INT4 UNIQUE NOT NULL, id5 TEXT UNIQUE NOT NULL, id INT4 UNIQUE NOT NULL, id2 TEXT NOT NULL PRIMARY KEY)
;
2024-11-25 19:08:10.742 CET [562513][client backend] [pg_regress/errors][64/108:0] ERROR: syntax error at or near "NUL" at character 153
2024-11-25 19:08:10.742 CET [562513][client backend] [pg_regress/errors][64/108:0] STATEMENT: CREATE
TEMPORARY
TABLE
foo
(id
INT4
UNIQUE NOT NULL, idx INT4 UNIQUE NOT NULL, idy INT4 UNIQUE NOT NULL, id2 TEXT NOT NULL PRIMARY KEY, id3 INTEGER NOT NUL, id4 INT4 UNIQUE NOT NULL, id5 TEXT UNIQUE NOT NULL,
idz INT4 UNIQUE NOT NULL,
idv INT4 UNIQUE NOT NULL);
2024-11-25 19:08:10.742 CET [562513][client backend] [pg_regress/errors][64/109:0] ERROR: syntax error at or near "NUL" at character 180
2024-11-25 19:08:10.742 CET [562513][client backend] [pg_regress/errors][64/109:0] STATEMENT: CREATE
TEMPORARY
TABLE
foo
(id
INT4
UNIQUE
NOT
NULL
,
idm
INT4
UNIQUE
NOT
NULL,
idx INT4 UNIQUE NOT NULL, idy INT4 UNIQUE NOT NULL, id2 TEXT NOT NULL PRIMARY KEY, id3 INTEGER NOT NUL, id4 INT4 UNIQUE NOT NULL, id5 TEXT UNIQUE NOT NULL,
idz INT4 UNIQUE NOT NULL,
idv
INT4
UNIQUE
NOT
NULL);
2024-11-25 19:08:10.743 CET [562513][client backend] [pg_regress/errors][:0] LOG: disconnection: session time: 0:00:00.032 user=nkey database=regression host=[local]
2024-11-25 19:08:10.744 CET [562468][client backend] [isolation/total-cash/s2][32/137:532302] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.744 CET [562468][client backend] [isolation/total-cash/s2][32/137:532302] DETAIL: Reason code: Canceled on conflict out to pivot 532293, during read.
2024-11-25 19:08:10.744 CET [562468][client backend] [isolation/total-cash/s2][32/137:532302] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.744 CET [562468][client backend] [isolation/total-cash/s2][32/137:532302] STATEMENT: SELECT SUM(balance) FROM accounts;
2024-11-25 19:08:10.744 CET [562507][client backend] [pg_regress/create_am][25/709:532309] ERROR: cannot drop access method gist2 because other objects depend on it
2024-11-25 19:08:10.744 CET [562507][client backend] [pg_regress/create_am][25/709:532309] DETAIL: index grect2ind2 depends on operator class box_ops for access method gist2
2024-11-25 19:08:10.744 CET [562507][client backend] [pg_regress/create_am][25/709:532309] HINT: Use DROP ... CASCADE to drop the dependent objects too.
2024-11-25 19:08:10.744 CET [562507][client backend] [pg_regress/create_am][25/709:532309] STATEMENT: DROP ACCESS METHOD gist2;
2024-11-25 19:08:10.745 CET [562502][client backend] [pg_regress/triggers][14/324:0] ERROR: trigger "check_fkeys2_pkey_bad" for table "fkeys2" does not exist
2024-11-25 19:08:10.745 CET [562502][client backend] [pg_regress/triggers][14/324:0] STATEMENT: COMMENT ON TRIGGER check_fkeys2_pkey_bad ON fkeys2 IS 'wrong';
2024-11-25 19:08:10.748 CET [562514][client backend] [pg_regress/drop_if_exists][52/109:0] ERROR: text search template "test_tstemplate_exists" does not exist
2024-11-25 19:08:10.748 CET [562514][client backend] [pg_regress/drop_if_exists][52/109:0] STATEMENT: DROP TEXT SEARCH TEMPLATE test_tstemplate_exists;
2024-11-25 19:08:10.748 CET [562514][client backend] [pg_regress/drop_if_exists][52/111:0] ERROR: text search configuration "test_tsconfig_exists" does not exist
2024-11-25 19:08:10.748 CET [562514][client backend] [pg_regress/drop_if_exists][52/111:0] STATEMENT: DROP TEXT SEARCH CONFIGURATION test_tsconfig_exists;
2024-11-25 19:08:10.750 CET [562502][client backend] [pg_regress/triggers][14/333:0] ERROR: tuple references non-existent key
2024-11-25 19:08:10.750 CET [562502][client backend] [pg_regress/triggers][14/333:0] DETAIL: Trigger "check_fkeys2_pkey_exist" found tuple referencing non-existent key in "pkeys".
2024-11-25 19:08:10.750 CET [562502][client backend] [pg_regress/triggers][14/333:0] STATEMENT: insert into fkeys2 values (70, '5', 3);
2024-11-25 19:08:10.750 CET [562503][client backend] [pg_regress/typed_table][42/99:532352] ERROR: cannot add column to typed table
2024-11-25 19:08:10.750 CET [562503][client backend] [pg_regress/typed_table][42/99:532352] STATEMENT: ALTER TABLE persons ADD COLUMN comment text;
2024-11-25 19:08:10.750 CET [562514][client backend] [pg_regress/drop_if_exists][52/115:0] ERROR: extension "test_extension_exists" does not exist
2024-11-25 19:08:10.750 CET [562514][client backend] [pg_regress/drop_if_exists][52/115:0] STATEMENT: DROP EXTENSION test_extension_exists;
2024-11-25 19:08:10.750 CET [562503][client backend] [pg_regress/typed_table][42/100:532353] ERROR: cannot drop column from typed table
2024-11-25 19:08:10.750 CET [562503][client backend] [pg_regress/typed_table][42/100:532353] STATEMENT: ALTER TABLE persons DROP COLUMN name;
2024-11-25 19:08:10.750 CET [562503][client backend] [pg_regress/typed_table][42/101:0] ERROR: cannot rename column of typed table
2024-11-25 19:08:10.750 CET [562503][client backend] [pg_regress/typed_table][42/101:0] STATEMENT: ALTER TABLE persons RENAME COLUMN id TO num;
2024-11-25 19:08:10.750 CET [562503][client backend] [pg_regress/typed_table][42/102:532356] ERROR: cannot alter column type of typed table
2024-11-25 19:08:10.750 CET [562503][client backend] [pg_regress/typed_table][42/102:532356] STATEMENT: ALTER TABLE persons ALTER COLUMN name TYPE varchar;
2024-11-25 19:08:10.750 CET [562514][client backend] [pg_regress/drop_if_exists][52/117:0] ERROR: function test_function_exists() does not exist
2024-11-25 19:08:10.750 CET [562514][client backend] [pg_regress/drop_if_exists][52/117:0] STATEMENT: DROP FUNCTION test_function_exists();
2024-11-25 19:08:10.751 CET [562514][client backend] [pg_regress/drop_if_exists][52/119:0] ERROR: function test_function_exists(integer, text, integer[]) does not exist
2024-11-25 19:08:10.751 CET [562514][client backend] [pg_regress/drop_if_exists][52/119:0] STATEMENT: DROP FUNCTION test_function_exists(int, text, int[]);
2024-11-25 19:08:10.751 CET [562514][client backend] [pg_regress/drop_if_exists][52/121:0] ERROR: aggregate test_aggregate_exists(*) does not exist
2024-11-25 19:08:10.751 CET [562514][client backend] [pg_regress/drop_if_exists][52/121:0] STATEMENT: DROP AGGREGATE test_aggregate_exists(*);
2024-11-25 19:08:10.752 CET [562502][client backend] [pg_regress/triggers][14/338:0] ERROR: tuple references non-existent key
2024-11-25 19:08:10.752 CET [562502][client backend] [pg_regress/triggers][14/338:0] DETAIL: Trigger "check_fkeys_pkey_exist" found tuple referencing non-existent key in "pkeys".
2024-11-25 19:08:10.752 CET [562502][client backend] [pg_regress/triggers][14/338:0] STATEMENT: insert into fkeys values (70, '5', 1);
2024-11-25 19:08:10.752 CET [562502][client backend] [pg_regress/triggers][14/339:0] ERROR: tuple references non-existent key
2024-11-25 19:08:10.752 CET [562502][client backend] [pg_regress/triggers][14/339:0] DETAIL: Trigger "check_fkeys_pkey2_exist" found tuple referencing non-existent key in "fkeys2".
2024-11-25 19:08:10.752 CET [562502][client backend] [pg_regress/triggers][14/339:0] STATEMENT: insert into fkeys values (60, '6', 4);
2024-11-25 19:08:10.752 CET [562502][client backend] [pg_regress/triggers][14/340:532367] ERROR: "check_fkeys2_fkey_restrict": tuple is referenced in "fkeys"
2024-11-25 19:08:10.752 CET [562502][client backend] [pg_regress/triggers][14/340:532367] CONTEXT: SQL statement "delete from fkeys2 where fkey21 = $1 and fkey22 = $2 "
2024-11-25 19:08:10.752 CET [562502][client backend] [pg_regress/triggers][14/340:532367] STATEMENT: delete from pkeys where pkey1 = 30 and pkey2 = '3';
2024-11-25 19:08:10.752 CET [562509][client backend] [pg_regress/create_function_sql][49/310:0] ERROR: only superuser can define a leakproof function
2024-11-25 19:08:10.752 CET [562509][client backend] [pg_regress/create_function_sql][49/310:0] STATEMENT: ALTER FUNCTION functest_E_2(int) LEAKPROOF;
2024-11-25 19:08:10.753 CET [562509][client backend] [pg_regress/create_function_sql][49/311:0] ERROR: only superuser can define a leakproof function
2024-11-25 19:08:10.753 CET [562509][client backend] [pg_regress/create_function_sql][49/311:0] STATEMENT: CREATE FUNCTION functest_E_3(int) RETURNS bool LANGUAGE 'sql'
LEAKPROOF AS 'SELECT $1 < 200';
2024-11-25 19:08:10.753 CET [562506][client backend] [pg_regress/hash_func][15/263:0] ERROR: could not identify a hash function for type bit varying
2024-11-25 19:08:10.753 CET [562506][client backend] [pg_regress/hash_func][15/263:0] STATEMENT: SELECT v as value, hash_record(v)::bit(32) as standard
FROM (VALUES (row('10'::varbit, 'aaa')::hash_test_t2)) x(v);
2024-11-25 19:08:10.753 CET [562506][client backend] [pg_regress/hash_func][15/264:0] ERROR: could not identify an extended hash function for type bit varying
2024-11-25 19:08:10.753 CET [562506][client backend] [pg_regress/hash_func][15/264:0] STATEMENT: SELECT v as value, hash_record_extended(v, 0)::bit(32) as extended0
FROM (VALUES (row('11'::varbit, 'aaa')::hash_test_t2)) x(v);
2024-11-25 19:08:10.753 CET [562502][client backend] [pg_regress/triggers][14/342:532379] ERROR: "check_fkeys2_fkey_restrict": tuple is referenced in "fkeys"
2024-11-25 19:08:10.753 CET [562502][client backend] [pg_regress/triggers][14/342:532379] CONTEXT: SQL statement "delete from fkeys2 where fkey21 = $1 and fkey22 = $2 "
2024-11-25 19:08:10.753 CET [562502][client backend] [pg_regress/triggers][14/342:532379] STATEMENT: update pkeys set pkey1 = 7, pkey2 = '70' where pkey1 = 50 and pkey2 = '5';
2024-11-25 19:08:10.754 CET [562500][client backend] [pg_regress/create_aggregate][47/90:0] ERROR: cannot change return type of existing function
2024-11-25 19:08:10.754 CET [562500][client backend] [pg_regress/create_aggregate][47/90:0] HINT: Use DROP AGGREGATE myavg(numeric) first.
2024-11-25 19:08:10.754 CET [562500][client backend] [pg_regress/create_aggregate][47/90:0] STATEMENT: CREATE OR REPLACE AGGREGATE myavg (numeric)
(
stype = numeric,
sfunc = numeric_add,
finalfunc = numeric_out
);
2024-11-25 19:08:10.754 CET [562507][client backend] [pg_regress/create_am][25/711:0] ERROR: invalid value for parameter "default_table_access_method": ""
2024-11-25 19:08:10.754 CET [562507][client backend] [pg_regress/create_am][25/711:0] DETAIL: "default_table_access_method" cannot be empty.
2024-11-25 19:08:10.754 CET [562507][client backend] [pg_regress/create_am][25/711:0] STATEMENT: SET default_table_access_method = '';
2024-11-25 19:08:10.754 CET [562500][client backend] [pg_regress/create_aggregate][47/91:532391] ERROR: cannot change routine kind
2024-11-25 19:08:10.754 CET [562500][client backend] [pg_regress/create_aggregate][47/91:532391] DETAIL: "myavg" is an ordinary aggregate function.
2024-11-25 19:08:10.754 CET [562500][client backend] [pg_regress/create_aggregate][47/91:532391] STATEMENT: CREATE OR REPLACE AGGREGATE myavg (order by numeric)
(
stype = numeric,
sfunc = numeric_add
);
2024-11-25 19:08:10.754 CET [562507][client backend] [pg_regress/create_am][25/712:0] ERROR: invalid value for parameter "default_table_access_method": "I do not exist AM"
2024-11-25 19:08:10.754 CET [562507][client backend] [pg_regress/create_am][25/712:0] DETAIL: Table access method "I do not exist AM" does not exist.
2024-11-25 19:08:10.754 CET [562507][client backend] [pg_regress/create_am][25/712:0] STATEMENT: SET default_table_access_method = 'I do not exist AM';
2024-11-25 19:08:10.755 CET [562507][client backend] [pg_regress/create_am][25/713:0] ERROR: access method "btree" is not of type TABLE
2024-11-25 19:08:10.755 CET [562507][client backend] [pg_regress/create_am][25/713:0] STATEMENT: SET default_table_access_method = 'btree';
2024-11-25 19:08:10.755 CET [562500][client backend] [pg_regress/create_aggregate][47/93:0] ERROR: cannot change routine kind
2024-11-25 19:08:10.755 CET [562500][client backend] [pg_regress/create_aggregate][47/93:0] DETAIL: "sum3" is a function.
2024-11-25 19:08:10.755 CET [562500][client backend] [pg_regress/create_aggregate][47/93:0] STATEMENT: CREATE OR REPLACE AGGREGATE sum3 (int8,int8,int8)
(
stype = int8,
sfunc = sum4
);
2024-11-25 19:08:10.755 CET [562507][client backend] [pg_regress/create_am][25/715:0] ERROR: function int4in(internal) does not exist
2024-11-25 19:08:10.755 CET [562507][client backend] [pg_regress/create_am][25/715:0] STATEMENT: CREATE ACCESS METHOD bogus TYPE TABLE HANDLER int4in;
2024-11-25 19:08:10.755 CET [562468][client backend] [isolation/total-cash/s2][32/138:532390] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.755 CET [562468][client backend] [isolation/total-cash/s2][32/138:532390] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.755 CET [562468][client backend] [isolation/total-cash/s2][32/138:532390] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.755 CET [562468][client backend] [isolation/total-cash/s2][32/138:532390] STATEMENT: COMMIT;
2024-11-25 19:08:10.755 CET [562507][client backend] [pg_regress/create_am][25/716:0] ERROR: function bthandler must return type table_am_handler
2024-11-25 19:08:10.755 CET [562507][client backend] [pg_regress/create_am][25/716:0] STATEMENT: CREATE ACCESS METHOD bogus TYPE TABLE HANDLER bthandler;
2024-11-25 19:08:10.755 CET [562514][client backend] [pg_regress/drop_if_exists][52/123:0] ERROR: aggregate test_aggregate_exists(integer) does not exist
2024-11-25 19:08:10.755 CET [562514][client backend] [pg_regress/drop_if_exists][52/123:0] STATEMENT: DROP AGGREGATE test_aggregate_exists(int);
2024-11-25 19:08:10.756 CET [562500][client backend] [pg_regress/create_aggregate][47/96:0] ERROR: parameter "parallel" must be SAFE, RESTRICTED, or UNSAFE
2024-11-25 19:08:10.756 CET [562500][client backend] [pg_regress/create_aggregate][47/96:0] STATEMENT: CREATE AGGREGATE mysum (int)
(
stype = int,
sfunc = int4pl,
parallel = pear
);
2024-11-25 19:08:10.756 CET [562514][client backend] [pg_regress/drop_if_exists][52/125:0] ERROR: operator does not exist: integer @#@ integer
2024-11-25 19:08:10.756 CET [562514][client backend] [pg_regress/drop_if_exists][52/125:0] STATEMENT: DROP OPERATOR @#@ (int, int);
2024-11-25 19:08:10.757 CET [562503][client backend] [pg_regress/typed_table][42/104:532409] ERROR: cannot change inheritance of typed table
2024-11-25 19:08:10.757 CET [562503][client backend] [pg_regress/typed_table][42/104:532409] STATEMENT: ALTER TABLE persons INHERIT stuff;
2024-11-25 19:08:10.758 CET [562503][client backend] [pg_regress/typed_table][42/105:0] ERROR: column "myname" does not exist
2024-11-25 19:08:10.758 CET [562503][client backend] [pg_regress/typed_table][42/105:0] STATEMENT: CREATE TABLE personsx OF person_type (myname WITH OPTIONS NOT NULL);
2024-11-25 19:08:10.758 CET [562514][client backend] [pg_regress/drop_if_exists][52/129:0] ERROR: language "test_language_exists" does not exist
2024-11-25 19:08:10.758 CET [562514][client backend] [pg_regress/drop_if_exists][52/129:0] STATEMENT: DROP LANGUAGE test_language_exists;
2024-11-25 19:08:10.759 CET [562500][client backend] [pg_regress/create_aggregate][47/98:0] ERROR: strictness of aggregate's forward and inverse transition functions must match
2024-11-25 19:08:10.759 CET [562500][client backend] [pg_regress/create_aggregate][47/98:0] STATEMENT: CREATE AGGREGATE invalidsumdouble (float8)
(
stype = float8,
sfunc = float8pl,
mstype = float8,
msfunc = float8pl,
minvfunc = float8mi_n
);
2024-11-25 19:08:10.759 CET [562514][client backend] [pg_regress/drop_if_exists][52/131:0] ERROR: cast from type text to type text does not exist
2024-11-25 19:08:10.759 CET [562514][client backend] [pg_regress/drop_if_exists][52/131:0] STATEMENT: DROP CAST (text AS text);
2024-11-25 19:08:10.760 CET [562500][client backend] [pg_regress/create_aggregate][47/100:0] ERROR: return type of inverse transition function float8mi_int is not double precision
2024-11-25 19:08:10.760 CET [562500][client backend] [pg_regress/create_aggregate][47/100:0] STATEMENT: CREATE AGGREGATE wrongreturntype (float8)
(
stype = float8,
sfunc = float8pl,
mstype = float8,
msfunc = float8pl,
minvfunc = float8mi_int
);
2024-11-25 19:08:10.760 CET [562514][client backend] [pg_regress/drop_if_exists][52/133:0] ERROR: trigger "test_trigger_exists" for table "test_exists" does not exist
2024-11-25 19:08:10.760 CET [562514][client backend] [pg_regress/drop_if_exists][52/133:0] STATEMENT: DROP TRIGGER test_trigger_exists ON test_exists;
2024-11-25 19:08:10.760 CET [562500][client backend] [pg_regress/create_aggregate][47/101:0] WARNING: aggregate attribute "Sfunc1" not recognized
2024-11-25 19:08:10.760 CET [562500][client backend] [pg_regress/create_aggregate][47/101:0] WARNING: aggregate attribute "Basetype" not recognized
2024-11-25 19:08:10.760 CET [562500][client backend] [pg_regress/create_aggregate][47/101:0] WARNING: aggregate attribute "Stype1" not recognized
2024-11-25 19:08:10.760 CET [562500][client backend] [pg_regress/create_aggregate][47/101:0] WARNING: aggregate attribute "Initcond1" not recognized
2024-11-25 19:08:10.760 CET [562500][client backend] [pg_regress/create_aggregate][47/101:0] WARNING: aggregate attribute "Parallel" not recognized
2024-11-25 19:08:10.760 CET [562500][client backend] [pg_regress/create_aggregate][47/101:0] ERROR: aggregate stype must be specified
2024-11-25 19:08:10.760 CET [562500][client backend] [pg_regress/create_aggregate][47/101:0] STATEMENT: CREATE AGGREGATE case_agg ( -- old syntax
"Sfunc1" = int4pl,
"Basetype" = int4,
"Stype1" = int4,
"Initcond1" = '0',
"Parallel" = safe
);
2024-11-25 19:08:10.760 CET [562500][client backend] [pg_regress/create_aggregate][47/102:0] WARNING: aggregate attribute "Stype" not recognized
2024-11-25 19:08:10.760 CET [562500][client backend] [pg_regress/create_aggregate][47/102:0] WARNING: aggregate attribute "Sfunc" not recognized
2024-11-25 19:08:10.760 CET [562500][client backend] [pg_regress/create_aggregate][47/102:0] WARNING: aggregate attribute "Finalfunc" not recognized
2024-11-25 19:08:10.760 CET [562500][client backend] [pg_regress/create_aggregate][47/102:0] WARNING: aggregate attribute "Finalfunc_extra" not recognized
2024-11-25 19:08:10.760 CET [562500][client backend] [pg_regress/create_aggregate][47/102:0] WARNING: aggregate attribute "Finalfunc_modify" not recognized
2024-11-25 19:08:10.760 CET [562500][client backend] [pg_regress/create_aggregate][47/102:0] WARNING: aggregate attribute "Parallel" not recognized
2024-11-25 19:08:10.760 CET [562500][client backend] [pg_regress/create_aggregate][47/102:0] ERROR: aggregate stype must be specified
2024-11-25 19:08:10.760 CET [562500][client backend] [pg_regress/create_aggregate][47/102:0] STATEMENT: CREATE AGGREGATE case_agg(float8)
(
"Stype" = internal,
"Sfunc" = ordered_set_transition,
"Finalfunc" = percentile_disc_final,
"Finalfunc_extra" = true,
"Finalfunc_modify" = read_write,
"Parallel" = safe
);
2024-11-25 19:08:10.761 CET [562514][client backend] [pg_regress/drop_if_exists][52/135:0] ERROR: relation "no_such_table" does not exist
2024-11-25 19:08:10.761 CET [562514][client backend] [pg_regress/drop_if_exists][52/135:0] STATEMENT: DROP TRIGGER test_trigger_exists ON no_such_table;
2024-11-25 19:08:10.761 CET [562506][client backend] [pg_regress/hash_func][:0] LOG: disconnection: session time: 0:00:00.058 user=nkey database=regression host=[local]
2024-11-25 19:08:10.761 CET [562514][client backend] [pg_regress/drop_if_exists][52/137:0] ERROR: schema "no_such_schema" does not exist
2024-11-25 19:08:10.761 CET [562514][client backend] [pg_regress/drop_if_exists][52/137:0] STATEMENT: DROP TRIGGER test_trigger_exists ON no_such_schema.no_such_table;
2024-11-25 19:08:10.761 CET [562500][client backend] [pg_regress/create_aggregate][:0] LOG: disconnection: session time: 0:00:00.061 user=nkey database=regression host=[local]
2024-11-25 19:08:10.763 CET [562507][client backend] [pg_regress/create_am][25/723:0] ERROR: syntax error at or near "USING" at character 41
2024-11-25 19:08:10.763 CET [562507][client backend] [pg_regress/create_am][25/723:0] STATEMENT: SELECT INTO tableam_tblselectinto_heap2 USING heap2 FROM tableam_tbl_heap2;
2024-11-25 19:08:10.763 CET [562507][client backend] [pg_regress/create_am][25/724:0] ERROR: syntax error at or near "USING" at character 32
2024-11-25 19:08:10.763 CET [562507][client backend] [pg_regress/create_am][25/724:0] STATEMENT: CREATE VIEW tableam_view_heap2 USING heap2 AS SELECT * FROM tableam_tbl_heap2;
2024-11-25 19:08:10.763 CET [562507][client backend] [pg_regress/create_am][25/725:0] ERROR: syntax error at or near "USING" at character 35
2024-11-25 19:08:10.763 CET [562507][client backend] [pg_regress/create_am][25/725:0] STATEMENT: CREATE SEQUENCE tableam_seq_heap2 USING heap2;
2024-11-25 19:08:10.763 CET [562464][client backend] [isolation/total-cash/s1][8/226:532435] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.763 CET [562464][client backend] [isolation/total-cash/s1][8/226:532435] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.763 CET [562464][client backend] [isolation/total-cash/s1][8/226:532435] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.763 CET [562464][client backend] [isolation/total-cash/s1][8/226:532435] STATEMENT: COMMIT;
2024-11-25 19:08:10.764 CET [562514][client backend] [pg_regress/drop_if_exists][52/141:0] ERROR: rule "test_rule_exists" for relation "test_exists" does not exist
2024-11-25 19:08:10.764 CET [562514][client backend] [pg_regress/drop_if_exists][52/141:0] STATEMENT: DROP RULE test_rule_exists ON test_exists;
2024-11-25 19:08:10.765 CET [562509][client backend] [pg_regress/create_function_sql][49/334:0] ERROR: duplicate function body specified
2024-11-25 19:08:10.765 CET [562509][client backend] [pg_regress/create_function_sql][49/334:0] STATEMENT: CREATE FUNCTION functest_S_xxx(x int) RETURNS int
LANGUAGE SQL
AS $$ SELECT x * 2 $$
RETURN x * 3;
2024-11-25 19:08:10.765 CET [562514][client backend] [pg_regress/drop_if_exists][52/143:0] ERROR: relation "no_such_table" does not exist
2024-11-25 19:08:10.765 CET [562514][client backend] [pg_regress/drop_if_exists][52/143:0] STATEMENT: DROP RULE test_rule_exists ON no_such_table;
2024-11-25 19:08:10.765 CET [562509][client backend] [pg_regress/create_function_sql][49/335:0] ERROR: SQL function with unquoted function body cannot have polymorphic arguments
2024-11-25 19:08:10.765 CET [562509][client backend] [pg_regress/create_function_sql][49/335:0] STATEMENT: CREATE FUNCTION functest_S_xx(x anyarray) RETURNS anyelement
LANGUAGE SQL
RETURN x[1];
2024-11-25 19:08:10.765 CET [562514][client backend] [pg_regress/drop_if_exists][52/145:0] ERROR: schema "no_such_schema" does not exist
2024-11-25 19:08:10.765 CET [562514][client backend] [pg_regress/drop_if_exists][52/145:0] STATEMENT: DROP RULE test_rule_exists ON no_such_schema.no_such_table;
2024-11-25 19:08:10.765 CET [562510][client backend] [pg_regress/roleattributes][:0] LOG: disconnection: session time: 0:00:00.062 user=nkey database=regression host=[local]
2024-11-25 19:08:10.765 CET [562509][client backend] [pg_regress/create_function_sql][49/336:0] ERROR: operator does not exist: date > integer at character 85
2024-11-25 19:08:10.765 CET [562509][client backend] [pg_regress/create_function_sql][49/336:0] HINT: No operator matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:10.765 CET [562509][client backend] [pg_regress/create_function_sql][49/336:0] STATEMENT: CREATE FUNCTION functest_S_xx(x date) RETURNS boolean
LANGUAGE SQL
RETURN x > 1;
2024-11-25 19:08:10.766 CET [562514][client backend] [pg_regress/drop_if_exists][52/149:0] ERROR: foreign-data wrapper "test_fdw_exists" does not exist
2024-11-25 19:08:10.766 CET [562514][client backend] [pg_regress/drop_if_exists][52/149:0] STATEMENT: DROP FOREIGN DATA WRAPPER test_fdw_exists;
2024-11-25 19:08:10.767 CET [562514][client backend] [pg_regress/drop_if_exists][52/151:0] ERROR: server "test_server_exists" does not exist
2024-11-25 19:08:10.767 CET [562514][client backend] [pg_regress/drop_if_exists][52/151:0] STATEMENT: DROP SERVER test_server_exists;
2024-11-25 19:08:10.768 CET [562514][client backend] [pg_regress/drop_if_exists][52/153:0] ERROR: operator class "test_operator_class" does not exist for access method "btree"
2024-11-25 19:08:10.768 CET [562514][client backend] [pg_regress/drop_if_exists][52/153:0] STATEMENT: DROP OPERATOR CLASS test_operator_class USING btree;
2024-11-25 19:08:10.768 CET [562514][client backend] [pg_regress/drop_if_exists][52/155:0] ERROR: access method "no_such_am" does not exist
2024-11-25 19:08:10.768 CET [562514][client backend] [pg_regress/drop_if_exists][52/155:0] STATEMENT: DROP OPERATOR CLASS test_operator_class USING no_such_am;
2024-11-25 19:08:10.768 CET [562514][client backend] [pg_regress/drop_if_exists][52/156:0] ERROR: access method "no_such_am" does not exist
2024-11-25 19:08:10.768 CET [562514][client backend] [pg_regress/drop_if_exists][52/156:0] STATEMENT: DROP OPERATOR CLASS IF EXISTS test_operator_class USING no_such_am;
2024-11-25 19:08:10.768 CET [562514][client backend] [pg_regress/drop_if_exists][52/157:0] ERROR: operator family "test_operator_family" does not exist for access method "btree"
2024-11-25 19:08:10.768 CET [562514][client backend] [pg_regress/drop_if_exists][52/157:0] STATEMENT: DROP OPERATOR FAMILY test_operator_family USING btree;
2024-11-25 19:08:10.769 CET [562514][client backend] [pg_regress/drop_if_exists][52/159:0] ERROR: access method "no_such_am" does not exist
2024-11-25 19:08:10.769 CET [562514][client backend] [pg_regress/drop_if_exists][52/159:0] STATEMENT: DROP OPERATOR FAMILY test_operator_family USING no_such_am;
2024-11-25 19:08:10.771 CET [562514][client backend] [pg_regress/drop_if_exists][52/160:0] ERROR: access method "no_such_am" does not exist
2024-11-25 19:08:10.771 CET [562514][client backend] [pg_regress/drop_if_exists][52/160:0] STATEMENT: DROP OPERATOR FAMILY IF EXISTS test_operator_family USING no_such_am;
2024-11-25 19:08:10.771 CET [562514][client backend] [pg_regress/drop_if_exists][52/161:0] ERROR: access method "no_such_am" does not exist
2024-11-25 19:08:10.771 CET [562514][client backend] [pg_regress/drop_if_exists][52/161:0] STATEMENT: DROP ACCESS METHOD no_such_am;
2024-11-25 19:08:10.775 CET [562514][client backend] [pg_regress/drop_if_exists][52/164:0] ERROR: table "test_exists" does not exist
2024-11-25 19:08:10.775 CET [562514][client backend] [pg_regress/drop_if_exists][52/164:0] STATEMENT: DROP TABLE test_exists;
2024-11-25 19:08:10.780 CET [562468][client backend] [isolation/total-cash/s2][32/140:532515] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.780 CET [562468][client backend] [isolation/total-cash/s2][32/140:532515] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.780 CET [562468][client backend] [isolation/total-cash/s2][32/140:532515] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.780 CET [562468][client backend] [isolation/total-cash/s2][32/140:532515] STATEMENT: COMMIT;
2024-11-25 19:08:10.781 CET [562504][client backend] [pg_regress/constraints][46/135:0] ERROR: new row for relation "check_tbl" violates check constraint "check_con"
2024-11-25 19:08:10.781 CET [562504][client backend] [pg_regress/constraints][46/135:0] DETAIL: Failing row contains (3).
2024-11-25 19:08:10.781 CET [562504][client backend] [pg_regress/constraints][46/135:0] STATEMENT: INSERT INTO CHECK_TBL VALUES (3);
2024-11-25 19:08:10.781 CET [562504][client backend] [pg_regress/constraints][46/136:0] ERROR: new row for relation "check_tbl" violates check constraint "check_con"
2024-11-25 19:08:10.781 CET [562504][client backend] [pg_regress/constraints][46/136:0] DETAIL: Failing row contains (2).
2024-11-25 19:08:10.781 CET [562504][client backend] [pg_regress/constraints][46/136:0] STATEMENT: INSERT INTO CHECK_TBL VALUES (2);
2024-11-25 19:08:10.782 CET [562503][client backend] [pg_regress/typed_table][42/126:0] ERROR: column "name" specified more than once
2024-11-25 19:08:10.782 CET [562503][client backend] [pg_regress/typed_table][42/126:0] STATEMENT: CREATE TABLE persons4 OF person_type (
name WITH OPTIONS NOT NULL,
name WITH OPTIONS DEFAULT '' -- error, specified more than once
);
2024-11-25 19:08:10.783 CET [562503][client backend] [pg_regress/typed_table][42/127:532526] ERROR: cannot drop type person_type because other objects depend on it
2024-11-25 19:08:10.783 CET [562503][client backend] [pg_regress/typed_table][42/127:532526] DETAIL: table persons depends on type person_type
function get_all_persons() depends on type person_type
table persons2 depends on type person_type
table persons3 depends on type person_type
2024-11-25 19:08:10.783 CET [562503][client backend] [pg_regress/typed_table][42/127:532526] HINT: Use DROP ... CASCADE to drop the dependent objects too.
2024-11-25 19:08:10.783 CET [562503][client backend] [pg_regress/typed_table][42/127:532526] STATEMENT: DROP TYPE person_type RESTRICT;
2024-11-25 19:08:10.783 CET [562508][client backend] [pg_regress/inherit][43/293:0] ERROR: null value in column "aa" of relation "z" violates not-null constraint
2024-11-25 19:08:10.783 CET [562508][client backend] [pg_regress/inherit][43/293:0] DETAIL: Failing row contains (null, text).
2024-11-25 19:08:10.783 CET [562508][client backend] [pg_regress/inherit][43/293:0] STATEMENT: INSERT INTO z VALUES (NULL, 'text');
2024-11-25 19:08:10.784 CET [562504][client backend] [pg_regress/constraints][46/138:0] ERROR: new row for relation "check_tbl" violates check constraint "check_con"
2024-11-25 19:08:10.784 CET [562504][client backend] [pg_regress/constraints][46/138:0] DETAIL: Failing row contains (1).
2024-11-25 19:08:10.784 CET [562504][client backend] [pg_regress/constraints][46/138:0] STATEMENT: INSERT INTO CHECK_TBL VALUES (1);
2024-11-25 19:08:10.787 CET [562511][client backend] [pg_regress/updatable_views][7/777:0] ERROR: cannot delete from view "ro_view1"
2024-11-25 19:08:10.787 CET [562511][client backend] [pg_regress/updatable_views][7/777:0] DETAIL: Views containing DISTINCT are not automatically updatable.
2024-11-25 19:08:10.787 CET [562511][client backend] [pg_regress/updatable_views][7/777:0] HINT: To enable deleting from the view, provide an INSTEAD OF DELETE trigger or an unconditional ON DELETE DO INSTEAD rule.
2024-11-25 19:08:10.787 CET [562511][client backend] [pg_regress/updatable_views][7/777:0] STATEMENT: DELETE FROM ro_view1;
2024-11-25 19:08:10.787 CET [562511][client backend] [pg_regress/updatable_views][7/778:0] ERROR: cannot delete from view "ro_view2"
2024-11-25 19:08:10.787 CET [562511][client backend] [pg_regress/updatable_views][7/778:0] DETAIL: Views containing GROUP BY are not automatically updatable.
2024-11-25 19:08:10.787 CET [562511][client backend] [pg_regress/updatable_views][7/778:0] HINT: To enable deleting from the view, provide an INSTEAD OF DELETE trigger or an unconditional ON DELETE DO INSTEAD rule.
2024-11-25 19:08:10.787 CET [562511][client backend] [pg_regress/updatable_views][7/778:0] STATEMENT: DELETE FROM ro_view2;
2024-11-25 19:08:10.787 CET [562511][client backend] [pg_regress/updatable_views][7/779:0] ERROR: cannot delete from view "ro_view3"
2024-11-25 19:08:10.787 CET [562511][client backend] [pg_regress/updatable_views][7/779:0] DETAIL: Views containing HAVING are not automatically updatable.
2024-11-25 19:08:10.787 CET [562511][client backend] [pg_regress/updatable_views][7/779:0] HINT: To enable deleting from the view, provide an INSTEAD OF DELETE trigger or an unconditional ON DELETE DO INSTEAD rule.
2024-11-25 19:08:10.787 CET [562511][client backend] [pg_regress/updatable_views][7/779:0] STATEMENT: DELETE FROM ro_view3;
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/780:0] ERROR: cannot delete from view "ro_view4"
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/780:0] DETAIL: Views that return aggregate functions are not automatically updatable.
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/780:0] HINT: To enable deleting from the view, provide an INSTEAD OF DELETE trigger or an unconditional ON DELETE DO INSTEAD rule.
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/780:0] STATEMENT: DELETE FROM ro_view4;
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/781:0] ERROR: cannot delete from view "ro_view5"
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/781:0] DETAIL: Views that return window functions are not automatically updatable.
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/781:0] HINT: To enable deleting from the view, provide an INSTEAD OF DELETE trigger or an unconditional ON DELETE DO INSTEAD rule.
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/781:0] STATEMENT: DELETE FROM ro_view5;
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/782:0] ERROR: cannot delete from view "ro_view6"
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/782:0] DETAIL: Views containing UNION, INTERSECT, or EXCEPT are not automatically updatable.
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/782:0] HINT: To enable deleting from the view, provide an INSTEAD OF DELETE trigger or an unconditional ON DELETE DO INSTEAD rule.
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/782:0] STATEMENT: DELETE FROM ro_view6;
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/783:0] ERROR: cannot update view "ro_view7"
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/783:0] DETAIL: Views containing WITH are not automatically updatable.
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/783:0] HINT: To enable updating the view, provide an INSTEAD OF UPDATE trigger or an unconditional ON UPDATE DO INSTEAD rule.
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/783:0] STATEMENT: UPDATE ro_view7 SET a=a+1;
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/784:0] ERROR: cannot update view "ro_view8"
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/784:0] DETAIL: Views containing LIMIT or OFFSET are not automatically updatable.
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/784:0] HINT: To enable updating the view, provide an INSTEAD OF UPDATE trigger or an unconditional ON UPDATE DO INSTEAD rule.
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/784:0] STATEMENT: UPDATE ro_view8 SET a=a+1;
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/785:0] ERROR: cannot update view "ro_view9"
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/785:0] DETAIL: Views containing LIMIT or OFFSET are not automatically updatable.
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/785:0] HINT: To enable updating the view, provide an INSTEAD OF UPDATE trigger or an unconditional ON UPDATE DO INSTEAD rule.
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/785:0] STATEMENT: UPDATE ro_view9 SET a=a+1;
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/786:0] ERROR: cannot update view "ro_view10"
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/786:0] DETAIL: Views that do not select from a single table or view are not automatically updatable.
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/786:0] HINT: To enable updating the view, provide an INSTEAD OF UPDATE trigger or an unconditional ON UPDATE DO INSTEAD rule.
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/786:0] STATEMENT: UPDATE ro_view10 SET a=a+1;
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/787:0] ERROR: cannot update view "ro_view11"
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/787:0] DETAIL: Views that do not select from a single table or view are not automatically updatable.
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/787:0] HINT: To enable updating the view, provide an INSTEAD OF UPDATE trigger or an unconditional ON UPDATE DO INSTEAD rule.
2024-11-25 19:08:10.788 CET [562511][client backend] [pg_regress/updatable_views][7/787:0] STATEMENT: UPDATE ro_view11 SET a=a+1;
2024-11-25 19:08:10.789 CET [562511][client backend] [pg_regress/updatable_views][7/788:0] ERROR: cannot update view "ro_view12"
2024-11-25 19:08:10.789 CET [562511][client backend] [pg_regress/updatable_views][7/788:0] DETAIL: Views that do not select from a single table or view are not automatically updatable.
2024-11-25 19:08:10.789 CET [562511][client backend] [pg_regress/updatable_views][7/788:0] HINT: To enable updating the view, provide an INSTEAD OF UPDATE trigger or an unconditional ON UPDATE DO INSTEAD rule.
2024-11-25 19:08:10.789 CET [562511][client backend] [pg_regress/updatable_views][7/788:0] STATEMENT: UPDATE ro_view12 SET a=a+1;
2024-11-25 19:08:10.789 CET [562511][client backend] [pg_regress/updatable_views][7/789:0] ERROR: cannot insert into view "ro_view13"
2024-11-25 19:08:10.789 CET [562511][client backend] [pg_regress/updatable_views][7/789:0] DETAIL: Views that do not select from a single table or view are not automatically updatable.
2024-11-25 19:08:10.789 CET [562511][client backend] [pg_regress/updatable_views][7/789:0] HINT: To enable inserting into the view, provide an INSTEAD OF INSERT trigger or an unconditional ON INSERT DO INSTEAD rule.
2024-11-25 19:08:10.789 CET [562511][client backend] [pg_regress/updatable_views][7/789:0] STATEMENT: INSERT INTO ro_view13 VALUES (3, 'Row 3');
2024-11-25 19:08:10.789 CET [562511][client backend] [pg_regress/updatable_views][7/790:0] ERROR: cannot delete from view "ro_view13"
2024-11-25 19:08:10.789 CET [562511][client backend] [pg_regress/updatable_views][7/790:0] DETAIL: Views that do not select from a single table or view are not automatically updatable.
2024-11-25 19:08:10.789 CET [562511][client backend] [pg_regress/updatable_views][7/790:0] HINT: To enable deleting from the view using MERGE, provide an INSTEAD OF DELETE trigger.
2024-11-25 19:08:10.789 CET [562511][client backend] [pg_regress/updatable_views][7/790:0] STATEMENT: MERGE INTO ro_view13 AS t USING (VALUES (1, 'Row 1')) AS v(a,b) ON t.a = v.a
WHEN MATCHED THEN DELETE;
2024-11-25 19:08:10.789 CET [562511][client backend] [pg_regress/updatable_views][7/791:0] ERROR: cannot update view "ro_view13"
2024-11-25 19:08:10.789 CET [562511][client backend] [pg_regress/updatable_views][7/791:0] DETAIL: Views that do not select from a single table or view are not automatically updatable.
2024-11-25 19:08:10.789 CET [562511][client backend] [pg_regress/updatable_views][7/791:0] HINT: To enable updating the view using MERGE, provide an INSTEAD OF UPDATE trigger.
2024-11-25 19:08:10.789 CET [562511][client backend] [pg_regress/updatable_views][7/791:0] STATEMENT: MERGE INTO ro_view13 AS t USING (VALUES (2, 'Row 2')) AS v(a,b) ON t.a = v.a
WHEN MATCHED THEN UPDATE SET b = v.b;
2024-11-25 19:08:10.789 CET [562511][client backend] [pg_regress/updatable_views][7/792:0] ERROR: cannot insert into view "ro_view13"
2024-11-25 19:08:10.789 CET [562511][client backend] [pg_regress/updatable_views][7/792:0] DETAIL: Views that do not select from a single table or view are not automatically updatable.
2024-11-25 19:08:10.789 CET [562511][client backend] [pg_regress/updatable_views][7/792:0] HINT: To enable inserting into the view using MERGE, provide an INSTEAD OF INSERT trigger.
2024-11-25 19:08:10.789 CET [562511][client backend] [pg_regress/updatable_views][7/792:0] STATEMENT: MERGE INTO ro_view13 AS t USING (VALUES (3, 'Row 3')) AS v(a,b) ON t.a = v.a
WHEN NOT MATCHED THEN INSERT VALUES (v.a, v.b);
2024-11-25 19:08:10.791 CET [562511][client backend] [pg_regress/updatable_views][7/795:0] ERROR: cannot insert into column "ctid" of view "rw_view14"
2024-11-25 19:08:10.791 CET [562511][client backend] [pg_regress/updatable_views][7/795:0] DETAIL: View columns that refer to system columns are not updatable.
2024-11-25 19:08:10.791 CET [562511][client backend] [pg_regress/updatable_views][7/795:0] STATEMENT: INSERT INTO rw_view14 VALUES (null, 3, 'Row 3');
2024-11-25 19:08:10.792 CET [562511][client backend] [pg_regress/updatable_views][7/797:0] ERROR: cannot update column "ctid" of view "rw_view14"
2024-11-25 19:08:10.792 CET [562511][client backend] [pg_regress/updatable_views][7/797:0] DETAIL: View columns that refer to system columns are not updatable.
2024-11-25 19:08:10.792 CET [562511][client backend] [pg_regress/updatable_views][7/797:0] STATEMENT: UPDATE rw_view14 SET ctid=null WHERE a=3;
2024-11-25 19:08:10.792 CET [562501][client backend] [pg_regress/select][:0] LOG: disconnection: session time: 0:00:00.092 user=nkey database=regression host=[local]
2024-11-25 19:08:10.792 CET [562503][client backend] [pg_regress/typed_table][42/129:0] ERROR: type stuff is the row type of another table
2024-11-25 19:08:10.792 CET [562503][client backend] [pg_regress/typed_table][42/129:0] DETAIL: A typed table must use a stand-alone composite type created with CREATE TYPE.
2024-11-25 19:08:10.792 CET [562503][client backend] [pg_regress/typed_table][42/129:0] STATEMENT: CREATE TABLE persons5 OF stuff;
2024-11-25 19:08:10.792 CET [562514][client backend] [pg_regress/drop_if_exists][52/199:0] ERROR: function name "test_ambiguous_funcname" is not unique
2024-11-25 19:08:10.792 CET [562514][client backend] [pg_regress/drop_if_exists][52/199:0] HINT: Specify the argument list to select the function unambiguously.
2024-11-25 19:08:10.792 CET [562514][client backend] [pg_regress/drop_if_exists][52/199:0] STATEMENT: DROP FUNCTION test_ambiguous_funcname;
2024-11-25 19:08:10.792 CET [562514][client backend] [pg_regress/drop_if_exists][52/200:0] ERROR: function name "test_ambiguous_funcname" is not unique
2024-11-25 19:08:10.792 CET [562514][client backend] [pg_regress/drop_if_exists][52/200:0] HINT: Specify the argument list to select the function unambiguously.
2024-11-25 19:08:10.792 CET [562514][client backend] [pg_regress/drop_if_exists][52/200:0] STATEMENT: DROP FUNCTION IF EXISTS test_ambiguous_funcname;
2024-11-25 19:08:10.794 CET [562511][client backend] [pg_regress/updatable_views][7/801:0] ERROR: cannot merge into column "ctid" of view "rw_view14"
2024-11-25 19:08:10.794 CET [562511][client backend] [pg_regress/updatable_views][7/801:0] DETAIL: View columns that refer to system columns are not updatable.
2024-11-25 19:08:10.794 CET [562511][client backend] [pg_regress/updatable_views][7/801:0] STATEMENT: MERGE INTO rw_view14 AS t
USING (VALUES (2, 'Merged row 2'), (3, 'Merged row 3')) AS v(a,b) ON t.a = v.a
WHEN MATCHED THEN UPDATE SET b = v.b -- should be OK, except...
WHEN NOT MATCHED THEN INSERT VALUES (null, v.a, v.b);
2024-11-25 19:08:10.794 CET [562503][client backend] [pg_regress/typed_table][42/131:0] ERROR: type tt_enum_type is not a composite type
2024-11-25 19:08:10.794 CET [562503][client backend] [pg_regress/typed_table][42/131:0] STATEMENT: CREATE TABLE of_tt_enum_type OF tt_enum_type;
2024-11-25 19:08:10.794 CET [562514][client backend] [pg_regress/drop_if_exists][52/205:0] ERROR: procedure name "test_ambiguous_procname" is not unique
2024-11-25 19:08:10.794 CET [562514][client backend] [pg_regress/drop_if_exists][52/205:0] HINT: Specify the argument list to select the procedure unambiguously.
2024-11-25 19:08:10.794 CET [562514][client backend] [pg_regress/drop_if_exists][52/205:0] STATEMENT: DROP PROCEDURE test_ambiguous_procname;
2024-11-25 19:08:10.794 CET [562514][client backend] [pg_regress/drop_if_exists][52/206:0] ERROR: procedure name "test_ambiguous_procname" is not unique
2024-11-25 19:08:10.794 CET [562514][client backend] [pg_regress/drop_if_exists][52/206:0] HINT: Specify the argument list to select the procedure unambiguously.
2024-11-25 19:08:10.794 CET [562514][client backend] [pg_regress/drop_if_exists][52/206:0] STATEMENT: DROP PROCEDURE IF EXISTS test_ambiguous_procname;
2024-11-25 19:08:10.794 CET [562514][client backend] [pg_regress/drop_if_exists][52/207:0] ERROR: routine name "test_ambiguous_procname" is not unique
2024-11-25 19:08:10.794 CET [562514][client backend] [pg_regress/drop_if_exists][52/207:0] HINT: Specify the argument list to select the routine unambiguously.
2024-11-25 19:08:10.794 CET [562514][client backend] [pg_regress/drop_if_exists][52/207:0] STATEMENT: DROP ROUTINE IF EXISTS test_ambiguous_procname;
2024-11-25 19:08:10.795 CET [562504][client backend] [pg_regress/constraints][46/143:0] ERROR: new row for relation "check2_tbl" violates check constraint "sequence_con"
2024-11-25 19:08:10.795 CET [562504][client backend] [pg_regress/constraints][46/143:0] DETAIL: Failing row contains (1, x check failed, -2).
2024-11-25 19:08:10.795 CET [562504][client backend] [pg_regress/constraints][46/143:0] STATEMENT: INSERT INTO CHECK2_TBL VALUES (1, 'x check failed', -2);
2024-11-25 19:08:10.795 CET [562504][client backend] [pg_regress/constraints][46/144:0] ERROR: new row for relation "check2_tbl" violates check constraint "sequence_con"
2024-11-25 19:08:10.795 CET [562504][client backend] [pg_regress/constraints][46/144:0] DETAIL: Failing row contains (5, z check failed, 10).
2024-11-25 19:08:10.795 CET [562504][client backend] [pg_regress/constraints][46/144:0] STATEMENT: INSERT INTO CHECK2_TBL VALUES (5, 'z check failed', 10);
2024-11-25 19:08:10.795 CET [562504][client backend] [pg_regress/constraints][46/145:0] ERROR: new row for relation "check2_tbl" violates check constraint "sequence_con"
2024-11-25 19:08:10.795 CET [562504][client backend] [pg_regress/constraints][46/145:0] DETAIL: Failing row contains (0, check failed, -2).
2024-11-25 19:08:10.795 CET [562504][client backend] [pg_regress/constraints][46/145:0] STATEMENT: INSERT INTO CHECK2_TBL VALUES (0, 'check failed', -2);
2024-11-25 19:08:10.795 CET [562514][client backend] [pg_regress/drop_if_exists][52/210:0] ERROR: database "test_database_exists" does not exist
2024-11-25 19:08:10.795 CET [562514][client backend] [pg_regress/drop_if_exists][52/210:0] STATEMENT: drop database test_database_exists (force);
2024-11-25 19:08:10.795 CET [562514][client backend] [pg_regress/drop_if_exists][52/211:0] ERROR: database "test_database_exists" does not exist
2024-11-25 19:08:10.795 CET [562514][client backend] [pg_regress/drop_if_exists][52/211:0] STATEMENT: drop database test_database_exists with (force);
2024-11-25 19:08:10.795 CET [562504][client backend] [pg_regress/constraints][46/146:0] ERROR: new row for relation "check2_tbl" violates check constraint "sequence_con"
2024-11-25 19:08:10.795 CET [562504][client backend] [pg_regress/constraints][46/146:0] DETAIL: Failing row contains (6, check failed, 11).
2024-11-25 19:08:10.795 CET [562504][client backend] [pg_regress/constraints][46/146:0] STATEMENT: INSERT INTO CHECK2_TBL VALUES (6, 'check failed', 11);
2024-11-25 19:08:10.795 CET [562515][client backend] [pg_regress/infinite_recurse][48/86:0] ERROR: stack depth limit exceeded
2024-11-25 19:08:10.795 CET [562515][client backend] [pg_regress/infinite_recurse][48/86:0] HINT: Increase the configuration parameter "max_stack_depth" (currently 2048kB), after ensuring the platform's stack depth limit is adequate.
2024-11-25 19:08:10.795 CET [562515][client backend] [pg_regress/infinite_recurse][48/86:0] CONTEXT: SQL function "infinite_recurse" during inlining
SQL function "infinite_recurse" during startup
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
SQL function "infinite_recurse" statement 1
2024-11-25 19:08:10.795 CET [562515][client backend] [pg_regress/infinite_recurse][48/86:0] STATEMENT: select infinite_recurse();
2024-11-25 19:08:10.796 CET [562514][client backend] [pg_regress/drop_if_exists][:0] LOG: disconnection: session time: 0:00:00.090 user=nkey database=regression host=[local]
2024-11-25 19:08:10.796 CET [562511][client backend] [pg_regress/updatable_views][7/806:0] ERROR: cannot insert into column "upper" of view "rw_view15"
2024-11-25 19:08:10.796 CET [562511][client backend] [pg_regress/updatable_views][7/806:0] DETAIL: View columns that are not columns of their base relation are not updatable.
2024-11-25 19:08:10.796 CET [562511][client backend] [pg_regress/updatable_views][7/806:0] STATEMENT: INSERT INTO rw_view15 VALUES (3, 'ROW 3');
2024-11-25 19:08:10.797 CET [562522][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.797 CET [562522][client backend] [[unknown]][54/156:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.797 CET [562522][client backend] [[unknown]][54/156:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:10.798 CET [562464][client backend] [isolation/total-cash/s1][8/228:532604] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.798 CET [562464][client backend] [isolation/total-cash/s1][8/228:532604] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.798 CET [562464][client backend] [isolation/total-cash/s1][8/228:532604] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.798 CET [562464][client backend] [isolation/total-cash/s1][8/228:532604] STATEMENT: COMMIT;
2024-11-25 19:08:10.799 CET [562511][client backend] [pg_regress/updatable_views][7/814:0] ERROR: cannot insert into column "upper" of view "rw_view15"
2024-11-25 19:08:10.799 CET [562511][client backend] [pg_regress/updatable_views][7/814:0] DETAIL: View columns that are not columns of their base relation are not updatable.
2024-11-25 19:08:10.799 CET [562511][client backend] [pg_regress/updatable_views][7/814:0] STATEMENT: INSERT INTO rw_view15 (a) VALUES (3) ON CONFLICT (a) DO UPDATE set upper = 'blarg';
2024-11-25 19:08:10.801 CET [562511][client backend] [pg_regress/updatable_views][7/818:0] ERROR: cannot insert into column "upper" of view "rw_view15"
2024-11-25 19:08:10.801 CET [562511][client backend] [pg_regress/updatable_views][7/818:0] DETAIL: View columns that are not columns of their base relation are not updatable.
2024-11-25 19:08:10.801 CET [562511][client backend] [pg_regress/updatable_views][7/818:0] STATEMENT: INSERT INTO rw_view15 (a) VALUES (4);
2024-11-25 19:08:10.801 CET [562511][client backend] [pg_regress/updatable_views][7/819:0] ERROR: cannot update column "upper" of view "rw_view15"
2024-11-25 19:08:10.801 CET [562511][client backend] [pg_regress/updatable_views][7/819:0] DETAIL: View columns that are not columns of their base relation are not updatable.
2024-11-25 19:08:10.801 CET [562511][client backend] [pg_regress/updatable_views][7/819:0] STATEMENT: UPDATE rw_view15 SET upper='ROW 3' WHERE a=3;
2024-11-25 19:08:10.801 CET [562511][client backend] [pg_regress/updatable_views][7/820:0] ERROR: cannot update column "upper" of view "rw_view15"
2024-11-25 19:08:10.801 CET [562511][client backend] [pg_regress/updatable_views][7/820:0] DETAIL: View columns that are not columns of their base relation are not updatable.
2024-11-25 19:08:10.801 CET [562511][client backend] [pg_regress/updatable_views][7/820:0] STATEMENT: UPDATE rw_view15 SET upper=DEFAULT WHERE a=3;
2024-11-25 19:08:10.802 CET [562511][client backend] [pg_regress/updatable_views][7/824:0] ERROR: multiple assignments to same column "a"
2024-11-25 19:08:10.802 CET [562511][client backend] [pg_regress/updatable_views][7/824:0] STATEMENT: INSERT INTO rw_view16 VALUES (3, 'Row 3', 3);
2024-11-25 19:08:10.803 CET [562511][client backend] [pg_regress/updatable_views][7/826:0] ERROR: multiple assignments to same column "a"
2024-11-25 19:08:10.803 CET [562511][client backend] [pg_regress/updatable_views][7/826:0] STATEMENT: UPDATE rw_view16 SET a=3, aa=-3 WHERE a=3;
2024-11-25 19:08:10.804 CET [562511][client backend] [pg_regress/updatable_views][7/830:0] ERROR: cannot insert into view "ro_view1"
2024-11-25 19:08:10.804 CET [562511][client backend] [pg_regress/updatable_views][7/830:0] DETAIL: Views containing DISTINCT are not automatically updatable.
2024-11-25 19:08:10.804 CET [562511][client backend] [pg_regress/updatable_views][7/830:0] HINT: To enable inserting into the view, provide an INSTEAD OF INSERT trigger or an unconditional ON INSERT DO INSTEAD rule.
2024-11-25 19:08:10.804 CET [562511][client backend] [pg_regress/updatable_views][7/830:0] STATEMENT: INSERT INTO ro_view17 VALUES (3, 'ROW 3');
2024-11-25 19:08:10.804 CET [562511][client backend] [pg_regress/updatable_views][7/831:0] ERROR: cannot delete from view "ro_view18"
2024-11-25 19:08:10.804 CET [562511][client backend] [pg_regress/updatable_views][7/831:0] DETAIL: Views that do not select from a single table or view are not automatically updatable.
2024-11-25 19:08:10.804 CET [562511][client backend] [pg_regress/updatable_views][7/831:0] HINT: To enable deleting from the view, provide an INSTEAD OF DELETE trigger or an unconditional ON DELETE DO INSTEAD rule.
2024-11-25 19:08:10.804 CET [562511][client backend] [pg_regress/updatable_views][7/831:0] STATEMENT: DELETE FROM ro_view18;
2024-11-25 19:08:10.804 CET [562511][client backend] [pg_regress/updatable_views][7/833:0] ERROR: cannot update view "ro_view19"
2024-11-25 19:08:10.804 CET [562511][client backend] [pg_regress/updatable_views][7/833:0] DETAIL: Views that do not select from a single table or view are not automatically updatable.
2024-11-25 19:08:10.804 CET [562511][client backend] [pg_regress/updatable_views][7/833:0] HINT: To enable updating the view, provide an INSTEAD OF UPDATE trigger or an unconditional ON UPDATE DO INSTEAD rule.
2024-11-25 19:08:10.804 CET [562511][client backend] [pg_regress/updatable_views][7/833:0] STATEMENT: UPDATE ro_view19 SET last_value=1000;
2024-11-25 19:08:10.805 CET [562511][client backend] [pg_regress/updatable_views][7/834:0] ERROR: cannot update view "ro_view20"
2024-11-25 19:08:10.805 CET [562511][client backend] [pg_regress/updatable_views][7/834:0] DETAIL: Views that return set-returning functions are not automatically updatable.
2024-11-25 19:08:10.805 CET [562511][client backend] [pg_regress/updatable_views][7/834:0] HINT: To enable updating the view, provide an INSTEAD OF UPDATE trigger or an unconditional ON UPDATE DO INSTEAD rule.
2024-11-25 19:08:10.805 CET [562511][client backend] [pg_regress/updatable_views][7/834:0] STATEMENT: UPDATE ro_view20 SET b=upper(b);
2024-11-25 19:08:10.805 CET [562464][client backend] [isolation/total-cash/s1][8/229:532649] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.805 CET [562464][client backend] [isolation/total-cash/s1][8/229:532649] DETAIL: Reason code: Canceled on conflict out to pivot 532656, during read.
2024-11-25 19:08:10.805 CET [562464][client backend] [isolation/total-cash/s1][8/229:532649] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.805 CET [562464][client backend] [isolation/total-cash/s1][8/229:532649] STATEMENT: SELECT SUM(balance) FROM accounts;
2024-11-25 19:08:10.805 CET [562504][client backend] [pg_regress/constraints][46/151:0] ERROR: new row for relation "insert_tbl" violates check constraint "insert_tbl_con"
2024-11-25 19:08:10.805 CET [562504][client backend] [pg_regress/constraints][46/151:0] DETAIL: Failing row contains (2, -NULL-, -2).
2024-11-25 19:08:10.805 CET [562504][client backend] [pg_regress/constraints][46/151:0] STATEMENT: INSERT INTO INSERT_TBL(x,z) VALUES (2, -2);
2024-11-25 19:08:10.806 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:10.806 CET [562504][client backend] [pg_regress/constraints][46/154:0] ERROR: new row for relation "insert_tbl" violates check constraint "insert_tbl_con"
2024-11-25 19:08:10.806 CET [562504][client backend] [pg_regress/constraints][46/154:0] DETAIL: Failing row contains (2, Y, -2).
2024-11-25 19:08:10.806 CET [562504][client backend] [pg_regress/constraints][46/154:0] STATEMENT: INSERT INTO INSERT_TBL(y) VALUES ('Y');
2024-11-25 19:08:10.807 CET [562504][client backend] [pg_regress/constraints][46/156:0] ERROR: new row for relation "insert_tbl" violates check constraint "insert_tbl_check"
2024-11-25 19:08:10.807 CET [562504][client backend] [pg_regress/constraints][46/156:0] DETAIL: Failing row contains (1, -NULL-, -2).
2024-11-25 19:08:10.807 CET [562504][client backend] [pg_regress/constraints][46/156:0] STATEMENT: INSERT INTO INSERT_TBL(x,z) VALUES (1, -2);
2024-11-25 19:08:10.807 CET [562504][client backend] [pg_regress/constraints][46/158:0] ERROR: new row for relation "insert_tbl" violates check constraint "insert_tbl_con"
2024-11-25 19:08:10.807 CET [562504][client backend] [pg_regress/constraints][46/158:0] DETAIL: Failing row contains (5, check failed, -5).
2024-11-25 19:08:10.807 CET [562504][client backend] [pg_regress/constraints][46/158:0] STATEMENT: INSERT INTO INSERT_TBL VALUES (5, 'check failed', -5);
2024-11-25 19:08:10.808 CET [562504][client backend] [pg_regress/constraints][46/162:0] ERROR: new row for relation "insert_tbl" violates check constraint "insert_tbl_check"
2024-11-25 19:08:10.808 CET [562504][client backend] [pg_regress/constraints][46/162:0] DETAIL: Failing row contains (5, check failed, 4).
2024-11-25 19:08:10.808 CET [562504][client backend] [pg_regress/constraints][46/162:0] STATEMENT: INSERT INTO INSERT_TBL(y,z) VALUES ('check failed', 4);
2024-11-25 19:08:10.808 CET [562504][client backend] [pg_regress/constraints][46/163:0] ERROR: new row for relation "insert_tbl" violates check constraint "insert_tbl_con"
2024-11-25 19:08:10.808 CET [562504][client backend] [pg_regress/constraints][46/163:0] DETAIL: Failing row contains (5, check failed, -5).
2024-11-25 19:08:10.808 CET [562504][client backend] [pg_regress/constraints][46/163:0] STATEMENT: INSERT INTO INSERT_TBL(x,y) VALUES (5, 'check failed');
2024-11-25 19:08:10.809 CET [562504][client backend] [pg_regress/constraints][46/168:0] ERROR: new row for relation "insert_tbl" violates check constraint "insert_tbl_con"
2024-11-25 19:08:10.809 CET [562504][client backend] [pg_regress/constraints][46/168:0] DETAIL: Failing row contains (8, Y, -8).
2024-11-25 19:08:10.809 CET [562504][client backend] [pg_regress/constraints][46/168:0] STATEMENT: INSERT INTO INSERT_TBL(y) VALUES ('Y');
2024-11-25 19:08:10.809 CET [562511][client backend] [pg_regress/updatable_views][7/838:0] ERROR: cannot insert into view "rw_view16"
2024-11-25 19:08:10.809 CET [562511][client backend] [pg_regress/updatable_views][7/838:0] DETAIL: Views with conditional DO INSTEAD rules are not automatically updatable.
2024-11-25 19:08:10.809 CET [562511][client backend] [pg_regress/updatable_views][7/838:0] HINT: To enable inserting into the view, provide an INSTEAD OF INSERT trigger or an unconditional ON INSERT DO INSTEAD rule.
2024-11-25 19:08:10.809 CET [562511][client backend] [pg_regress/updatable_views][7/838:0] STATEMENT: INSERT INTO rw_view16 (a, b) VALUES (3, 'Row 3');
2024-11-25 19:08:10.810 CET [562511][client backend] [pg_regress/updatable_views][7/839:0] ERROR: cannot update view "rw_view16"
2024-11-25 19:08:10.810 CET [562511][client backend] [pg_regress/updatable_views][7/839:0] DETAIL: Views with conditional DO INSTEAD rules are not automatically updatable.
2024-11-25 19:08:10.810 CET [562511][client backend] [pg_regress/updatable_views][7/839:0] HINT: To enable updating the view, provide an INSTEAD OF UPDATE trigger or an unconditional ON UPDATE DO INSTEAD rule.
2024-11-25 19:08:10.810 CET [562511][client backend] [pg_regress/updatable_views][7/839:0] STATEMENT: UPDATE rw_view16 SET b='ROW 2' WHERE a=2;
2024-11-25 19:08:10.810 CET [562511][client backend] [pg_regress/updatable_views][7/840:0] ERROR: cannot delete from view "rw_view16"
2024-11-25 19:08:10.810 CET [562511][client backend] [pg_regress/updatable_views][7/840:0] DETAIL: Views with conditional DO INSTEAD rules are not automatically updatable.
2024-11-25 19:08:10.810 CET [562511][client backend] [pg_regress/updatable_views][7/840:0] HINT: To enable deleting from the view, provide an INSTEAD OF DELETE trigger or an unconditional ON DELETE DO INSTEAD rule.
2024-11-25 19:08:10.810 CET [562511][client backend] [pg_regress/updatable_views][7/840:0] STATEMENT: DELETE FROM rw_view16 WHERE a=2;
2024-11-25 19:08:10.810 CET [562511][client backend] [pg_regress/updatable_views][7/841:0] ERROR: cannot execute MERGE on relation "rw_view16"
2024-11-25 19:08:10.810 CET [562511][client backend] [pg_regress/updatable_views][7/841:0] DETAIL: MERGE is not supported for relations with rules.
2024-11-25 19:08:10.810 CET [562511][client backend] [pg_regress/updatable_views][7/841:0] STATEMENT: MERGE INTO rw_view16 AS t USING (VALUES (3, 'Row 3')) AS v(a,b) ON t.a = v.a
WHEN NOT MATCHED THEN INSERT VALUES (v.a, v.b);
2024-11-25 19:08:10.811 CET [562512][client backend] [pg_regress/vacuum][62/101:0] ERROR: ANALYZE cannot be executed from VACUUM or ANALYZE
2024-11-25 19:08:10.811 CET [562512][client backend] [pg_regress/vacuum][62/101:0] CONTEXT: SQL function "do_analyze" statement 1
SQL function "wrap_do_analyze" statement 1
2024-11-25 19:08:10.811 CET [562512][client backend] [pg_regress/vacuum][62/101:0] STATEMENT: ANALYZE vaccluster;
2024-11-25 19:08:10.813 CET [562504][client backend] [pg_regress/constraints][46/174:0] ERROR: new row for relation "sys_col_check_tbl" violates check constraint "sys_col_check_tbl_check"
2024-11-25 19:08:10.813 CET [562504][client backend] [pg_regress/constraints][46/174:0] DETAIL: Failing row contains (Olympia, Washington, t, 100).
2024-11-25 19:08:10.813 CET [562504][client backend] [pg_regress/constraints][46/174:0] STATEMENT: INSERT INTO SYS_COL_CHECK_TBL VALUES ('Olympia', 'Washington', true, 100);
2024-11-25 19:08:10.814 CET [562502][client backend] [pg_regress/triggers][14/414:532724] ERROR: ttdummy (tttest): you cannot change price_on and/or price_off columns (use set_ttdummy)
2024-11-25 19:08:10.814 CET [562502][client backend] [pg_regress/triggers][14/414:532724] STATEMENT: update tttest set price_on = -1 where price_id = 1;
2024-11-25 19:08:10.815 CET [562504][client backend] [pg_regress/constraints][46/177:532728] ERROR: system column "ctid" reference in check constraint is invalid at character 138
2024-11-25 19:08:10.815 CET [562504][client backend] [pg_regress/constraints][46/177:532728] STATEMENT: CREATE TABLE SYS_COL_CHECK_TBL (city text, state text, is_capital bool,
altitude int,
CHECK (NOT (is_capital AND ctid::text = 'sys_col_check_tbl')));
2024-11-25 19:08:10.819 CET [562504][client backend] [pg_regress/constraints][46/180:0] ERROR: new row for relation "insert_child" violates check constraint "insert_child_check"
2024-11-25 19:08:10.819 CET [562504][client backend] [pg_regress/constraints][46/180:0] DETAIL: Failing row contains (7, -NULL-, -7, 42, 6).
2024-11-25 19:08:10.819 CET [562504][client backend] [pg_regress/constraints][46/180:0] STATEMENT: INSERT INTO INSERT_CHILD(x,z,cy) VALUES (7,-7,6);
2024-11-25 19:08:10.819 CET [562504][client backend] [pg_regress/constraints][46/181:0] ERROR: new row for relation "insert_child" violates check constraint "insert_tbl_check"
2024-11-25 19:08:10.819 CET [562504][client backend] [pg_regress/constraints][46/181:0] DETAIL: Failing row contains (6, -NULL-, -7, 42, 7).
2024-11-25 19:08:10.819 CET [562504][client backend] [pg_regress/constraints][46/181:0] STATEMENT: INSERT INTO INSERT_CHILD(x,z,cy) VALUES (6,-7,7);
2024-11-25 19:08:10.819 CET [562504][client backend] [pg_regress/constraints][46/182:0] ERROR: new row for relation "insert_child" violates check constraint "insert_tbl_con"
2024-11-25 19:08:10.819 CET [562504][client backend] [pg_regress/constraints][46/182:0] DETAIL: Failing row contains (6, check failed, -6, 42, 7).
2024-11-25 19:08:10.819 CET [562504][client backend] [pg_regress/constraints][46/182:0] STATEMENT: INSERT INTO INSERT_CHILD(x,y,z,cy) VALUES (6,'check failed',-6,7);
2024-11-25 19:08:10.821 CET [561023][checkpointer] LOG: checkpoint complete: wrote 748 buffers (4.6%), wrote 3 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.012 s, sync=0.001 s, total=0.016 s; sync files=0, longest=0.000 s, average=0.000 s; distance=7823 kB, estimate=24122 kB; lsn=4/56D89BA0, redo lsn=4/56BBEA30
2024-11-25 19:08:10.825 CET [562504][client backend] [pg_regress/constraints][46/188:0] ERROR: new row for relation "atacc1" violates check constraint "atacc1_test_check"
2024-11-25 19:08:10.825 CET [562504][client backend] [pg_regress/constraints][46/188:0] DETAIL: Failing row contains (-3).
2024-11-25 19:08:10.825 CET [562504][client backend] [pg_regress/constraints][46/188:0] STATEMENT: INSERT INTO ATACC1 (TEST) VALUES (-3);
2024-11-25 19:08:10.826 CET [562503][client backend] [pg_regress/typed_table][:0] LOG: disconnection: session time: 0:00:00.126 user=nkey database=regression host=[local]
2024-11-25 19:08:10.827 CET [562468][client backend] [isolation/total-cash/s2][32/143:532759] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.827 CET [562468][client backend] [isolation/total-cash/s2][32/143:532759] DETAIL: Reason code: Canceled on conflict out to pivot 532771, during read.
2024-11-25 19:08:10.827 CET [562468][client backend] [isolation/total-cash/s2][32/143:532759] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.827 CET [562468][client backend] [isolation/total-cash/s2][32/143:532759] STATEMENT: SELECT SUM(balance) FROM accounts;
2024-11-25 19:08:10.829 CET [562504][client backend] [pg_regress/constraints][46/192:0] ERROR: new row for relation "atacc2" violates check constraint "atacc1_test_check"
2024-11-25 19:08:10.829 CET [562504][client backend] [pg_regress/constraints][46/192:0] DETAIL: Failing row contains (-3, null).
2024-11-25 19:08:10.829 CET [562504][client backend] [pg_regress/constraints][46/192:0] STATEMENT: INSERT INTO ATACC2 (TEST) VALUES (-3);
2024-11-25 19:08:10.829 CET [562504][client backend] [pg_regress/constraints][46/193:0] ERROR: new row for relation "atacc1" violates check constraint "atacc1_test_check"
2024-11-25 19:08:10.829 CET [562504][client backend] [pg_regress/constraints][46/193:0] DETAIL: Failing row contains (-3, null).
2024-11-25 19:08:10.829 CET [562504][client backend] [pg_regress/constraints][46/193:0] STATEMENT: INSERT INTO ATACC1 (TEST) VALUES (-3);
2024-11-25 19:08:10.830 CET [562504][client backend] [pg_regress/constraints][46/195:0] ERROR: new row for relation "atacc1" violates check constraint "atacc1_test2_check"
2024-11-25 19:08:10.830 CET [562504][client backend] [pg_regress/constraints][46/195:0] DETAIL: Failing row contains (null, 3).
2024-11-25 19:08:10.830 CET [562504][client backend] [pg_regress/constraints][46/195:0] STATEMENT: INSERT INTO ATACC1 (TEST2) VALUES (3);
2024-11-25 19:08:10.830 CET [562515][client backend] [pg_regress/infinite_recurse][:0] LOG: disconnection: session time: 0:00:00.125 user=nkey database=regression host=[local]
2024-11-25 19:08:10.840 CET [562522][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.045 user=nkey database=postgres host=[local]
2024-11-25 19:08:10.844 CET [562525][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.846 CET [562525][client backend] [[unknown]][50/118:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.846 CET [562525][client backend] [[unknown]][50/118:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:10.848 CET [562509][client backend] [pg_regress/create_function_sql][49/379:0] ERROR: could not find a function named "functest_b_1"
2024-11-25 19:08:10.848 CET [562509][client backend] [pg_regress/create_function_sql][49/379:0] STATEMENT: DROP FUNCTION functest_b_1;
2024-11-25 19:08:10.849 CET [562509][client backend] [pg_regress/create_function_sql][49/380:0] ERROR: function name "functest_b_2" is not unique
2024-11-25 19:08:10.849 CET [562509][client backend] [pg_regress/create_function_sql][49/380:0] HINT: Specify the argument list to select the function unambiguously.
2024-11-25 19:08:10.849 CET [562509][client backend] [pg_regress/create_function_sql][49/380:0] STATEMENT: DROP FUNCTION functest_b_2;
2024-11-25 19:08:10.849 CET [562509][client backend] [pg_regress/create_function_sql][49/382:0] ERROR: cannot change routine kind
2024-11-25 19:08:10.849 CET [562509][client backend] [pg_regress/create_function_sql][49/382:0] DETAIL: "functest1" is a function.
2024-11-25 19:08:10.849 CET [562509][client backend] [pg_regress/create_function_sql][49/382:0] STATEMENT: CREATE OR REPLACE FUNCTION functest1(a int) RETURNS int LANGUAGE SQL WINDOW AS 'SELECT $1';
2024-11-25 19:08:10.849 CET [562509][client backend] [pg_regress/create_function_sql][49/383:0] ERROR: cannot change routine kind
2024-11-25 19:08:10.849 CET [562509][client backend] [pg_regress/create_function_sql][49/383:0] DETAIL: "functest1" is a function.
2024-11-25 19:08:10.849 CET [562509][client backend] [pg_regress/create_function_sql][49/383:0] STATEMENT: CREATE OR REPLACE PROCEDURE functest1(a int) LANGUAGE SQL AS 'SELECT $1';
2024-11-25 19:08:10.853 CET [562504][client backend] [pg_regress/constraints][46/207:0] ERROR: new row for relation "insert_tbl" violates check constraint "insert_tbl_con"
2024-11-25 19:08:10.853 CET [562504][client backend] [pg_regress/constraints][46/207:0] DETAIL: Failing row contains (8, try again, -8).
2024-11-25 19:08:10.853 CET [562504][client backend] [pg_regress/constraints][46/207:0] STATEMENT: INSERT INTO INSERT_TBL(y,z) SELECT yd, -8 FROM tmp WHERE yd = 'try again';
2024-11-25 19:08:10.854 CET [562468][client backend] [isolation/total-cash/s2][32/145:532897] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.854 CET [562468][client backend] [isolation/total-cash/s2][32/145:532897] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.854 CET [562468][client backend] [isolation/total-cash/s2][32/145:532897] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.854 CET [562468][client backend] [isolation/total-cash/s2][32/145:532897] STATEMENT: COMMIT;
2024-11-25 19:08:10.857 CET [562512][client backend] [pg_regress/vacuum][62/117:532915] ERROR: ANALYZE cannot be executed from VACUUM or ANALYZE
2024-11-25 19:08:10.857 CET [562512][client backend] [pg_regress/vacuum][62/117:532915] CONTEXT: SQL function "do_analyze" statement 1
SQL function "wrap_do_analyze" statement 1
2024-11-25 19:08:10.857 CET [562512][client backend] [pg_regress/vacuum][62/117:532915] STATEMENT: VACUUM FULL vaccluster;
2024-11-25 19:08:10.859 CET [562504][client backend] [pg_regress/constraints][46/213:0] ERROR: new row for relation "insert_tbl" violates check constraint "insert_tbl_con"
2024-11-25 19:08:10.859 CET [562504][client backend] [pg_regress/constraints][46/213:0] DETAIL: Failing row contains (-4, Y, 4).
2024-11-25 19:08:10.859 CET [562504][client backend] [pg_regress/constraints][46/213:0] STATEMENT: UPDATE INSERT_TBL SET x = z, z = x;
2024-11-25 19:08:10.861 CET [562509][client backend] [pg_regress/create_function_sql][49/409:532957] ERROR: return type mismatch in function declared to return integer
2024-11-25 19:08:10.861 CET [562509][client backend] [pg_regress/create_function_sql][49/409:532957] DETAIL: Actual return type is text.
2024-11-25 19:08:10.861 CET [562509][client backend] [pg_regress/create_function_sql][49/409:532957] CONTEXT: SQL function "test1"
2024-11-25 19:08:10.861 CET [562509][client backend] [pg_regress/create_function_sql][49/409:532957] STATEMENT: CREATE FUNCTION test1 (int) RETURNS int LANGUAGE SQL
AS 'SELECT ''not an integer'';';
2024-11-25 19:08:10.862 CET [562509][client backend] [pg_regress/create_function_sql][49/410:532962] ERROR: syntax error at or near "not" at character 62
2024-11-25 19:08:10.862 CET [562509][client backend] [pg_regress/create_function_sql][49/410:532962] STATEMENT: CREATE FUNCTION test1 (int) RETURNS int LANGUAGE SQL
AS 'not even SQL';
2024-11-25 19:08:10.862 CET [562509][client backend] [pg_regress/create_function_sql][49/411:532964] ERROR: return type mismatch in function declared to return integer
2024-11-25 19:08:10.862 CET [562509][client backend] [pg_regress/create_function_sql][49/411:532964] DETAIL: Final statement must return exactly one column.
2024-11-25 19:08:10.862 CET [562509][client backend] [pg_regress/create_function_sql][49/411:532964] CONTEXT: SQL function "test1"
2024-11-25 19:08:10.862 CET [562509][client backend] [pg_regress/create_function_sql][49/411:532964] STATEMENT: CREATE FUNCTION test1 (int) RETURNS int LANGUAGE SQL
AS 'SELECT 1, 2, 3;';
2024-11-25 19:08:10.862 CET [562509][client backend] [pg_regress/create_function_sql][49/412:532968] ERROR: there is no parameter $2 at character 69
2024-11-25 19:08:10.862 CET [562509][client backend] [pg_regress/create_function_sql][49/412:532968] STATEMENT: CREATE FUNCTION test1 (int) RETURNS int LANGUAGE SQL
AS 'SELECT $2;';
2024-11-25 19:08:10.862 CET [562509][client backend] [pg_regress/create_function_sql][49/413:0] ERROR: only one AS item needed for language "sql"
2024-11-25 19:08:10.862 CET [562509][client backend] [pg_regress/create_function_sql][49/413:0] STATEMENT: CREATE FUNCTION test1 (int) RETURNS int LANGUAGE SQL
AS 'a', 'b';
2024-11-25 19:08:10.862 CET [562504][client backend] [pg_regress/constraints][46/218:0] ERROR: new row for relation "copy_tbl" violates check constraint "copy_con"
2024-11-25 19:08:10.862 CET [562504][client backend] [pg_regress/constraints][46/218:0] DETAIL: Failing row contains (7, check failed, 6).
2024-11-25 19:08:10.862 CET [562504][client backend] [pg_regress/constraints][46/218:0] CONTEXT: COPY copy_tbl, line 2: "7 check failed 6"
2024-11-25 19:08:10.862 CET [562504][client backend] [pg_regress/constraints][46/218:0] STATEMENT: COPY COPY_TBL FROM '/home/nkey/postgres/src/test/regress/data/constrf.data';
2024-11-25 19:08:10.862 CET [562464][client backend] [isolation/total-cash/s1][8/233:532961] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.862 CET [562464][client backend] [isolation/total-cash/s1][8/233:532961] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.862 CET [562464][client backend] [isolation/total-cash/s1][8/233:532961] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.862 CET [562464][client backend] [isolation/total-cash/s1][8/233:532961] STATEMENT: COMMIT;
2024-11-25 19:08:10.867 CET [562509][client backend] [pg_regress/create_function_sql][:0] LOG: disconnection: session time: 0:00:00.150 user=nkey database=regression host=[local]
2024-11-25 19:08:10.867 CET [562504][client backend] [pg_regress/constraints][46/223:532997] ERROR: duplicate key value violates unique constraint "primary_tbl_pkey"
2024-11-25 19:08:10.867 CET [562504][client backend] [pg_regress/constraints][46/223:532997] DETAIL: Key (i)=(1) already exists.
2024-11-25 19:08:10.867 CET [562504][client backend] [pg_regress/constraints][46/223:532997] STATEMENT: INSERT INTO PRIMARY_TBL VALUES (1, 'three');
2024-11-25 19:08:10.869 CET [562504][client backend] [pg_regress/constraints][46/226:0] ERROR: null value in column "i" of relation "primary_tbl" violates not-null constraint
2024-11-25 19:08:10.869 CET [562504][client backend] [pg_regress/constraints][46/226:0] DETAIL: Failing row contains (null, six).
2024-11-25 19:08:10.869 CET [562504][client backend] [pg_regress/constraints][46/226:0] STATEMENT: INSERT INTO PRIMARY_TBL (t) VALUES ('six');
2024-11-25 19:08:10.870 CET [562468][client backend] [isolation/total-cash/s2][32/147:533006] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.870 CET [562468][client backend] [isolation/total-cash/s2][32/147:533006] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.870 CET [562468][client backend] [isolation/total-cash/s2][32/147:533006] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.870 CET [562468][client backend] [isolation/total-cash/s2][32/147:533006] STATEMENT: COMMIT;
2024-11-25 19:08:10.872 CET [562507][client backend] [pg_regress/create_am][25/756:533020] ERROR: cannot have multiple SET ACCESS METHOD subcommands
2024-11-25 19:08:10.872 CET [562507][client backend] [pg_regress/create_am][25/756:533020] STATEMENT: ALTER TABLE heaptable SET ACCESS METHOD heap, SET ACCESS METHOD heap2;
2024-11-25 19:08:10.872 CET [562507][client backend] [pg_regress/create_am][25/757:533022] ERROR: cannot have multiple SET ACCESS METHOD subcommands
2024-11-25 19:08:10.872 CET [562507][client backend] [pg_regress/create_am][25/757:533022] STATEMENT: ALTER TABLE heaptable SET ACCESS METHOD DEFAULT, SET ACCESS METHOD heap2;
2024-11-25 19:08:10.873 CET [562507][client backend] [pg_regress/create_am][25/758:533023] ERROR: cannot have multiple SET ACCESS METHOD subcommands
2024-11-25 19:08:10.873 CET [562507][client backend] [pg_regress/create_am][25/758:533023] STATEMENT: ALTER MATERIALIZED VIEW heapmv SET ACCESS METHOD heap, SET ACCESS METHOD heap2;
2024-11-25 19:08:10.876 CET [562504][client backend] [pg_regress/constraints][46/235:0] ERROR: null value in column "i" of relation "primary_tbl" violates not-null constraint
2024-11-25 19:08:10.876 CET [562504][client backend] [pg_regress/constraints][46/235:0] DETAIL: Failing row contains (null, six).
2024-11-25 19:08:10.876 CET [562504][client backend] [pg_regress/constraints][46/235:0] STATEMENT: INSERT INTO PRIMARY_TBL (t) VALUES ('six');
2024-11-25 19:08:10.877 CET [562508][client backend] [pg_regress/inherit][43/367:0] ERROR: column "tomorrow" inherits conflicting default values
2024-11-25 19:08:10.877 CET [562508][client backend] [pg_regress/inherit][43/367:0] HINT: To resolve the conflict, specify a default explicitly.
2024-11-25 19:08:10.877 CET [562508][client backend] [pg_regress/inherit][43/367:0] STATEMENT: CREATE TABLE otherchild () INHERITS (firstparent, thirdparent);
2024-11-25 19:08:10.879 CET [562464][client backend] [isolation/total-cash/s1][8/235:533053] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.879 CET [562464][client backend] [isolation/total-cash/s1][8/235:533053] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.879 CET [562464][client backend] [isolation/total-cash/s1][8/235:533053] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.879 CET [562464][client backend] [isolation/total-cash/s1][8/235:533053] STATEMENT: COMMIT;
2024-11-25 19:08:10.882 CET [562504][client backend] [pg_regress/constraints][46/241:533079] ERROR: duplicate key value violates unique constraint "unique_tbl_i_key"
2024-11-25 19:08:10.882 CET [562504][client backend] [pg_regress/constraints][46/241:533079] DETAIL: Key (i)=(1) already exists.
2024-11-25 19:08:10.882 CET [562504][client backend] [pg_regress/constraints][46/241:533079] STATEMENT: INSERT INTO UNIQUE_TBL VALUES (1, 'three');
2024-11-25 19:08:10.884 CET [562504][client backend] [pg_regress/constraints][46/248:533095] ERROR: ON CONFLICT DO UPDATE command cannot affect row a second time
2024-11-25 19:08:10.884 CET [562504][client backend] [pg_regress/constraints][46/248:533095] HINT: Ensure that no rows proposed for insertion within the same command have duplicate constrained values.
2024-11-25 19:08:10.884 CET [562504][client backend] [pg_regress/constraints][46/248:533095] STATEMENT: INSERT INTO UNIQUE_TBL VALUES (1, 'a'), (2, 'b'), (2, 'b') ON CONFLICT (i) DO UPDATE SET t = 'fails';
2024-11-25 19:08:10.885 CET [562525][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.041 user=nkey database=postgres host=[local]
2024-11-25 19:08:10.885 CET [562464][client backend] [isolation/total-cash/s1][8/236:533105] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.885 CET [562464][client backend] [isolation/total-cash/s1][8/236:533105] DETAIL: Reason code: Canceled on conflict out to pivot 533102, during read.
2024-11-25 19:08:10.885 CET [562464][client backend] [isolation/total-cash/s1][8/236:533105] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.885 CET [562464][client backend] [isolation/total-cash/s1][8/236:533105] STATEMENT: SELECT SUM(balance) FROM accounts;
2024-11-25 19:08:10.886 CET [562502][client backend] [pg_regress/triggers][14/484:0] ERROR: duplicate trigger events specified at or near "ON" at character 63
2024-11-25 19:08:10.886 CET [562502][client backend] [pg_regress/triggers][14/484:0] STATEMENT: CREATE TRIGGER error_upd_and_col BEFORE UPDATE OR UPDATE OF a ON main_table
FOR EACH ROW EXECUTE PROCEDURE trigger_func('error_upd_and_col');
2024-11-25 19:08:10.886 CET [562502][client backend] [pg_regress/triggers][14/485:0] ERROR: column "a" specified more than once
2024-11-25 19:08:10.886 CET [562502][client backend] [pg_regress/triggers][14/485:0] STATEMENT: CREATE TRIGGER error_upd_a_a BEFORE UPDATE OF a, a ON main_table
FOR EACH ROW EXECUTE PROCEDURE trigger_func('error_upd_a_a');
2024-11-25 19:08:10.886 CET [562502][client backend] [pg_regress/triggers][14/486:0] ERROR: syntax error at or near "OF" at character 42
2024-11-25 19:08:10.886 CET [562502][client backend] [pg_regress/triggers][14/486:0] STATEMENT: CREATE TRIGGER error_ins_a BEFORE INSERT OF a ON main_table
FOR EACH ROW EXECUTE PROCEDURE trigger_func('error_ins_a');
2024-11-25 19:08:10.887 CET [562502][client backend] [pg_regress/triggers][14/487:0] ERROR: INSERT trigger's WHEN condition cannot reference OLD values at character 88
2024-11-25 19:08:10.887 CET [562502][client backend] [pg_regress/triggers][14/487:0] STATEMENT: CREATE TRIGGER error_ins_when BEFORE INSERT OR UPDATE ON main_table
FOR EACH ROW WHEN (OLD.a <> NEW.a)
EXECUTE PROCEDURE trigger_func('error_ins_old');
2024-11-25 19:08:10.887 CET [562502][client backend] [pg_regress/triggers][14/488:0] ERROR: DELETE trigger's WHEN condition cannot reference NEW values at character 97
2024-11-25 19:08:10.887 CET [562502][client backend] [pg_regress/triggers][14/488:0] STATEMENT: CREATE TRIGGER error_del_when BEFORE DELETE OR UPDATE ON main_table
FOR EACH ROW WHEN (OLD.a <> NEW.a)
EXECUTE PROCEDURE trigger_func('error_del_new');
2024-11-25 19:08:10.887 CET [562502][client backend] [pg_regress/triggers][14/489:0] ERROR: BEFORE trigger's WHEN condition cannot reference NEW system columns at character 88
2024-11-25 19:08:10.887 CET [562502][client backend] [pg_regress/triggers][14/489:0] STATEMENT: CREATE TRIGGER error_del_when BEFORE INSERT OR UPDATE ON main_table
FOR EACH ROW WHEN (NEW.tableoid <> 0)
EXECUTE PROCEDURE trigger_func('error_when_sys_column');
2024-11-25 19:08:10.887 CET [562502][client backend] [pg_regress/triggers][14/490:0] ERROR: statement trigger's WHEN condition cannot reference column values at character 90
2024-11-25 19:08:10.887 CET [562502][client backend] [pg_regress/triggers][14/490:0] STATEMENT: CREATE TRIGGER error_stmt_when BEFORE UPDATE OF a ON main_table
FOR EACH STATEMENT WHEN (OLD.* IS DISTINCT FROM NEW.*)
EXECUTE PROCEDURE trigger_func('error_stmt_when');
2024-11-25 19:08:10.887 CET [562502][client backend] [pg_regress/triggers][14/491:533114] ERROR: cannot drop column b of table main_table because other objects depend on it
2024-11-25 19:08:10.887 CET [562502][client backend] [pg_regress/triggers][14/491:533114] DETAIL: trigger after_upd_b_row_trig on table main_table depends on column b of table main_table
trigger after_upd_a_b_row_trig on table main_table depends on column b of table main_table
trigger after_upd_b_stmt_trig on table main_table depends on column b of table main_table
2024-11-25 19:08:10.887 CET [562502][client backend] [pg_regress/triggers][14/491:533114] HINT: Use DROP ... CASCADE to drop the dependent objects too.
2024-11-25 19:08:10.887 CET [562502][client backend] [pg_regress/triggers][14/491:533114] STATEMENT: ALTER TABLE main_table DROP COLUMN b;
2024-11-25 19:08:10.888 CET [562527][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.888 CET [562504][client backend] [pg_regress/constraints][46/254:533121] ERROR: duplicate key value violates unique constraint "unique_tbl_i_key"
2024-11-25 19:08:10.888 CET [562504][client backend] [pg_regress/constraints][46/254:533121] DETAIL: Key (i)=(1) already exists.
2024-11-25 19:08:10.888 CET [562504][client backend] [pg_regress/constraints][46/254:533121] STATEMENT: INSERT INTO UNIQUE_TBL VALUES (1, 'three');
2024-11-25 19:08:10.889 CET [562527][client backend] [[unknown]][67/41:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.889 CET [562527][client backend] [[unknown]][67/41:0] LOG: connection authorized: user=nkey database=regression_plsample application_name=pg_regress/plsample
2024-11-25 19:08:10.889 CET [562504][client backend] [pg_regress/constraints][46/258:533127] ERROR: duplicate key value violates unique constraint "unique_tbl_i_key"
2024-11-25 19:08:10.889 CET [562504][client backend] [pg_regress/constraints][46/258:533127] DETAIL: Key (i)=(null) already exists.
2024-11-25 19:08:10.889 CET [562504][client backend] [pg_regress/constraints][46/258:533127] STATEMENT: INSERT INTO UNIQUE_TBL (t) VALUES ('seven');
2024-11-25 19:08:10.893 CET [562468][client backend] [isolation/total-cash/s2][32/150:533134] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.893 CET [562468][client backend] [isolation/total-cash/s2][32/150:533134] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.893 CET [562468][client backend] [isolation/total-cash/s2][32/150:533134] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.893 CET [562468][client backend] [isolation/total-cash/s2][32/150:533134] STATEMENT: COMMIT;
2024-11-25 19:08:10.898 CET [562504][client backend] [pg_regress/constraints][46/266:533167] ERROR: duplicate key value violates unique constraint "unique_tbl_i_t_key"
2024-11-25 19:08:10.898 CET [562504][client backend] [pg_regress/constraints][46/266:533167] DETAIL: Key (i, t)=(1, one) already exists.
2024-11-25 19:08:10.898 CET [562504][client backend] [pg_regress/constraints][46/266:533167] STATEMENT: INSERT INTO UNIQUE_TBL VALUES (1, 'one');
2024-11-25 19:08:10.900 CET [562464][client backend] [isolation/total-cash/s1][8/239:533177] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.900 CET [562464][client backend] [isolation/total-cash/s1][8/239:533177] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.900 CET [562464][client backend] [isolation/total-cash/s1][8/239:533177] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.900 CET [562464][client backend] [isolation/total-cash/s1][8/239:533177] STATEMENT: COMMIT;
2024-11-25 19:08:10.905 CET [562504][client backend] [pg_regress/constraints][46/277:533211] ERROR: duplicate key value violates unique constraint "unique_tbl_i_key"
2024-11-25 19:08:10.905 CET [562504][client backend] [pg_regress/constraints][46/277:533211] DETAIL: Key (i)=(1) already exists.
2024-11-25 19:08:10.905 CET [562504][client backend] [pg_regress/constraints][46/277:533211] STATEMENT: UPDATE unique_tbl SET i = 1 WHERE i = 0;
2024-11-25 19:08:10.907 CET [562527][client backend] [pg_regress/plsample][:0] LOG: disconnection: session time: 0:00:00.018 user=nkey database=regression_plsample host=[local]
2024-11-25 19:08:10.908 CET [562464][client backend] [isolation/total-cash/s1][8/240:533229] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.908 CET [562464][client backend] [isolation/total-cash/s1][8/240:533229] DETAIL: Reason code: Canceled on conflict out to pivot 533220, during read.
2024-11-25 19:08:10.908 CET [562464][client backend] [isolation/total-cash/s1][8/240:533229] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.908 CET [562464][client backend] [isolation/total-cash/s1][8/240:533229] STATEMENT: SELECT SUM(balance) FROM accounts;
2024-11-25 19:08:10.909 CET [562508][client backend] [pg_regress/inherit][43/376:533242] ERROR: cannot alter inherited column "f1" of relation "childtab"
2024-11-25 19:08:10.909 CET [562508][client backend] [pg_regress/inherit][43/376:533242] STATEMENT: alter table parent1 alter column f1 type bigint;
2024-11-25 19:08:10.910 CET [562401][client backend] [isolation/partition-removal-1/control connection][:0] LOG: disconnection: session time: 0:00:00.560 user=nkey database=isolation_regression_delay_execution host=[local]
2024-11-25 19:08:10.910 CET [562403][client backend] [isolation/partition-removal-1/s1][:0] LOG: disconnection: session time: 0:00:00.557 user=nkey database=isolation_regression_delay_execution host=[local]
2024-11-25 19:08:10.912 CET [562504][client backend] [pg_regress/constraints][46/286:533253] ERROR: duplicate key value violates unique constraint "unique_tbl_i_key"
2024-11-25 19:08:10.912 CET [562504][client backend] [pg_regress/constraints][46/286:533253] DETAIL: Key (i)=(3) already exists.
2024-11-25 19:08:10.912 CET [562504][client backend] [pg_regress/constraints][46/286:533253] STATEMENT: COMMIT;
2024-11-25 19:08:10.912 CET [562507][client backend] [pg_regress/create_am][25/766:0] ERROR: zero-length delimited identifier at or near """" at character 37
2024-11-25 19:08:10.912 CET [562507][client backend] [pg_regress/create_am][25/766:0] STATEMENT: CREATE TABLE i_am_a_failure() USING "";
2024-11-25 19:08:10.912 CET [562507][client backend] [pg_regress/create_am][25/767:0] ERROR: access method "i_do_not_exist_am" does not exist
2024-11-25 19:08:10.912 CET [562507][client backend] [pg_regress/create_am][25/767:0] STATEMENT: CREATE TABLE i_am_a_failure() USING i_do_not_exist_am;
2024-11-25 19:08:10.912 CET [562407][client backend] [isolation/partition-removal-1/s2][:0] LOG: disconnection: session time: 0:00:00.553 user=nkey database=isolation_regression_delay_execution host=[local]
2024-11-25 19:08:10.912 CET [562507][client backend] [pg_regress/create_am][25/768:0] ERROR: access method "I do not exist AM" does not exist
2024-11-25 19:08:10.912 CET [562507][client backend] [pg_regress/create_am][25/768:0] STATEMENT: CREATE TABLE i_am_a_failure() USING "I do not exist AM";
2024-11-25 19:08:10.912 CET [562504][client backend] [pg_regress/constraints][46/287:533256] ERROR: duplicate key value violates unique constraint "unique_tbl_i_key"
2024-11-25 19:08:10.912 CET [562504][client backend] [pg_regress/constraints][46/287:533256] DETAIL: Key (i)=(3) already exists.
2024-11-25 19:08:10.912 CET [562504][client backend] [pg_regress/constraints][46/287:533256] STATEMENT: INSERT INTO unique_tbl VALUES (3, 'Three');
2024-11-25 19:08:10.912 CET [562507][client backend] [pg_regress/create_am][25/769:0] ERROR: access method "btree" is not of type TABLE
2024-11-25 19:08:10.912 CET [562507][client backend] [pg_regress/create_am][25/769:0] STATEMENT: CREATE TABLE i_am_a_failure() USING "btree";
2024-11-25 19:08:10.913 CET [562504][client backend] [pg_regress/constraints][46/288:533260] ERROR: duplicate key value violates unique constraint "unique_tbl_i_key"
2024-11-25 19:08:10.913 CET [562504][client backend] [pg_regress/constraints][46/288:533260] DETAIL: Key (i)=(3) already exists.
2024-11-25 19:08:10.913 CET [562504][client backend] [pg_regress/constraints][46/288:533260] STATEMENT: SET CONSTRAINTS ALL IMMEDIATE;
2024-11-25 19:08:10.913 CET [562507][client backend] [pg_regress/create_am][25/770:533258] ERROR: "tableam_parted_a_heap2" is not partitioned
2024-11-25 19:08:10.913 CET [562507][client backend] [pg_regress/create_am][25/770:533258] STATEMENT: CREATE FOREIGN TABLE fp PARTITION OF tableam_parted_a_heap2 DEFAULT SERVER x;
2024-11-25 19:08:10.914 CET [562507][client backend] [pg_regress/create_am][25/771:533262] ERROR: cannot drop access method heap2 because other objects depend on it
2024-11-25 19:08:10.914 CET [562507][client backend] [pg_regress/create_am][25/771:533262] DETAIL: table tableam_tbl_heap2 depends on access method heap2
table tableam_tblas_heap2 depends on access method heap2
materialized view tableam_tblmv_heap2 depends on access method heap2
table tableam_parted_b_heap2 depends on access method heap2
table tableam_parted_d_heap2 depends on access method heap2
2024-11-25 19:08:10.914 CET [562507][client backend] [pg_regress/create_am][25/771:533262] HINT: Use DROP ... CASCADE to drop the dependent objects too.
2024-11-25 19:08:10.914 CET [562507][client backend] [pg_regress/create_am][25/771:533262] STATEMENT: DROP ACCESS METHOD heap2;
2024-11-25 19:08:10.914 CET [562408][client backend] [isolation/partition-removal-1/s3][:0] LOG: disconnection: session time: 0:00:00.552 user=nkey database=isolation_regression_delay_execution host=[local]
2024-11-25 19:08:10.914 CET [562507][client backend] [pg_regress/create_am][:0] LOG: disconnection: session time: 0:00:00.209 user=nkey database=regression host=[local]
2024-11-25 19:08:10.917 CET [562463][client backend] [isolation/total-cash/control connection][:0] LOG: disconnection: session time: 0:00:00.233 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:10.917 CET [562468][client backend] [isolation/total-cash/s2][:0] LOG: disconnection: session time: 0:00:00.227 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:10.917 CET [562464][client backend] [isolation/total-cash/s1][:0] LOG: disconnection: session time: 0:00:00.230 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:10.921 CET [562504][client backend] [pg_regress/constraints][46/293:533293] ERROR: duplicate key value violates unique constraint "parted_uniq_tbl_1_i_key"
2024-11-25 19:08:10.921 CET [562504][client backend] [pg_regress/constraints][46/293:533293] DETAIL: Key (i)=(1) already exists.
2024-11-25 19:08:10.921 CET [562504][client backend] [pg_regress/constraints][46/293:533293] STATEMENT: INSERT INTO parted_uniq_tbl VALUES (1);
2024-11-25 19:08:10.921 CET [562538][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.922 CET [562504][client backend] [pg_regress/constraints][46/293:533293] ERROR: duplicate key value violates unique constraint "parted_uniq_tbl_1_i_key"
2024-11-25 19:08:10.922 CET [562504][client backend] [pg_regress/constraints][46/293:533293] DETAIL: Key (i)=(1) already exists.
2024-11-25 19:08:10.922 CET [562504][client backend] [pg_regress/constraints][46/293:533293] STATEMENT: COMMIT;
2024-11-25 19:08:10.922 CET [562538][client backend] [[unknown]][57/146:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.922 CET [562538][client backend] [[unknown]][57/146:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/referential-integrity
2024-11-25 19:08:10.926 CET [562511][client backend] [pg_regress/updatable_views][7/917:0] ERROR: cannot execute MERGE on relation "rw_view1"
2024-11-25 19:08:10.926 CET [562511][client backend] [pg_regress/updatable_views][7/917:0] DETAIL: MERGE is not supported for relations with rules.
2024-11-25 19:08:10.926 CET [562511][client backend] [pg_regress/updatable_views][7/917:0] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (3, 'Row 3')) AS v(a,b) ON t.a = v.a
WHEN NOT MATCHED THEN INSERT VALUES (v.a, v.b);
2024-11-25 19:08:10.928 CET [562540][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.929 CET [562540][client backend] [[unknown]][92/528:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.929 CET [562540][client backend] [[unknown]][92/528:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/referential-integrity
2024-11-25 19:08:10.932 CET [562541][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.932 CET [562541][client backend] [[unknown]][56/30:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.932 CET [562541][client backend] [[unknown]][56/30:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/referential-integrity
2024-11-25 19:08:10.938 CET [562508][client backend] [pg_regress/inherit][43/401:533356] ERROR: constraint "p2chk" conflicts with inherited constraint on relation "c2"
2024-11-25 19:08:10.938 CET [562508][client backend] [pg_regress/inherit][43/401:533356] STATEMENT: create table c2 (constraint p2chk check (ff1 > 10) no inherit) inherits (p1);
2024-11-25 19:08:10.951 CET [562541][client backend] [isolation/referential-integrity/s2][56/33:533413] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.951 CET [562541][client backend] [isolation/referential-integrity/s2][56/33:533413] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:10.951 CET [562541][client backend] [isolation/referential-integrity/s2][56/33:533413] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.951 CET [562541][client backend] [isolation/referential-integrity/s2][56/33:533413] STATEMENT: DELETE FROM a WHERE i = 1;
2024-11-25 19:08:10.955 CET [562547][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.955 CET [562547][client backend] [[unknown]][39/239:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.955 CET [562547][client backend] [[unknown]][39/239:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:10.958 CET [562541][client backend] [isolation/referential-integrity/s2][56/34:533451] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.958 CET [562541][client backend] [isolation/referential-integrity/s2][56/34:533451] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:10.958 CET [562541][client backend] [isolation/referential-integrity/s2][56/34:533451] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.958 CET [562541][client backend] [isolation/referential-integrity/s2][56/34:533451] STATEMENT: DELETE FROM a WHERE i = 1;
2024-11-25 19:08:10.958 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:10.959 CET [562551][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:10.959 CET [562551][client backend] [[unknown]][68/24:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:10.959 CET [562551][client backend] [[unknown]][68/24:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:10.964 CET [562508][client backend] [pg_regress/inherit][43/428:0] ERROR: new row for relation "ac" violates check constraint "ac_check"
2024-11-25 19:08:10.964 CET [562508][client backend] [pg_regress/inherit][43/428:0] DETAIL: Failing row contains (null).
2024-11-25 19:08:10.964 CET [562508][client backend] [pg_regress/inherit][43/428:0] STATEMENT: insert into ac (aa) values (NULL);
2024-11-25 19:08:10.964 CET [562508][client backend] [pg_regress/inherit][43/429:0] ERROR: new row for relation "bc" violates check constraint "ac_check"
2024-11-25 19:08:10.964 CET [562508][client backend] [pg_regress/inherit][43/429:0] DETAIL: Failing row contains (null, null).
2024-11-25 19:08:10.964 CET [562508][client backend] [pg_regress/inherit][43/429:0] STATEMENT: insert into bc (aa) values (NULL);
2024-11-25 19:08:10.964 CET [562508][client backend] [pg_regress/inherit][43/430:533475] ERROR: cannot drop inherited constraint "ac_check" of relation "bc"
2024-11-25 19:08:10.964 CET [562508][client backend] [pg_regress/inherit][43/430:533475] STATEMENT: alter table bc drop constraint ac_check;
2024-11-25 19:08:10.965 CET [562541][client backend] [isolation/referential-integrity/s2][56/35:533476] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.965 CET [562541][client backend] [isolation/referential-integrity/s2][56/35:533476] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.965 CET [562541][client backend] [isolation/referential-integrity/s2][56/35:533476] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.965 CET [562541][client backend] [isolation/referential-integrity/s2][56/35:533476] STATEMENT: COMMIT;
2024-11-25 19:08:10.966 CET [562504][client backend] [pg_regress/constraints][46/327:533481] ERROR: duplicate key value violates unique constraint "unique_tbl_i_key"
2024-11-25 19:08:10.966 CET [562504][client backend] [pg_regress/constraints][46/327:533481] DETAIL: Key (i)=(3) already exists.
2024-11-25 19:08:10.966 CET [562504][client backend] [pg_regress/constraints][46/327:533481] STATEMENT: COMMIT;
2024-11-25 19:08:10.968 CET [562508][client backend] [pg_regress/inherit][43/435:0] ERROR: new row for relation "ac" violates check constraint "ac_aa_check"
2024-11-25 19:08:10.968 CET [562508][client backend] [pg_regress/inherit][43/435:0] DETAIL: Failing row contains (null).
2024-11-25 19:08:10.968 CET [562508][client backend] [pg_regress/inherit][43/435:0] STATEMENT: insert into ac (aa) values (NULL);
2024-11-25 19:08:10.968 CET [562508][client backend] [pg_regress/inherit][43/436:0] ERROR: new row for relation "bc" violates check constraint "ac_aa_check"
2024-11-25 19:08:10.968 CET [562508][client backend] [pg_regress/inherit][43/436:0] DETAIL: Failing row contains (null, null).
2024-11-25 19:08:10.968 CET [562508][client backend] [pg_regress/inherit][43/436:0] STATEMENT: insert into bc (aa) values (NULL);
2024-11-25 19:08:10.969 CET [562508][client backend] [pg_regress/inherit][43/437:533492] ERROR: cannot drop inherited constraint "ac_aa_check" of relation "bc"
2024-11-25 19:08:10.969 CET [562508][client backend] [pg_regress/inherit][43/437:533492] STATEMENT: alter table bc drop constraint ac_aa_check;
2024-11-25 19:08:10.971 CET [562540][client backend] [isolation/referential-integrity/s1][92/534:533498] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.971 CET [562540][client backend] [isolation/referential-integrity/s1][92/534:533498] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.971 CET [562540][client backend] [isolation/referential-integrity/s1][92/534:533498] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.971 CET [562540][client backend] [isolation/referential-integrity/s1][92/534:533498] STATEMENT: COMMIT;
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/563:0] ERROR: "main_view" is a view
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/563:0] DETAIL: Views cannot have row-level BEFORE or AFTER triggers.
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/563:0] STATEMENT: CREATE TRIGGER invalid_trig BEFORE INSERT ON main_view
FOR EACH ROW EXECUTE PROCEDURE trigger_func('before_ins_row');
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/564:0] ERROR: "main_view" is a view
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/564:0] DETAIL: Views cannot have row-level BEFORE or AFTER triggers.
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/564:0] STATEMENT: CREATE TRIGGER invalid_trig BEFORE UPDATE ON main_view
FOR EACH ROW EXECUTE PROCEDURE trigger_func('before_upd_row');
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/565:0] ERROR: "main_view" is a view
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/565:0] DETAIL: Views cannot have row-level BEFORE or AFTER triggers.
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/565:0] STATEMENT: CREATE TRIGGER invalid_trig BEFORE DELETE ON main_view
FOR EACH ROW EXECUTE PROCEDURE trigger_func('before_del_row');
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/566:0] ERROR: "main_view" is a view
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/566:0] DETAIL: Views cannot have row-level BEFORE or AFTER triggers.
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/566:0] STATEMENT: CREATE TRIGGER invalid_trig AFTER INSERT ON main_view
FOR EACH ROW EXECUTE PROCEDURE trigger_func('before_ins_row');
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/567:0] ERROR: "main_view" is a view
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/567:0] DETAIL: Views cannot have row-level BEFORE or AFTER triggers.
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/567:0] STATEMENT: CREATE TRIGGER invalid_trig AFTER UPDATE ON main_view
FOR EACH ROW EXECUTE PROCEDURE trigger_func('before_upd_row');
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/568:0] ERROR: "main_view" is a view
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/568:0] DETAIL: Views cannot have row-level BEFORE or AFTER triggers.
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/568:0] STATEMENT: CREATE TRIGGER invalid_trig AFTER DELETE ON main_view
FOR EACH ROW EXECUTE PROCEDURE trigger_func('before_del_row');
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/569:0] ERROR: "main_view" is a view
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/569:0] DETAIL: Views cannot have TRUNCATE triggers.
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/569:0] STATEMENT: CREATE TRIGGER invalid_trig BEFORE TRUNCATE ON main_view
EXECUTE PROCEDURE trigger_func('before_tru_row');
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/570:0] ERROR: "main_view" is a view
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/570:0] DETAIL: Views cannot have TRUNCATE triggers.
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/570:0] STATEMENT: CREATE TRIGGER invalid_trig AFTER TRUNCATE ON main_view
EXECUTE PROCEDURE trigger_func('before_tru_row');
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/571:0] ERROR: "main_table" is a table
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/571:0] DETAIL: Tables cannot have INSTEAD OF triggers.
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/571:0] STATEMENT: CREATE TRIGGER invalid_trig INSTEAD OF INSERT ON main_table
FOR EACH ROW EXECUTE PROCEDURE view_trigger('instead_of_ins');
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/572:0] ERROR: "main_table" is a table
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/572:0] DETAIL: Tables cannot have INSTEAD OF triggers.
2024-11-25 19:08:10.977 CET [562502][client backend] [pg_regress/triggers][14/572:0] STATEMENT: CREATE TRIGGER invalid_trig INSTEAD OF UPDATE ON main_table
FOR EACH ROW EXECUTE PROCEDURE view_trigger('instead_of_upd');
2024-11-25 19:08:10.978 CET [562502][client backend] [pg_regress/triggers][14/573:0] ERROR: "main_table" is a table
2024-11-25 19:08:10.978 CET [562502][client backend] [pg_regress/triggers][14/573:0] DETAIL: Tables cannot have INSTEAD OF triggers.
2024-11-25 19:08:10.978 CET [562502][client backend] [pg_regress/triggers][14/573:0] STATEMENT: CREATE TRIGGER invalid_trig INSTEAD OF DELETE ON main_table
FOR EACH ROW EXECUTE PROCEDURE view_trigger('instead_of_del');
2024-11-25 19:08:10.978 CET [562502][client backend] [pg_regress/triggers][14/574:0] ERROR: INSTEAD OF triggers cannot have WHEN conditions
2024-11-25 19:08:10.978 CET [562502][client backend] [pg_regress/triggers][14/574:0] STATEMENT: CREATE TRIGGER invalid_trig INSTEAD OF UPDATE ON main_view
FOR EACH ROW WHEN (OLD.a <> NEW.a) EXECUTE PROCEDURE view_trigger('instead_of_upd');
2024-11-25 19:08:10.978 CET [562511][client backend] [pg_regress/updatable_views][7/954:0] ERROR: cannot delete from view "rw_view1"
2024-11-25 19:08:10.978 CET [562511][client backend] [pg_regress/updatable_views][7/954:0] DETAIL: Views containing LIMIT or OFFSET are not automatically updatable.
2024-11-25 19:08:10.978 CET [562511][client backend] [pg_regress/updatable_views][7/954:0] HINT: To enable deleting from the view using MERGE, provide an INSTEAD OF DELETE trigger.
2024-11-25 19:08:10.978 CET [562511][client backend] [pg_regress/updatable_views][7/954:0] STATEMENT: MERGE INTO rw_view2 t
USING (SELECT x, 'R'||x FROM generate_series(0,3) x) AS s(a,b) ON t.a = s.a
WHEN MATCHED AND t.a <= 1 THEN DELETE
WHEN MATCHED THEN UPDATE SET b = s.b
WHEN NOT MATCHED AND s.a > 0 THEN INSERT VALUES (s.a, s.b);
2024-11-25 19:08:10.978 CET [562502][client backend] [pg_regress/triggers][14/575:0] ERROR: INSTEAD OF triggers cannot have column lists
2024-11-25 19:08:10.978 CET [562502][client backend] [pg_regress/triggers][14/575:0] STATEMENT: CREATE TRIGGER invalid_trig INSTEAD OF UPDATE OF a ON main_view
FOR EACH ROW EXECUTE PROCEDURE view_trigger('instead_of_upd');
2024-11-25 19:08:10.978 CET [562502][client backend] [pg_regress/triggers][14/576:0] ERROR: INSTEAD OF triggers must be FOR EACH ROW
2024-11-25 19:08:10.978 CET [562502][client backend] [pg_regress/triggers][14/576:0] STATEMENT: CREATE TRIGGER invalid_trig INSTEAD OF UPDATE ON main_view
EXECUTE PROCEDURE view_trigger('instead_of_upd');
2024-11-25 19:08:10.979 CET [562541][client backend] [isolation/referential-integrity/s2][56/37:533546] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.979 CET [562541][client backend] [isolation/referential-integrity/s2][56/37:533546] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:10.979 CET [562541][client backend] [isolation/referential-integrity/s2][56/37:533546] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.979 CET [562541][client backend] [isolation/referential-integrity/s2][56/37:533546] STATEMENT: DELETE FROM a WHERE i = 1;
2024-11-25 19:08:10.979 CET [562511][client backend] [pg_regress/updatable_views][7/957:0] ERROR: cannot insert into view "rw_view1"
2024-11-25 19:08:10.979 CET [562511][client backend] [pg_regress/updatable_views][7/957:0] DETAIL: Views containing LIMIT or OFFSET are not automatically updatable.
2024-11-25 19:08:10.979 CET [562511][client backend] [pg_regress/updatable_views][7/957:0] HINT: To enable inserting into the view using MERGE, provide an INSTEAD OF INSERT trigger.
2024-11-25 19:08:10.979 CET [562511][client backend] [pg_regress/updatable_views][7/957:0] STATEMENT: MERGE INTO rw_view2 t
USING (SELECT x, 'R'||x FROM generate_series(0,3) x) AS s(a,b) ON t.a = s.a
WHEN MATCHED THEN UPDATE SET b = s.b
WHEN NOT MATCHED AND s.a > 0 THEN INSERT VALUES (s.a, s.b);
2024-11-25 19:08:10.980 CET [562504][client backend] [pg_regress/constraints][46/336:533553] ERROR: conflicting key value violates exclusion constraint "circles_c1_c2_excl"
2024-11-25 19:08:10.980 CET [562504][client backend] [pg_regress/constraints][46/336:533553] DETAIL: Key (c1, (c2::circle))=(<(20,20),10>, <(0,0),4>) conflicts with existing key (c1, (c2::circle))=(<(10,10),10>, <(0,0),5>).
2024-11-25 19:08:10.980 CET [562504][client backend] [pg_regress/constraints][46/336:533553] STATEMENT: INSERT INTO circles VALUES('<(20,20), 10>', '<(0,0), 4>');
2024-11-25 19:08:10.981 CET [562504][client backend] [pg_regress/constraints][46/338:0] ERROR: ON CONFLICT DO UPDATE not supported with exclusion constraints
2024-11-25 19:08:10.981 CET [562504][client backend] [pg_regress/constraints][46/338:0] STATEMENT: INSERT INTO circles VALUES('<(20,20), 10>', '<(0,0), 4>')
ON CONFLICT ON CONSTRAINT circles_c1_c2_excl DO UPDATE SET c2 = EXCLUDED.c2;
2024-11-25 19:08:10.981 CET [562511][client backend] [pg_regress/updatable_views][7/960:0] ERROR: cannot merge into view "rw_view2"
2024-11-25 19:08:10.981 CET [562511][client backend] [pg_regress/updatable_views][7/960:0] DETAIL: MERGE is not supported for views with INSTEAD OF triggers for some actions but not all.
2024-11-25 19:08:10.981 CET [562511][client backend] [pg_regress/updatable_views][7/960:0] HINT: To enable merging into the view, either provide a full set of INSTEAD OF triggers or drop the existing INSTEAD OF triggers.
2024-11-25 19:08:10.981 CET [562511][client backend] [pg_regress/updatable_views][7/960:0] STATEMENT: MERGE INTO rw_view2 t
USING (SELECT x, 'R'||x FROM generate_series(0,3) x) AS s(a,b) ON t.a = s.a
WHEN MATCHED THEN UPDATE SET b = s.b
WHEN NOT MATCHED AND s.a > 0 THEN INSERT VALUES (s.a, s.b);
2024-11-25 19:08:10.982 CET [562504][client backend] [pg_regress/constraints][46/341:533562] ERROR: could not create exclusion constraint "circles_c1_c2_excl1"
2024-11-25 19:08:10.982 CET [562504][client backend] [pg_regress/constraints][46/341:533562] DETAIL: Key (c1, (c2::circle))=(<(0,0),5>, <(0,0),5>) conflicts with key (c1, (c2::circle))=(<(0,0),5>, <(0,0),4>).
2024-11-25 19:08:10.982 CET [562504][client backend] [pg_regress/constraints][46/341:533562] STATEMENT: ALTER TABLE circles ADD EXCLUDE USING gist
(c1 WITH &&, (c2::circle) WITH &&);
2024-11-25 19:08:10.985 CET [562541][client backend] [isolation/referential-integrity/s2][56/38:533583] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.985 CET [562541][client backend] [isolation/referential-integrity/s2][56/38:533583] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:10.985 CET [562541][client backend] [isolation/referential-integrity/s2][56/38:533583] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.985 CET [562541][client backend] [isolation/referential-integrity/s2][56/38:533583] STATEMENT: DELETE FROM a WHERE i = 1;
2024-11-25 19:08:10.987 CET [562512][client backend] [pg_regress/vacuum][62/149:0] ERROR: parallel workers for vacuum must be between 0 and 1024 at character 9
2024-11-25 19:08:10.987 CET [562512][client backend] [pg_regress/vacuum][62/149:0] STATEMENT: VACUUM (PARALLEL -1) pvactst;
2024-11-25 19:08:10.988 CET [562504][client backend] [pg_regress/constraints][46/347:533596] ERROR: conflicting key value violates exclusion constraint "deferred_excl_con"
2024-11-25 19:08:10.988 CET [562504][client backend] [pg_regress/constraints][46/347:533596] DETAIL: Key (f1)=(1) conflicts with existing key (f1)=(1).
2024-11-25 19:08:10.988 CET [562504][client backend] [pg_regress/constraints][46/347:533596] STATEMENT: INSERT INTO deferred_excl VALUES(1);
2024-11-25 19:08:10.988 CET [561023][checkpointer] LOG: checkpoint complete: wrote 1946 buffers (11.9%), wrote 2 SLRU buffers; 0 WAL file(s) added, 0 removed, 1 recycled; write=0.025 s, sync=0.001 s, total=0.030 s; sync files=0, longest=0.000 s, average=0.000 s; distance=15428 kB, estimate=23253 kB; lsn=4/57D5C570, redo lsn=4/57ACFB88
2024-11-25 19:08:10.988 CET [562504][client backend] [pg_regress/constraints][46/348:0] ERROR: ON CONFLICT does not support deferrable unique constraints/exclusion constraints as arbiters
2024-11-25 19:08:10.988 CET [562504][client backend] [pg_regress/constraints][46/348:0] STATEMENT: INSERT INTO deferred_excl VALUES(1) ON CONFLICT ON CONSTRAINT deferred_excl_con DO NOTHING;
2024-11-25 19:08:10.988 CET [562512][client backend] [pg_regress/vacuum][62/154:0] ERROR: VACUUM FULL cannot be performed in parallel
2024-11-25 19:08:10.988 CET [562512][client backend] [pg_regress/vacuum][62/154:0] STATEMENT: VACUUM (PARALLEL 2, FULL TRUE) pvactst;
2024-11-25 19:08:10.988 CET [562512][client backend] [pg_regress/vacuum][62/155:0] ERROR: parallel option requires a value between 0 and 1024 at character 9
2024-11-25 19:08:10.988 CET [562512][client backend] [pg_regress/vacuum][62/155:0] STATEMENT: VACUUM (PARALLEL) pvactst;
2024-11-25 19:08:10.989 CET [562504][client backend] [pg_regress/constraints][46/349:533598] ERROR: conflicting key value violates exclusion constraint "deferred_excl_con"
2024-11-25 19:08:10.989 CET [562504][client backend] [pg_regress/constraints][46/349:533598] DETAIL: Key (f1)=(2) conflicts with existing key (f1)=(2).
2024-11-25 19:08:10.989 CET [562504][client backend] [pg_regress/constraints][46/349:533598] STATEMENT: COMMIT;
2024-11-25 19:08:10.989 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:10.990 CET [562504][client backend] [pg_regress/constraints][46/350:533602] ERROR: conflicting key value violates exclusion constraint "deferred_excl_con"
2024-11-25 19:08:10.990 CET [562504][client backend] [pg_regress/constraints][46/350:533602] DETAIL: Key (f1)=(3) conflicts with existing key (f1)=(3).
2024-11-25 19:08:10.990 CET [562504][client backend] [pg_regress/constraints][46/350:533602] STATEMENT: COMMIT;
2024-11-25 19:08:10.992 CET [562512][client backend] [pg_regress/vacuum][62/159:0] WARNING: disabling parallel option of vacuum on "tmp" --- cannot vacuum temporary tables in parallel
2024-11-25 19:08:10.992 CET [562541][client backend] [isolation/referential-integrity/s2][56/39:533618] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.992 CET [562541][client backend] [isolation/referential-integrity/s2][56/39:533618] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.992 CET [562541][client backend] [isolation/referential-integrity/s2][56/39:533618] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.992 CET [562541][client backend] [isolation/referential-integrity/s2][56/39:533618] STATEMENT: COMMIT;
2024-11-25 19:08:10.993 CET [562504][client backend] [pg_regress/constraints][46/355:533623] ERROR: could not create exclusion constraint "deferred_excl_f1_excl"
2024-11-25 19:08:10.993 CET [562504][client backend] [pg_regress/constraints][46/355:533623] DETAIL: Key (f1)=(3) conflicts with key (f1)=(3).
2024-11-25 19:08:10.993 CET [562504][client backend] [pg_regress/constraints][46/355:533623] STATEMENT: ALTER TABLE deferred_excl ADD EXCLUDE (f1 WITH =);
2024-11-25 19:08:10.995 CET [561023][checkpointer] LOG: checkpoint complete: wrote 306 buffers (1.9%), wrote 2 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.006 s, sync=0.001 s, total=0.007 s; sync files=0, longest=0.000 s, average=0.000 s; distance=2954 kB, estimate=21223 kB; lsn=4/57E7AFF0, redo lsn=4/57DB2488
2024-11-25 19:08:10.999 CET [562540][client backend] [isolation/referential-integrity/s1][92/538:533651] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:10.999 CET [562540][client backend] [isolation/referential-integrity/s1][92/538:533651] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:10.999 CET [562540][client backend] [isolation/referential-integrity/s1][92/538:533651] HINT: The transaction might succeed if retried.
2024-11-25 19:08:10.999 CET [562540][client backend] [isolation/referential-integrity/s1][92/538:533651] STATEMENT: COMMIT;
2024-11-25 19:08:11.000 CET [562508][client backend] [pg_regress/inherit][43/467:533663] ERROR: check constraint "cc" of relation "c1" is violated by some row
2024-11-25 19:08:11.000 CET [562508][client backend] [pg_regress/inherit][43/467:533663] STATEMENT: alter table p2 add constraint cc check (f2>0);
2024-11-25 19:08:11.000 CET [562508][client backend] [pg_regress/inherit][43/468:533665] ERROR: check constraint "p2_f2_check" of relation "c1" is violated by some row
2024-11-25 19:08:11.000 CET [562508][client backend] [pg_regress/inherit][43/468:533665] STATEMENT: alter table p2 add check (f2>0);
2024-11-25 19:08:11.000 CET [562547][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.045 user=nkey database=postgres host=[local]
2024-11-25 19:08:11.001 CET [562508][client backend] [pg_regress/inherit][43/472:0] ERROR: new row for relation "c1" violates check constraint "p2_f2_check"
2024-11-25 19:08:11.001 CET [562508][client backend] [pg_regress/inherit][43/472:0] DETAIL: Failing row contains (1, -1, 2).
2024-11-25 19:08:11.001 CET [562508][client backend] [pg_regress/inherit][43/472:0] STATEMENT: insert into c1 values(1,-1,2);
2024-11-25 19:08:11.004 CET [562554][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.004 CET [562541][client backend] [isolation/referential-integrity/s2][56/41:533693] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.004 CET [562541][client backend] [isolation/referential-integrity/s2][56/41:533693] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:11.004 CET [562541][client backend] [isolation/referential-integrity/s2][56/41:533693] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.004 CET [562541][client backend] [isolation/referential-integrity/s2][56/41:533693] STATEMENT: DELETE FROM a WHERE i = 1;
2024-11-25 19:08:11.005 CET [562554][client backend] [[unknown]][66/31:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.005 CET [562554][client backend] [[unknown]][66/31:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:11.009 CET [562551][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.050 user=nkey database=postgres host=[local]
2024-11-25 19:08:11.010 CET [562511][client backend] [pg_regress/updatable_views][7/991:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.010 CET [562511][client backend] [pg_regress/updatable_views][7/991:0] STATEMENT: INSERT INTO base_tbl VALUES (3, 'Row 3', 3.0);
2024-11-25 19:08:11.010 CET [562511][client backend] [pg_regress/updatable_views][7/992:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.010 CET [562511][client backend] [pg_regress/updatable_views][7/992:0] STATEMENT: INSERT INTO rw_view1 VALUES ('Row 3', 3.0, 3);
2024-11-25 19:08:11.010 CET [562511][client backend] [pg_regress/updatable_views][7/993:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.010 CET [562511][client backend] [pg_regress/updatable_views][7/993:0] STATEMENT: INSERT INTO rw_view2 VALUES ('Row 3', 3.0, 3);
2024-11-25 19:08:11.010 CET [562511][client backend] [pg_regress/updatable_views][7/994:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.010 CET [562511][client backend] [pg_regress/updatable_views][7/994:0] STATEMENT: MERGE INTO rw_view1 t
USING (VALUES ('Row 3', 3.0, 3)) AS v(b,c,a) ON t.aa = v.a
WHEN NOT MATCHED THEN INSERT VALUES (v.b, v.c, v.a);
2024-11-25 19:08:11.011 CET [562511][client backend] [pg_regress/updatable_views][7/995:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.011 CET [562511][client backend] [pg_regress/updatable_views][7/995:0] STATEMENT: MERGE INTO rw_view2 t
USING (VALUES ('Row 3', 3.0, 3)) AS v(b,c,a) ON t.aa = v.a
WHEN NOT MATCHED THEN INSERT VALUES (v.b, v.c, v.a);
2024-11-25 19:08:11.011 CET [562511][client backend] [pg_regress/updatable_views][7/997:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.011 CET [562511][client backend] [pg_regress/updatable_views][7/997:0] STATEMENT: UPDATE base_tbl SET b=b;
2024-11-25 19:08:11.012 CET [562511][client backend] [pg_regress/updatable_views][7/999:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.012 CET [562511][client backend] [pg_regress/updatable_views][7/999:0] STATEMENT: UPDATE rw_view1 SET aa=aa;
2024-11-25 19:08:11.012 CET [562541][client backend] [isolation/referential-integrity/s2][56/42:533719] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.012 CET [562541][client backend] [isolation/referential-integrity/s2][56/42:533719] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.012 CET [562541][client backend] [isolation/referential-integrity/s2][56/42:533719] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.012 CET [562541][client backend] [isolation/referential-integrity/s2][56/42:533719] STATEMENT: COMMIT;
2024-11-25 19:08:11.012 CET [562557][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.013 CET [562511][client backend] [pg_regress/updatable_views][7/1001:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.013 CET [562511][client backend] [pg_regress/updatable_views][7/1001:0] STATEMENT: UPDATE rw_view2 SET bb=bb;
2024-11-25 19:08:11.013 CET [562557][client backend] [[unknown]][71/25:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.013 CET [562557][client backend] [[unknown]][71/25:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:11.013 CET [562504][client backend] [pg_regress/constraints][46/377:533723] ERROR: constraint "notnull_tbl1_a_not_null" for relation "notnull_tbl1" already exists
2024-11-25 19:08:11.013 CET [562504][client backend] [pg_regress/constraints][46/377:533723] STATEMENT: ALTER TABLE notnull_tbl1 ADD COLUMN b INT CONSTRAINT notnull_tbl1_a_not_null NOT NULL;
2024-11-25 19:08:11.013 CET [562511][client backend] [pg_regress/updatable_views][7/1003:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.013 CET [562511][client backend] [pg_regress/updatable_views][7/1003:0] STATEMENT: MERGE INTO rw_view1 t USING (VALUES (1)) AS v(a) ON t.aa = v.a
WHEN MATCHED THEN UPDATE SET aa = aa;
2024-11-25 19:08:11.014 CET [562511][client backend] [pg_regress/updatable_views][7/1005:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.014 CET [562511][client backend] [pg_regress/updatable_views][7/1005:0] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (1)) AS v(a) ON t.aa = v.a
WHEN MATCHED THEN UPDATE SET bb = bb;
2024-11-25 19:08:11.014 CET [562511][client backend] [pg_regress/updatable_views][7/1006:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.014 CET [562511][client backend] [pg_regress/updatable_views][7/1006:0] STATEMENT: DELETE FROM base_tbl;
2024-11-25 19:08:11.014 CET [562511][client backend] [pg_regress/updatable_views][7/1007:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.014 CET [562511][client backend] [pg_regress/updatable_views][7/1007:0] STATEMENT: DELETE FROM rw_view1;
2024-11-25 19:08:11.014 CET [562511][client backend] [pg_regress/updatable_views][7/1008:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.014 CET [562511][client backend] [pg_regress/updatable_views][7/1008:0] STATEMENT: DELETE FROM rw_view2;
2024-11-25 19:08:11.016 CET [562511][client backend] [pg_regress/updatable_views][7/1015:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.016 CET [562511][client backend] [pg_regress/updatable_views][7/1015:0] STATEMENT: INSERT INTO rw_view1 VALUES ('Row 4', 4.0, 4);
2024-11-25 19:08:11.017 CET [562458][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.339 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:11.017 CET [562511][client backend] [pg_regress/updatable_views][7/1018:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.017 CET [562511][client backend] [pg_regress/updatable_views][7/1018:0] STATEMENT: DELETE FROM rw_view1 WHERE aa=2;
2024-11-25 19:08:11.018 CET [562511][client backend] [pg_regress/updatable_views][7/1020:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.018 CET [562511][client backend] [pg_regress/updatable_views][7/1020:0] STATEMENT: MERGE INTO rw_view1 t USING (VALUES (1)) AS v(a) ON t.aa = v.a
WHEN MATCHED AND bb = 'xxx' THEN DELETE;
2024-11-25 19:08:11.021 CET [562511][client backend] [pg_regress/updatable_views][7/1029:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.021 CET [562511][client backend] [pg_regress/updatable_views][7/1029:0] STATEMENT: INSERT INTO base_tbl VALUES (5, 'Row 5', 5.0);
2024-11-25 19:08:11.022 CET [562511][client backend] [pg_regress/updatable_views][7/1031:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.022 CET [562511][client backend] [pg_regress/updatable_views][7/1031:0] STATEMENT: INSERT INTO rw_view2 VALUES ('Row 6', 6.0, 6);
2024-11-25 19:08:11.022 CET [562511][client backend] [pg_regress/updatable_views][7/1032:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.022 CET [562511][client backend] [pg_regress/updatable_views][7/1032:0] STATEMENT: DELETE FROM base_tbl WHERE a=3;
2024-11-25 19:08:11.023 CET [562511][client backend] [pg_regress/updatable_views][7/1034:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.023 CET [562511][client backend] [pg_regress/updatable_views][7/1034:0] STATEMENT: DELETE FROM rw_view2 WHERE aa=4;
2024-11-25 19:08:11.023 CET [562511][client backend] [pg_regress/updatable_views][7/1036:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.023 CET [562511][client backend] [pg_regress/updatable_views][7/1036:0] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (1)) AS v(a) ON t.aa = v.a
WHEN MATCHED AND bb = 'xxx' THEN DELETE;
2024-11-25 19:08:11.023 CET [562540][client backend] [isolation/referential-integrity/s1][92/541:533764] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.023 CET [562540][client backend] [isolation/referential-integrity/s1][92/541:533764] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.023 CET [562540][client backend] [isolation/referential-integrity/s1][92/541:533764] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.023 CET [562540][client backend] [isolation/referential-integrity/s1][92/541:533764] STATEMENT: COMMIT;
2024-11-25 19:08:11.025 CET [562558][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.026 CET [562558][client backend] [[unknown]][70/70:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.026 CET [562558][client backend] [[unknown]][70/70:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:11.030 CET [562511][client backend] [pg_regress/updatable_views][7/1044:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.030 CET [562511][client backend] [pg_regress/updatable_views][7/1044:0] STATEMENT: SELECT * FROM rw_view1;
2024-11-25 19:08:11.030 CET [562511][client backend] [pg_regress/updatable_views][7/1045:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.030 CET [562511][client backend] [pg_regress/updatable_views][7/1045:0] STATEMENT: SELECT * FROM rw_view1 FOR UPDATE;
2024-11-25 19:08:11.030 CET [562511][client backend] [pg_regress/updatable_views][7/1046:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.030 CET [562511][client backend] [pg_regress/updatable_views][7/1046:0] STATEMENT: UPDATE rw_view1 SET b = 'foo' WHERE a = 1;
2024-11-25 19:08:11.030 CET [562541][client backend] [isolation/referential-integrity/s2][56/44:533792] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.030 CET [562541][client backend] [isolation/referential-integrity/s2][56/44:533792] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.030 CET [562541][client backend] [isolation/referential-integrity/s2][56/44:533792] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.030 CET [562541][client backend] [isolation/referential-integrity/s2][56/44:533792] STATEMENT: COMMIT;
2024-11-25 19:08:11.030 CET [562511][client backend] [pg_regress/updatable_views][7/1047:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.030 CET [562511][client backend] [pg_regress/updatable_views][7/1047:0] STATEMENT: MERGE INTO rw_view1 t USING (VALUES (1)) AS v(a) ON t.a = v.a
WHEN MATCHED THEN UPDATE SET b = 'foo';
2024-11-25 19:08:11.033 CET [562511][client backend] [pg_regress/updatable_views][7/1050:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.033 CET [562511][client backend] [pg_regress/updatable_views][7/1050:0] STATEMENT: SELECT * FROM rw_view2;
2024-11-25 19:08:11.033 CET [562511][client backend] [pg_regress/updatable_views][7/1051:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.033 CET [562511][client backend] [pg_regress/updatable_views][7/1051:0] STATEMENT: SELECT * FROM rw_view2 FOR UPDATE;
2024-11-25 19:08:11.033 CET [562511][client backend] [pg_regress/updatable_views][7/1052:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.033 CET [562511][client backend] [pg_regress/updatable_views][7/1052:0] STATEMENT: UPDATE rw_view2 SET b = 'bar' WHERE a = 1;
2024-11-25 19:08:11.033 CET [562511][client backend] [pg_regress/updatable_views][7/1053:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.033 CET [562511][client backend] [pg_regress/updatable_views][7/1053:0] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (1)) AS v(a) ON t.a = v.a
WHEN MATCHED THEN UPDATE SET b = 'foo';
2024-11-25 19:08:11.035 CET [562511][client backend] [pg_regress/updatable_views][7/1058:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.035 CET [562511][client backend] [pg_regress/updatable_views][7/1058:0] STATEMENT: SELECT * FROM rw_view1 FOR UPDATE;
2024-11-25 19:08:11.035 CET [562511][client backend] [pg_regress/updatable_views][7/1059:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.035 CET [562511][client backend] [pg_regress/updatable_views][7/1059:0] STATEMENT: UPDATE rw_view1 SET b = 'foo' WHERE a = 1;
2024-11-25 19:08:11.036 CET [562511][client backend] [pg_regress/updatable_views][7/1060:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.036 CET [562511][client backend] [pg_regress/updatable_views][7/1060:0] STATEMENT: MERGE INTO rw_view1 t USING (VALUES (1)) AS v(a) ON t.a = v.a
WHEN MATCHED THEN UPDATE SET b = 'foo';
2024-11-25 19:08:11.036 CET [562511][client backend] [pg_regress/updatable_views][7/1062:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.036 CET [562511][client backend] [pg_regress/updatable_views][7/1062:0] STATEMENT: SELECT * FROM rw_view2;
2024-11-25 19:08:11.036 CET [562554][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.032 user=nkey database=postgres host=[local]
2024-11-25 19:08:11.036 CET [562511][client backend] [pg_regress/updatable_views][7/1063:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.036 CET [562511][client backend] [pg_regress/updatable_views][7/1063:0] STATEMENT: SELECT * FROM rw_view2 FOR UPDATE;
2024-11-25 19:08:11.036 CET [562511][client backend] [pg_regress/updatable_views][7/1064:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.036 CET [562511][client backend] [pg_regress/updatable_views][7/1064:0] STATEMENT: UPDATE rw_view2 SET b = 'bar' WHERE a = 1;
2024-11-25 19:08:11.036 CET [562511][client backend] [pg_regress/updatable_views][7/1065:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.036 CET [562511][client backend] [pg_regress/updatable_views][7/1065:0] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (1)) AS v(a) ON t.a = v.a
WHEN MATCHED THEN UPDATE SET b = 'foo';
2024-11-25 19:08:11.037 CET [562540][client backend] [isolation/referential-integrity/s1][92/543:533817] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.037 CET [562540][client backend] [isolation/referential-integrity/s1][92/543:533817] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.037 CET [562540][client backend] [isolation/referential-integrity/s1][92/543:533817] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.037 CET [562540][client backend] [isolation/referential-integrity/s1][92/543:533817] STATEMENT: COMMIT;
2024-11-25 19:08:11.038 CET [562511][client backend] [pg_regress/updatable_views][7/1070:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.038 CET [562511][client backend] [pg_regress/updatable_views][7/1070:0] STATEMENT: SELECT * FROM rw_view2 FOR UPDATE;
2024-11-25 19:08:11.038 CET [562512][client backend] [pg_regress/vacuum][62/214:533823] ERROR: null value in column "i" of relation "vac_truncate_test" violates not-null constraint
2024-11-25 19:08:11.038 CET [562512][client backend] [pg_regress/vacuum][62/214:533823] DETAIL: Failing row contains (null, null).
2024-11-25 19:08:11.038 CET [562512][client backend] [pg_regress/vacuum][62/214:533823] STATEMENT: INSERT INTO vac_truncate_test VALUES (1, NULL), (NULL, NULL);
2024-11-25 19:08:11.038 CET [562511][client backend] [pg_regress/updatable_views][7/1071:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.038 CET [562511][client backend] [pg_regress/updatable_views][7/1071:0] STATEMENT: UPDATE rw_view2 SET b = 'bar' WHERE a = 1;
2024-11-25 19:08:11.038 CET [562511][client backend] [pg_regress/updatable_views][7/1072:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.038 CET [562511][client backend] [pg_regress/updatable_views][7/1072:0] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (1)) AS v(a) ON t.a = v.a
WHEN MATCHED THEN UPDATE SET b = 'foo';
2024-11-25 19:08:11.039 CET [562560][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.040 CET [562560][client backend] [[unknown]][75/39:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.040 CET [562560][client backend] [[unknown]][75/39:0] LOG: connection authorized: user=nkey database=regression_spgist_name_ops application_name=pg_regress/spgist_name_ops
2024-11-25 19:08:11.040 CET [562558][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.015 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:11.041 CET [562561][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.042 CET [562511][client backend] [pg_regress/updatable_views][7/1082:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.042 CET [562511][client backend] [pg_regress/updatable_views][7/1082:0] STATEMENT: SELECT * FROM rw_view2 FOR UPDATE;
2024-11-25 19:08:11.042 CET [562511][client backend] [pg_regress/updatable_views][7/1083:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.042 CET [562511][client backend] [pg_regress/updatable_views][7/1083:0] STATEMENT: UPDATE rw_view2 SET b = 'bar' WHERE a = 1;
2024-11-25 19:08:11.042 CET [562511][client backend] [pg_regress/updatable_views][7/1084:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.042 CET [562511][client backend] [pg_regress/updatable_views][7/1084:0] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (1)) AS v(a) ON t.a = v.a
WHEN MATCHED THEN UPDATE SET b = 'bar';
2024-11-25 19:08:11.042 CET [562561][client backend] [[unknown]][78/59:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.042 CET [562561][client backend] [[unknown]][78/59:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:11.043 CET [562540][client backend] [isolation/referential-integrity/s1][92/544:533852] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.043 CET [562540][client backend] [isolation/referential-integrity/s1][92/544:533852] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:11.043 CET [562540][client backend] [isolation/referential-integrity/s1][92/544:533852] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.043 CET [562540][client backend] [isolation/referential-integrity/s1][92/544:533852] STATEMENT: INSERT INTO b VALUES (1);
2024-11-25 19:08:11.044 CET [562557][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.032 user=nkey database=postgres host=[local]
2024-11-25 19:08:11.046 CET [562511][client backend] [pg_regress/updatable_views][7/1096:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.046 CET [562511][client backend] [pg_regress/updatable_views][7/1096:0] STATEMENT: SELECT * FROM rw_view1 FOR UPDATE;
2024-11-25 19:08:11.046 CET [562511][client backend] [pg_regress/updatable_views][7/1097:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.046 CET [562511][client backend] [pg_regress/updatable_views][7/1097:0] STATEMENT: UPDATE rw_view1 SET b = 'foo' WHERE a = 1;
2024-11-25 19:08:11.046 CET [562511][client backend] [pg_regress/updatable_views][7/1098:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.046 CET [562511][client backend] [pg_regress/updatable_views][7/1098:0] STATEMENT: MERGE INTO rw_view1 t USING (VALUES (1)) AS v(a) ON t.a = v.a
WHEN MATCHED THEN UPDATE SET b = 'foo';
2024-11-25 19:08:11.047 CET [562511][client backend] [pg_regress/updatable_views][7/1101:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.047 CET [562511][client backend] [pg_regress/updatable_views][7/1101:0] STATEMENT: SELECT * FROM rw_view2 FOR UPDATE;
2024-11-25 19:08:11.047 CET [562511][client backend] [pg_regress/updatable_views][7/1102:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.047 CET [562511][client backend] [pg_regress/updatable_views][7/1102:0] STATEMENT: UPDATE rw_view2 SET b = 'bar' WHERE a = 1;
2024-11-25 19:08:11.047 CET [562502][client backend] [pg_regress/triggers][14/624:0] ERROR: No such country: "Japon"
2024-11-25 19:08:11.047 CET [562502][client backend] [pg_regress/triggers][14/624:0] CONTEXT: PL/pgSQL function city_update() line 9 at RAISE
2024-11-25 19:08:11.047 CET [562502][client backend] [pg_regress/triggers][14/624:0] STATEMENT: UPDATE city_view SET country_name = 'Japon' WHERE city_name = 'Tokyo';
2024-11-25 19:08:11.047 CET [562511][client backend] [pg_regress/updatable_views][7/1103:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.047 CET [562511][client backend] [pg_regress/updatable_views][7/1103:0] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (1)) AS v(a) ON t.a = v.a
WHEN MATCHED THEN UPDATE SET b = 'foo';
2024-11-25 19:08:11.048 CET [562563][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.048 CET [562563][client backend] [[unknown]][38/417:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.048 CET [562563][client backend] [[unknown]][38/417:0] LOG: connection authorized: user=nkey database=regression_test_bloomfilter application_name=pg_regress/test_bloomfilter
2024-11-25 19:08:11.049 CET [562508][client backend] [pg_regress/inherit][43/532:533887] ERROR: cannot rename inherited column "b"
2024-11-25 19:08:11.049 CET [562508][client backend] [pg_regress/inherit][43/532:533887] STATEMENT: ALTER TABLE inht1 RENAME b TO bb;
2024-11-25 19:08:11.049 CET [562508][client backend] [pg_regress/inherit][43/533:533890] ERROR: cannot rename inherited column "aa"
2024-11-25 19:08:11.049 CET [562508][client backend] [pg_regress/inherit][43/533:533890] STATEMENT: ALTER TABLE inhts RENAME aa TO aaa;
2024-11-25 19:08:11.050 CET [562541][client backend] [isolation/referential-integrity/s2][56/47:533896] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.050 CET [562541][client backend] [isolation/referential-integrity/s2][56/47:533896] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:11.050 CET [562541][client backend] [isolation/referential-integrity/s2][56/47:533896] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.050 CET [562541][client backend] [isolation/referential-integrity/s2][56/47:533896] STATEMENT: DELETE FROM a WHERE i = 1;
2024-11-25 19:08:11.052 CET [562512][client backend] [pg_regress/vacuum][62/249:0] ERROR: column "a" of relation "vacparted" appears more than once
2024-11-25 19:08:11.052 CET [562512][client backend] [pg_regress/vacuum][62/249:0] STATEMENT: VACUUM ANALYZE vacparted(a,b,a);
2024-11-25 19:08:11.052 CET [562512][client backend] [pg_regress/vacuum][62/251:0] ERROR: column "b" of relation "vacparted" appears more than once
2024-11-25 19:08:11.052 CET [562512][client backend] [pg_regress/vacuum][62/251:0] STATEMENT: ANALYZE vacparted(a,b,b);
2024-11-25 19:08:11.057 CET [562541][client backend] [isolation/referential-integrity/s2][56/48:533928] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.057 CET [562541][client backend] [isolation/referential-integrity/s2][56/48:533928] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:11.057 CET [562541][client backend] [isolation/referential-integrity/s2][56/48:533928] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.057 CET [562541][client backend] [isolation/referential-integrity/s2][56/48:533928] STATEMENT: DELETE FROM a WHERE i = 1;
2024-11-25 19:08:11.058 CET [562511][client backend] [pg_regress/updatable_views][7/1115:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.058 CET [562511][client backend] [pg_regress/updatable_views][7/1115:0] STATEMENT: SELECT * FROM base_tbl;
2024-11-25 19:08:11.058 CET [562511][client backend] [pg_regress/updatable_views][7/1116:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.058 CET [562511][client backend] [pg_regress/updatable_views][7/1116:0] STATEMENT: SELECT * FROM rw_view1;
2024-11-25 19:08:11.058 CET [562511][client backend] [pg_regress/updatable_views][7/1117:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.058 CET [562511][client backend] [pg_regress/updatable_views][7/1117:0] STATEMENT: INSERT INTO base_tbl VALUES (3, 'Row 3', 3.0);
2024-11-25 19:08:11.058 CET [562511][client backend] [pg_regress/updatable_views][7/1118:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.058 CET [562511][client backend] [pg_regress/updatable_views][7/1118:0] STATEMENT: INSERT INTO rw_view1 VALUES ('Row 3', 3.0, 3);
2024-11-25 19:08:11.058 CET [562511][client backend] [pg_regress/updatable_views][7/1119:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.058 CET [562511][client backend] [pg_regress/updatable_views][7/1119:0] STATEMENT: UPDATE base_tbl SET a=a;
2024-11-25 19:08:11.058 CET [562511][client backend] [pg_regress/updatable_views][7/1120:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.058 CET [562511][client backend] [pg_regress/updatable_views][7/1120:0] STATEMENT: UPDATE rw_view1 SET bb=bb, cc=cc;
2024-11-25 19:08:11.059 CET [562511][client backend] [pg_regress/updatable_views][7/1121:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.059 CET [562511][client backend] [pg_regress/updatable_views][7/1121:0] STATEMENT: MERGE INTO rw_view1 t USING (VALUES (1)) AS v(a) ON t.aa = v.a
WHEN MATCHED THEN UPDATE SET bb = bb;
2024-11-25 19:08:11.059 CET [562511][client backend] [pg_regress/updatable_views][7/1122:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.059 CET [562511][client backend] [pg_regress/updatable_views][7/1122:0] STATEMENT: DELETE FROM base_tbl;
2024-11-25 19:08:11.059 CET [562511][client backend] [pg_regress/updatable_views][7/1123:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.059 CET [562511][client backend] [pg_regress/updatable_views][7/1123:0] STATEMENT: DELETE FROM rw_view1;
2024-11-25 19:08:11.059 CET [562511][client backend] [pg_regress/updatable_views][7/1124:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.059 CET [562511][client backend] [pg_regress/updatable_views][7/1124:0] STATEMENT: MERGE INTO rw_view1 t USING (VALUES (1)) AS v(a) ON t.aa = v.a
WHEN MATCHED THEN DELETE;
2024-11-25 19:08:11.062 CET [562561][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.021 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:11.063 CET [562511][client backend] [pg_regress/updatable_views][7/1132:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.063 CET [562511][client backend] [pg_regress/updatable_views][7/1132:0] STATEMENT: UPDATE base_tbl SET b=b;
2024-11-25 19:08:11.064 CET [562511][client backend] [pg_regress/updatable_views][7/1135:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.064 CET [562511][client backend] [pg_regress/updatable_views][7/1135:0] STATEMENT: UPDATE rw_view1 SET aa=aa;
2024-11-25 19:08:11.064 CET [562511][client backend] [pg_regress/updatable_views][7/1136:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.064 CET [562511][client backend] [pg_regress/updatable_views][7/1136:0] STATEMENT: UPDATE rw_view1 SET bb=bb;
2024-11-25 19:08:11.064 CET [562511][client backend] [pg_regress/updatable_views][7/1137:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.064 CET [562511][client backend] [pg_regress/updatable_views][7/1137:0] STATEMENT: MERGE INTO rw_view1 t USING (VALUES (1)) AS v(a) ON t.aa = v.a
WHEN MATCHED THEN UPDATE SET aa = aa;
2024-11-25 19:08:11.064 CET [562511][client backend] [pg_regress/updatable_views][7/1138:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.064 CET [562511][client backend] [pg_regress/updatable_views][7/1138:0] STATEMENT: MERGE INTO rw_view1 t USING (VALUES (1)) AS v(a) ON t.aa = v.a
WHEN MATCHED THEN UPDATE SET bb = bb;
2024-11-25 19:08:11.064 CET [562541][client backend] [isolation/referential-integrity/s2][56/50:533975] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.064 CET [562541][client backend] [isolation/referential-integrity/s2][56/50:533975] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.064 CET [562541][client backend] [isolation/referential-integrity/s2][56/50:533975] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.064 CET [562541][client backend] [isolation/referential-integrity/s2][56/50:533975] STATEMENT: COMMIT;
2024-11-25 19:08:11.065 CET [562511][client backend] [pg_regress/updatable_views][7/1143:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.065 CET [562511][client backend] [pg_regress/updatable_views][7/1143:0] STATEMENT: INSERT INTO rw_view1 VALUES ('Row 4', 4.0, 4);
2024-11-25 19:08:11.066 CET [562511][client backend] [pg_regress/updatable_views][7/1145:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.066 CET [562511][client backend] [pg_regress/updatable_views][7/1145:0] STATEMENT: DELETE FROM rw_view1 WHERE aa=2;
2024-11-25 19:08:11.066 CET [562511][client backend] [pg_regress/updatable_views][7/1146:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.066 CET [562511][client backend] [pg_regress/updatable_views][7/1146:0] STATEMENT: MERGE INTO rw_view1 t USING (VALUES (1)) AS v(a) ON t.aa = v.a
WHEN MATCHED THEN DELETE;
2024-11-25 19:08:11.068 CET [562564][autovacuum worker] LOG: automatic analyze of table "isolation_regression_delay_execution.pg_catalog.pg_type"
avg read rate: 0.000 MB/s, avg write rate: 6.250 MB/s
buffer usage: 1092 hits, 0 reads, 12 dirtied
WAL usage: 102 records, 10 full page images, 90032 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.01 s
2024-11-25 19:08:11.068 CET [562511][client backend] [pg_regress/updatable_views][7/1151:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.068 CET [562511][client backend] [pg_regress/updatable_views][7/1151:0] STATEMENT: INSERT INTO rw_view1 VALUES ('Row 4', 4.0, 4);
2024-11-25 19:08:11.068 CET [562511][client backend] [pg_regress/updatable_views][7/1152:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.068 CET [562511][client backend] [pg_regress/updatable_views][7/1152:0] STATEMENT: DELETE FROM rw_view1 WHERE aa=2;
2024-11-25 19:08:11.068 CET [562511][client backend] [pg_regress/updatable_views][7/1153:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.068 CET [562511][client backend] [pg_regress/updatable_views][7/1153:0] STATEMENT: MERGE INTO rw_view1 t USING (VALUES (1)) AS v(a) ON t.aa = v.a
WHEN MATCHED THEN DELETE;
2024-11-25 19:08:11.068 CET [562565][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.068 CET [562564][autovacuum worker] LOG: automatic vacuum of table "isolation_regression_delay_execution.pg_catalog.pg_authid": index scans: 1
pages: 0 removed, 2 remain, 2 scanned (100.00% of total)
tuples: 34 removed, 66 remain, 44 are dead but not yet removable
removable cutoff: 531280, which was 2721 XIDs old when operation ended
new relfrozenxid: 527242, which is 171633 XIDs ahead of previous value
new relminmxid: 2904, which is 914 MXIDs ahead of previous value
frozen: 0 pages from table (0.00% of total) had 0 tuples frozen
index scan needed: 2 pages from table (100.00% of total) had 32 dead item identifiers removed
index "pg_authid_rolname_index": pages: 2 in total, 0 newly deleted, 0 currently deleted, 0 reusable
index "pg_authid_oid_index": pages: 2 in total, 0 newly deleted, 0 currently deleted, 0 reusable
avg read rate: 19.055 MB/s, avg write rate: 114.329 MB/s
buffer usage: 36 hits, 1 reads, 6 dirtied
WAL usage: 12 records, 6 full page images, 44142 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:11.069 CET [562565][client backend] [[unknown]][1/31:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.069 CET [562565][client backend] [[unknown]][1/31:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:11.072 CET [562512][client backend] [pg_regress/vacuum][62/280:0] ERROR: relation "does_not_exist" does not exist
2024-11-25 19:08:11.072 CET [562512][client backend] [pg_regress/vacuum][62/280:0] STATEMENT: VACUUM vacparted, does_not_exist;
2024-11-25 19:08:11.073 CET [562540][client backend] [isolation/referential-integrity/s1][92/549:534010] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.073 CET [562540][client backend] [isolation/referential-integrity/s1][92/549:534010] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.073 CET [562540][client backend] [isolation/referential-integrity/s1][92/549:534010] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.073 CET [562540][client backend] [isolation/referential-integrity/s1][92/549:534010] STATEMENT: COMMIT;
2024-11-25 19:08:11.073 CET [562564][autovacuum worker] LOG: automatic analyze of table "isolation_regression_delay_execution.pg_catalog.pg_authid"
avg read rate: 0.000 MB/s, avg write rate: 1.562 MB/s
buffer usage: 238 hits, 0 reads, 1 dirtied
WAL usage: 40 records, 0 full page images, 6602 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:11.073 CET [562512][client backend] [pg_regress/vacuum][62/287:0] ERROR: relation "does_not_exist" does not exist
2024-11-25 19:08:11.073 CET [562512][client backend] [pg_regress/vacuum][62/287:0] STATEMENT: VACUUM (FREEZE) does_not_exist, vaccluster;
2024-11-25 19:08:11.076 CET [562512][client backend] [pg_regress/vacuum][62/298:0] ERROR: column "does_not_exist" of relation "vactst" does not exist
2024-11-25 19:08:11.076 CET [562512][client backend] [pg_regress/vacuum][62/298:0] STATEMENT: VACUUM ANALYZE vactst (does_not_exist), vacparted (b);
2024-11-25 19:08:11.077 CET [562511][client backend] [pg_regress/updatable_views][7/1168:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.077 CET [562511][client backend] [pg_regress/updatable_views][7/1168:0] STATEMENT: SELECT * FROM rw_view1;
2024-11-25 19:08:11.077 CET [562511][client backend] [pg_regress/updatable_views][7/1169:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.077 CET [562511][client backend] [pg_regress/updatable_views][7/1169:0] STATEMENT: UPDATE rw_view1 SET aa=aa;
2024-11-25 19:08:11.078 CET [562511][client backend] [pg_regress/updatable_views][7/1170:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.078 CET [562511][client backend] [pg_regress/updatable_views][7/1170:0] STATEMENT: MERGE INTO rw_view1 t USING (VALUES (2, 'Row 2', 2.0)) AS v(a,b,c) ON t.aa = v.a
WHEN NOT MATCHED THEN INSERT VALUES (v.b, v.c, v.a);
2024-11-25 19:08:11.079 CET [562541][client backend] [isolation/referential-integrity/s2][56/52:534054] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.079 CET [562541][client backend] [isolation/referential-integrity/s2][56/52:534054] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:11.079 CET [562541][client backend] [isolation/referential-integrity/s2][56/52:534054] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.079 CET [562541][client backend] [isolation/referential-integrity/s2][56/52:534054] STATEMENT: DELETE FROM a WHERE i = 1;
2024-11-25 19:08:11.080 CET [562511][client backend] [pg_regress/updatable_views][7/1174:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.080 CET [562511][client backend] [pg_regress/updatable_views][7/1174:0] STATEMENT: SELECT * FROM rw_view2;
2024-11-25 19:08:11.080 CET [562511][client backend] [pg_regress/updatable_views][7/1175:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.080 CET [562511][client backend] [pg_regress/updatable_views][7/1175:0] STATEMENT: UPDATE rw_view2 SET aaa=aaa;
2024-11-25 19:08:11.080 CET [562511][client backend] [pg_regress/updatable_views][7/1176:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.080 CET [562511][client backend] [pg_regress/updatable_views][7/1176:0] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (2, 'Row 2', 2.0)) AS v(a,b,c) ON t.aaa = v.a
WHEN NOT MATCHED THEN INSERT VALUES (v.c, v.a, v.b);
2024-11-25 19:08:11.082 CET [562512][client backend] [pg_regress/vacuum][62/304:0] ERROR: ANALYZE option must be specified when a column list is provided
2024-11-25 19:08:11.082 CET [562512][client backend] [pg_regress/vacuum][62/304:0] STATEMENT: VACUUM FULL vactst, vacparted (a, b), vaccluster (i);
2024-11-25 19:08:11.083 CET [562511][client backend] [pg_regress/updatable_views][7/1183:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.083 CET [562511][client backend] [pg_regress/updatable_views][7/1183:0] STATEMENT: UPDATE rw_view1 SET cc=cc;
2024-11-25 19:08:11.083 CET [562504][client backend] [pg_regress/constraints][46/474:0] ERROR: conflicting not-null constraint names "foo" and "bar"
2024-11-25 19:08:11.083 CET [562504][client backend] [pg_regress/constraints][46/474:0] STATEMENT: create table notnull_tbl_fail (a serial constraint foo not null constraint bar not null);
2024-11-25 19:08:11.083 CET [562504][client backend] [pg_regress/constraints][46/475:0] ERROR: conflicting NO INHERIT declarations for not-null constraints on column "a"
2024-11-25 19:08:11.083 CET [562504][client backend] [pg_regress/constraints][46/475:0] STATEMENT: create table notnull_tbl_fail (a serial constraint foo not null no inherit constraint foo not null);
2024-11-25 19:08:11.083 CET [562511][client backend] [pg_regress/updatable_views][7/1185:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.083 CET [562511][client backend] [pg_regress/updatable_views][7/1185:0] STATEMENT: MERGE INTO rw_view1 t USING (VALUES (1)) AS v(a) ON t.aa = v.a
WHEN MATCHED THEN UPDATE SET cc = cc;
2024-11-25 19:08:11.084 CET [562511][client backend] [pg_regress/updatable_views][7/1187:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.084 CET [562511][client backend] [pg_regress/updatable_views][7/1187:0] STATEMENT: SELECT * FROM rw_view2;
2024-11-25 19:08:11.084 CET [562512][client backend] [pg_regress/vacuum][62/315:0] ERROR: relation "does_not_exist" does not exist
2024-11-25 19:08:11.084 CET [562512][client backend] [pg_regress/vacuum][62/315:0] STATEMENT: ANALYZE vactst, does_not_exist, vacparted;
2024-11-25 19:08:11.084 CET [562504][client backend] [pg_regress/constraints][46/476:534077] ERROR: conflicting NO INHERIT declaration for not-null constraint on column "a"
2024-11-25 19:08:11.084 CET [562504][client backend] [pg_regress/constraints][46/476:534077] STATEMENT: create table notnull_tbl_fail (a int constraint foo not null, constraint foo not null a no inherit);
2024-11-25 19:08:11.084 CET [562511][client backend] [pg_regress/updatable_views][7/1188:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.084 CET [562511][client backend] [pg_regress/updatable_views][7/1188:0] STATEMENT: UPDATE rw_view2 SET aaa=aaa;
2024-11-25 19:08:11.084 CET [562511][client backend] [pg_regress/updatable_views][7/1189:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.084 CET [562511][client backend] [pg_regress/updatable_views][7/1189:0] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (1)) AS v(a) ON t.aaa = v.a
WHEN MATCHED THEN UPDATE SET aaa = aaa;
2024-11-25 19:08:11.084 CET [562512][client backend] [pg_regress/vacuum][62/318:0] ERROR: column "does_not_exist" of relation "vacparted" does not exist
2024-11-25 19:08:11.084 CET [562512][client backend] [pg_regress/vacuum][62/318:0] STATEMENT: ANALYZE vactst (i), vacparted (does_not_exist);
2024-11-25 19:08:11.084 CET [562511][client backend] [pg_regress/updatable_views][7/1191:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.084 CET [562511][client backend] [pg_regress/updatable_views][7/1191:0] STATEMENT: SELECT * FROM rw_view2;
2024-11-25 19:08:11.085 CET [562511][client backend] [pg_regress/updatable_views][7/1192:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.085 CET [562511][client backend] [pg_regress/updatable_views][7/1192:0] STATEMENT: UPDATE rw_view2 SET aaa=aaa;
2024-11-25 19:08:11.085 CET [562511][client backend] [pg_regress/updatable_views][7/1193:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.085 CET [562511][client backend] [pg_regress/updatable_views][7/1193:0] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (1)) AS v(a) ON t.aaa = v.a
WHEN MATCHED THEN UPDATE SET aaa = aaa;
2024-11-25 19:08:11.085 CET [562504][client backend] [pg_regress/constraints][46/477:534081] ERROR: conflicting not-null constraint names "foo" and "bar"
2024-11-25 19:08:11.085 CET [562504][client backend] [pg_regress/constraints][46/477:534081] STATEMENT: create table notnull_tbl_fail (a serial constraint foo not null, constraint bar not null a);
2024-11-25 19:08:11.086 CET [562511][client backend] [pg_regress/updatable_views][7/1198:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.086 CET [562511][client backend] [pg_regress/updatable_views][7/1198:0] STATEMENT: SELECT * FROM rw_view2;
2024-11-25 19:08:11.086 CET [562541][client backend] [isolation/referential-integrity/s2][56/53:534094] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.086 CET [562541][client backend] [isolation/referential-integrity/s2][56/53:534094] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.086 CET [562541][client backend] [isolation/referential-integrity/s2][56/53:534094] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.086 CET [562541][client backend] [isolation/referential-integrity/s2][56/53:534094] STATEMENT: COMMIT;
2024-11-25 19:08:11.086 CET [562508][client backend] [pg_regress/inherit][43/575:534095] ERROR: cannot rename inherited column "b"
2024-11-25 19:08:11.086 CET [562508][client backend] [pg_regress/inherit][43/575:534095] STATEMENT: ALTER TABLE inht1 RENAME b TO bb;
2024-11-25 19:08:11.086 CET [562511][client backend] [pg_regress/updatable_views][7/1199:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.086 CET [562511][client backend] [pg_regress/updatable_views][7/1199:0] STATEMENT: UPDATE rw_view2 SET bbb=bbb;
2024-11-25 19:08:11.087 CET [562511][client backend] [pg_regress/updatable_views][7/1200:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.087 CET [562511][client backend] [pg_regress/updatable_views][7/1200:0] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (1)) AS v(a) ON t.aaa = v.a
WHEN MATCHED THEN UPDATE SET bbb = bbb;
2024-11-25 19:08:11.087 CET [562504][client backend] [pg_regress/constraints][46/478:534092] ERROR: conflicting not-null constraint names "foo" and "bar"
2024-11-25 19:08:11.087 CET [562504][client backend] [pg_regress/constraints][46/478:534092] STATEMENT: create table notnull_tbl_fail (a serial, constraint foo not null a, constraint bar not null a);
2024-11-25 19:08:11.087 CET [562511][client backend] [pg_regress/updatable_views][7/1202:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.087 CET [562511][client backend] [pg_regress/updatable_views][7/1202:0] STATEMENT: SELECT * FROM rw_view2;
2024-11-25 19:08:11.087 CET [562511][client backend] [pg_regress/updatable_views][7/1203:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.087 CET [562511][client backend] [pg_regress/updatable_views][7/1203:0] STATEMENT: UPDATE rw_view2 SET bbb=bbb;
2024-11-25 19:08:11.087 CET [562511][client backend] [pg_regress/updatable_views][7/1204:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.087 CET [562511][client backend] [pg_regress/updatable_views][7/1204:0] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (1)) AS v(a) ON t.aaa = v.a
WHEN MATCHED THEN UPDATE SET bbb = bbb;
2024-11-25 19:08:11.088 CET [562504][client backend] [pg_regress/constraints][46/479:534102] ERROR: conflicting NO INHERIT declaration for not-null constraint on column "a"
2024-11-25 19:08:11.088 CET [562504][client backend] [pg_regress/constraints][46/479:534102] STATEMENT: create table notnull_tbl_fail (a serial, constraint foo not null a no inherit);
2024-11-25 19:08:11.089 CET [562504][client backend] [pg_regress/constraints][46/480:0] ERROR: conflicting NO INHERIT declarations for not-null constraints on column "a"
2024-11-25 19:08:11.089 CET [562504][client backend] [pg_regress/constraints][46/480:0] STATEMENT: create table notnull_tbl_fail (a serial not null no inherit);
2024-11-25 19:08:11.089 CET [562504][client backend] [pg_regress/constraints][46/481:534109] ERROR: conflicting not-null constraint names "foo" and "foo2"
2024-11-25 19:08:11.089 CET [562504][client backend] [pg_regress/constraints][46/481:534109] STATEMENT: create table notnull_tbl_fail (like notnull_tbl1, constraint foo2 not null a);
2024-11-25 19:08:11.089 CET [562511][client backend] [pg_regress/updatable_views][7/1210:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.089 CET [562511][client backend] [pg_regress/updatable_views][7/1210:0] STATEMENT: UPDATE rw_view2 SET aaa=aaa;
2024-11-25 19:08:11.089 CET [562504][client backend] [pg_regress/constraints][46/482:0] ERROR: conflicting NO INHERIT declarations for not-null constraints on column "a"
2024-11-25 19:08:11.089 CET [562504][client backend] [pg_regress/constraints][46/482:0] STATEMENT: create table notnull_tbl_fail (a int primary key constraint foo not null no inherit);
2024-11-25 19:08:11.090 CET [562511][client backend] [pg_regress/updatable_views][7/1211:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.090 CET [562511][client backend] [pg_regress/updatable_views][7/1211:0] STATEMENT: UPDATE rw_view2 SET bbb=bbb;
2024-11-25 19:08:11.090 CET [562504][client backend] [pg_regress/constraints][46/483:0] ERROR: conflicting NO INHERIT declarations for not-null constraints on column "a"
2024-11-25 19:08:11.090 CET [562504][client backend] [pg_regress/constraints][46/483:0] STATEMENT: create table notnull_tbl_fail (a int not null no inherit primary key);
2024-11-25 19:08:11.090 CET [562504][client backend] [pg_regress/constraints][46/484:534113] ERROR: conflicting NO INHERIT declaration for not-null constraint on column "a"
2024-11-25 19:08:11.090 CET [562504][client backend] [pg_regress/constraints][46/484:534113] STATEMENT: create table notnull_tbl_fail (a int primary key, not null a no inherit);
2024-11-25 19:08:11.090 CET [562511][client backend] [pg_regress/updatable_views][7/1213:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.090 CET [562511][client backend] [pg_regress/updatable_views][7/1213:0] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (1)) AS v(a) ON t.aaa = v.a
WHEN MATCHED THEN UPDATE SET aaa = aaa;
2024-11-25 19:08:11.090 CET [562504][client backend] [pg_regress/constraints][46/485:0] ERROR: conflicting NO INHERIT declaration for not-null constraint on column "a"
2024-11-25 19:08:11.090 CET [562504][client backend] [pg_regress/constraints][46/485:0] STATEMENT: create table notnull_tbl_fail (a int, primary key(a), not null a no inherit);
2024-11-25 19:08:11.090 CET [562511][client backend] [pg_regress/updatable_views][7/1214:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.090 CET [562511][client backend] [pg_regress/updatable_views][7/1214:0] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (1)) AS v(a) ON t.aaa = v.a
WHEN MATCHED THEN UPDATE SET bbb = bbb;
2024-11-25 19:08:11.091 CET [562504][client backend] [pg_regress/constraints][46/486:534116] ERROR: conflicting NO INHERIT declaration for not-null constraint on column "a"
2024-11-25 19:08:11.091 CET [562504][client backend] [pg_regress/constraints][46/486:534116] STATEMENT: create table notnull_tbl_fail (a int generated by default as identity, constraint foo not null a no inherit);
2024-11-25 19:08:11.091 CET [562511][client backend] [pg_regress/updatable_views][7/1217:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.091 CET [562511][client backend] [pg_regress/updatable_views][7/1217:0] STATEMENT: SELECT * FROM rw_view2;
2024-11-25 19:08:11.091 CET [562511][client backend] [pg_regress/updatable_views][7/1218:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.091 CET [562511][client backend] [pg_regress/updatable_views][7/1218:0] STATEMENT: UPDATE rw_view2 SET aaa=aaa;
2024-11-25 19:08:11.092 CET [562511][client backend] [pg_regress/updatable_views][7/1219:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.092 CET [562511][client backend] [pg_regress/updatable_views][7/1219:0] STATEMENT: UPDATE rw_view2 SET bbb=bbb;
2024-11-25 19:08:11.092 CET [562504][client backend] [pg_regress/constraints][46/487:0] ERROR: conflicting NO INHERIT declarations for not-null constraints on column "a"
2024-11-25 19:08:11.092 CET [562504][client backend] [pg_regress/constraints][46/487:0] STATEMENT: create table notnull_tbl_fail (a int generated by default as identity not null no inherit);
2024-11-25 19:08:11.092 CET [562511][client backend] [pg_regress/updatable_views][7/1220:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.092 CET [562511][client backend] [pg_regress/updatable_views][7/1220:0] STATEMENT: UPDATE rw_view2 SET ccc=ccc;
2024-11-25 19:08:11.092 CET [562511][client backend] [pg_regress/updatable_views][7/1221:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.092 CET [562511][client backend] [pg_regress/updatable_views][7/1221:0] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (1)) AS v(a) ON t.aaa = v.a
WHEN MATCHED THEN UPDATE SET aaa = aaa;
2024-11-25 19:08:11.092 CET [562511][client backend] [pg_regress/updatable_views][7/1222:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.092 CET [562511][client backend] [pg_regress/updatable_views][7/1222:0] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (1)) AS v(a) ON t.aaa = v.a
WHEN MATCHED THEN UPDATE SET bbb = bbb;
2024-11-25 19:08:11.092 CET [562540][client backend] [isolation/referential-integrity/s1][92/552:534121] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.092 CET [562540][client backend] [isolation/referential-integrity/s1][92/552:534121] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.092 CET [562540][client backend] [isolation/referential-integrity/s1][92/552:534121] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.092 CET [562540][client backend] [isolation/referential-integrity/s1][92/552:534121] STATEMENT: COMMIT;
2024-11-25 19:08:11.092 CET [562511][client backend] [pg_regress/updatable_views][7/1223:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.092 CET [562511][client backend] [pg_regress/updatable_views][7/1223:0] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (1)) AS v(a) ON t.aaa = v.a
WHEN MATCHED THEN UPDATE SET ccc = ccc;
2024-11-25 19:08:11.094 CET [562511][client backend] [pg_regress/updatable_views][7/1229:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.094 CET [562511][client backend] [pg_regress/updatable_views][7/1229:0] STATEMENT: UPDATE rw_view2 SET aaa=aaa;
2024-11-25 19:08:11.094 CET [562511][client backend] [pg_regress/updatable_views][7/1230:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.094 CET [562511][client backend] [pg_regress/updatable_views][7/1230:0] STATEMENT: UPDATE rw_view2 SET bbb=bbb;
2024-11-25 19:08:11.095 CET [562511][client backend] [pg_regress/updatable_views][7/1232:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.095 CET [562511][client backend] [pg_regress/updatable_views][7/1232:0] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (1)) AS v(a) ON t.aaa = v.a
WHEN MATCHED THEN UPDATE SET aaa = aaa;
2024-11-25 19:08:11.095 CET [562565][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.026 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:11.095 CET [562511][client backend] [pg_regress/updatable_views][7/1233:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.095 CET [562511][client backend] [pg_regress/updatable_views][7/1233:0] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (1)) AS v(a) ON t.aaa = v.a
WHEN MATCHED THEN UPDATE SET bbb = bbb;
2024-11-25 19:08:11.096 CET [562566][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.097 CET [562511][client backend] [pg_regress/updatable_views][7/1238:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.097 CET [562511][client backend] [pg_regress/updatable_views][7/1238:0] STATEMENT: SELECT * FROM rw_view1;
2024-11-25 19:08:11.097 CET [562512][client backend] [pg_regress/vacuum][62/335:0] WARNING: VACUUM ONLY of partitioned table "vacparted" has no effect
2024-11-25 19:08:11.097 CET [562511][client backend] [pg_regress/updatable_views][7/1239:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.097 CET [562511][client backend] [pg_regress/updatable_views][7/1239:0] STATEMENT: UPDATE rw_view1 SET aa=aa;
2024-11-25 19:08:11.097 CET [562566][client backend] [[unknown]][31/478:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.097 CET [562566][client backend] [[unknown]][31/478:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:11.097 CET [562511][client backend] [pg_regress/updatable_views][7/1240:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.097 CET [562511][client backend] [pg_regress/updatable_views][7/1240:0] STATEMENT: MERGE INTO rw_view1 t USING (VALUES (1)) AS v(a) ON t.aa = v.a
WHEN MATCHED THEN UPDATE SET aa = aa;
2024-11-25 19:08:11.098 CET [562511][client backend] [pg_regress/updatable_views][7/1243:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.098 CET [562511][client backend] [pg_regress/updatable_views][7/1243:0] STATEMENT: UPDATE rw_view2 SET aaa=aaa;
2024-11-25 19:08:11.098 CET [562511][client backend] [pg_regress/updatable_views][7/1244:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.098 CET [562511][client backend] [pg_regress/updatable_views][7/1244:0] STATEMENT: UPDATE rw_view2 SET bbb=bbb;
2024-11-25 19:08:11.098 CET [562511][client backend] [pg_regress/updatable_views][7/1246:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.098 CET [562511][client backend] [pg_regress/updatable_views][7/1246:0] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (1)) AS v(a) ON t.aaa = v.a
WHEN MATCHED THEN UPDATE SET aaa = aaa;
2024-11-25 19:08:11.098 CET [562511][client backend] [pg_regress/updatable_views][7/1247:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.098 CET [562511][client backend] [pg_regress/updatable_views][7/1247:0] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (1)) AS v(a) ON t.aaa = v.a
WHEN MATCHED THEN UPDATE SET bbb = bbb;
2024-11-25 19:08:11.100 CET [562511][client backend] [pg_regress/updatable_views][7/1251:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.100 CET [562511][client backend] [pg_regress/updatable_views][7/1251:0] STATEMENT: UPDATE rw_view2 SET aaa=aaa;
2024-11-25 19:08:11.100 CET [562541][client backend] [isolation/referential-integrity/s2][56/55:534165] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.100 CET [562541][client backend] [isolation/referential-integrity/s2][56/55:534165] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.100 CET [562541][client backend] [isolation/referential-integrity/s2][56/55:534165] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.100 CET [562541][client backend] [isolation/referential-integrity/s2][56/55:534165] STATEMENT: COMMIT;
2024-11-25 19:08:11.100 CET [562511][client backend] [pg_regress/updatable_views][7/1252:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.100 CET [562511][client backend] [pg_regress/updatable_views][7/1252:0] STATEMENT: UPDATE rw_view2 SET bbb=bbb;
2024-11-25 19:08:11.100 CET [562511][client backend] [pg_regress/updatable_views][7/1254:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.100 CET [562511][client backend] [pg_regress/updatable_views][7/1254:0] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (1)) AS v(a) ON t.aaa = v.a
WHEN MATCHED THEN UPDATE SET aaa = aaa;
2024-11-25 19:08:11.101 CET [562511][client backend] [pg_regress/updatable_views][7/1255:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.101 CET [562511][client backend] [pg_regress/updatable_views][7/1255:0] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (1)) AS v(a) ON t.aaa = v.a
WHEN MATCHED THEN UPDATE SET bbb = bbb;
2024-11-25 19:08:11.101 CET [562564][autovacuum worker] LOG: automatic analyze of table "isolation_regression_delay_execution.pg_catalog.pg_attribute"
avg read rate: 0.000 MB/s, avg write rate: 5.859 MB/s
buffer usage: 539 hits, 0 reads, 21 dirtied
WAL usage: 100 records, 18 full page images, 116370 bytes
system usage: CPU: user: 0.02 s, system: 0.00 s, elapsed: 0.02 s
2024-11-25 19:08:11.102 CET [562511][client backend] [pg_regress/updatable_views][7/1260:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.102 CET [562511][client backend] [pg_regress/updatable_views][7/1260:0] STATEMENT: SELECT * FROM rw_view2;
2024-11-25 19:08:11.102 CET [562511][client backend] [pg_regress/updatable_views][7/1261:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.102 CET [562511][client backend] [pg_regress/updatable_views][7/1261:0] STATEMENT: UPDATE rw_view2 SET aaa=aaa;
2024-11-25 19:08:11.102 CET [562511][client backend] [pg_regress/updatable_views][7/1262:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.102 CET [562511][client backend] [pg_regress/updatable_views][7/1262:0] STATEMENT: UPDATE rw_view2 SET bbb=bbb;
2024-11-25 19:08:11.102 CET [562511][client backend] [pg_regress/updatable_views][7/1263:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.102 CET [562511][client backend] [pg_regress/updatable_views][7/1263:0] STATEMENT: UPDATE rw_view2 SET ccc=ccc;
2024-11-25 19:08:11.102 CET [562511][client backend] [pg_regress/updatable_views][7/1264:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.102 CET [562511][client backend] [pg_regress/updatable_views][7/1264:0] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (1)) AS v(a) ON t.aaa = v.a
WHEN MATCHED THEN UPDATE SET aaa = aaa;
2024-11-25 19:08:11.103 CET [562511][client backend] [pg_regress/updatable_views][7/1265:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.103 CET [562511][client backend] [pg_regress/updatable_views][7/1265:0] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (1)) AS v(a) ON t.aaa = v.a
WHEN MATCHED THEN UPDATE SET bbb = bbb;
2024-11-25 19:08:11.103 CET [562511][client backend] [pg_regress/updatable_views][7/1266:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.103 CET [562511][client backend] [pg_regress/updatable_views][7/1266:0] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (1)) AS v(a) ON t.aaa = v.a
WHEN MATCHED THEN UPDATE SET ccc = ccc;
2024-11-25 19:08:11.104 CET [562511][client backend] [pg_regress/updatable_views][7/1269:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.104 CET [562511][client backend] [pg_regress/updatable_views][7/1269:0] STATEMENT: UPDATE rw_view2 SET aaa=aaa;
2024-11-25 19:08:11.104 CET [562511][client backend] [pg_regress/updatable_views][7/1270:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.104 CET [562511][client backend] [pg_regress/updatable_views][7/1270:0] STATEMENT: UPDATE rw_view2 SET bbb=bbb;
2024-11-25 19:08:11.104 CET [562511][client backend] [pg_regress/updatable_views][7/1272:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.104 CET [562511][client backend] [pg_regress/updatable_views][7/1272:0] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (1)) AS v(a) ON t.aaa = v.a
WHEN MATCHED THEN UPDATE SET aaa = aaa;
2024-11-25 19:08:11.104 CET [562511][client backend] [pg_regress/updatable_views][7/1273:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.104 CET [562511][client backend] [pg_regress/updatable_views][7/1273:0] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (1)) AS v(a) ON t.aaa = v.a
WHEN MATCHED THEN UPDATE SET bbb = bbb;
2024-11-25 19:08:11.106 CET [562502][client backend] [pg_regress/triggers][14/663:0] ERROR: U9999
2024-11-25 19:08:11.106 CET [562502][client backend] [pg_regress/triggers][14/663:0] CONTEXT: PL/pgSQL function depth_c_tf() line 5 at RAISE
SQL statement "insert into depth_c values (1)"
PL/pgSQL function depth_b_tf() line 12 at EXECUTE
SQL statement "insert into depth_b values (new.id)"
PL/pgSQL function depth_a_tf() line 4 at SQL statement
2024-11-25 19:08:11.106 CET [562502][client backend] [pg_regress/triggers][14/663:0] STATEMENT: insert into depth_a values (1);
2024-11-25 19:08:11.107 CET [562540][client backend] [isolation/referential-integrity/s1][92/554:534203] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.107 CET [562540][client backend] [isolation/referential-integrity/s1][92/554:534203] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.107 CET [562540][client backend] [isolation/referential-integrity/s1][92/554:534203] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.107 CET [562540][client backend] [isolation/referential-integrity/s1][92/554:534203] STATEMENT: COMMIT;
2024-11-25 19:08:11.109 CET [562566][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.012 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:11.109 CET [562567][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.110 CET [562567][client backend] [[unknown]][37/225:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.110 CET [562567][client backend] [[unknown]][37/225:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:11.110 CET [562564][autovacuum worker] LOG: automatic analyze of table "isolation_regression_delay_execution.pg_catalog.pg_class"
avg read rate: 0.000 MB/s, avg write rate: 4.340 MB/s
buffer usage: 562 hits, 0 reads, 5 dirtied
WAL usage: 101 records, 4 full page images, 48815 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:11.110 CET [562564][autovacuum worker] LOG: automatic analyze of table "isolation_regression_delay_execution.pg_catalog.pg_inherits"
avg read rate: 0.000 MB/s, avg write rate: 15.625 MB/s
buffer usage: 63 hits, 0 reads, 2 dirtied
WAL usage: 4 records, 2 full page images, 9928 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:11.115 CET [562540][client backend] [isolation/referential-integrity/s1][92/555:534235] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.115 CET [562540][client backend] [isolation/referential-integrity/s1][92/555:534235] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:11.115 CET [562540][client backend] [isolation/referential-integrity/s1][92/555:534235] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.115 CET [562540][client backend] [isolation/referential-integrity/s1][92/555:534235] STATEMENT: INSERT INTO b VALUES (1);
2024-11-25 19:08:11.115 CET [562560][client backend] [pg_regress/spgist_name_ops][75/58:534239] ERROR: index row size 20032 exceeds maximum 8156 for index "t_f1_f2_f3_idx"
2024-11-25 19:08:11.115 CET [562560][client backend] [pg_regress/spgist_name_ops][75/58:534239] HINT: Values larger than a buffer page cannot be indexed.
2024-11-25 19:08:11.115 CET [562560][client backend] [pg_regress/spgist_name_ops][75/58:534239] STATEMENT: insert into t values(repeat('xyzzy', 12), 42, repeat('xyzzy', 4000));
2024-11-25 19:08:11.116 CET [562564][autovacuum worker] LOG: automatic analyze of table "isolation_regression_delay_execution.pg_catalog.pg_depend"
avg read rate: 0.000 MB/s, avg write rate: 9.115 MB/s
buffer usage: 156 hits, 0 reads, 7 dirtied
WAL usage: 28 records, 6 full page images, 47001 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:11.116 CET [562564][autovacuum worker] LOG: automatic vacuum of table "isolation_regression_delay_execution.pg_catalog.pg_database": index scans: 1
pages: 0 removed, 2 remain, 2 scanned (100.00% of total)
tuples: 2 removed, 73 remain, 3 are dead but not yet removable
removable cutoff: 531530, which was 2714 XIDs old when operation ended
new relfrozenxid: 531419, which is 530682 XIDs ahead of previous value
new relminmxid: 2904, which is 2903 MXIDs ahead of previous value
frozen: 0 pages from table (0.00% of total) had 0 tuples frozen
index scan needed: 1 pages from table (50.00% of total) had 2 dead item identifiers removed
index "pg_database_datname_index": pages: 2 in total, 0 newly deleted, 0 currently deleted, 0 reusable
index "pg_database_oid_index": pages: 2 in total, 0 newly deleted, 0 currently deleted, 0 reusable
avg read rate: 0.000 MB/s, avg write rate: 53.510 MB/s
buffer usage: 34 hits, 0 reads, 3 dirtied
WAL usage: 10 records, 3 full page images, 25766 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:11.117 CET [562564][autovacuum worker] LOG: automatic analyze of table "isolation_regression_delay_execution.pg_catalog.pg_database"
avg read rate: 0.000 MB/s, avg write rate: 15.625 MB/s
buffer usage: 226 hits, 0 reads, 4 dirtied
WAL usage: 54 records, 4 full page images, 40011 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:11.118 CET [562564][autovacuum worker] LOG: automatic vacuum of table "isolation_regression_delay_execution.pg_catalog.pg_db_role_setting": index scans: 1
pages: 0 removed, 6 remain, 6 scanned (100.00% of total)
tuples: 103 removed, 90 remain, 23 are dead but not yet removable
removable cutoff: 531530, which was 2721 XIDs old when operation ended
new relfrozenxid: 525686, which is 524952 XIDs ahead of previous value
new relminmxid: 2904, which is 2903 MXIDs ahead of previous value
frozen: 1 pages from table (16.67% of total) had 8 tuples frozen
index scan needed: 6 pages from table (100.00% of total) had 18 dead item identifiers removed
index "pg_db_role_setting_databaseid_rol_index": pages: 2 in total, 0 newly deleted, 0 currently deleted, 0 reusable
avg read rate: 0.000 MB/s, avg write rate: 153.186 MB/s
buffer usage: 45 hits, 0 reads, 6 dirtied
WAL usage: 19 records, 6 full page images, 38912 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:11.118 CET [562512][client backend] [pg_regress/vacuum][62/362:0] ERROR: relation "does_not_exist" does not exist
2024-11-25 19:08:11.118 CET [562512][client backend] [pg_regress/vacuum][62/362:0] STATEMENT: ANALYZE (VERBOSE) does_not_exist;
2024-11-25 19:08:11.119 CET [562512][client backend] [pg_regress/vacuum][62/363:0] ERROR: syntax error at or near "arg" at character 22
2024-11-25 19:08:11.119 CET [562512][client backend] [pg_regress/vacuum][62/363:0] STATEMENT: ANALYZE (nonexistent-arg) does_not_exist;
2024-11-25 19:08:11.119 CET [562512][client backend] [pg_regress/vacuum][62/364:0] ERROR: unrecognized ANALYZE option "nonexistentarg" at character 10
2024-11-25 19:08:11.119 CET [562512][client backend] [pg_regress/vacuum][62/364:0] STATEMENT: ANALYZE (nonexistentarg) does_not_exit;
2024-11-25 19:08:11.120 CET [562512][client backend] [pg_regress/vacuum][62/366:0] ERROR: relation "does_not_exist" does not exist
2024-11-25 19:08:11.120 CET [562512][client backend] [pg_regress/vacuum][62/366:0] STATEMENT: ANALYZE (SKIP_LOCKED, VERBOSE) does_not_exist;
2024-11-25 19:08:11.120 CET [562512][client backend] [pg_regress/vacuum][62/367:0] ERROR: relation "does_not_exist" does not exist
2024-11-25 19:08:11.120 CET [562512][client backend] [pg_regress/vacuum][62/367:0] STATEMENT: ANALYZE (VERBOSE, SKIP_LOCKED) does_not_exist;
2024-11-25 19:08:11.120 CET [562438][client backend] [pg_regress/gin_incomplete_splits][:0] LOG: disconnection: session time: 0:00:00.570 user=nkey database=regression_gin host=[local]
2024-11-25 19:08:11.122 CET [562564][autovacuum worker] LOG: automatic analyze of table "isolation_regression_delay_execution.pg_catalog.pg_db_role_setting"
avg read rate: 0.000 MB/s, avg write rate: 0.000 MB/s
buffer usage: 52 hits, 0 reads, 0 dirtied
WAL usage: 7 records, 0 full page images, 2114 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:11.122 CET [562564][autovacuum worker] LOG: automatic analyze of table "isolation_regression_delay_execution.pg_catalog.pg_shdepend"
avg read rate: 7.812 MB/s, avg write rate: 7.812 MB/s
buffer usage: 122 hits, 1 reads, 1 dirtied
WAL usage: 17 records, 0 full page images, 2746 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:11.123 CET [562541][client backend] [isolation/referential-integrity/s2][56/58:534268] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.123 CET [562541][client backend] [isolation/referential-integrity/s2][56/58:534268] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:11.123 CET [562541][client backend] [isolation/referential-integrity/s2][56/58:534268] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.123 CET [562541][client backend] [isolation/referential-integrity/s2][56/58:534268] STATEMENT: DELETE FROM a WHERE i = 1;
2024-11-25 19:08:11.130 CET [562567][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.020 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:11.130 CET [562570][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.131 CET [562570][client backend] [[unknown]][41/233:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.131 CET [562570][client backend] [[unknown]][41/233:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:11.132 CET [562504][client backend] [pg_regress/constraints][46/538:0] ERROR: not-null constraints on partitioned tables cannot be NO INHERIT
2024-11-25 19:08:11.132 CET [562504][client backend] [pg_regress/constraints][46/538:0] STATEMENT: CREATE TABLE ATACC1 (a int NOT NULL NO INHERIT) PARTITION BY LIST (a);
2024-11-25 19:08:11.132 CET [562541][client backend] [isolation/referential-integrity/s2][56/59:534289] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.132 CET [562541][client backend] [isolation/referential-integrity/s2][56/59:534289] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.132 CET [562541][client backend] [isolation/referential-integrity/s2][56/59:534289] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.132 CET [562541][client backend] [isolation/referential-integrity/s2][56/59:534289] STATEMENT: COMMIT;
2024-11-25 19:08:11.132 CET [562504][client backend] [pg_regress/constraints][46/539:0] ERROR: not-null constraints on partitioned tables cannot be NO INHERIT
2024-11-25 19:08:11.132 CET [562504][client backend] [pg_regress/constraints][46/539:0] STATEMENT: CREATE TABLE ATACC1 (a int, NOT NULL a NO INHERIT) PARTITION BY LIST (a);
2024-11-25 19:08:11.136 CET [562504][client backend] [pg_regress/constraints][46/544:534307] ERROR: cannot change NO INHERIT status of NOT NULL constraint "a_is_not_null" on relation "atacc2"
2024-11-25 19:08:11.136 CET [562504][client backend] [pg_regress/constraints][46/544:534307] STATEMENT: ALTER TABLE ATACC1 ADD CONSTRAINT ditto NOT NULL a;
2024-11-25 19:08:11.139 CET [562560][client backend] [pg_regress/spgist_name_ops][75/67:534316] ERROR: index row size 20032 exceeds maximum 8156 for index "t_f1_f2_f3_idx"
2024-11-25 19:08:11.139 CET [562560][client backend] [pg_regress/spgist_name_ops][75/67:534316] HINT: Values larger than a buffer page cannot be indexed.
2024-11-25 19:08:11.139 CET [562560][client backend] [pg_regress/spgist_name_ops][75/67:534316] STATEMENT: insert into t values(repeat('xyzzy', 12), 42, repeat('xyzzy', 4000));
2024-11-25 19:08:11.139 CET [562560][client backend] [pg_regress/spgist_name_ops][:0] LOG: disconnection: session time: 0:00:00.099 user=nkey database=regression_spgist_name_ops host=[local]
2024-11-25 19:08:11.141 CET [562502][client backend] [pg_regress/triggers][14/685:534321] ERROR: tuple to be updated was already modified by an operation triggered by the current command
2024-11-25 19:08:11.141 CET [562502][client backend] [pg_regress/triggers][14/685:534321] HINT: Consider using an AFTER trigger instead of a BEFORE trigger to propagate changes to other rows.
2024-11-25 19:08:11.141 CET [562502][client backend] [pg_regress/triggers][14/685:534321] STATEMENT: update parent set val1 = 'b' where aid = 1;
2024-11-25 19:08:11.142 CET [562502][client backend] [pg_regress/triggers][14/686:534325] ERROR: tuple to be updated or deleted was already modified by an operation triggered by the current command
2024-11-25 19:08:11.142 CET [562502][client backend] [pg_regress/triggers][14/686:534325] HINT: Consider using an AFTER trigger instead of a BEFORE trigger to propagate changes to other rows.
2024-11-25 19:08:11.142 CET [562502][client backend] [pg_regress/triggers][14/686:534325] STATEMENT: merge into parent p using (values (1)) as v(id) on p.aid = v.id
when matched then update set val1 = 'b';
2024-11-25 19:08:11.142 CET [562540][client backend] [isolation/referential-integrity/s1][92/558:534324] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.142 CET [562540][client backend] [isolation/referential-integrity/s1][92/558:534324] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.142 CET [562540][client backend] [isolation/referential-integrity/s1][92/558:534324] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.142 CET [562540][client backend] [isolation/referential-integrity/s1][92/558:534324] STATEMENT: COMMIT;
2024-11-25 19:08:11.145 CET [562502][client backend] [pg_regress/triggers][14/689:534331] ERROR: tuple to be deleted was already modified by an operation triggered by the current command
2024-11-25 19:08:11.145 CET [562502][client backend] [pg_regress/triggers][14/689:534331] HINT: Consider using an AFTER trigger instead of a BEFORE trigger to propagate changes to other rows.
2024-11-25 19:08:11.145 CET [562502][client backend] [pg_regress/triggers][14/689:534331] STATEMENT: delete from parent where aid = 1;
2024-11-25 19:08:11.145 CET [562502][client backend] [pg_regress/triggers][14/690:534334] ERROR: tuple to be updated or deleted was already modified by an operation triggered by the current command
2024-11-25 19:08:11.145 CET [562502][client backend] [pg_regress/triggers][14/690:534334] HINT: Consider using an AFTER trigger instead of a BEFORE trigger to propagate changes to other rows.
2024-11-25 19:08:11.145 CET [562502][client backend] [pg_regress/triggers][14/690:534334] STATEMENT: merge into parent p using (values (1)) as v(id) on p.aid = v.id
when matched then delete;
2024-11-25 19:08:11.145 CET [562504][client backend] [pg_regress/constraints][46/557:534335] ERROR: constraint "blah" for relation "notnull_tbl2" already exists
2024-11-25 19:08:11.145 CET [562504][client backend] [pg_regress/constraints][46/557:534335] STATEMENT: CREATE TABLE notnull_tbl2 (a INTEGER CONSTRAINT blah NOT NULL, b INTEGER CONSTRAINT blah NOT NULL);
2024-11-25 19:08:11.153 CET [562541][client backend] [isolation/referential-integrity/s2][56/61:534351] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.153 CET [562541][client backend] [isolation/referential-integrity/s2][56/61:534351] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.153 CET [562541][client backend] [isolation/referential-integrity/s2][56/61:534351] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.153 CET [562541][client backend] [isolation/referential-integrity/s2][56/61:534351] STATEMENT: COMMIT;
2024-11-25 19:08:11.154 CET [562511][client backend] [pg_regress/updatable_views][7/1322:0] ERROR: cannot insert into column "ctid" of view "rw_view1"
2024-11-25 19:08:11.154 CET [562511][client backend] [pg_regress/updatable_views][7/1322:0] DETAIL: View columns that refer to system columns are not updatable.
2024-11-25 19:08:11.154 CET [562511][client backend] [pg_regress/updatable_views][7/1322:0] STATEMENT: INSERT INTO rw_view1 VALUES (null, null, 1.1, null);
2024-11-25 19:08:11.154 CET [562511][client backend] [pg_regress/updatable_views][7/1323:0] ERROR: cannot insert into column "s" of view "rw_view1"
2024-11-25 19:08:11.154 CET [562511][client backend] [pg_regress/updatable_views][7/1323:0] DETAIL: View columns that are not columns of their base relation are not updatable.
2024-11-25 19:08:11.154 CET [562511][client backend] [pg_regress/updatable_views][7/1323:0] STATEMENT: INSERT INTO rw_view1 (s, c, a) VALUES (null, null, 1.1);
2024-11-25 19:08:11.154 CET [562511][client backend] [pg_regress/updatable_views][7/1324:0] ERROR: cannot insert into column "s" of view "rw_view1"
2024-11-25 19:08:11.154 CET [562511][client backend] [pg_regress/updatable_views][7/1324:0] DETAIL: View columns that are not columns of their base relation are not updatable.
2024-11-25 19:08:11.154 CET [562511][client backend] [pg_regress/updatable_views][7/1324:0] STATEMENT: INSERT INTO rw_view1 (s, c, a) VALUES (default, default, 1.1);
2024-11-25 19:08:11.154 CET [562504][client backend] [pg_regress/constraints][46/559:534357] ERROR: column "a" is in a primary key
2024-11-25 19:08:11.154 CET [562504][client backend] [pg_regress/constraints][46/559:534357] STATEMENT: ALTER TABLE notnull_tbl2 ALTER a DROP NOT NULL;
2024-11-25 19:08:11.155 CET [562511][client backend] [pg_regress/updatable_views][7/1326:0] ERROR: cannot update column "s" of view "rw_view1"
2024-11-25 19:08:11.155 CET [562511][client backend] [pg_regress/updatable_views][7/1326:0] DETAIL: View columns that are not columns of their base relation are not updatable.
2024-11-25 19:08:11.155 CET [562511][client backend] [pg_regress/updatable_views][7/1326:0] STATEMENT: UPDATE rw_view1 SET s = s WHERE a = 1.1;
2024-11-25 19:08:11.158 CET [562511][client backend] [pg_regress/updatable_views][7/1330:0] ERROR: cannot insert into column "t" of view "rw_view2"
2024-11-25 19:08:11.158 CET [562511][client backend] [pg_regress/updatable_views][7/1330:0] DETAIL: View columns that are not columns of their base relation are not updatable.
2024-11-25 19:08:11.158 CET [562511][client backend] [pg_regress/updatable_views][7/1330:0] STATEMENT: INSERT INTO rw_view2 VALUES (null, null, null, 1.1, null);
2024-11-25 19:08:11.158 CET [562511][client backend] [pg_regress/updatable_views][7/1331:0] ERROR: cannot insert into column "s" of view "rw_view1"
2024-11-25 19:08:11.158 CET [562511][client backend] [pg_regress/updatable_views][7/1331:0] DETAIL: View columns that are not columns of their base relation are not updatable.
2024-11-25 19:08:11.158 CET [562511][client backend] [pg_regress/updatable_views][7/1331:0] STATEMENT: INSERT INTO rw_view2(s, c, base_a) VALUES (null, null, 1.1);
2024-11-25 19:08:11.159 CET [562511][client backend] [pg_regress/updatable_views][7/1333:0] ERROR: cannot update column "s" of view "rw_view1"
2024-11-25 19:08:11.159 CET [562511][client backend] [pg_regress/updatable_views][7/1333:0] DETAIL: View columns that are not columns of their base relation are not updatable.
2024-11-25 19:08:11.159 CET [562511][client backend] [pg_regress/updatable_views][7/1333:0] STATEMENT: UPDATE rw_view2 SET s = s WHERE base_a = 1.1;
2024-11-25 19:08:11.159 CET [562511][client backend] [pg_regress/updatable_views][7/1334:0] ERROR: cannot update column "t" of view "rw_view2"
2024-11-25 19:08:11.159 CET [562511][client backend] [pg_regress/updatable_views][7/1334:0] DETAIL: View columns that are not columns of their base relation are not updatable.
2024-11-25 19:08:11.159 CET [562511][client backend] [pg_regress/updatable_views][7/1334:0] STATEMENT: UPDATE rw_view2 SET t = t WHERE base_a = 1.1;
2024-11-25 19:08:11.160 CET [562512][client backend] [pg_regress/vacuum][62/396:0] ERROR: PROCESS_TOAST required with VACUUM FULL
2024-11-25 19:08:11.160 CET [562512][client backend] [pg_regress/vacuum][62/396:0] STATEMENT: VACUUM (PROCESS_TOAST FALSE, FULL) vac_option_tab;
2024-11-25 19:08:11.161 CET [562511][client backend] [pg_regress/updatable_views][7/1338:0] ERROR: cannot insert into column "t" of view "rw_view3"
2024-11-25 19:08:11.161 CET [562511][client backend] [pg_regress/updatable_views][7/1338:0] DETAIL: View columns that are not columns of their base relation are not updatable.
2024-11-25 19:08:11.161 CET [562511][client backend] [pg_regress/updatable_views][7/1338:0] STATEMENT: INSERT INTO rw_view3 VALUES (null, null, null, null);
2024-11-25 19:08:11.161 CET [562511][client backend] [pg_regress/updatable_views][7/1339:0] ERROR: cannot insert into column "s" of view "rw_view1"
2024-11-25 19:08:11.161 CET [562511][client backend] [pg_regress/updatable_views][7/1339:0] DETAIL: View columns that are not columns of their base relation are not updatable.
2024-11-25 19:08:11.161 CET [562511][client backend] [pg_regress/updatable_views][7/1339:0] STATEMENT: INSERT INTO rw_view3(s) VALUES (null);
2024-11-25 19:08:11.161 CET [562511][client backend] [pg_regress/updatable_views][7/1340:0] ERROR: cannot update column "s" of view "rw_view1"
2024-11-25 19:08:11.161 CET [562511][client backend] [pg_regress/updatable_views][7/1340:0] DETAIL: View columns that are not columns of their base relation are not updatable.
2024-11-25 19:08:11.161 CET [562511][client backend] [pg_regress/updatable_views][7/1340:0] STATEMENT: UPDATE rw_view3 SET s = s;
2024-11-25 19:08:11.162 CET [562540][client backend] [isolation/referential-integrity/s1][92/560:534377] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.162 CET [562540][client backend] [isolation/referential-integrity/s1][92/560:534377] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.162 CET [562540][client backend] [isolation/referential-integrity/s1][92/560:534377] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.162 CET [562540][client backend] [isolation/referential-integrity/s1][92/560:534377] STATEMENT: COMMIT;
2024-11-25 19:08:11.172 CET [562540][client backend] [isolation/referential-integrity/s1][92/561:534390] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.172 CET [562540][client backend] [isolation/referential-integrity/s1][92/561:534390] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:11.172 CET [562540][client backend] [isolation/referential-integrity/s1][92/561:534390] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.172 CET [562540][client backend] [isolation/referential-integrity/s1][92/561:534390] STATEMENT: INSERT INTO b VALUES (1);
2024-11-25 19:08:11.174 CET [562578][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.175 CET [562578][client backend] [[unknown]][19/223:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.175 CET [562578][client backend] [[unknown]][19/223:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:11.178 CET [562511][client backend] [pg_regress/updatable_views][7/1354:0] ERROR: cannot insert a non-DEFAULT value into column "idplus1"
2024-11-25 19:08:11.178 CET [562511][client backend] [pg_regress/updatable_views][7/1354:0] DETAIL: Column "idplus1" is a generated column.
2024-11-25 19:08:11.178 CET [562511][client backend] [pg_regress/updatable_views][7/1354:0] STATEMENT: INSERT INTO base_tbl (id, idplus1) VALUES (5, 6);
2024-11-25 19:08:11.178 CET [562511][client backend] [pg_regress/updatable_views][7/1355:0] ERROR: cannot insert a non-DEFAULT value into column "idplus1"
2024-11-25 19:08:11.178 CET [562511][client backend] [pg_regress/updatable_views][7/1355:0] DETAIL: Column "idplus1" is a generated column.
2024-11-25 19:08:11.178 CET [562511][client backend] [pg_regress/updatable_views][7/1355:0] STATEMENT: INSERT INTO rw_view1 (id, idplus1) VALUES (6, 7);
2024-11-25 19:08:11.179 CET [562512][client backend] [pg_regress/vacuum][62/424:0] ERROR: BUFFER_USAGE_LIMIT option must be 0 or between 128 kB and 16777216 kB
2024-11-25 19:08:11.179 CET [562512][client backend] [pg_regress/vacuum][62/424:0] STATEMENT: VACUUM (BUFFER_USAGE_LIMIT 16777220) vac_option_tab;
2024-11-25 19:08:11.179 CET [562512][client backend] [pg_regress/vacuum][62/425:0] ERROR: BUFFER_USAGE_LIMIT option must be 0 or between 128 kB and 16777216 kB
2024-11-25 19:08:11.179 CET [562512][client backend] [pg_regress/vacuum][62/425:0] STATEMENT: VACUUM (BUFFER_USAGE_LIMIT 120) vac_option_tab;
2024-11-25 19:08:11.179 CET [562512][client backend] [pg_regress/vacuum][62/426:0] ERROR: BUFFER_USAGE_LIMIT option must be 0 or between 128 kB and 16777216 kB
2024-11-25 19:08:11.179 CET [562512][client backend] [pg_regress/vacuum][62/426:0] HINT: Value exceeds integer range.
2024-11-25 19:08:11.179 CET [562512][client backend] [pg_regress/vacuum][62/426:0] STATEMENT: VACUUM (BUFFER_USAGE_LIMIT 10000000000) vac_option_tab;
2024-11-25 19:08:11.179 CET [562512][client backend] [pg_regress/vacuum][62/427:0] ERROR: BUFFER_USAGE_LIMIT cannot be specified for VACUUM FULL
2024-11-25 19:08:11.179 CET [562512][client backend] [pg_regress/vacuum][62/427:0] STATEMENT: VACUUM (BUFFER_USAGE_LIMIT '512 kB', FULL) vac_option_tab;
2024-11-25 19:08:11.181 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:11.182 CET [562541][client backend] [isolation/referential-integrity/s2][56/64:534412] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.182 CET [562541][client backend] [isolation/referential-integrity/s2][56/64:534412] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.182 CET [562541][client backend] [isolation/referential-integrity/s2][56/64:534412] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.182 CET [562541][client backend] [isolation/referential-integrity/s2][56/64:534412] STATEMENT: COMMIT;
2024-11-25 19:08:11.183 CET [562512][client backend] [pg_regress/vacuum][62/433:0] ERROR: ONLY_DATABASE_STATS cannot be specified with a list of tables
2024-11-25 19:08:11.183 CET [562512][client backend] [pg_regress/vacuum][62/433:0] STATEMENT: VACUUM (ONLY_DATABASE_STATS) vactst;
2024-11-25 19:08:11.185 CET [562502][client backend] [pg_regress/triggers][14/714:534431] ERROR: tuple to be updated was already modified by an operation triggered by the current command
2024-11-25 19:08:11.185 CET [562502][client backend] [pg_regress/triggers][14/714:534431] HINT: Consider using an AFTER trigger instead of a BEFORE trigger to propagate changes to other rows.
2024-11-25 19:08:11.185 CET [562502][client backend] [pg_regress/triggers][14/714:534431] STATEMENT: delete from self_ref_trigger;
2024-11-25 19:08:11.196 CET [562540][client backend] [isolation/referential-integrity/s1][92/563:534462] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.196 CET [562540][client backend] [isolation/referential-integrity/s1][92/563:534462] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.196 CET [562540][client backend] [isolation/referential-integrity/s1][92/563:534462] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.196 CET [562540][client backend] [isolation/referential-integrity/s1][92/563:534462] STATEMENT: COMMIT;
2024-11-25 19:08:11.198 CET [562512][client backend] [pg_regress/vacuum][62/446:0] WARNING: permission denied to vacuum "vacowned", skipping it
2024-11-25 19:08:11.198 CET [562512][client backend] [pg_regress/vacuum][62/448:0] WARNING: permission denied to analyze "vacowned", skipping it
2024-11-25 19:08:11.199 CET [562512][client backend] [pg_regress/vacuum][62/449:0] WARNING: permission denied to vacuum "vacowned", skipping it
2024-11-25 19:08:11.199 CET [562512][client backend] [pg_regress/vacuum][62/451:0] WARNING: permission denied to vacuum "pg_class", skipping it
2024-11-25 19:08:11.199 CET [562582][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.200 CET [562512][client backend] [pg_regress/vacuum][62/453:0] WARNING: permission denied to analyze "pg_class", skipping it
2024-11-25 19:08:11.200 CET [562512][client backend] [pg_regress/vacuum][62/454:0] WARNING: permission denied to vacuum "pg_class", skipping it
2024-11-25 19:08:11.200 CET [562582][client backend] [[unknown]][59/186:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.200 CET [562582][client backend] [[unknown]][59/186:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:11.200 CET [562512][client backend] [pg_regress/vacuum][62/456:0] WARNING: permission denied to vacuum "pg_authid", skipping it
2024-11-25 19:08:11.203 CET [562512][client backend] [pg_regress/vacuum][62/458:0] WARNING: permission denied to analyze "pg_authid", skipping it
2024-11-25 19:08:11.203 CET [562512][client backend] [pg_regress/vacuum][62/459:0] WARNING: permission denied to vacuum "pg_authid", skipping it
2024-11-25 19:08:11.203 CET [562512][client backend] [pg_regress/vacuum][62/461:0] WARNING: permission denied to vacuum "vacowned_parted", skipping it
2024-11-25 19:08:11.204 CET [562512][client backend] [pg_regress/vacuum][62/462:0] WARNING: permission denied to vacuum "vacowned_part1", skipping it
2024-11-25 19:08:11.204 CET [562512][client backend] [pg_regress/vacuum][62/463:0] WARNING: permission denied to vacuum "vacowned_part2", skipping it
2024-11-25 19:08:11.204 CET [562512][client backend] [pg_regress/vacuum][62/465:0] WARNING: permission denied to vacuum "vacowned_part1", skipping it
2024-11-25 19:08:11.204 CET [562512][client backend] [pg_regress/vacuum][62/467:0] WARNING: permission denied to vacuum "vacowned_part2", skipping it
2024-11-25 19:08:11.205 CET [562512][client backend] [pg_regress/vacuum][62/469:0] WARNING: permission denied to analyze "vacowned_parted", skipping it
2024-11-25 19:08:11.205 CET [562512][client backend] [pg_regress/vacuum][62/470:0] WARNING: permission denied to analyze "vacowned_part1", skipping it
2024-11-25 19:08:11.205 CET [562512][client backend] [pg_regress/vacuum][62/471:0] WARNING: permission denied to analyze "vacowned_part2", skipping it
2024-11-25 19:08:11.205 CET [562512][client backend] [pg_regress/vacuum][62/473:0] WARNING: permission denied to analyze "vacowned_part1", skipping it
2024-11-25 19:08:11.206 CET [562512][client backend] [pg_regress/vacuum][62/474:0] WARNING: permission denied to analyze "vacowned_part2", skipping it
2024-11-25 19:08:11.206 CET [562512][client backend] [pg_regress/vacuum][62/475:0] WARNING: permission denied to vacuum "vacowned_parted", skipping it
2024-11-25 19:08:11.206 CET [562512][client backend] [pg_regress/vacuum][62/476:0] WARNING: permission denied to vacuum "vacowned_part1", skipping it
2024-11-25 19:08:11.206 CET [562512][client backend] [pg_regress/vacuum][62/477:0] WARNING: permission denied to vacuum "vacowned_part2", skipping it
2024-11-25 19:08:11.206 CET [562512][client backend] [pg_regress/vacuum][62/479:0] WARNING: permission denied to vacuum "vacowned_part1", skipping it
2024-11-25 19:08:11.207 CET [562540][client backend] [isolation/referential-integrity/s1][92/564:534484] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.207 CET [562540][client backend] [isolation/referential-integrity/s1][92/564:534484] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:11.207 CET [562540][client backend] [isolation/referential-integrity/s1][92/564:534484] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.207 CET [562540][client backend] [isolation/referential-integrity/s1][92/564:534484] STATEMENT: INSERT INTO b VALUES (1);
2024-11-25 19:08:11.207 CET [562512][client backend] [pg_regress/vacuum][62/481:0] WARNING: permission denied to vacuum "vacowned_part2", skipping it
2024-11-25 19:08:11.209 CET [562512][client backend] [pg_regress/vacuum][62/490:0] WARNING: permission denied to vacuum "vacowned_part2", skipping it
2024-11-25 19:08:11.210 CET [562512][client backend] [pg_regress/vacuum][62/495:0] WARNING: permission denied to vacuum "vacowned_part2", skipping it
2024-11-25 19:08:11.210 CET [562512][client backend] [pg_regress/vacuum][62/500:0] WARNING: permission denied to analyze "vacowned_part2", skipping it
2024-11-25 19:08:11.211 CET [562512][client backend] [pg_regress/vacuum][62/503:0] WARNING: permission denied to analyze "vacowned_part2", skipping it
2024-11-25 19:08:11.211 CET [562512][client backend] [pg_regress/vacuum][62/509:0] WARNING: permission denied to vacuum "vacowned_part2", skipping it
2024-11-25 19:08:11.212 CET [562512][client backend] [pg_regress/vacuum][62/515:0] WARNING: permission denied to vacuum "vacowned_part2", skipping it
2024-11-25 19:08:11.212 CET [562511][client backend] [pg_regress/updatable_views][7/1408:534494] ERROR: new row violates check option for view "rw_view1"
2024-11-25 19:08:11.212 CET [562511][client backend] [pg_regress/updatable_views][7/1408:534494] DETAIL: Failing row contains (4, 3).
2024-11-25 19:08:11.212 CET [562511][client backend] [pg_regress/updatable_views][7/1408:534494] STATEMENT: INSERT INTO rw_view1 VALUES(4,3);
2024-11-25 19:08:11.213 CET [562511][client backend] [pg_regress/updatable_views][7/1409:534495] ERROR: new row violates check option for view "rw_view1"
2024-11-25 19:08:11.213 CET [562511][client backend] [pg_regress/updatable_views][7/1409:534495] DETAIL: Failing row contains (5, null).
2024-11-25 19:08:11.213 CET [562511][client backend] [pg_regress/updatable_views][7/1409:534495] STATEMENT: INSERT INTO rw_view1 VALUES(5,null);
2024-11-25 19:08:11.213 CET [562511][client backend] [pg_regress/updatable_views][7/1411:534498] ERROR: new row violates check option for view "rw_view1"
2024-11-25 19:08:11.213 CET [562511][client backend] [pg_regress/updatable_views][7/1411:534498] DETAIL: Failing row contains (3, -5).
2024-11-25 19:08:11.213 CET [562511][client backend] [pg_regress/updatable_views][7/1411:534498] STATEMENT: UPDATE rw_view1 SET b = -5 WHERE a = 3;
2024-11-25 19:08:11.213 CET [562502][client backend] [pg_regress/triggers][14/731:534500] ERROR: cannot ALTER TABLE "trigger_ddl_table" because it is being used by active queries in this session
2024-11-25 19:08:11.213 CET [562502][client backend] [pg_regress/triggers][14/731:534500] CONTEXT: SQL statement "alter table trigger_ddl_table add primary key (col1)"
PL/pgSQL function trigger_ddl_func() line 3 at SQL statement
2024-11-25 19:08:11.213 CET [562502][client backend] [pg_regress/triggers][14/731:534500] STATEMENT: insert into trigger_ddl_table values (1, 42);
2024-11-25 19:08:11.214 CET [562511][client backend] [pg_regress/updatable_views][7/1413:534504] ERROR: new row violates check option for view "rw_view1"
2024-11-25 19:08:11.214 CET [562511][client backend] [pg_regress/updatable_views][7/1413:534504] DETAIL: Failing row contains (10, 10).
2024-11-25 19:08:11.214 CET [562511][client backend] [pg_regress/updatable_views][7/1413:534504] STATEMENT: INSERT INTO rw_view1(a) VALUES (10);
2024-11-25 19:08:11.214 CET [562512][client backend] [pg_regress/vacuum][62/520:0] WARNING: permission denied to vacuum "vacowned_parted", skipping it
2024-11-25 19:08:11.214 CET [562512][client backend] [pg_regress/vacuum][62/522:0] WARNING: permission denied to vacuum "vacowned_part2", skipping it
2024-11-25 19:08:11.215 CET [562502][client backend] [pg_regress/triggers][14/733:0] ERROR: cannot CREATE INDEX "trigger_ddl_table" because it is being used by active queries in this session
2024-11-25 19:08:11.215 CET [562502][client backend] [pg_regress/triggers][14/733:0] CONTEXT: SQL statement "create index on trigger_ddl_table (col2)"
PL/pgSQL function trigger_ddl_func() line 3 at SQL statement
2024-11-25 19:08:11.215 CET [562502][client backend] [pg_regress/triggers][14/733:0] STATEMENT: insert into trigger_ddl_table values (1, 42);
2024-11-25 19:08:11.215 CET [562511][client backend] [pg_regress/updatable_views][7/1416:534512] ERROR: new row violates check option for view "rw_view1"
2024-11-25 19:08:11.215 CET [562511][client backend] [pg_regress/updatable_views][7/1416:534512] DETAIL: Failing row contains (11, 10).
2024-11-25 19:08:11.215 CET [562511][client backend] [pg_regress/updatable_views][7/1416:534512] STATEMENT: MERGE INTO rw_view1 t USING (VALUES (11)) AS v(a) ON t.a = v.a
WHEN NOT MATCHED THEN INSERT VALUES (v.a, v.a - 1);
2024-11-25 19:08:11.215 CET [562512][client backend] [pg_regress/vacuum][62/527:0] WARNING: permission denied to vacuum "vacowned_part2", skipping it
2024-11-25 19:08:11.216 CET [562512][client backend] [pg_regress/vacuum][62/529:0] WARNING: permission denied to analyze "vacowned_parted", skipping it
2024-11-25 19:08:11.216 CET [562511][client backend] [pg_regress/updatable_views][7/1418:534514] ERROR: new row violates check option for view "rw_view1"
2024-11-25 19:08:11.216 CET [562511][client backend] [pg_regress/updatable_views][7/1418:534514] DETAIL: Failing row contains (3, 3).
2024-11-25 19:08:11.216 CET [562511][client backend] [pg_regress/updatable_views][7/1418:534514] STATEMENT: MERGE INTO rw_view1 t USING (VALUES (2)) AS v(a) ON t.a = v.a
WHEN MATCHED THEN UPDATE SET a = t.a + 1;
2024-11-25 19:08:11.216 CET [562512][client backend] [pg_regress/vacuum][62/531:0] WARNING: permission denied to analyze "vacowned_part2", skipping it
2024-11-25 19:08:11.216 CET [562541][client backend] [isolation/referential-integrity/s2][:0] LOG: disconnection: session time: 0:00:00.284 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:11.217 CET [562540][client backend] [isolation/referential-integrity/s1][:0] LOG: disconnection: session time: 0:00:00.288 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:11.217 CET [562538][client backend] [isolation/referential-integrity/control connection][:0] LOG: disconnection: session time: 0:00:00.296 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:11.219 CET [562512][client backend] [pg_regress/vacuum][62/534:0] WARNING: permission denied to analyze "vacowned_part2", skipping it
2024-11-25 19:08:11.219 CET [562512][client backend] [pg_regress/vacuum][62/535:0] WARNING: permission denied to vacuum "vacowned_parted", skipping it
2024-11-25 19:08:11.219 CET [562512][client backend] [pg_regress/vacuum][62/538:0] WARNING: permission denied to vacuum "vacowned_part2", skipping it
2024-11-25 19:08:11.221 CET [562512][client backend] [pg_regress/vacuum][62/544:0] WARNING: permission denied to vacuum "vacowned_part2", skipping it
2024-11-25 19:08:11.222 CET [562586][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.222 CET [562586][client backend] [[unknown]][79/48:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.222 CET [562586][client backend] [[unknown]][79/48:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/ri-trigger
2024-11-25 19:08:11.222 CET [562512][client backend] [pg_regress/vacuum][62/552:0] WARNING: permission denied to vacuum "vacowned_part1", skipping it
2024-11-25 19:08:11.222 CET [562512][client backend] [pg_regress/vacuum][62/553:0] WARNING: permission denied to vacuum "vacowned_part2", skipping it
2024-11-25 19:08:11.223 CET [562512][client backend] [pg_regress/vacuum][62/555:0] WARNING: permission denied to vacuum "vacowned_part1", skipping it
2024-11-25 19:08:11.223 CET [562512][client backend] [pg_regress/vacuum][62/557:0] WARNING: permission denied to vacuum "vacowned_part2", skipping it
2024-11-25 19:08:11.224 CET [562512][client backend] [pg_regress/vacuum][62/561:0] WARNING: permission denied to analyze "vacowned_part1", skipping it
2024-11-25 19:08:11.224 CET [562512][client backend] [pg_regress/vacuum][62/562:0] WARNING: permission denied to analyze "vacowned_part2", skipping it
2024-11-25 19:08:11.224 CET [562512][client backend] [pg_regress/vacuum][62/564:0] WARNING: permission denied to analyze "vacowned_part1", skipping it
2024-11-25 19:08:11.224 CET [562512][client backend] [pg_regress/vacuum][62/565:0] WARNING: permission denied to analyze "vacowned_part2", skipping it
2024-11-25 19:08:11.225 CET [562512][client backend] [pg_regress/vacuum][62/569:0] WARNING: permission denied to vacuum "vacowned_part1", skipping it
2024-11-25 19:08:11.225 CET [562512][client backend] [pg_regress/vacuum][62/570:0] WARNING: permission denied to vacuum "vacowned_part2", skipping it
2024-11-25 19:08:11.225 CET [562512][client backend] [pg_regress/vacuum][62/572:0] WARNING: permission denied to vacuum "vacowned_part1", skipping it
2024-11-25 19:08:11.225 CET [562587][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.226 CET [562512][client backend] [pg_regress/vacuum][62/574:0] WARNING: permission denied to vacuum "vacowned_part2", skipping it
2024-11-25 19:08:11.226 CET [562511][client backend] [pg_regress/updatable_views][7/1430:534537] ERROR: new row violates check option for view "rw_view1"
2024-11-25 19:08:11.226 CET [562511][client backend] [pg_regress/updatable_views][7/1430:534537] DETAIL: Failing row contains (-5).
2024-11-25 19:08:11.226 CET [562511][client backend] [pg_regress/updatable_views][7/1430:534537] STATEMENT: INSERT INTO rw_view2 VALUES (-5);
2024-11-25 19:08:11.226 CET [561023][checkpointer] LOG: checkpoint complete: wrote 2859 buffers (17.4%), wrote 2 SLRU buffers; 0 WAL file(s) added, 0 removed, 2 recycled; write=0.040 s, sync=0.001 s, total=0.045 s; sync files=0, longest=0.000 s, average=0.000 s; distance=20932 kB, estimate=21194 kB; lsn=4/59371690, redo lsn=4/59223758
2024-11-25 19:08:11.226 CET [562587][client backend] [[unknown]][69/95:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.226 CET [562587][client backend] [[unknown]][69/95:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/ri-trigger
2024-11-25 19:08:11.226 CET [562511][client backend] [pg_regress/updatable_views][7/1432:534540] ERROR: new row violates check option for view "rw_view2"
2024-11-25 19:08:11.226 CET [562511][client backend] [pg_regress/updatable_views][7/1432:534540] DETAIL: Failing row contains (15).
2024-11-25 19:08:11.226 CET [562511][client backend] [pg_regress/updatable_views][7/1432:534540] STATEMENT: INSERT INTO rw_view2 VALUES (15);
2024-11-25 19:08:11.226 CET [562502][client backend] [pg_regress/triggers][14/741:0] WARNING: before insert (new): (1,black)
2024-11-25 19:08:11.226 CET [562502][client backend] [pg_regress/triggers][14/741:0] CONTEXT: PL/pgSQL function upsert_before_func() line 7 at RAISE
2024-11-25 19:08:11.227 CET [562502][client backend] [pg_regress/triggers][14/741:534542] WARNING: after insert (new): (1,black)
2024-11-25 19:08:11.227 CET [562502][client backend] [pg_regress/triggers][14/741:534542] CONTEXT: PL/pgSQL function upsert_after_func() line 7 at RAISE
2024-11-25 19:08:11.227 CET [562511][client backend] [pg_regress/updatable_views][7/1434:534543] ERROR: new row violates check option for view "rw_view1"
2024-11-25 19:08:11.227 CET [562511][client backend] [pg_regress/updatable_views][7/1434:534543] DETAIL: Failing row contains (-5).
2024-11-25 19:08:11.227 CET [562511][client backend] [pg_regress/updatable_views][7/1434:534543] STATEMENT: UPDATE rw_view2 SET a = a - 10;
2024-11-25 19:08:11.227 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:11.227 CET [562511][client backend] [pg_regress/updatable_views][7/1435:534545] ERROR: new row violates check option for view "rw_view2"
2024-11-25 19:08:11.227 CET [562511][client backend] [pg_regress/updatable_views][7/1435:534545] DETAIL: Failing row contains (15).
2024-11-25 19:08:11.227 CET [562511][client backend] [pg_regress/updatable_views][7/1435:534545] STATEMENT: UPDATE rw_view2 SET a = a + 10;
2024-11-25 19:08:11.228 CET [562502][client backend] [pg_regress/triggers][14/742:0] WARNING: before insert (new): (2,red)
2024-11-25 19:08:11.228 CET [562502][client backend] [pg_regress/triggers][14/742:0] CONTEXT: PL/pgSQL function upsert_before_func() line 7 at RAISE
2024-11-25 19:08:11.228 CET [562502][client backend] [pg_regress/triggers][14/742:0] WARNING: before insert (new, modified): (3,"red trig modified")
2024-11-25 19:08:11.228 CET [562502][client backend] [pg_regress/triggers][14/742:0] CONTEXT: PL/pgSQL function upsert_before_func() line 11 at RAISE
2024-11-25 19:08:11.228 CET [562502][client backend] [pg_regress/triggers][14/742:534548] WARNING: after insert (new): (3,"red trig modified")
2024-11-25 19:08:11.228 CET [562502][client backend] [pg_regress/triggers][14/742:534548] CONTEXT: PL/pgSQL function upsert_after_func() line 7 at RAISE
2024-11-25 19:08:11.229 CET [562588][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.230 CET [562502][client backend] [pg_regress/triggers][14/743:0] WARNING: before insert (new): (3,orange)
2024-11-25 19:08:11.230 CET [562502][client backend] [pg_regress/triggers][14/743:0] CONTEXT: PL/pgSQL function upsert_before_func() line 7 at RAISE
2024-11-25 19:08:11.230 CET [562502][client backend] [pg_regress/triggers][14/743:534553] WARNING: before update (old): (3,"red trig modified")
2024-11-25 19:08:11.230 CET [562502][client backend] [pg_regress/triggers][14/743:534553] CONTEXT: PL/pgSQL function upsert_before_func() line 4 at RAISE
2024-11-25 19:08:11.230 CET [562502][client backend] [pg_regress/triggers][14/743:534553] WARNING: before update (new): (3,"updated red trig modified")
2024-11-25 19:08:11.230 CET [562502][client backend] [pg_regress/triggers][14/743:534553] CONTEXT: PL/pgSQL function upsert_before_func() line 5 at RAISE
2024-11-25 19:08:11.230 CET [562502][client backend] [pg_regress/triggers][14/743:534553] WARNING: after update (old): (3,"red trig modified")
2024-11-25 19:08:11.230 CET [562502][client backend] [pg_regress/triggers][14/743:534553] CONTEXT: PL/pgSQL function upsert_after_func() line 4 at RAISE
2024-11-25 19:08:11.230 CET [562502][client backend] [pg_regress/triggers][14/743:534553] WARNING: after update (new): (3,"updated red trig modified")
2024-11-25 19:08:11.230 CET [562502][client backend] [pg_regress/triggers][14/743:534553] CONTEXT: PL/pgSQL function upsert_after_func() line 5 at RAISE
2024-11-25 19:08:11.230 CET [562588][client backend] [[unknown]][55/627:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.230 CET [562588][client backend] [[unknown]][55/627:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/ri-trigger
2024-11-25 19:08:11.230 CET [562512][client backend] [pg_regress/vacuum][:0] LOG: disconnection: session time: 0:00:00.509 user=nkey database=regression host=[local]
2024-11-25 19:08:11.231 CET [562502][client backend] [pg_regress/triggers][14/744:0] WARNING: before insert (new): (4,green)
2024-11-25 19:08:11.231 CET [562502][client backend] [pg_regress/triggers][14/744:0] CONTEXT: PL/pgSQL function upsert_before_func() line 7 at RAISE
2024-11-25 19:08:11.231 CET [562502][client backend] [pg_regress/triggers][14/744:0] WARNING: before insert (new, modified): (5,"green trig modified")
2024-11-25 19:08:11.231 CET [562502][client backend] [pg_regress/triggers][14/744:0] CONTEXT: PL/pgSQL function upsert_before_func() line 11 at RAISE
2024-11-25 19:08:11.231 CET [562502][client backend] [pg_regress/triggers][14/744:534556] WARNING: after insert (new): (5,"green trig modified")
2024-11-25 19:08:11.231 CET [562502][client backend] [pg_regress/triggers][14/744:534556] CONTEXT: PL/pgSQL function upsert_after_func() line 7 at RAISE
2024-11-25 19:08:11.232 CET [561023][checkpointer] LOG: checkpoint complete: wrote 221 buffers (1.3%), wrote 2 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.004 s, sync=0.001 s, total=0.005 s; sync files=0, longest=0.000 s, average=0.000 s; distance=1382 kB, estimate=19213 kB; lsn=4/593C65A0, redo lsn=4/5937D170
2024-11-25 19:08:11.232 CET [562502][client backend] [pg_regress/triggers][14/745:0] WARNING: before insert (new): (5,purple)
2024-11-25 19:08:11.232 CET [562502][client backend] [pg_regress/triggers][14/745:0] CONTEXT: PL/pgSQL function upsert_before_func() line 7 at RAISE
2024-11-25 19:08:11.232 CET [562502][client backend] [pg_regress/triggers][14/745:534558] WARNING: before update (old): (5,"green trig modified")
2024-11-25 19:08:11.232 CET [562502][client backend] [pg_regress/triggers][14/745:534558] CONTEXT: PL/pgSQL function upsert_before_func() line 4 at RAISE
2024-11-25 19:08:11.232 CET [562502][client backend] [pg_regress/triggers][14/745:534558] WARNING: before update (new): (5,"updated green trig modified")
2024-11-25 19:08:11.232 CET [562502][client backend] [pg_regress/triggers][14/745:534558] CONTEXT: PL/pgSQL function upsert_before_func() line 5 at RAISE
2024-11-25 19:08:11.232 CET [562502][client backend] [pg_regress/triggers][14/745:534558] WARNING: after update (old): (5,"green trig modified")
2024-11-25 19:08:11.232 CET [562502][client backend] [pg_regress/triggers][14/745:534558] CONTEXT: PL/pgSQL function upsert_after_func() line 4 at RAISE
2024-11-25 19:08:11.233 CET [562502][client backend] [pg_regress/triggers][14/745:534558] WARNING: after update (new): (5,"updated green trig modified")
2024-11-25 19:08:11.233 CET [562502][client backend] [pg_regress/triggers][14/745:534558] CONTEXT: PL/pgSQL function upsert_after_func() line 5 at RAISE
2024-11-25 19:08:11.234 CET [562502][client backend] [pg_regress/triggers][14/746:0] WARNING: before insert (new): (6,white)
2024-11-25 19:08:11.234 CET [562502][client backend] [pg_regress/triggers][14/746:0] CONTEXT: PL/pgSQL function upsert_before_func() line 7 at RAISE
2024-11-25 19:08:11.234 CET [562502][client backend] [pg_regress/triggers][14/746:0] WARNING: before insert (new, modified): (7,"white trig modified")
2024-11-25 19:08:11.234 CET [562502][client backend] [pg_regress/triggers][14/746:0] CONTEXT: PL/pgSQL function upsert_before_func() line 11 at RAISE
2024-11-25 19:08:11.234 CET [562502][client backend] [pg_regress/triggers][14/746:534560] WARNING: after insert (new): (7,"white trig modified")
2024-11-25 19:08:11.234 CET [562502][client backend] [pg_regress/triggers][14/746:534560] CONTEXT: PL/pgSQL function upsert_after_func() line 7 at RAISE
2024-11-25 19:08:11.234 CET [562511][client backend] [pg_regress/updatable_views][7/1444:534564] ERROR: new row violates check option for view "rw_view2"
2024-11-25 19:08:11.234 CET [562511][client backend] [pg_regress/updatable_views][7/1444:534564] DETAIL: Failing row contains (20).
2024-11-25 19:08:11.234 CET [562511][client backend] [pg_regress/updatable_views][7/1444:534564] STATEMENT: INSERT INTO rw_view2 VALUES (20);
2024-11-25 19:08:11.235 CET [562511][client backend] [pg_regress/updatable_views][7/1446:534566] ERROR: invalid value for enum option "check_option": here
2024-11-25 19:08:11.235 CET [562511][client backend] [pg_regress/updatable_views][7/1446:534566] DETAIL: Valid values are "local" and "cascaded".
2024-11-25 19:08:11.235 CET [562511][client backend] [pg_regress/updatable_views][7/1446:534566] STATEMENT: ALTER VIEW rw_view1 SET (check_option=here);
2024-11-25 19:08:11.235 CET [562502][client backend] [pg_regress/triggers][14/747:0] WARNING: before insert (new): (7,pink)
2024-11-25 19:08:11.235 CET [562502][client backend] [pg_regress/triggers][14/747:0] CONTEXT: PL/pgSQL function upsert_before_func() line 7 at RAISE
2024-11-25 19:08:11.235 CET [562502][client backend] [pg_regress/triggers][14/747:534569] WARNING: before update (old): (7,"white trig modified")
2024-11-25 19:08:11.235 CET [562502][client backend] [pg_regress/triggers][14/747:534569] CONTEXT: PL/pgSQL function upsert_before_func() line 4 at RAISE
2024-11-25 19:08:11.235 CET [562502][client backend] [pg_regress/triggers][14/747:534569] WARNING: before update (new): (7,"updated white trig modified")
2024-11-25 19:08:11.235 CET [562502][client backend] [pg_regress/triggers][14/747:534569] CONTEXT: PL/pgSQL function upsert_before_func() line 5 at RAISE
2024-11-25 19:08:11.235 CET [562502][client backend] [pg_regress/triggers][14/747:534569] WARNING: after update (old): (7,"white trig modified")
2024-11-25 19:08:11.235 CET [562502][client backend] [pg_regress/triggers][14/747:534569] CONTEXT: PL/pgSQL function upsert_after_func() line 4 at RAISE
2024-11-25 19:08:11.235 CET [562502][client backend] [pg_regress/triggers][14/747:534569] WARNING: after update (new): (7,"updated white trig modified")
2024-11-25 19:08:11.235 CET [562502][client backend] [pg_regress/triggers][14/747:534569] CONTEXT: PL/pgSQL function upsert_after_func() line 5 at RAISE
2024-11-25 19:08:11.236 CET [562511][client backend] [pg_regress/updatable_views][7/1448:534570] ERROR: new row violates check option for view "rw_view1"
2024-11-25 19:08:11.236 CET [562511][client backend] [pg_regress/updatable_views][7/1448:534570] DETAIL: Failing row contains (-20).
2024-11-25 19:08:11.236 CET [562511][client backend] [pg_regress/updatable_views][7/1448:534570] STATEMENT: INSERT INTO rw_view2 VALUES (-20);
2024-11-25 19:08:11.236 CET [562511][client backend] [pg_regress/updatable_views][7/1449:534572] ERROR: new row violates check option for view "rw_view2"
2024-11-25 19:08:11.236 CET [562511][client backend] [pg_regress/updatable_views][7/1449:534572] DETAIL: Failing row contains (30).
2024-11-25 19:08:11.236 CET [562511][client backend] [pg_regress/updatable_views][7/1449:534572] STATEMENT: INSERT INTO rw_view2 VALUES (30);
2024-11-25 19:08:11.236 CET [562508][client backend] [pg_regress/inherit][43/728:534571] ERROR: cannot drop inherited constraint "f1_pos" of relation "p1_c1"
2024-11-25 19:08:11.236 CET [562508][client backend] [pg_regress/inherit][43/728:534571] STATEMENT: alter table p1_c1 drop constraint f1_pos;
2024-11-25 19:08:11.236 CET [562502][client backend] [pg_regress/triggers][14/748:0] WARNING: before insert (new): (8,yellow)
2024-11-25 19:08:11.236 CET [562502][client backend] [pg_regress/triggers][14/748:0] CONTEXT: PL/pgSQL function upsert_before_func() line 7 at RAISE
2024-11-25 19:08:11.236 CET [562502][client backend] [pg_regress/triggers][14/748:0] WARNING: before insert (new, modified): (9,"yellow trig modified")
2024-11-25 19:08:11.236 CET [562502][client backend] [pg_regress/triggers][14/748:0] CONTEXT: PL/pgSQL function upsert_before_func() line 11 at RAISE
2024-11-25 19:08:11.236 CET [562502][client backend] [pg_regress/triggers][14/748:534575] WARNING: after insert (new): (9,"yellow trig modified")
2024-11-25 19:08:11.236 CET [562502][client backend] [pg_regress/triggers][14/748:534575] CONTEXT: PL/pgSQL function upsert_after_func() line 7 at RAISE
2024-11-25 19:08:11.239 CET [562578][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.065 user=nkey database=postgres host=[local]
2024-11-25 19:08:11.243 CET [562591][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.243 CET [562591][client backend] [[unknown]][60/156:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.243 CET [562591][client backend] [[unknown]][60/156:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:11.247 CET [562502][client backend] [pg_regress/triggers][14/756:0] ERROR: "my_view" is a view
2024-11-25 19:08:11.247 CET [562502][client backend] [pg_regress/triggers][14/756:0] DETAIL: Triggers on views cannot have transition tables.
2024-11-25 19:08:11.247 CET [562502][client backend] [pg_regress/triggers][14/756:0] STATEMENT: create trigger my_trigger after update on my_view referencing old table as old_table
for each statement execute procedure my_trigger_function();
2024-11-25 19:08:11.249 CET [562588][client backend] [isolation/ri-trigger/s2][55/629:534599] ERROR: child row exists
2024-11-25 19:08:11.249 CET [562588][client backend] [isolation/ri-trigger/s2][55/629:534599] CONTEXT: PL/pgSQL function ri_parent() line 5 at RAISE
2024-11-25 19:08:11.249 CET [562588][client backend] [isolation/ri-trigger/s2][55/629:534599] STATEMENT: DELETE FROM parent WHERE parent_id = 0;
2024-11-25 19:08:11.252 CET [562511][client backend] [pg_regress/updatable_views][7/1469:534614] ERROR: new row violates check option for view "rw_view2"
2024-11-25 19:08:11.252 CET [562511][client backend] [pg_regress/updatable_views][7/1469:534614] DETAIL: Failing row contains (-3).
2024-11-25 19:08:11.252 CET [562511][client backend] [pg_regress/updatable_views][7/1469:534614] STATEMENT: INSERT INTO rw_view3 VALUES (-3);
2024-11-25 19:08:11.253 CET [562582][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.053 user=nkey database=postgres host=[local]
2024-11-25 19:08:11.256 CET [562502][client backend] [pg_regress/triggers][14/762:0] ERROR: "parted_trig" is a table
2024-11-25 19:08:11.256 CET [562502][client backend] [pg_regress/triggers][14/762:0] DETAIL: Tables cannot have INSTEAD OF triggers.
2024-11-25 19:08:11.256 CET [562502][client backend] [pg_regress/triggers][14/762:0] STATEMENT: create trigger failed instead of update on parted_trig
for each row execute procedure trigger_nothing();
2024-11-25 19:08:11.256 CET [562502][client backend] [pg_regress/triggers][14/763:0] ERROR: "parted_trig" is a partitioned table
2024-11-25 19:08:11.256 CET [562502][client backend] [pg_regress/triggers][14/763:0] DETAIL: ROW triggers with transition tables are not supported on partitioned tables.
2024-11-25 19:08:11.256 CET [562502][client backend] [pg_regress/triggers][14/763:0] STATEMENT: create trigger failed after update on parted_trig
referencing old table as old_table
for each row execute procedure trigger_nothing();
2024-11-25 19:08:11.256 CET [562594][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.257 CET [562594][client backend] [[unknown]][83/41:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.257 CET [562594][client backend] [[unknown]][83/41:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:11.258 CET [562511][client backend] [pg_regress/updatable_views][7/1475:534624] ERROR: new row violates check option for view "rw_view1"
2024-11-25 19:08:11.258 CET [562511][client backend] [pg_regress/updatable_views][7/1475:534624] DETAIL: Failing row contains (10, {4,5}).
2024-11-25 19:08:11.258 CET [562511][client backend] [pg_regress/updatable_views][7/1475:534624] STATEMENT: INSERT INTO rw_view1 VALUES (10, ARRAY[4,5]);
2024-11-25 19:08:11.259 CET [562511][client backend] [pg_regress/updatable_views][7/1477:534628] ERROR: new row violates check option for view "rw_view1"
2024-11-25 19:08:11.259 CET [562511][client backend] [pg_regress/updatable_views][7/1477:534628] DETAIL: Failing row contains (1, {-1,-2,3}).
2024-11-25 19:08:11.259 CET [562511][client backend] [pg_regress/updatable_views][7/1477:534628] STATEMENT: UPDATE rw_view1 SET b[1] = -b[1] WHERE a = 1;
2024-11-25 19:08:11.260 CET [562511][client backend] [pg_regress/updatable_views][7/1480:534631] ERROR: new row violates check option for view "rw_view1"
2024-11-25 19:08:11.260 CET [562511][client backend] [pg_regress/updatable_views][7/1480:534631] DETAIL: Failing row contains (10, {4,5}).
2024-11-25 19:08:11.260 CET [562511][client backend] [pg_regress/updatable_views][7/1480:534631] STATEMENT: EXECUTE ins(10, ARRAY[4,5]);
2024-11-25 19:08:11.262 CET [562588][client backend] [isolation/ri-trigger/s2][55/630:534634] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.262 CET [562588][client backend] [isolation/ri-trigger/s2][55/630:534634] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:11.262 CET [562588][client backend] [isolation/ri-trigger/s2][55/630:534634] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.262 CET [562588][client backend] [isolation/ri-trigger/s2][55/630:534634] STATEMENT: DELETE FROM parent WHERE parent_id = 0;
2024-11-25 19:08:11.269 CET [562511][client backend] [pg_regress/updatable_views][7/1488:534653] ERROR: new row violates check option for view "rw_view1"
2024-11-25 19:08:11.269 CET [562511][client backend] [pg_regress/updatable_views][7/1488:534653] DETAIL: Failing row contains (15).
2024-11-25 19:08:11.269 CET [562511][client backend] [pg_regress/updatable_views][7/1488:534653] STATEMENT: INSERT INTO rw_view1 VALUES (15);
2024-11-25 19:08:11.270 CET [562511][client backend] [pg_regress/updatable_views][7/1490:534655] ERROR: new row violates check option for view "rw_view1"
2024-11-25 19:08:11.270 CET [562511][client backend] [pg_regress/updatable_views][7/1490:534655] DETAIL: Failing row contains (15).
2024-11-25 19:08:11.270 CET [562511][client backend] [pg_regress/updatable_views][7/1490:534655] STATEMENT: UPDATE rw_view1 SET a = a + 5;
2024-11-25 19:08:11.275 CET [562588][client backend] [isolation/ri-trigger/s2][55/631:534662] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.275 CET [562588][client backend] [isolation/ri-trigger/s2][55/631:534662] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.275 CET [562588][client backend] [isolation/ri-trigger/s2][55/631:534662] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.275 CET [562588][client backend] [isolation/ri-trigger/s2][55/631:534662] STATEMENT: COMMIT;
2024-11-25 19:08:11.277 CET [562591][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.034 user=nkey database=postgres host=[local]
2024-11-25 19:08:11.278 CET [562511][client backend] [pg_regress/updatable_views][7/1499:534675] ERROR: new row violates check option for view "rw_view1"
2024-11-25 19:08:11.278 CET [562511][client backend] [pg_regress/updatable_views][7/1499:534675] DETAIL: Failing row contains (15, 10).
2024-11-25 19:08:11.278 CET [562511][client backend] [pg_regress/updatable_views][7/1499:534675] STATEMENT: INSERT INTO rw_view1 VALUES (15, 20);
2024-11-25 19:08:11.278 CET [562511][client backend] [pg_regress/updatable_views][7/1500:534677] ERROR: new row violates check option for view "rw_view1"
2024-11-25 19:08:11.278 CET [562511][client backend] [pg_regress/updatable_views][7/1500:534677] DETAIL: Failing row contains (20, 10).
2024-11-25 19:08:11.278 CET [562511][client backend] [pg_regress/updatable_views][7/1500:534677] STATEMENT: UPDATE rw_view1 SET a = 20, b = 30;
2024-11-25 19:08:11.280 CET [562596][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.281 CET [562502][client backend] [pg_regress/triggers][14/776:0] ERROR: cannot drop trigger trg1 on table trigpart1 because trigger trg1 on table trigpart requires it
2024-11-25 19:08:11.281 CET [562502][client backend] [pg_regress/triggers][14/776:0] HINT: You can drop trigger trg1 on table trigpart instead.
2024-11-25 19:08:11.281 CET [562502][client backend] [pg_regress/triggers][14/776:0] STATEMENT: drop trigger trg1 on trigpart1;
2024-11-25 19:08:11.281 CET [562502][client backend] [pg_regress/triggers][14/777:0] ERROR: cannot drop trigger trg1 on table trigpart2 because trigger trg1 on table trigpart requires it
2024-11-25 19:08:11.281 CET [562502][client backend] [pg_regress/triggers][14/777:0] HINT: You can drop trigger trg1 on table trigpart instead.
2024-11-25 19:08:11.281 CET [562502][client backend] [pg_regress/triggers][14/777:0] STATEMENT: drop trigger trg1 on trigpart2;
2024-11-25 19:08:11.281 CET [562596][client backend] [[unknown]][80/60:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.281 CET [562596][client backend] [[unknown]][80/60:0] LOG: connection authorized: user=nkey database=regression_test_copy_callbacks application_name=pg_regress/test_copy_callbacks
2024-11-25 19:08:11.281 CET [562502][client backend] [pg_regress/triggers][14/778:0] ERROR: cannot drop trigger trg1 on table trigpart3 because trigger trg1 on table trigpart requires it
2024-11-25 19:08:11.281 CET [562502][client backend] [pg_regress/triggers][14/778:0] HINT: You can drop trigger trg1 on table trigpart instead.
2024-11-25 19:08:11.281 CET [562502][client backend] [pg_regress/triggers][14/778:0] STATEMENT: drop trigger trg1 on trigpart3;
2024-11-25 19:08:11.285 CET [562511][client backend] [pg_regress/updatable_views][7/1508:534689] ERROR: new row violates check option for view "rw_view2"
2024-11-25 19:08:11.285 CET [562511][client backend] [pg_regress/updatable_views][7/1508:534689] DETAIL: Failing row contains (-5).
2024-11-25 19:08:11.285 CET [562511][client backend] [pg_regress/updatable_views][7/1508:534689] STATEMENT: INSERT INTO rw_view2 VALUES (-5);
2024-11-25 19:08:11.285 CET [562511][client backend] [pg_regress/updatable_views][7/1509:534692] ERROR: new row violates check option for view "rw_view2"
2024-11-25 19:08:11.285 CET [562511][client backend] [pg_regress/updatable_views][7/1509:534692] DETAIL: Failing row contains (-5).
2024-11-25 19:08:11.285 CET [562511][client backend] [pg_regress/updatable_views][7/1509:534692] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (-5)) AS v(a) ON t.a = v.a
WHEN NOT MATCHED THEN INSERT VALUES (v.a);
2024-11-25 19:08:11.287 CET [562594][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.031 user=nkey database=postgres host=[local]
2024-11-25 19:08:11.287 CET [562587][client backend] [isolation/ri-trigger/s1][69/101:534690] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.287 CET [562587][client backend] [isolation/ri-trigger/s1][69/101:534690] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.287 CET [562587][client backend] [isolation/ri-trigger/s1][69/101:534690] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.287 CET [562587][client backend] [isolation/ri-trigger/s1][69/101:534690] STATEMENT: COMMIT;
2024-11-25 19:08:11.288 CET [562511][client backend] [pg_regress/updatable_views][7/1514:534705] ERROR: new row violates check option for view "rw_view2"
2024-11-25 19:08:11.288 CET [562511][client backend] [pg_regress/updatable_views][7/1514:534705] DETAIL: Failing row contains (-5).
2024-11-25 19:08:11.288 CET [562511][client backend] [pg_regress/updatable_views][7/1514:534705] STATEMENT: UPDATE rw_view2 SET a = a - 10;
2024-11-25 19:08:11.288 CET [562511][client backend] [pg_regress/updatable_views][7/1515:534706] ERROR: new row violates check option for view "rw_view2"
2024-11-25 19:08:11.288 CET [562511][client backend] [pg_regress/updatable_views][7/1515:534706] DETAIL: Failing row contains (-4).
2024-11-25 19:08:11.288 CET [562511][client backend] [pg_regress/updatable_views][7/1515:534706] STATEMENT: MERGE INTO rw_view2 t USING (VALUES (6)) AS v(a) ON t.a = v.a
WHEN MATCHED THEN UPDATE SET a = t.a - 10;
2024-11-25 19:08:11.289 CET [562508][client backend] [pg_regress/inherit][43/790:534711] ERROR: cannot drop inherited constraint "f1_pos" of relation "p1_c2"
2024-11-25 19:08:11.289 CET [562508][client backend] [pg_regress/inherit][43/790:534711] STATEMENT: alter table p1_c2 drop constraint f1_pos;
2024-11-25 19:08:11.290 CET [562504][client backend] [pg_regress/constraints][46/718:534709] ERROR: column "a" of relation "cnn_part1" contains null values
2024-11-25 19:08:11.290 CET [562504][client backend] [pg_regress/constraints][46/718:534709] STATEMENT: alter table cnn2_parted add primary key (a);
2024-11-25 19:08:11.290 CET [562508][client backend] [pg_regress/inherit][43/792:534716] ERROR: cannot drop inherited constraint "f1_pos" of relation "p1_c1c2"
2024-11-25 19:08:11.290 CET [562508][client backend] [pg_regress/inherit][43/792:534716] STATEMENT: alter table p1_c1c2 drop constraint f1_pos;
2024-11-25 19:08:11.291 CET [562598][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.291 CET [562598][client backend] [[unknown]][88/81:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.291 CET [562598][client backend] [[unknown]][88/81:0] LOG: connection authorized: user=nkey database=regression_test_ddl_deparse application_name=pg_regress/test_ddl_deparse
2024-11-25 19:08:11.293 CET [562596][client backend] [pg_regress/test_copy_callbacks][:0] LOG: disconnection: session time: 0:00:00.012 user=nkey database=regression_test_copy_callbacks host=[local]
2024-11-25 19:08:11.298 CET [562588][client backend] [isolation/ri-trigger/s2][55/633:534743] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.298 CET [562588][client backend] [isolation/ri-trigger/s2][55/633:534743] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:11.298 CET [562588][client backend] [isolation/ri-trigger/s2][55/633:534743] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.298 CET [562588][client backend] [isolation/ri-trigger/s2][55/633:534743] STATEMENT: DELETE FROM parent WHERE parent_id = 0;
2024-11-25 19:08:11.300 CET [562508][client backend] [pg_regress/inherit][43/806:534750] ERROR: constraint "inh_check_constraint" conflicts with NOT VALID constraint on relation "invalid_check_con_child"
2024-11-25 19:08:11.300 CET [562508][client backend] [pg_regress/inherit][43/806:534750] STATEMENT: alter table invalid_check_con add constraint inh_check_constraint check(f1 > 0);
2024-11-25 19:08:11.302 CET [562508][client backend] [pg_regress/inherit][43/811:0] ERROR: new row for relation "invalid_check_con" violates check constraint "inh_check_constraint"
2024-11-25 19:08:11.302 CET [562508][client backend] [pg_regress/inherit][43/811:0] DETAIL: Failing row contains (0).
2024-11-25 19:08:11.302 CET [562508][client backend] [pg_regress/inherit][43/811:0] STATEMENT: insert into invalid_check_con values(0);
2024-11-25 19:08:11.302 CET [562508][client backend] [pg_regress/inherit][43/812:0] ERROR: new row for relation "invalid_check_con_child" violates check constraint "inh_check_constraint"
2024-11-25 19:08:11.302 CET [562508][client backend] [pg_regress/inherit][43/812:0] DETAIL: Failing row contains (0).
2024-11-25 19:08:11.302 CET [562508][client backend] [pg_regress/inherit][43/812:0] STATEMENT: insert into invalid_check_con_child values(0);
2024-11-25 19:08:11.303 CET [562598][client backend] [pg_regress/test_ddl_deparse][:0] LOG: disconnection: session time: 0:00:00.012 user=nkey database=regression_test_ddl_deparse host=[local]
2024-11-25 19:08:11.308 CET [562605][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.308 CET [562605][client backend] [[unknown]][81/76:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.308 CET [562605][client backend] [[unknown]][81/76:0] LOG: connection authorized: user=nkey database=regression_test_ddl_deparse application_name=pg_regress/create_extension
2024-11-25 19:08:11.312 CET [562588][client backend] [isolation/ri-trigger/s2][55/634:534778] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.312 CET [562588][client backend] [isolation/ri-trigger/s2][55/634:534778] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.312 CET [562588][client backend] [isolation/ri-trigger/s2][55/634:534778] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.312 CET [562588][client backend] [isolation/ri-trigger/s2][55/634:534778] STATEMENT: COMMIT;
2024-11-25 19:08:11.316 CET [562502][client backend] [pg_regress/triggers][14/797:0] ERROR: trigger "trg1" for table "trigpart3" does not exist
2024-11-25 19:08:11.316 CET [562502][client backend] [pg_regress/triggers][14/797:0] STATEMENT: drop trigger trg1 on trigpart3;
2024-11-25 19:08:11.318 CET [562502][client backend] [pg_regress/triggers][14/799:0] ERROR: trigger "trg1" for table "trigpart41" does not exist
2024-11-25 19:08:11.318 CET [562502][client backend] [pg_regress/triggers][14/799:0] STATEMENT: drop trigger trg1 on trigpart41;
2024-11-25 19:08:11.326 CET [562587][client backend] [isolation/ri-trigger/s1][69/104:534795] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.326 CET [562587][client backend] [isolation/ri-trigger/s1][69/104:534795] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.326 CET [562587][client backend] [isolation/ri-trigger/s1][69/104:534795] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.326 CET [562587][client backend] [isolation/ri-trigger/s1][69/104:534795] STATEMENT: COMMIT;
2024-11-25 19:08:11.339 CET [562588][client backend] [isolation/ri-trigger/s2][55/636:534811] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.339 CET [562588][client backend] [isolation/ri-trigger/s2][55/636:534811] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.339 CET [562588][client backend] [isolation/ri-trigger/s2][55/636:534811] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.339 CET [562588][client backend] [isolation/ri-trigger/s2][55/636:534811] STATEMENT: COMMIT;
2024-11-25 19:08:11.343 CET [562610][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.343 CET [562610][client backend] [[unknown]][45/560:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.343 CET [562610][client backend] [[unknown]][45/560:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:11.344 CET [562605][client backend] [pg_regress/create_extension][:0] LOG: disconnection: session time: 0:00:00.036 user=nkey database=regression_test_ddl_deparse host=[local]
2024-11-25 19:08:11.348 CET [562614][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.349 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:11.349 CET [562614][client backend] [[unknown]][89/53:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.349 CET [562614][client backend] [[unknown]][89/53:0] LOG: connection authorized: user=nkey database=regression_test_ddl_deparse application_name=pg_regress/create_schema
2024-11-25 19:08:11.351 CET [562502][client backend] [pg_regress/triggers][14/819:534834] ERROR: trigger "trg1" for relation "trigpart3" already exists
2024-11-25 19:08:11.351 CET [562502][client backend] [pg_regress/triggers][14/819:534834] STATEMENT: alter table trigpart attach partition trigpart3 FOR VALUES FROM (2000) to (3000);
2024-11-25 19:08:11.352 CET [562587][client backend] [isolation/ri-trigger/s1][69/106:534836] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.352 CET [562587][client backend] [isolation/ri-trigger/s1][69/106:534836] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.352 CET [562587][client backend] [isolation/ri-trigger/s1][69/106:534836] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.352 CET [562587][client backend] [isolation/ri-trigger/s1][69/106:534836] STATEMENT: COMMIT;
2024-11-25 19:08:11.357 CET [562614][client backend] [pg_regress/create_schema][:0] LOG: disconnection: session time: 0:00:00.008 user=nkey database=regression_test_ddl_deparse host=[local]
2024-11-25 19:08:11.362 CET [562620][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.363 CET [562620][client backend] [[unknown]][87/24:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.363 CET [562620][client backend] [[unknown]][87/24:0] LOG: connection authorized: user=nkey database=regression_test_ddl_deparse application_name=pg_regress/create_type
2024-11-25 19:08:11.365 CET [562587][client backend] [isolation/ri-trigger/s1][69/107:534859] ERROR: parent row missing
2024-11-25 19:08:11.365 CET [562587][client backend] [isolation/ri-trigger/s1][69/107:534859] CONTEXT: PL/pgSQL function ri_child() line 5 at RAISE
2024-11-25 19:08:11.365 CET [562587][client backend] [isolation/ri-trigger/s1][69/107:534859] STATEMENT: INSERT INTO child (parent_id) VALUES (0);
2024-11-25 19:08:11.366 CET [562570][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.235 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:11.369 CET [562622][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.370 CET [562622][client backend] [[unknown]][91/31:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.370 CET [562622][client backend] [[unknown]][91/31:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:11.371 CET [562588][client backend] [isolation/ri-trigger/s2][:0] LOG: disconnection: session time: 0:00:00.141 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:11.371 CET [562587][client backend] [isolation/ri-trigger/s1][:0] LOG: disconnection: session time: 0:00:00.145 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:11.373 CET [562586][client backend] [isolation/ri-trigger/control connection][:0] LOG: disconnection: session time: 0:00:00.151 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:11.374 CET [562620][client backend] [pg_regress/create_type][:0] LOG: disconnection: session time: 0:00:00.012 user=nkey database=regression_test_ddl_deparse host=[local]
2024-11-25 19:08:11.382 CET [562634][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.383 CET [562633][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.383 CET [562633][client backend] [[unknown]][36/485:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.383 CET [562633][client backend] [[unknown]][36/485:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/partial-index
2024-11-25 19:08:11.387 CET [562634][client backend] [[unknown]][53/93:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.387 CET [562634][client backend] [[unknown]][53/93:0] LOG: connection authorized: user=nkey database=regression_test_ddl_deparse application_name=pg_regress/create_conversion
2024-11-25 19:08:11.389 CET [561023][checkpointer] LOG: checkpoint complete: wrote 2330 buffers (14.2%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.038 s, sync=0.001 s, total=0.041 s; sync files=0, longest=0.000 s, average=0.000 s; distance=11753 kB, estimate=18467 kB; lsn=4/5A097FE8, redo lsn=4/59EF7658
2024-11-25 19:08:11.392 CET [562634][client backend] [pg_regress/create_conversion][:0] LOG: disconnection: session time: 0:00:00.010 user=nkey database=regression_test_ddl_deparse host=[local]
2024-11-25 19:08:11.393 CET [562641][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.394 CET [562641][client backend] [[unknown]][73/92:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.394 CET [562641][client backend] [[unknown]][73/92:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/partial-index
2024-11-25 19:08:11.397 CET [562643][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.397 CET [562563][client backend] [pg_regress/test_bloomfilter][:0] LOG: disconnection: session time: 0:00:00.349 user=nkey database=regression_test_bloomfilter host=[local]
2024-11-25 19:08:11.398 CET [562643][client backend] [[unknown]][74/45:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.398 CET [562643][client backend] [[unknown]][74/45:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/partial-index
2024-11-25 19:08:11.400 CET [562647][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.401 CET [562647][client backend] [[unknown]][82/67:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.401 CET [562647][client backend] [[unknown]][82/67:0] LOG: connection authorized: user=nkey database=regression_test_ddl_deparse application_name=pg_regress/create_domain
2024-11-25 19:08:11.402 CET [562504][client backend] [pg_regress/constraints][46/845:0] ERROR: constraint "no_constraint" for table "constraint_comments_tbl" does not exist
2024-11-25 19:08:11.402 CET [562504][client backend] [pg_regress/constraints][46/845:0] STATEMENT: COMMENT ON CONSTRAINT no_constraint ON constraint_comments_tbl IS 'yes, the comment';
2024-11-25 19:08:11.402 CET [562504][client backend] [pg_regress/constraints][46/846:0] ERROR: constraint "no_constraint" for domain constraint_comments_dom does not exist
2024-11-25 19:08:11.402 CET [562504][client backend] [pg_regress/constraints][46/846:0] STATEMENT: COMMENT ON CONSTRAINT no_constraint ON DOMAIN constraint_comments_dom IS 'yes, another comment';
2024-11-25 19:08:11.402 CET [562504][client backend] [pg_regress/constraints][46/847:0] ERROR: relation "no_comments_tbl" does not exist
2024-11-25 19:08:11.402 CET [562504][client backend] [pg_regress/constraints][46/847:0] STATEMENT: COMMENT ON CONSTRAINT the_constraint ON no_comments_tbl IS 'bad comment';
2024-11-25 19:08:11.403 CET [562504][client backend] [pg_regress/constraints][46/848:0] ERROR: type "no_comments_dom" does not exist
2024-11-25 19:08:11.403 CET [562504][client backend] [pg_regress/constraints][46/848:0] STATEMENT: COMMENT ON CONSTRAINT the_constraint ON DOMAIN no_comments_dom IS 'another bad comment';
2024-11-25 19:08:11.404 CET [562504][client backend] [pg_regress/constraints][46/854:0] ERROR: must be owner of relation constraint_comments_tbl
2024-11-25 19:08:11.404 CET [562504][client backend] [pg_regress/constraints][46/854:0] STATEMENT: COMMENT ON CONSTRAINT the_constraint ON constraint_comments_tbl IS 'no, the comment';
2024-11-25 19:08:11.404 CET [562504][client backend] [pg_regress/constraints][46/855:0] ERROR: must be owner of type constraint_comments_dom
2024-11-25 19:08:11.404 CET [562504][client backend] [pg_regress/constraints][46/855:0] STATEMENT: COMMENT ON CONSTRAINT the_constraint ON DOMAIN constraint_comments_dom IS 'no, another comment';
2024-11-25 19:08:11.407 CET [562504][client backend] [pg_regress/constraints][:0] LOG: disconnection: session time: 0:00:00.706 user=nkey database=regression host=[local]
2024-11-25 19:08:11.409 CET [562610][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.066 user=nkey database=postgres host=[local]
2024-11-25 19:08:11.411 CET [562647][client backend] [pg_regress/create_domain][:0] LOG: disconnection: session time: 0:00:00.011 user=nkey database=regression_test_ddl_deparse host=[local]
2024-11-25 19:08:11.412 CET [562651][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.412 CET [562651][client backend] [[unknown]][95/232:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.412 CET [562651][client backend] [[unknown]][95/232:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:11.426 CET [562655][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.427 CET [562655][client backend] [[unknown]][97/85:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.427 CET [562655][client backend] [[unknown]][97/85:0] LOG: connection authorized: user=nkey database=regression_test_ddl_deparse application_name=pg_regress/create_sequence_1
2024-11-25 19:08:11.433 CET [562655][client backend] [pg_regress/create_sequence_1][:0] LOG: disconnection: session time: 0:00:00.006 user=nkey database=regression_test_ddl_deparse host=[local]
2024-11-25 19:08:11.438 CET [562659][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.438 CET [562659][client backend] [[unknown]][93/80:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.438 CET [562659][client backend] [[unknown]][93/80:0] LOG: connection authorized: user=nkey database=regression_test_ddl_deparse application_name=pg_regress/create_table
2024-11-25 19:08:11.445 CET [562663][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.446 CET [562663][client backend] [[unknown]][24/461:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.446 CET [562663][client backend] [[unknown]][24/461:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:11.448 CET [562651][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.036 user=nkey database=postgres host=[local]
2024-11-25 19:08:11.449 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:11.451 CET [562511][client backend] [pg_regress/updatable_views][7/1660:535040] ERROR: new row violates check option for view "v1"
2024-11-25 19:08:11.451 CET [562511][client backend] [pg_regress/updatable_views][7/1660:535040] DETAIL: Failing row contains (-2, minus two, 20).
2024-11-25 19:08:11.451 CET [562511][client backend] [pg_regress/updatable_views][7/1660:535040] STATEMENT: INSERT INTO v2 VALUES (-2, 'minus two', 20);
2024-11-25 19:08:11.451 CET [562511][client backend] [pg_regress/updatable_views][7/1661:535041] ERROR: new row violates check option for view "v2"
2024-11-25 19:08:11.451 CET [562511][client backend] [pg_regress/updatable_views][7/1661:535041] DETAIL: Failing row contains (3, three, 30).
2024-11-25 19:08:11.451 CET [562511][client backend] [pg_regress/updatable_views][7/1661:535041] STATEMENT: INSERT INTO v2 VALUES (3, 'three', 30);
2024-11-25 19:08:11.452 CET [562665][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.452 CET [562511][client backend] [pg_regress/updatable_views][7/1663:535043] ERROR: new row violates check option for view "v1"
2024-11-25 19:08:11.452 CET [562511][client backend] [pg_regress/updatable_views][7/1663:535043] DETAIL: Failing row contains (-1, ONE, 10).
2024-11-25 19:08:11.452 CET [562511][client backend] [pg_regress/updatable_views][7/1663:535043] STATEMENT: UPDATE v2 SET a = -1 WHERE a = 1;
2024-11-25 19:08:11.453 CET [562511][client backend] [pg_regress/updatable_views][7/1664:535044] ERROR: new row violates check option for view "v2"
2024-11-25 19:08:11.453 CET [562511][client backend] [pg_regress/updatable_views][7/1664:535044] DETAIL: Failing row contains (1, ONE, 30).
2024-11-25 19:08:11.453 CET [562511][client backend] [pg_regress/updatable_views][7/1664:535044] STATEMENT: UPDATE v2 SET c = 30 WHERE a = 1;
2024-11-25 19:08:11.453 CET [562665][client backend] [[unknown]][90/163:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.453 CET [562665][client backend] [[unknown]][90/163:0] LOG: connection authorized: user=nkey database=regression_test_dsa application_name=pg_regress/test_dsa
2024-11-25 19:08:11.469 CET [562511][client backend] [pg_regress/updatable_views][7/1683:535073] ERROR: new row violates check option for view "v1"
2024-11-25 19:08:11.469 CET [562511][client backend] [pg_regress/updatable_views][7/1683:535073] DETAIL: Failing row contains (-1, invalid).
2024-11-25 19:08:11.469 CET [562511][client backend] [pg_regress/updatable_views][7/1683:535073] STATEMENT: INSERT INTO v1 VALUES (-1, 'invalid');
2024-11-25 19:08:11.470 CET [562643][client backend] [isolation/partial-index/s2][74/48:535075] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.470 CET [562643][client backend] [isolation/partial-index/s2][74/48:535075] DETAIL: Reason code: Canceled on conflict out to pivot 535071, during read.
2024-11-25 19:08:11.470 CET [562643][client backend] [isolation/partial-index/s2][74/48:535075] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.470 CET [562643][client backend] [isolation/partial-index/s2][74/48:535075] STATEMENT: select * from test_t where val2 = 1;
2024-11-25 19:08:11.470 CET [561023][checkpointer] LOG: checkpoint complete: wrote 1348 buffers (8.2%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 1 recycled; write=0.019 s, sync=0.001 s, total=0.021 s; sync files=0, longest=0.000 s, average=0.000 s; distance=7678 kB, estimate=17388 kB; lsn=4/5A7F2970, redo lsn=4/5A676E98
2024-11-25 19:08:11.475 CET [562665][client backend] [pg_regress/test_dsa][:0] LOG: disconnection: session time: 0:00:00.023 user=nkey database=regression_test_dsa host=[local]
2024-11-25 19:08:11.485 CET [562622][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.116 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:11.485 CET [562508][client backend] [pg_regress/inherit][43/1001:535111] ERROR: cannot define not-null constraint on column "a2" with NO INHERIT
2024-11-25 19:08:11.485 CET [562508][client backend] [pg_regress/inherit][43/1001:535111] DETAIL: The column has an inherited not-null constraint.
2024-11-25 19:08:11.485 CET [562508][client backend] [pg_regress/inherit][43/1001:535111] STATEMENT: create table cc3 (a2 int not null no inherit) inherits (cc1);
2024-11-25 19:08:11.486 CET [562508][client backend] [pg_regress/inherit][43/1002:535112] ERROR: cannot change NO INHERIT status of NOT NULL constraint "nn" on relation "cc2"
2024-11-25 19:08:11.486 CET [562508][client backend] [pg_regress/inherit][43/1002:535112] STATEMENT: alter table cc2 add not null a2 no inherit;
2024-11-25 19:08:11.486 CET [562663][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.040 user=nkey database=postgres host=[local]
2024-11-25 19:08:11.486 CET [562508][client backend] [pg_regress/inherit][43/1003:535114] ERROR: cannot drop inherited constraint "nn" of relation "cc2"
2024-11-25 19:08:11.486 CET [562508][client backend] [pg_regress/inherit][43/1003:535114] STATEMENT: alter table cc2 alter column a2 drop not null;
2024-11-25 19:08:11.486 CET [562668][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.487 CET [562668][client backend] [[unknown]][61/237:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.487 CET [562668][client backend] [[unknown]][61/237:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:11.487 CET [562659][client backend] [pg_regress/create_table][:0] LOG: disconnection: session time: 0:00:00.049 user=nkey database=regression_test_ddl_deparse host=[local]
2024-11-25 19:08:11.489 CET [562674][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.490 CET [562674][client backend] [[unknown]][86/226:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.490 CET [562674][client backend] [[unknown]][86/226:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:11.492 CET [562511][client backend] [pg_regress/updatable_views][7/1704:535120] ERROR: new row violates check option for view "uv_ptv_wco"
2024-11-25 19:08:11.492 CET [562511][client backend] [pg_regress/updatable_views][7/1704:535120] DETAIL: Failing row contains (1, 2, null).
2024-11-25 19:08:11.492 CET [562511][client backend] [pg_regress/updatable_views][7/1704:535120] STATEMENT: insert into uv_ptv_wco values (1, 2);
2024-11-25 19:08:11.492 CET [562511][client backend] [pg_regress/updatable_views][7/1705:535122] ERROR: MERGE command cannot affect row a second time
2024-11-25 19:08:11.492 CET [562511][client backend] [pg_regress/updatable_views][7/1705:535122] HINT: Ensure that not more than one source row matches any one target row.
2024-11-25 19:08:11.492 CET [562511][client backend] [pg_regress/updatable_views][7/1705:535122] STATEMENT: merge into uv_ptv t
using (values (1,2), (1,4)) as v(a,b) on t.a = v.a -- fail: matches 2 src rows
when matched then update set b = t.b + 1
when not matched then insert values (v.a, v.b + 1);
2024-11-25 19:08:11.493 CET [562511][client backend] [pg_regress/updatable_views][7/1706:535123] ERROR: no partition of relation "uv_pt1" found for row
2024-11-25 19:08:11.493 CET [562511][client backend] [pg_regress/updatable_views][7/1706:535123] DETAIL: Partition key of the failing row contains (b) = (5).
2024-11-25 19:08:11.493 CET [562511][client backend] [pg_regress/updatable_views][7/1706:535123] STATEMENT: merge into uv_ptv t
using (values (1,2), (1,4)) as v(a,b) on t.a = v.a and t.b = v.b
when matched then update set b = t.b + 1
when not matched then insert values (v.a, v.b + 1);
2024-11-25 19:08:11.494 CET [562508][client backend] [pg_regress/inherit][43/1014:535125] ERROR: cannot drop inherited constraint "pp1_f1_not_null" of relation "cc2"
2024-11-25 19:08:11.494 CET [562508][client backend] [pg_regress/inherit][43/1014:535125] STATEMENT: alter table cc2 alter column f1 drop not null;
2024-11-25 19:08:11.496 CET [562676][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.496 CET [562668][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.009 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:11.497 CET [562676][client backend] [[unknown]][16/889:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.497 CET [562676][client backend] [[unknown]][16/889:0] LOG: connection authorized: user=nkey database=regression_test_ddl_deparse application_name=pg_regress/create_transform
2024-11-25 19:08:11.499 CET [562643][client backend] [isolation/partial-index/s2][74/50:535132] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.499 CET [562643][client backend] [isolation/partial-index/s2][74/50:535132] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.499 CET [562643][client backend] [isolation/partial-index/s2][74/50:535132] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.499 CET [562643][client backend] [isolation/partial-index/s2][74/50:535132] STATEMENT: COMMIT;
2024-11-25 19:08:11.502 CET [562677][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.502 CET [562508][client backend] [pg_regress/inherit][43/1024:535139] ERROR: cannot drop inherited constraint "pp1_f1_not_null" of relation "cc1"
2024-11-25 19:08:11.502 CET [562508][client backend] [pg_regress/inherit][43/1024:535139] STATEMENT: alter table cc1 alter column f1 drop not null;
2024-11-25 19:08:11.502 CET [562511][client backend] [pg_regress/updatable_views][7/1714:535140] ERROR: new row violates check option for view "wcowrtest_v"
2024-11-25 19:08:11.502 CET [562511][client backend] [pg_regress/updatable_views][7/1714:535140] DETAIL: Failing row contains (1).
2024-11-25 19:08:11.502 CET [562511][client backend] [pg_regress/updatable_views][7/1714:535140] STATEMENT: insert into wcowrtest_v values (1);
2024-11-25 19:08:11.503 CET [562677][client backend] [[unknown]][3/111:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.503 CET [562677][client backend] [[unknown]][3/111:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:11.513 CET [562676][client backend] [pg_regress/create_transform][:0] LOG: disconnection: session time: 0:00:00.018 user=nkey database=regression_test_ddl_deparse host=[local]
2024-11-25 19:08:11.518 CET [562682][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.519 CET [562682][client backend] [[unknown]][94/15:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.519 CET [562682][client backend] [[unknown]][94/15:0] LOG: connection authorized: user=nkey database=regression_test_ddl_deparse application_name=pg_regress/alter_table
2024-11-25 19:08:11.519 CET [562302][client backend] [pg_regress/postgres_fdw][65/430:0] ERROR: "reindex_foreign" is not a table or materialized view
2024-11-25 19:08:11.519 CET [562302][client backend] [pg_regress/postgres_fdw][65/430:0] STATEMENT: REINDEX TABLE reindex_foreign;
2024-11-25 19:08:11.520 CET [562302][client backend] [pg_regress/postgres_fdw][65/431:0] ERROR: "reindex_foreign" is not a table or materialized view
2024-11-25 19:08:11.520 CET [562302][client backend] [pg_regress/postgres_fdw][65/431:0] STATEMENT: REINDEX TABLE CONCURRENTLY reindex_foreign;
2024-11-25 19:08:11.520 CET [562511][client backend] [pg_regress/updatable_views][7/1722:535163] ERROR: new row violates check option for view "wcowrtest_v2"
2024-11-25 19:08:11.520 CET [562511][client backend] [pg_regress/updatable_views][7/1722:535163] DETAIL: Failing row contains (2, no such row in sometable).
2024-11-25 19:08:11.520 CET [562511][client backend] [pg_regress/updatable_views][7/1722:535163] STATEMENT: insert into wcowrtest_v2 values (2, 'no such row in sometable');
2024-11-25 19:08:11.522 CET [562685][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.523 CET [562685][client backend] [[unknown]][11/130:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.523 CET [562685][client backend] [[unknown]][11/130:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:11.526 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:11.529 CET [562674][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.039 user=nkey database=postgres host=[local]
2024-11-25 19:08:11.529 CET [562302][client backend] [pg_regress/postgres_fdw][65/444:0] ERROR: invalid input syntax for type integer: "foo"
2024-11-25 19:08:11.529 CET [562302][client backend] [pg_regress/postgres_fdw][65/444:0] CONTEXT: column "x8" of foreign table "ftx"
2024-11-25 19:08:11.529 CET [562302][client backend] [pg_regress/postgres_fdw][65/444:0] STATEMENT: SELECT * FROM ft1 ftx(x1,x2,x3,x4,x5,x6,x7,x8) WHERE x1 = 1;
2024-11-25 19:08:11.533 CET [562687][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.533 CET [562687][client backend] [[unknown]][33/362:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.533 CET [562687][client backend] [[unknown]][33/362:0] LOG: connection authorized: user=nkey database=regression_test_dsm_registry application_name=pg_regress/test_dsm_registry
2024-11-25 19:08:11.540 CET [562641][client backend] [isolation/partial-index/s1][73/99:535204] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.540 CET [562641][client backend] [isolation/partial-index/s1][73/99:535204] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.540 CET [562641][client backend] [isolation/partial-index/s1][73/99:535204] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.540 CET [562641][client backend] [isolation/partial-index/s1][73/99:535204] STATEMENT: COMMIT;
2024-11-25 19:08:11.544 CET [562688][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.544 CET [561023][checkpointer] LOG: checkpoint complete: wrote 1388 buffers (8.5%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.018 s, sync=0.001 s, total=0.019 s; sync files=0, longest=0.000 s, average=0.000 s; distance=8599 kB, estimate=16509 kB; lsn=4/5B042BC8, redo lsn=4/5AEDCD78
2024-11-25 19:08:11.545 CET [562688][client backend] [[unknown]][98/93:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.545 CET [562688][client backend] [[unknown]][98/93:0] LOG: connection authorized: user=nkey database=regression_test_dsm_registry application_name=pg_regress/test_dsm_registry
2024-11-25 19:08:11.547 CET [562687][client backend] [pg_regress/test_dsm_registry][:0] LOG: disconnection: session time: 0:00:00.013 user=nkey database=regression_test_dsm_registry host=[local]
2024-11-25 19:08:11.547 CET [562688][client backend] [pg_regress/test_dsm_registry][:0] LOG: disconnection: session time: 0:00:00.003 user=nkey database=regression_test_dsm_registry host=[local]
2024-11-25 19:08:11.550 CET [562302][client backend] [pg_regress/postgres_fdw][65/445:0] ERROR: invalid input syntax for type integer: "foo"
2024-11-25 19:08:11.550 CET [562302][client backend] [pg_regress/postgres_fdw][65/445:0] CONTEXT: column "x8" of foreign table "ftx"
2024-11-25 19:08:11.550 CET [562302][client backend] [pg_regress/postgres_fdw][65/445:0] STATEMENT: SELECT ftx.x1, ft2.c2, ftx.x8 FROM ft1 ftx(x1,x2,x3,x4,x5,x6,x7,x8), ft2
WHERE ftx.x1 = ft2.c1 AND ftx.x1 = 1;
2024-11-25 19:08:11.551 CET [562511][client backend] [pg_regress/updatable_views][7/1755:0] ERROR: cannot insert into column "cc" of view "uv_iocu_view"
2024-11-25 19:08:11.551 CET [562511][client backend] [pg_regress/updatable_views][7/1755:0] DETAIL: View columns that are not columns of their base relation are not updatable.
2024-11-25 19:08:11.551 CET [562511][client backend] [pg_regress/updatable_views][7/1755:0] STATEMENT: insert into uv_iocu_view (aa) values (1)
on conflict (aa) do update set cc = 'XXX';
2024-11-25 19:08:11.557 CET [562302][client backend] [pg_regress/postgres_fdw][65/447:0] ERROR: invalid input syntax for type integer: "foo"
2024-11-25 19:08:11.557 CET [562302][client backend] [pg_regress/postgres_fdw][65/447:0] CONTEXT: whole-row reference to foreign table "ftx"
2024-11-25 19:08:11.557 CET [562302][client backend] [pg_regress/postgres_fdw][65/447:0] STATEMENT: SELECT ftx.x1, ft2.c2, ftx FROM ft1 ftx(x1,x2,x3,x4,x5,x6,x7,x8), ft2
WHERE ftx.x1 = ft2.c1 AND ftx.x1 = 1;
2024-11-25 19:08:11.560 CET [562302][client backend] [pg_regress/postgres_fdw][65/448:0] ERROR: invalid input syntax for type integer: "foo"
2024-11-25 19:08:11.560 CET [562302][client backend] [pg_regress/postgres_fdw][65/448:0] CONTEXT: processing expression at position 2 in select list
2024-11-25 19:08:11.560 CET [562302][client backend] [pg_regress/postgres_fdw][65/448:0] STATEMENT: SELECT sum(c2), array_agg(c8) FROM ft1 GROUP BY c8;
2024-11-25 19:08:11.561 CET [562685][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.038 user=nkey database=postgres host=[local]
2024-11-25 19:08:11.564 CET [562511][client backend] [pg_regress/updatable_views][7/1768:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.564 CET [562511][client backend] [pg_regress/updatable_views][7/1768:0] STATEMENT: insert into rw_view1 values ('yyy',2.0,1)
on conflict (aa) do update set bb = excluded.cc;
2024-11-25 19:08:11.564 CET [562302][client backend] [pg_regress/postgres_fdw][65/449:0] ERROR: invalid input syntax for type integer: "foo"
2024-11-25 19:08:11.564 CET [562302][client backend] [pg_regress/postgres_fdw][65/449:0] CONTEXT: column "c8" of foreign table "ft1"
2024-11-25 19:08:11.564 CET [562302][client backend] [pg_regress/postgres_fdw][65/449:0] STATEMENT: ANALYZE ft1;
2024-11-25 19:08:11.564 CET [562511][client backend] [pg_regress/updatable_views][7/1769:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.564 CET [562511][client backend] [pg_regress/updatable_views][7/1769:0] STATEMENT: insert into rw_view1 values ('yyy',2.0,1)
on conflict (aa) do update set bb = rw_view1.cc;
2024-11-25 19:08:11.565 CET [562694][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.565 CET [562694][client backend] [[unknown]][99/76:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.565 CET [562694][client backend] [[unknown]][99/76:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:11.565 CET [562511][client backend] [pg_regress/updatable_views][7/1772:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.565 CET [562511][client backend] [pg_regress/updatable_views][7/1772:0] STATEMENT: insert into rw_view1 values ('zzz',2.0,1)
on conflict (aa) do update set cc = 3.0;
2024-11-25 19:08:11.568 CET [562643][client backend] [isolation/partial-index/s2][74/53:535283] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.568 CET [562643][client backend] [isolation/partial-index/s2][74/53:535283] DETAIL: Reason code: Canceled on conflict out to pivot 535286, during read.
2024-11-25 19:08:11.568 CET [562643][client backend] [isolation/partial-index/s2][74/53:535283] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.568 CET [562643][client backend] [isolation/partial-index/s2][74/53:535283] STATEMENT: select * from test_t where val2 = 1;
2024-11-25 19:08:11.569 CET [562511][client backend] [pg_regress/updatable_views][7/1781:0] ERROR: permission denied for table base_tbl
2024-11-25 19:08:11.569 CET [562511][client backend] [pg_regress/updatable_views][7/1781:0] STATEMENT: insert into rw_view2 (aa,bb) values (1,'xxx')
on conflict (aa) do update set bb = excluded.bb;
2024-11-25 19:08:11.570 CET [562677][client backend] [postgres_fdw][3/129:0] ERROR: operator does not exist: public.user_enum ~~ unknown at character 92
2024-11-25 19:08:11.570 CET [562677][client backend] [postgres_fdw][3/129:0] HINT: No operator matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:11.570 CET [562677][client backend] [postgres_fdw][3/129:0] STATEMENT: DECLARE c1 CURSOR FOR
SELECT "C 1", c2, c3, c4, c5, c6, c7, c8 FROM "S 1"."T 1" WHERE ((c8 ~~ 'foo')) LIMIT 1::bigint
2024-11-25 19:08:11.570 CET [562302][client backend] [pg_regress/postgres_fdw][65/456:0] ERROR: operator does not exist: public.user_enum ~~ unknown
2024-11-25 19:08:11.570 CET [562302][client backend] [pg_regress/postgres_fdw][65/456:0] HINT: No operator matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:11.570 CET [562302][client backend] [pg_regress/postgres_fdw][65/456:0] CONTEXT: remote SQL command: SELECT "C 1", c2, c3, c4, c5, c6, c7, c8 FROM "S 1"."T 1" WHERE ((c8 ~~ 'foo')) LIMIT 1::bigint
2024-11-25 19:08:11.570 CET [562302][client backend] [pg_regress/postgres_fdw][65/456:0] STATEMENT: SELECT * FROM ft1 WHERE c8 LIKE 'foo' LIMIT 1;
2024-11-25 19:08:11.570 CET [562677][client backend] [postgres_fdw][3/130:0] ERROR: operator does not exist: public.user_enum ~~ unknown at character 92
2024-11-25 19:08:11.570 CET [562677][client backend] [postgres_fdw][3/130:0] HINT: No operator matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:11.570 CET [562677][client backend] [postgres_fdw][3/130:0] STATEMENT: DECLARE c1 CURSOR FOR
SELECT "C 1", c2, c3, c4, c5, c6, c7, c8 FROM "S 1"."T 1" WHERE ((c8 ~~ 'foo')) LIMIT 1::bigint
2024-11-25 19:08:11.570 CET [562302][client backend] [pg_regress/postgres_fdw][65/457:0] ERROR: operator does not exist: public.user_enum ~~ unknown
2024-11-25 19:08:11.570 CET [562302][client backend] [pg_regress/postgres_fdw][65/457:0] HINT: No operator matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:11.570 CET [562302][client backend] [pg_regress/postgres_fdw][65/457:0] CONTEXT: remote SQL command: SELECT "C 1", c2, c3, c4, c5, c6, c7, c8 FROM "S 1"."T 1" WHERE ((c8 ~~ 'foo')) LIMIT 1::bigint
2024-11-25 19:08:11.570 CET [562302][client backend] [pg_regress/postgres_fdw][65/457:0] STATEMENT: SELECT * FROM ft1 WHERE c8::text LIKE 'foo' LIMIT 1;
2024-11-25 19:08:11.574 CET [562511][client backend] [pg_regress/updatable_views][7/1788:0] ERROR: permission denied for view rw_view1
2024-11-25 19:08:11.574 CET [562511][client backend] [pg_regress/updatable_views][7/1788:0] STATEMENT: insert into rw_view4 (aa,bb) values (1,'yyy')
on conflict (aa) do update set bb = excluded.bb;
2024-11-25 19:08:11.577 CET [562302][client backend] [pg_regress/postgres_fdw][65/459:0] ERROR: syntax error at or near "ERROR" at character 1
2024-11-25 19:08:11.577 CET [562302][client backend] [pg_regress/postgres_fdw][65/459:0] STATEMENT: ERROR OUT;
2024-11-25 19:08:11.578 CET [562677][client backend] [postgres_fdw][3/131:0] ERROR: division by zero
2024-11-25 19:08:11.578 CET [562677][client backend] [postgres_fdw][3/131:0] STATEMENT: FETCH 100 FROM c2
2024-11-25 19:08:11.578 CET [562302][client backend] [pg_regress/postgres_fdw][65/459:0] ERROR: division by zero
2024-11-25 19:08:11.578 CET [562302][client backend] [pg_regress/postgres_fdw][65/459:0] CONTEXT: remote SQL command: SELECT "C 1", c2, c3, c4, c5, c6, c7, c8 FROM "S 1"."T 1" WHERE (((1 / ("C 1" - 1)) > 0))
2024-11-25 19:08:11.578 CET [562302][client backend] [pg_regress/postgres_fdw][65/459:0] STATEMENT: SELECT * FROM ft1 WHERE 1 / (c1 - 1) > 0;
2024-11-25 19:08:11.591 CET [562682][client backend] [pg_regress/alter_table][:0] LOG: disconnection: session time: 0:00:00.072 user=nkey database=regression_test_ddl_deparse host=[local]
2024-11-25 19:08:11.595 CET [562694][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.030 user=nkey database=postgres host=[local]
2024-11-25 19:08:11.596 CET [562702][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.597 CET [562703][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.597 CET [562702][client backend] [[unknown]][4/120:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.597 CET [562702][client backend] [[unknown]][4/120:0] LOG: connection authorized: user=nkey database=regression_test_ddl_deparse application_name=pg_regress/create_view
2024-11-25 19:08:11.597 CET [562703][client backend] [[unknown]][76/72:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.597 CET [562703][client backend] [[unknown]][76/72:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:11.599 CET [562704][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.599 CET [562704][client backend] [[unknown]][84/76:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.599 CET [562704][client backend] [[unknown]][84/76:0] LOG: connection authorized: user=nkey database=regression_test_extensions application_name=pg_regress/test_extensions
2024-11-25 19:08:11.600 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:11.603 CET [562643][client backend] [isolation/partial-index/s2][74/54:535355] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.603 CET [562643][client backend] [isolation/partial-index/s2][74/54:535355] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.603 CET [562643][client backend] [isolation/partial-index/s2][74/54:535355] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.603 CET [562643][client backend] [isolation/partial-index/s2][74/54:535355] STATEMENT: COMMIT;
2024-11-25 19:08:11.608 CET [562702][client backend] [pg_regress/create_view][:0] LOG: disconnection: session time: 0:00:00.011 user=nkey database=regression_test_ddl_deparse host=[local]
2024-11-25 19:08:11.609 CET [562704][client backend] [pg_regress/test_extensions][84/78:535377] ERROR: required extension "test_ext2" is not installed
2024-11-25 19:08:11.609 CET [562704][client backend] [pg_regress/test_extensions][84/78:535377] HINT: Use CREATE EXTENSION ... CASCADE to install required extensions too.
2024-11-25 19:08:11.609 CET [562704][client backend] [pg_regress/test_extensions][84/78:535377] STATEMENT: CREATE EXTENSION test_ext1;
2024-11-25 19:08:11.609 CET [562704][client backend] [pg_regress/test_extensions][84/79:0] ERROR: schema "test_ext1" does not exist
2024-11-25 19:08:11.609 CET [562704][client backend] [pg_regress/test_extensions][84/79:0] STATEMENT: CREATE EXTENSION test_ext1 SCHEMA test_ext1;
2024-11-25 19:08:11.610 CET [562704][client backend] [pg_regress/test_extensions][84/80:0] ERROR: schema "test_ext" does not exist
2024-11-25 19:08:11.610 CET [562704][client backend] [pg_regress/test_extensions][84/80:0] STATEMENT: CREATE EXTENSION test_ext1 SCHEMA test_ext;
2024-11-25 19:08:11.610 CET [562704][client backend] [pg_regress/test_extensions][84/81:0] ERROR: extension "test_ext1" must be installed in schema "test_ext1"
2024-11-25 19:08:11.610 CET [562704][client backend] [pg_regress/test_extensions][84/81:0] STATEMENT: CREATE EXTENSION test_ext1 SCHEMA has$dollar;
2024-11-25 19:08:11.613 CET [562708][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.614 CET [562708][client backend] [[unknown]][85/532:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.614 CET [562708][client backend] [[unknown]][85/532:0] LOG: connection authorized: user=nkey database=regression_test_ddl_deparse application_name=pg_regress/create_trigger
2024-11-25 19:08:11.615 CET [562704][client backend] [pg_regress/test_extensions][84/84:0] ERROR: cyclic dependency detected between extensions "test_ext_cyclic1" and "test_ext_cyclic2"
2024-11-25 19:08:11.615 CET [562704][client backend] [pg_regress/test_extensions][84/84:0] STATEMENT: CREATE EXTENSION test_ext_cyclic1 CASCADE;
2024-11-25 19:08:11.620 CET [561023][checkpointer] LOG: checkpoint complete: wrote 1391 buffers (8.5%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 1 recycled; write=0.018 s, sync=0.001 s, total=0.020 s; sync files=0, longest=0.000 s, average=0.000 s; distance=8351 kB, estimate=15693 kB; lsn=4/5B860BF8, redo lsn=4/5B704B40
2024-11-25 19:08:11.620 CET [562708][client backend] [pg_regress/create_trigger][:0] LOG: disconnection: session time: 0:00:00.007 user=nkey database=regression_test_ddl_deparse host=[local]
2024-11-25 19:08:11.624 CET [562712][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.626 CET [562712][client backend] [[unknown]][20/108:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.626 CET [562712][client backend] [[unknown]][20/108:0] LOG: connection authorized: user=nkey database=regression_test_ddl_deparse application_name=pg_regress/create_rule
2024-11-25 19:08:11.632 CET [562704][client backend] [pg_regress/test_extensions][84/97:535428] ERROR: syntax error at or near "FUNCTIN" at character 8
2024-11-25 19:08:11.632 CET [562704][client backend] [pg_regress/test_extensions][84/97:535428] QUERY: CREATE FUNCTIN my_erroneous_func(int) RETURNS int LANGUAGE SQL
AS $$ SELECT $1 + 1 $$;
2024-11-25 19:08:11.632 CET [562704][client backend] [pg_regress/test_extensions][84/97:535428] CONTEXT: extension script file "test_ext7--2.0--2.1bad.sql", near line 10
2024-11-25 19:08:11.632 CET [562704][client backend] [pg_regress/test_extensions][84/97:535428] STATEMENT: alter extension test_ext7 update to '2.1bad';
2024-11-25 19:08:11.633 CET [562712][client backend] [pg_regress/create_rule][:0] LOG: disconnection: session time: 0:00:00.009 user=nkey database=regression_test_ddl_deparse host=[local]
2024-11-25 19:08:11.633 CET [562704][client backend] [pg_regress/test_extensions][84/98:535435] ERROR: syntax error at or near "," at character 14
2024-11-25 19:08:11.633 CET [562704][client backend] [pg_regress/test_extensions][84/98:535435] QUERY: SELECT $1 + , 1
2024-11-25 19:08:11.633 CET [562704][client backend] [pg_regress/test_extensions][84/98:535435] CONTEXT: SQL statement "CREATE FUNCTION my_erroneous_func(int) RETURNS int LANGUAGE SQL
AS $$ SELECT $1 + , 1 $$"
extension script file "test_ext7--2.0--2.2bad.sql", near line 9
2024-11-25 19:08:11.633 CET [562704][client backend] [pg_regress/test_extensions][84/98:535435] STATEMENT: alter extension test_ext7 update to '2.2bad';
2024-11-25 19:08:11.634 CET [562641][client backend] [isolation/partial-index/s1][73/103:535434] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.634 CET [562641][client backend] [isolation/partial-index/s1][73/103:535434] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.634 CET [562641][client backend] [isolation/partial-index/s1][73/103:535434] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.634 CET [562641][client backend] [isolation/partial-index/s1][73/103:535434] STATEMENT: COMMIT;
2024-11-25 19:08:11.635 CET [562508][client backend] [pg_regress/inherit][43/1156:535442] ERROR: cannot change NO INHERIT status of NOT NULL constraint "inh_nn_parent_a_not_null" on relation "inh_nn_parent"
2024-11-25 19:08:11.635 CET [562508][client backend] [pg_regress/inherit][43/1156:535442] STATEMENT: ALTER TABLE inh_nn_parent ADD CONSTRAINT nna NOT NULL a;
2024-11-25 19:08:11.635 CET [562508][client backend] [pg_regress/inherit][43/1157:535443] ERROR: cannot change NO INHERIT status of NOT NULL constraint "inh_nn_parent_a_not_null" on relation "inh_nn_parent"
2024-11-25 19:08:11.635 CET [562508][client backend] [pg_regress/inherit][43/1157:535443] STATEMENT: ALTER TABLE inh_nn_parent ALTER a SET NOT NULL;
2024-11-25 19:08:11.636 CET [562703][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.039 user=nkey database=postgres host=[local]
2024-11-25 19:08:11.638 CET [562718][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.638 CET [562719][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.638 CET [562718][client backend] [[unknown]][10/158:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.638 CET [562718][client backend] [[unknown]][10/158:0] LOG: connection authorized: user=nkey database=regression_test_ddl_deparse application_name=pg_regress/comment_on
2024-11-25 19:08:11.639 CET [562719][client backend] [[unknown]][12/168:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.639 CET [562719][client backend] [[unknown]][12/168:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:11.642 CET [562720][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.643 CET [562720][client backend] [[unknown]][2/589:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.643 CET [562720][client backend] [[unknown]][2/589:0] LOG: connection authorized: user=nkey database=regression_test_extensions application_name=pg_regress/test_extensions
2024-11-25 19:08:11.644 CET [562502][client backend] [pg_regress/triggers][14/930:0] ERROR: moving row to another partition during a BEFORE FOR EACH ROW trigger is not supported
2024-11-25 19:08:11.644 CET [562502][client backend] [pg_regress/triggers][14/930:0] DETAIL: Before executing trigger "t", the row was to be in partition "public.parted_1_1".
2024-11-25 19:08:11.644 CET [562502][client backend] [pg_regress/triggers][14/930:0] STATEMENT: insert into parted values (1, 1, 'uno uno v2');
2024-11-25 19:08:11.644 CET [562502][client backend] [pg_regress/triggers][14/931:535462] ERROR: no partition of relation "parted" found for row
2024-11-25 19:08:11.644 CET [562502][client backend] [pg_regress/triggers][14/931:535462] DETAIL: Partition key of the failing row contains (a) = (2).
2024-11-25 19:08:11.644 CET [562502][client backend] [pg_regress/triggers][14/931:535462] STATEMENT: update parted set c = c || 'v3';
2024-11-25 19:08:11.645 CET [562704][client backend] [pg_regress/test_extensions][:0] LOG: disconnection: session time: 0:00:00.046 user=nkey database=regression_test_extensions host=[local]
2024-11-25 19:08:11.645 CET [562511][client backend] [pg_regress/updatable_views][:0] LOG: disconnection: session time: 0:00:00.942 user=nkey database=regression host=[local]
2024-11-25 19:08:11.647 CET [562502][client backend] [pg_regress/triggers][14/933:0] ERROR: moving row to another partition during a BEFORE FOR EACH ROW trigger is not supported
2024-11-25 19:08:11.647 CET [562502][client backend] [pg_regress/triggers][14/933:0] DETAIL: Before executing trigger "t", the row was to be in partition "public.parted_1_1".
2024-11-25 19:08:11.647 CET [562502][client backend] [pg_regress/triggers][14/933:0] STATEMENT: insert into parted values (1, 1, 'uno uno v4');
2024-11-25 19:08:11.647 CET [562508][client backend] [pg_regress/inherit][43/1162:535466] ERROR: cannot change NO INHERIT status of NOT NULL constraint "foo" on relation "inh_nn_lvl3"
2024-11-25 19:08:11.647 CET [562508][client backend] [pg_regress/inherit][43/1162:535466] STATEMENT: ALTER TABLE inh_nn_lvl1 ADD PRIMARY KEY (a);
2024-11-25 19:08:11.647 CET [562502][client backend] [pg_regress/triggers][14/934:535467] ERROR: no partition of relation "parted_1" found for row
2024-11-25 19:08:11.647 CET [562502][client backend] [pg_regress/triggers][14/934:535467] DETAIL: Partition key of the failing row contains (b) = (2).
2024-11-25 19:08:11.647 CET [562502][client backend] [pg_regress/triggers][14/934:535467] STATEMENT: update parted set c = c || 'v5';
2024-11-25 19:08:11.648 CET [562720][client backend] [pg_regress/test_extensions][2/590:0] LOG: test_extensions looped 0 times
2024-11-25 19:08:11.648 CET [562720][client backend] [pg_regress/test_extensions][2/590:0] CONTEXT: PL/pgSQL function inline_code_block line 4 at RAISE
2024-11-25 19:08:11.648 CET [562720][client backend] [pg_regress/test_extensions][2/590:0] STATEMENT: do 'declare c int = 0;
begin
while (select count(*) from pg_stat_activity where pid = '
'562704'
') > 0 loop c := c + 1; perform pg_stat_clear_snapshot(); end loop;
raise log ''test_extensions looped % times'', c;
end';
2024-11-25 19:08:11.650 CET [562508][client backend] [pg_regress/inherit][43/1164:535473] ERROR: conflicting NO INHERIT declaration for not-null constraint on column "a"
2024-11-25 19:08:11.650 CET [562508][client backend] [pg_regress/inherit][43/1164:535473] STATEMENT: CREATE TABLE inh_nn1 (a int primary key, b int, not null a no inherit);
2024-11-25 19:08:11.651 CET [562718][client backend] [pg_regress/comment_on][10/166:0] ERROR: function c_function_test() does not exist
2024-11-25 19:08:11.651 CET [562718][client backend] [pg_regress/comment_on][10/166:0] STATEMENT: COMMENT ON FUNCTION c_function_test() IS 'FUNCTION test';
2024-11-25 19:08:11.651 CET [562508][client backend] [pg_regress/inherit][43/1166:535478] ERROR: cannot define not-null constraint on column "a" with NO INHERIT
2024-11-25 19:08:11.651 CET [562508][client backend] [pg_regress/inherit][43/1166:535478] DETAIL: The column has an inherited not-null constraint.
2024-11-25 19:08:11.651 CET [562508][client backend] [pg_regress/inherit][43/1166:535478] STATEMENT: CREATE TABLE inh_nn2 (a int not null no inherit) INHERITS (inh_nn1);
2024-11-25 19:08:11.652 CET [562508][client backend] [pg_regress/inherit][43/1167:535481] ERROR: conflicting NO INHERIT declaration for not-null constraint on column "a"
2024-11-25 19:08:11.652 CET [562508][client backend] [pg_regress/inherit][43/1167:535481] STATEMENT: CREATE TABLE inh_nn3 (a int not null, b int, not null a no inherit);
2024-11-25 19:08:11.653 CET [562508][client backend] [pg_regress/inherit][43/1168:535483] ERROR: conflicting NO INHERIT declaration for not-null constraint on column "a"
2024-11-25 19:08:11.653 CET [562508][client backend] [pg_regress/inherit][43/1168:535483] STATEMENT: CREATE TABLE inh_nn4 (a int not null no inherit, b int, not null a);
2024-11-25 19:08:11.653 CET [562508][client backend] [pg_regress/inherit][43/1169:535485] ERROR: table "inh_nn2" does not exist
2024-11-25 19:08:11.653 CET [562508][client backend] [pg_regress/inherit][43/1169:535485] STATEMENT: DROP TABLE inh_nn1, inh_nn2, inh_nn3, inh_nn4;
2024-11-25 19:08:11.653 CET [562718][client backend] [pg_regress/comment_on][:0] LOG: disconnection: session time: 0:00:00.015 user=nkey database=regression_test_ddl_deparse host=[local]
2024-11-25 19:08:11.656 CET [562508][client backend] [pg_regress/inherit][43/1174:535491] ERROR: column "f1" in child table "inh_child2" must be marked NOT NULL
2024-11-25 19:08:11.656 CET [562508][client backend] [pg_regress/inherit][43/1174:535491] STATEMENT: alter table inh_child2 inherit inh_child1;
2024-11-25 19:08:11.662 CET [562724][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.663 CET [562724][client backend] [[unknown]][13/102:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.663 CET [562724][client backend] [[unknown]][13/102:0] LOG: connection authorized: user=nkey database=regression_test_ddl_deparse application_name=pg_regress/alter_function
2024-11-25 19:08:11.667 CET [562643][client backend] [isolation/partial-index/s2][74/57:535503] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.667 CET [562643][client backend] [isolation/partial-index/s2][74/57:535503] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.667 CET [562643][client backend] [isolation/partial-index/s2][74/57:535503] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.667 CET [562643][client backend] [isolation/partial-index/s2][74/57:535503] STATEMENT: COMMIT;
2024-11-25 19:08:11.667 CET [562720][client backend] [pg_regress/test_extensions][2/613:535508] ERROR: cannot PREPARE a transaction that has operated on temporary objects
2024-11-25 19:08:11.667 CET [562720][client backend] [pg_regress/test_extensions][2/613:535508] STATEMENT: PREPARE TRANSACTION 'twophase_extension';
2024-11-25 19:08:11.671 CET [562719][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.032 user=nkey database=postgres host=[local]
2024-11-25 19:08:11.671 CET [562724][client backend] [pg_regress/alter_function][13/106:0] ERROR: function plpgsql_function_trigger_2() does not exist
2024-11-25 19:08:11.671 CET [562724][client backend] [pg_regress/alter_function][13/106:0] STATEMENT: ALTER FUNCTION plpgsql_function_trigger_2()
OWNER TO regress_alter_function_role;
2024-11-25 19:08:11.672 CET [562724][client backend] [pg_regress/alter_function][:0] LOG: disconnection: session time: 0:00:00.009 user=nkey database=regression_test_ddl_deparse host=[local]
2024-11-25 19:08:11.673 CET [562720][client backend] [pg_regress/test_extensions][2/621:535524] ERROR: function ext_cor_func() is not a member of extension "test_ext_cor"
2024-11-25 19:08:11.673 CET [562720][client backend] [pg_regress/test_extensions][2/621:535524] DETAIL: An extension is not allowed to replace an object that it does not own.
2024-11-25 19:08:11.673 CET [562720][client backend] [pg_regress/test_extensions][2/621:535524] CONTEXT: SQL statement "CREATE OR REPLACE FUNCTION ext_cor_func() RETURNS text
AS $$ SELECT 'ext_cor_func: from extension'::text $$ LANGUAGE sql"
extension script file "test_ext_cor--1.0.sql", near line 8
2024-11-25 19:08:11.673 CET [562720][client backend] [pg_regress/test_extensions][2/621:535524] STATEMENT: CREATE EXTENSION test_ext_cor;
2024-11-25 19:08:11.676 CET [562720][client backend] [pg_regress/test_extensions][2/625:535528] ERROR: view ext_cor_view is not a member of extension "test_ext_cor"
2024-11-25 19:08:11.676 CET [562720][client backend] [pg_regress/test_extensions][2/625:535528] DETAIL: An extension is not allowed to replace an object that it does not own.
2024-11-25 19:08:11.676 CET [562720][client backend] [pg_regress/test_extensions][2/625:535528] CONTEXT: SQL statement "CREATE OR REPLACE VIEW ext_cor_view AS
SELECT 'ext_cor_view: from extension'::text AS col"
extension script file "test_ext_cor--1.0.sql", near line 11
2024-11-25 19:08:11.676 CET [562720][client backend] [pg_regress/test_extensions][2/625:535528] STATEMENT: CREATE EXTENSION test_ext_cor;
2024-11-25 19:08:11.676 CET [562720][client backend] [pg_regress/test_extensions][2/626:0] ERROR: function ext_cor_func() does not exist at character 8
2024-11-25 19:08:11.676 CET [562720][client backend] [pg_regress/test_extensions][2/626:0] HINT: No function matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:11.676 CET [562720][client backend] [pg_regress/test_extensions][2/626:0] STATEMENT: SELECT ext_cor_func();
2024-11-25 19:08:11.676 CET [562729][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.677 CET [562730][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.677 CET [562729][client backend] [[unknown]][6/144:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.677 CET [562729][client backend] [[unknown]][6/144:0] LOG: connection authorized: user=nkey database=regression_test_ginpostinglist application_name=pg_regress/test_ginpostinglist
2024-11-25 19:08:11.677 CET [562730][client backend] [[unknown]][21/260:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.677 CET [562730][client backend] [[unknown]][21/260:0] LOG: connection authorized: user=nkey database=regression_test_ddl_deparse application_name=pg_regress/alter_sequence
2024-11-25 19:08:11.678 CET [562720][client backend] [pg_regress/test_extensions][2/630:535533] ERROR: type test_ext_type is not a member of extension "test_ext_cor"
2024-11-25 19:08:11.678 CET [562720][client backend] [pg_regress/test_extensions][2/630:535533] DETAIL: An extension is not allowed to replace an object that it does not own.
2024-11-25 19:08:11.678 CET [562720][client backend] [pg_regress/test_extensions][2/630:535533] CONTEXT: SQL statement "CREATE TYPE test_ext_type AS ENUM('x', 'y')"
extension script file "test_ext_cor--1.0.sql", near line 17
2024-11-25 19:08:11.678 CET [562720][client backend] [pg_regress/test_extensions][2/630:535533] STATEMENT: CREATE EXTENSION test_ext_cor;
2024-11-25 19:08:11.680 CET [562720][client backend] [pg_regress/test_extensions][2/633:535538] ERROR: operator <<@@(point,polygon) is not a member of extension "test_ext_cor"
2024-11-25 19:08:11.680 CET [562720][client backend] [pg_regress/test_extensions][2/633:535538] DETAIL: An extension is not allowed to replace an object that it does not own.
2024-11-25 19:08:11.680 CET [562720][client backend] [pg_regress/test_extensions][2/633:535538] CONTEXT: SQL statement "CREATE OPERATOR <<@@ ( PROCEDURE = pt_contained_poly,
LEFTARG = point, RIGHTARG = polygon )"
extension script file "test_ext_cor--1.0.sql", near line 19
2024-11-25 19:08:11.680 CET [562720][client backend] [pg_regress/test_extensions][2/633:535538] STATEMENT: CREATE EXTENSION test_ext_cor;
2024-11-25 19:08:11.683 CET [562730][client backend] [pg_regress/alter_sequence][:0] LOG: disconnection: session time: 0:00:00.006 user=nkey database=regression_test_ddl_deparse host=[local]
2024-11-25 19:08:11.684 CET [562720][client backend] [pg_regress/test_extensions][2/643:535546] ERROR: collation ext_cine_coll is not a member of extension "test_ext_cine"
2024-11-25 19:08:11.684 CET [562720][client backend] [pg_regress/test_extensions][2/643:535546] DETAIL: An extension may only use CREATE ... IF NOT EXISTS to skip object creation if the conflicting object is one that it already owns.
2024-11-25 19:08:11.684 CET [562720][client backend] [pg_regress/test_extensions][2/643:535546] CONTEXT: SQL statement "CREATE COLLATION IF NOT EXISTS ext_cine_coll
( LC_COLLATE = "POSIX", LC_CTYPE = "POSIX" )"
extension script file "test_ext_cine--1.0.sql", near line 10
2024-11-25 19:08:11.684 CET [562720][client backend] [pg_regress/test_extensions][2/643:535546] STATEMENT: CREATE EXTENSION test_ext_cine;
2024-11-25 19:08:11.687 CET [562720][client backend] [pg_regress/test_extensions][2/647:535551] ERROR: materialized view ext_cine_mv is not a member of extension "test_ext_cine"
2024-11-25 19:08:11.687 CET [562720][client backend] [pg_regress/test_extensions][2/647:535551] DETAIL: An extension may only use CREATE ... IF NOT EXISTS to skip object creation if the conflicting object is one that it already owns.
2024-11-25 19:08:11.687 CET [562720][client backend] [pg_regress/test_extensions][2/647:535551] CONTEXT: SQL statement "CREATE MATERIALIZED VIEW IF NOT EXISTS ext_cine_mv AS SELECT 42 AS f1"
extension script file "test_ext_cine--1.0.sql", near line 13
2024-11-25 19:08:11.687 CET [562720][client backend] [pg_regress/test_extensions][2/647:535551] STATEMENT: CREATE EXTENSION test_ext_cine;
2024-11-25 19:08:11.687 CET [562729][client backend] [pg_regress/test_ginpostinglist][:0] LOG: disconnection: session time: 0:00:00.011 user=nkey database=regression_test_ginpostinglist host=[local]
2024-11-25 19:08:11.687 CET [562734][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.688 CET [562734][client backend] [[unknown]][23/420:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.688 CET [562734][client backend] [[unknown]][23/420:0] LOG: connection authorized: user=nkey database=regression_test_ddl_deparse application_name=pg_regress/alter_ts_config
2024-11-25 19:08:11.690 CET [562720][client backend] [pg_regress/test_extensions][2/651:535557] ERROR: server ext_cine_srv is not a member of extension "test_ext_cine"
2024-11-25 19:08:11.690 CET [562720][client backend] [pg_regress/test_extensions][2/651:535557] DETAIL: An extension may only use CREATE ... IF NOT EXISTS to skip object creation if the conflicting object is one that it already owns.
2024-11-25 19:08:11.690 CET [562720][client backend] [pg_regress/test_extensions][2/651:535557] CONTEXT: SQL statement "CREATE SERVER IF NOT EXISTS ext_cine_srv FOREIGN DATA WRAPPER ext_cine_fdw"
extension script file "test_ext_cine--1.0.sql", near line 17
2024-11-25 19:08:11.690 CET [562720][client backend] [pg_regress/test_extensions][2/651:535557] STATEMENT: CREATE EXTENSION test_ext_cine;
2024-11-25 19:08:11.693 CET [562641][client backend] [isolation/partial-index/s1][73/106:535564] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.693 CET [562641][client backend] [isolation/partial-index/s1][73/106:535564] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.693 CET [562641][client backend] [isolation/partial-index/s1][73/106:535564] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.693 CET [562641][client backend] [isolation/partial-index/s1][73/106:535564] STATEMENT: COMMIT;
2024-11-25 19:08:11.693 CET [562720][client backend] [pg_regress/test_extensions][2/654:535562] ERROR: schema ext_cine_schema is not a member of extension "test_ext_cine"
2024-11-25 19:08:11.693 CET [562720][client backend] [pg_regress/test_extensions][2/654:535562] DETAIL: An extension may only use CREATE ... IF NOT EXISTS to skip object creation if the conflicting object is one that it already owns.
2024-11-25 19:08:11.693 CET [562720][client backend] [pg_regress/test_extensions][2/654:535562] CONTEXT: SQL statement "CREATE SCHEMA IF NOT EXISTS ext_cine_schema"
extension script file "test_ext_cine--1.0.sql", near line 19
2024-11-25 19:08:11.693 CET [562720][client backend] [pg_regress/test_extensions][2/654:535562] STATEMENT: CREATE EXTENSION test_ext_cine;
2024-11-25 19:08:11.695 CET [562734][client backend] [pg_regress/alter_ts_config][:0] LOG: disconnection: session time: 0:00:00.008 user=nkey database=regression_test_ddl_deparse host=[local]
2024-11-25 19:08:11.697 CET [562720][client backend] [pg_regress/test_extensions][2/657:535570] ERROR: sequence ext_cine_seq is not a member of extension "test_ext_cine"
2024-11-25 19:08:11.697 CET [562720][client backend] [pg_regress/test_extensions][2/657:535570] DETAIL: An extension may only use CREATE ... IF NOT EXISTS to skip object creation if the conflicting object is one that it already owns.
2024-11-25 19:08:11.697 CET [562720][client backend] [pg_regress/test_extensions][2/657:535570] CONTEXT: SQL statement "CREATE SEQUENCE IF NOT EXISTS ext_cine_seq"
extension script file "test_ext_cine--1.0.sql", near line 21
2024-11-25 19:08:11.697 CET [562720][client backend] [pg_regress/test_extensions][2/657:535570] STATEMENT: CREATE EXTENSION test_ext_cine;
2024-11-25 19:08:11.699 CET [562508][client backend] [pg_regress/inherit][43/1239:535580] ERROR: column "a" in child table "inh_child" must be marked NOT NULL
2024-11-25 19:08:11.699 CET [562508][client backend] [pg_regress/inherit][43/1239:535580] STATEMENT: alter table inh_child inherit inh_parent;
2024-11-25 19:08:11.700 CET [562741][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.701 CET [562741][client backend] [[unknown]][0/53:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.701 CET [562741][client backend] [[unknown]][0/53:0] LOG: connection authorized: user=nkey database=regression_test_ddl_deparse application_name=pg_regress/alter_type_enum
2024-11-25 19:08:11.701 CET [562720][client backend] [pg_regress/test_extensions][2/660:535578] ERROR: table ext_cine_tab1 is not a member of extension "test_ext_cine"
2024-11-25 19:08:11.701 CET [562720][client backend] [pg_regress/test_extensions][2/660:535578] DETAIL: An extension may only use CREATE ... IF NOT EXISTS to skip object creation if the conflicting object is one that it already owns.
2024-11-25 19:08:11.701 CET [562720][client backend] [pg_regress/test_extensions][2/660:535578] CONTEXT: SQL statement "CREATE TABLE IF NOT EXISTS ext_cine_tab1 (x int)"
extension script file "test_ext_cine--1.0.sql", near line 23
2024-11-25 19:08:11.701 CET [562720][client backend] [pg_regress/test_extensions][2/660:535578] STATEMENT: CREATE EXTENSION test_ext_cine;
2024-11-25 19:08:11.705 CET [562720][client backend] [pg_regress/test_extensions][2/663:535585] ERROR: table ext_cine_tab2 is not a member of extension "test_ext_cine"
2024-11-25 19:08:11.705 CET [562720][client backend] [pg_regress/test_extensions][2/663:535585] DETAIL: An extension may only use CREATE ... IF NOT EXISTS to skip object creation if the conflicting object is one that it already owns.
2024-11-25 19:08:11.705 CET [562720][client backend] [pg_regress/test_extensions][2/663:535585] CONTEXT: SQL statement "CREATE TABLE IF NOT EXISTS ext_cine_tab2 AS SELECT 42 AS y"
extension script file "test_ext_cine--1.0.sql", near line 25
2024-11-25 19:08:11.705 CET [562720][client backend] [pg_regress/test_extensions][2/663:535585] STATEMENT: CREATE EXTENSION test_ext_cine;
2024-11-25 19:08:11.708 CET [562741][client backend] [pg_regress/alter_type_enum][:0] LOG: disconnection: session time: 0:00:00.008 user=nkey database=regression_test_ddl_deparse host=[local]
2024-11-25 19:08:11.713 CET [562508][client backend] [pg_regress/inherit][43/1243:535593] ERROR: constraint "inh_child_a_not_null" conflicts with non-inherited constraint on child table "inh_child"
2024-11-25 19:08:11.713 CET [562508][client backend] [pg_regress/inherit][43/1243:535593] STATEMENT: alter table inh_child inherit inh_parent;
2024-11-25 19:08:11.714 CET [562745][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.714 CET [562720][client backend] [pg_regress/test_extensions][2/672:535597] ERROR: invalid character in extension "test_ext_extschema" schema: must not contain any of ""$'\"
2024-11-25 19:08:11.714 CET [562720][client backend] [pg_regress/test_extensions][2/672:535597] STATEMENT: CREATE EXTENSION test_ext_extschema SCHEMA has$dollar;
2024-11-25 19:08:11.715 CET [562745][client backend] [[unknown]][30/72:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.715 CET [562745][client backend] [[unknown]][30/72:0] LOG: connection authorized: user=nkey database=regression_test_ddl_deparse application_name=pg_regress/opfamily
2024-11-25 19:08:11.723 CET [562641][client backend] [isolation/partial-index/s1][73/107:535617] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.723 CET [562641][client backend] [isolation/partial-index/s1][73/107:535617] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:11.723 CET [562641][client backend] [isolation/partial-index/s1][73/107:535617] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.723 CET [562641][client backend] [isolation/partial-index/s1][73/107:535617] STATEMENT: update test_t set val2 = 2 where val2 = 1 and id = 10;
2024-11-25 19:08:11.725 CET [562502][client backend] [pg_regress/triggers][14/961:0] ERROR: moving row to another partition during a BEFORE FOR EACH ROW trigger is not supported
2024-11-25 19:08:11.725 CET [562502][client backend] [pg_regress/triggers][14/961:0] DETAIL: Before executing trigger "t", the row was to be in partition "public.parted_1".
2024-11-25 19:08:11.725 CET [562502][client backend] [pg_regress/triggers][14/961:0] STATEMENT: insert into parted values (1, 1, 'one fail');
2024-11-25 19:08:11.725 CET [562502][client backend] [pg_regress/triggers][14/962:0] ERROR: moving row to another partition during a BEFORE FOR EACH ROW trigger is not supported
2024-11-25 19:08:11.725 CET [562502][client backend] [pg_regress/triggers][14/962:0] DETAIL: Before executing trigger "t", the row was to be in partition "public.parted_2".
2024-11-25 19:08:11.725 CET [562502][client backend] [pg_regress/triggers][14/962:0] STATEMENT: insert into parted values (1, 2, 'two fail');
2024-11-25 19:08:11.727 CET [562720][client backend] [pg_regress/test_extensions][2/688:535636] ERROR: extension "test_ext_req_schema1" does not support SET SCHEMA
2024-11-25 19:08:11.727 CET [562720][client backend] [pg_regress/test_extensions][2/688:535636] DETAIL: function test_func_dep2.dep_req1() is not in the extension's schema "test_func_dep1"
2024-11-25 19:08:11.727 CET [562720][client backend] [pg_regress/test_extensions][2/688:535636] STATEMENT: ALTER EXTENSION test_ext_req_schema1 SET SCHEMA test_func_dep3;
2024-11-25 19:08:11.727 CET [562749][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.728 CET [562749][client backend] [[unknown]][58/1436:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.728 CET [562749][client backend] [[unknown]][58/1436:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:11.730 CET [562720][client backend] [pg_regress/test_extensions][2/697:535649] ERROR: invalid character in extension "test_ext_req_schema1" schema: must not contain any of ""$'\"
2024-11-25 19:08:11.730 CET [562720][client backend] [pg_regress/test_extensions][2/697:535649] STATEMENT: CREATE EXTENSION test_ext_req_schema3 CASCADE;
2024-11-25 19:08:11.731 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:11.734 CET [562720][client backend] [pg_regress/test_extensions][2/707:535664] ERROR: cannot SET SCHEMA of extension "test_ext_req_schema1" because other extensions prevent it
2024-11-25 19:08:11.734 CET [562720][client backend] [pg_regress/test_extensions][2/707:535664] DETAIL: Extension "test_ext_req_schema3" requests no relocation of extension "test_ext_req_schema1".
2024-11-25 19:08:11.734 CET [562720][client backend] [pg_regress/test_extensions][2/707:535664] STATEMENT: ALTER EXTENSION test_ext_req_schema1 SET SCHEMA test_s_dep2;
2024-11-25 19:08:11.735 CET [562720][client backend] [pg_regress/test_extensions][2/712:0] ERROR: function public.dep_req2() does not exist at character 9
2024-11-25 19:08:11.735 CET [562720][client backend] [pg_regress/test_extensions][2/712:0] HINT: No function matches the given name and argument types. You might need to add explicit type casts.
2024-11-25 19:08:11.735 CET [562720][client backend] [pg_regress/test_extensions][2/712:0] QUERY: SELECT public.dep_req2() || ' req3b'
2024-11-25 19:08:11.735 CET [562720][client backend] [pg_regress/test_extensions][2/712:0] CONTEXT: SQL function "dep_req3b" during startup
2024-11-25 19:08:11.735 CET [562720][client backend] [pg_regress/test_extensions][2/712:0] STATEMENT: SELECT dep_req3b();
2024-11-25 19:08:11.737 CET [562720][client backend] [pg_regress/test_extensions][:0] LOG: disconnection: session time: 0:00:00.095 user=nkey database=regression_test_extensions host=[local]
2024-11-25 19:08:11.739 CET [562756][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.739 CET [562745][client backend] [pg_regress/opfamily][:0] LOG: disconnection: session time: 0:00:00.025 user=nkey database=regression_test_ddl_deparse host=[local]
2024-11-25 19:08:11.739 CET [562756][client backend] [[unknown]][27/169:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.739 CET [562756][client backend] [[unknown]][27/169:0] LOG: connection authorized: user=nkey database=regression_test_ddl_deparse application_name=pg_regress/defprivs
2024-11-25 19:08:11.741 CET [562757][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.741 CET [562757][client backend] [[unknown]][28/187:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.741 CET [562757][client backend] [[unknown]][28/187:0] LOG: connection authorized: user=nkey database=regression_test_extensions application_name=pg_regress/test_extdepend
2024-11-25 19:08:11.745 CET [562756][client backend] [pg_regress/defprivs][:0] LOG: disconnection: session time: 0:00:00.006 user=nkey database=regression_test_ddl_deparse host=[local]
2024-11-25 19:08:11.749 CET [562643][client backend] [isolation/partial-index/s2][74/62:535689] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.749 CET [562643][client backend] [isolation/partial-index/s2][74/62:535689] DETAIL: Reason code: Canceled on conflict out to pivot 535691, during read.
2024-11-25 19:08:11.749 CET [562643][client backend] [isolation/partial-index/s2][74/62:535689] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.749 CET [562643][client backend] [isolation/partial-index/s2][74/62:535689] STATEMENT: select * from test_t where val2 = 1;
2024-11-25 19:08:11.749 CET [562761][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.750 CET [562761][client backend] [[unknown]][40/73:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.750 CET [562761][client backend] [[unknown]][40/73:0] LOG: connection authorized: user=nkey database=regression_test_ddl_deparse application_name=pg_regress/matviews
2024-11-25 19:08:11.754 CET [561023][checkpointer] LOG: checkpoint complete: wrote 1646 buffers (10.0%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 1 recycled; write=0.020 s, sync=0.001 s, total=0.023 s; sync files=0, longest=0.000 s, average=0.000 s; distance=11216 kB, estimate=15245 kB; lsn=4/5C378E78, redo lsn=4/5C1F8CD0
2024-11-25 19:08:11.759 CET [562508][client backend] [pg_regress/inherit][43/1285:535720] ERROR: must be owner of table inh_child
2024-11-25 19:08:11.759 CET [562508][client backend] [pg_regress/inherit][43/1285:535720] STATEMENT: alter table inh_parent alter a drop not null;
2024-11-25 19:08:11.764 CET [562508][client backend] [pg_regress/inherit][43/1295:0] ERROR: cannot inherit from temporary relation "inh_temp_parent"
2024-11-25 19:08:11.764 CET [562508][client backend] [pg_regress/inherit][43/1295:0] STATEMENT: create table inh_perm_child () inherits (inh_temp_parent);
2024-11-25 19:08:11.764 CET [562757][client backend] [pg_regress/test_extdepend][28/232:535739] ERROR: cannot drop table test_ext.a because other objects depend on it
2024-11-25 19:08:11.764 CET [562757][client backend] [pg_regress/test_extdepend][28/232:535739] DETAIL: materialized view test_ext.d depends on table test_ext.a
2024-11-25 19:08:11.764 CET [562757][client backend] [pg_regress/test_extdepend][28/232:535739] HINT: Use DROP ... CASCADE to drop the dependent objects too.
2024-11-25 19:08:11.764 CET [562757][client backend] [pg_regress/test_extdepend][28/232:535739] STATEMENT: DROP TABLE test_ext.a;
2024-11-25 19:08:11.765 CET [562761][client backend] [pg_regress/matviews][:0] LOG: disconnection: session time: 0:00:00.015 user=nkey database=regression_test_ddl_deparse host=[local]
2024-11-25 19:08:11.767 CET [562749][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.039 user=nkey database=postgres host=[local]
2024-11-25 19:08:11.770 CET [562766][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.771 CET [562766][client backend] [[unknown]][9/562:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.771 CET [562766][client backend] [[unknown]][9/562:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:11.774 CET [562643][client backend] [isolation/partial-index/s2][74/64:535766] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.774 CET [562643][client backend] [isolation/partial-index/s2][74/64:535766] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.774 CET [562643][client backend] [isolation/partial-index/s2][74/64:535766] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.774 CET [562643][client backend] [isolation/partial-index/s2][74/64:535766] STATEMENT: COMMIT;
2024-11-25 19:08:11.798 CET [562766][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.028 user=nkey database=postgres host=[local]
2024-11-25 19:08:11.803 CET [562757][client backend] [pg_regress/test_extdepend][:0] LOG: disconnection: session time: 0:00:00.061 user=nkey database=regression_test_extensions host=[local]
2024-11-25 19:08:11.805 CET [562641][client backend] [isolation/partial-index/s1][73/112:535829] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.805 CET [562641][client backend] [isolation/partial-index/s1][73/112:535829] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.805 CET [562641][client backend] [isolation/partial-index/s1][73/112:535829] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.805 CET [562641][client backend] [isolation/partial-index/s1][73/112:535829] STATEMENT: COMMIT;
2024-11-25 19:08:11.806 CET [562772][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.807 CET [562772][client backend] [[unknown]][64/110:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.807 CET [562772][client backend] [[unknown]][64/110:0] LOG: connection authorized: user=nkey database=regression_test_integerset application_name=pg_regress/test_integerset
2024-11-25 19:08:11.815 CET [562776][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.816 CET [562776][client backend] [[unknown]][15/271:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.816 CET [562776][client backend] [[unknown]][15/271:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:11.822 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:11.835 CET [562643][client backend] [isolation/partial-index/s2][74/67:535860] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.835 CET [562643][client backend] [isolation/partial-index/s2][74/67:535860] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.835 CET [562643][client backend] [isolation/partial-index/s2][74/67:535860] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.835 CET [562643][client backend] [isolation/partial-index/s2][74/67:535860] STATEMENT: COMMIT;
2024-11-25 19:08:11.846 CET [562780][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.847 CET [562780][client backend] [[unknown]][47/103:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.847 CET [562780][client backend] [[unknown]][47/103:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:11.847 CET [561023][checkpointer] LOG: checkpoint complete: wrote 1454 buffers (8.9%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.023 s, sync=0.001 s, total=0.025 s; sync files=0, longest=0.000 s, average=0.000 s; distance=9395 kB, estimate=14660 kB; lsn=4/5CC63330, redo lsn=4/5CB25C78
2024-11-25 19:08:11.851 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:11.855 CET [561023][checkpointer] LOG: checkpoint complete: wrote 169 buffers (1.0%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.003 s, sync=0.001 s, total=0.004 s; sync files=0, longest=0.000 s, average=0.000 s; distance=1641 kB, estimate=13358 kB; lsn=4/5CD107D0, redo lsn=4/5CCC0090
2024-11-25 19:08:11.859 CET [562776][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.043 user=nkey database=postgres host=[local]
2024-11-25 19:08:11.862 CET [562783][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.862 CET [562783][client backend] [[unknown]][63/140:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.862 CET [562783][client backend] [[unknown]][63/140:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:11.865 CET [562641][client backend] [isolation/partial-index/s1][73/115:535889] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.865 CET [562641][client backend] [isolation/partial-index/s1][73/115:535889] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.865 CET [562641][client backend] [isolation/partial-index/s1][73/115:535889] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.865 CET [562641][client backend] [isolation/partial-index/s1][73/115:535889] STATEMENT: COMMIT;
2024-11-25 19:08:11.889 CET [562783][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.027 user=nkey database=postgres host=[local]
2024-11-25 19:08:11.890 CET [562641][client backend] [isolation/partial-index/s1][73/117:535916] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.890 CET [562641][client backend] [isolation/partial-index/s1][73/117:535916] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:11.890 CET [562641][client backend] [isolation/partial-index/s1][73/117:535916] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.890 CET [562641][client backend] [isolation/partial-index/s1][73/117:535916] STATEMENT: update test_t set val2 = 2 where val2 = 1 and id = 10;
2024-11-25 19:08:11.892 CET [562785][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.893 CET [562785][client backend] [[unknown]][44/121:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.893 CET [562785][client backend] [[unknown]][44/121:0] LOG: connection authorized: user=nkey database=regression_test_lfind application_name=pg_regress/test_lfind
2024-11-25 19:08:11.902 CET [562785][client backend] [pg_regress/test_lfind][:0] LOG: disconnection: session time: 0:00:00.010 user=nkey database=regression_test_lfind host=[local]
2024-11-25 19:08:11.916 CET [562643][client backend] [isolation/partial-index/s2][74/72:535946] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.916 CET [562643][client backend] [isolation/partial-index/s2][74/72:535946] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.916 CET [562643][client backend] [isolation/partial-index/s2][74/72:535946] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.916 CET [562643][client backend] [isolation/partial-index/s2][74/72:535946] STATEMENT: COMMIT;
2024-11-25 19:08:11.934 CET [562677][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.431 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:11.934 CET [562789][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.935 CET [562789][client backend] [[unknown]][52/214:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.935 CET [562789][client backend] [[unknown]][52/214:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:11.940 CET [562793][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.940 CET [562793][client backend] [[unknown]][42/159:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.940 CET [562793][client backend] [[unknown]][42/159:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:11.942 CET [562641][client backend] [isolation/partial-index/s1][73/120:535985] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.942 CET [562641][client backend] [isolation/partial-index/s1][73/120:535985] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:11.942 CET [562641][client backend] [isolation/partial-index/s1][73/120:535985] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.942 CET [562641][client backend] [isolation/partial-index/s1][73/120:535985] STATEMENT: COMMIT;
2024-11-25 19:08:11.943 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:11.960 CET [561023][checkpointer] LOG: checkpoint complete: wrote 1296 buffers (7.9%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 1 recycled; write=0.015 s, sync=0.001 s, total=0.017 s; sync files=0, longest=0.000 s, average=0.000 s; distance=9078 kB, estimate=12930 kB; lsn=4/5D7075B0, redo lsn=4/5D59D960
2024-11-25 19:08:11.961 CET [562508][client backend] [pg_regress/inherit][43/1472:0] ERROR: new row for relation "errtst_child_fastdef" violates check constraint "errtest_child_fastdef_data_check"
2024-11-25 19:08:11.961 CET [562508][client backend] [pg_regress/inherit][43/1472:0] DETAIL: Failing row contains (0, 1, 10).
2024-11-25 19:08:11.961 CET [562508][client backend] [pg_regress/inherit][43/1472:0] STATEMENT: INSERT INTO errtst_parent(partid, shdata, data) VALUES ( '0', '1', '10');
2024-11-25 19:08:11.962 CET [562508][client backend] [pg_regress/inherit][43/1473:0] ERROR: new row for relation "errtst_child_plaindef" violates check constraint "errtst_child_plaindef_data_check"
2024-11-25 19:08:11.962 CET [562508][client backend] [pg_regress/inherit][43/1473:0] DETAIL: Failing row contains (10, 1, 10).
2024-11-25 19:08:11.962 CET [562508][client backend] [pg_regress/inherit][43/1473:0] STATEMENT: INSERT INTO errtst_parent(partid, shdata, data) VALUES ('10', '1', '10');
2024-11-25 19:08:11.962 CET [562508][client backend] [pg_regress/inherit][43/1474:0] ERROR: new row for relation "errtst_child_reorder" violates check constraint "errtst_child_reorder_data_check"
2024-11-25 19:08:11.962 CET [562508][client backend] [pg_regress/inherit][43/1474:0] DETAIL: Failing row contains (20, 1, 10).
2024-11-25 19:08:11.962 CET [562508][client backend] [pg_regress/inherit][43/1474:0] STATEMENT: INSERT INTO errtst_parent(partid, shdata, data) VALUES ('20', '1', '10');
2024-11-25 19:08:11.962 CET [562508][client backend] [pg_regress/inherit][43/1475:0] ERROR: null value in column "data" of relation "errtst_child_fastdef" violates not-null constraint
2024-11-25 19:08:11.962 CET [562508][client backend] [pg_regress/inherit][43/1475:0] DETAIL: Failing row contains (0, 1, null).
2024-11-25 19:08:11.962 CET [562508][client backend] [pg_regress/inherit][43/1475:0] STATEMENT: INSERT INTO errtst_parent(partid, shdata, data) VALUES ( '0', '1', NULL);
2024-11-25 19:08:11.962 CET [562508][client backend] [pg_regress/inherit][43/1476:0] ERROR: null value in column "data" of relation "errtst_child_plaindef" violates not-null constraint
2024-11-25 19:08:11.962 CET [562508][client backend] [pg_regress/inherit][43/1476:0] DETAIL: Failing row contains (10, 1, null).
2024-11-25 19:08:11.962 CET [562508][client backend] [pg_regress/inherit][43/1476:0] STATEMENT: INSERT INTO errtst_parent(partid, shdata, data) VALUES ('10', '1', NULL);
2024-11-25 19:08:11.962 CET [562508][client backend] [pg_regress/inherit][43/1477:0] ERROR: null value in column "data" of relation "errtst_child_reorder" violates not-null constraint
2024-11-25 19:08:11.962 CET [562508][client backend] [pg_regress/inherit][43/1477:0] DETAIL: Failing row contains (20, 1, null).
2024-11-25 19:08:11.962 CET [562508][client backend] [pg_regress/inherit][43/1477:0] STATEMENT: INSERT INTO errtst_parent(partid, shdata, data) VALUES ('20', '1', NULL);
2024-11-25 19:08:11.962 CET [562508][client backend] [pg_regress/inherit][43/1478:0] ERROR: new row for relation "errtst_child_fastdef" violates check constraint "shdata_small"
2024-11-25 19:08:11.962 CET [562508][client backend] [pg_regress/inherit][43/1478:0] DETAIL: Failing row contains (0, 5, 5).
2024-11-25 19:08:11.962 CET [562508][client backend] [pg_regress/inherit][43/1478:0] STATEMENT: INSERT INTO errtst_parent(partid, shdata, data) VALUES ( '0', '5', '5');
2024-11-25 19:08:11.962 CET [562508][client backend] [pg_regress/inherit][43/1479:0] ERROR: new row for relation "errtst_child_plaindef" violates check constraint "shdata_small"
2024-11-25 19:08:11.962 CET [562508][client backend] [pg_regress/inherit][43/1479:0] DETAIL: Failing row contains (10, 5, 5).
2024-11-25 19:08:11.962 CET [562508][client backend] [pg_regress/inherit][43/1479:0] STATEMENT: INSERT INTO errtst_parent(partid, shdata, data) VALUES ('10', '5', '5');
2024-11-25 19:08:11.963 CET [562508][client backend] [pg_regress/inherit][43/1480:0] ERROR: new row for relation "errtst_child_reorder" violates check constraint "shdata_small"
2024-11-25 19:08:11.963 CET [562508][client backend] [pg_regress/inherit][43/1480:0] DETAIL: Failing row contains (20, 5, 5).
2024-11-25 19:08:11.963 CET [562508][client backend] [pg_regress/inherit][43/1480:0] STATEMENT: INSERT INTO errtst_parent(partid, shdata, data) VALUES ('20', '5', '5');
2024-11-25 19:08:11.964 CET [562641][client backend] [isolation/partial-index/s1][73/121:536015] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:11.964 CET [562641][client backend] [isolation/partial-index/s1][73/121:536015] DETAIL: Reason code: Canceled on identification as a pivot, during write.
2024-11-25 19:08:11.964 CET [562641][client backend] [isolation/partial-index/s1][73/121:536015] HINT: The transaction might succeed if retried.
2024-11-25 19:08:11.964 CET [562641][client backend] [isolation/partial-index/s1][73/121:536015] STATEMENT: update test_t set val2 = 2 where val2 = 1 and id = 10;
2024-11-25 19:08:11.965 CET [562508][client backend] [pg_regress/inherit][43/1482:0] ERROR: new row for relation "errtst_child_fastdef" violates check constraint "errtest_child_fastdef_data_check"
2024-11-25 19:08:11.965 CET [562508][client backend] [pg_regress/inherit][43/1482:0] DETAIL: Failing row contains (0, 1, 15).
2024-11-25 19:08:11.965 CET [562508][client backend] [pg_regress/inherit][43/1482:0] STATEMENT: UPDATE errtst_parent SET data = data + 10 WHERE partid = 0;
2024-11-25 19:08:11.965 CET [562508][client backend] [pg_regress/inherit][43/1483:0] ERROR: new row for relation "errtst_child_plaindef" violates check constraint "errtst_child_plaindef_data_check"
2024-11-25 19:08:11.965 CET [562508][client backend] [pg_regress/inherit][43/1483:0] DETAIL: Failing row contains (10, 1, 15).
2024-11-25 19:08:11.965 CET [562508][client backend] [pg_regress/inherit][43/1483:0] STATEMENT: UPDATE errtst_parent SET data = data + 10 WHERE partid = 10;
2024-11-25 19:08:11.965 CET [562508][client backend] [pg_regress/inherit][43/1484:0] ERROR: new row for relation "errtst_child_reorder" violates check constraint "errtst_child_reorder_data_check"
2024-11-25 19:08:11.965 CET [562508][client backend] [pg_regress/inherit][43/1484:0] DETAIL: Failing row contains (20, 1, 15).
2024-11-25 19:08:11.965 CET [562508][client backend] [pg_regress/inherit][43/1484:0] STATEMENT: UPDATE errtst_parent SET data = data + 10 WHERE partid = 20;
2024-11-25 19:08:11.965 CET [562794][autovacuum worker] LOG: automatic vacuum of table "regression_test_copy_callbacks.pg_catalog.pg_db_role_setting": index scans: 0
pages: 0 removed, 6 remain, 6 scanned (100.00% of total)
tuples: 0 removed, 138 remain, 71 are dead but not yet removable
removable cutoff: 531530, which was 4487 XIDs old when operation ended
new relfrozenxid: 525686, which is 524952 XIDs ahead of previous value
new relminmxid: 2904, which is 2903 MXIDs ahead of previous value
frozen: 0 pages from table (0.00% of total) had 0 tuples frozen
index scan not needed: 0 pages from table (0.00% of total) had 0 dead item identifiers removed
avg read rate: 0.000 MB/s, avg write rate: 68.531 MB/s
buffer usage: 43 hits, 0 reads, 4 dirtied
WAL usage: 4 records, 4 full page images, 32658 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:11.967 CET [562508][client backend] [pg_regress/inherit][43/1486:0] ERROR: new row for relation "errtst_child_fastdef" violates partition constraint
2024-11-25 19:08:11.967 CET [562508][client backend] [pg_regress/inherit][43/1486:0] DETAIL: Failing row contains (10, 1, 5).
2024-11-25 19:08:11.967 CET [562508][client backend] [pg_regress/inherit][43/1486:0] STATEMENT: UPDATE errtst_child_fastdef SET partid = partid + 10 WHERE partid = 0;
2024-11-25 19:08:11.967 CET [562508][client backend] [pg_regress/inherit][43/1487:0] ERROR: new row for relation "errtst_child_plaindef" violates partition constraint
2024-11-25 19:08:11.967 CET [562508][client backend] [pg_regress/inherit][43/1487:0] DETAIL: Failing row contains (20, 1, 5).
2024-11-25 19:08:11.967 CET [562508][client backend] [pg_regress/inherit][43/1487:0] STATEMENT: UPDATE errtst_child_plaindef SET partid = partid + 10 WHERE partid = 10;
2024-11-25 19:08:11.967 CET [562508][client backend] [pg_regress/inherit][43/1488:0] ERROR: new row for relation "errtst_child_reorder" violates partition constraint
2024-11-25 19:08:11.967 CET [562508][client backend] [pg_regress/inherit][43/1488:0] DETAIL: Failing row contains (5, 1, 30).
2024-11-25 19:08:11.967 CET [562508][client backend] [pg_regress/inherit][43/1488:0] STATEMENT: UPDATE errtst_child_reorder SET partid = partid + 10 WHERE partid = 20;
2024-11-25 19:08:11.969 CET [562508][client backend] [pg_regress/inherit][43/1490:536023] ERROR: new row for relation "errtst_child_plaindef" violates check constraint "errtst_child_plaindef_data_check"
2024-11-25 19:08:11.969 CET [562508][client backend] [pg_regress/inherit][43/1490:536023] DETAIL: Failing row contains (10, 1, 15).
2024-11-25 19:08:11.969 CET [562508][client backend] [pg_regress/inherit][43/1490:536023] STATEMENT: UPDATE errtst_parent SET partid = 10, data = data + 10 WHERE partid = 0;
2024-11-25 19:08:11.969 CET [562508][client backend] [pg_regress/inherit][43/1491:536024] ERROR: new row for relation "errtst_child_reorder" violates check constraint "errtst_child_reorder_data_check"
2024-11-25 19:08:11.969 CET [562508][client backend] [pg_regress/inherit][43/1491:536024] DETAIL: Failing row contains (20, 1, 15).
2024-11-25 19:08:11.969 CET [562508][client backend] [pg_regress/inherit][43/1491:536024] STATEMENT: UPDATE errtst_parent SET partid = 20, data = data + 10 WHERE partid = 10;
2024-11-25 19:08:11.970 CET [562508][client backend] [pg_regress/inherit][43/1492:536026] ERROR: new row for relation "errtst_child_fastdef" violates check constraint "errtest_child_fastdef_data_check"
2024-11-25 19:08:11.970 CET [562508][client backend] [pg_regress/inherit][43/1492:536026] DETAIL: Failing row contains (0, 1, 15).
2024-11-25 19:08:11.970 CET [562508][client backend] [pg_regress/inherit][43/1492:536026] STATEMENT: UPDATE errtst_parent SET partid = 0, data = data + 10 WHERE partid = 20;
2024-11-25 19:08:11.970 CET [562508][client backend] [pg_regress/inherit][43/1493:536027] ERROR: no partition of relation "errtst_parent" found for row
2024-11-25 19:08:11.970 CET [562508][client backend] [pg_regress/inherit][43/1493:536027] DETAIL: Partition key of the failing row contains (partid) = (30).
2024-11-25 19:08:11.970 CET [562508][client backend] [pg_regress/inherit][43/1493:536027] STATEMENT: UPDATE errtst_parent SET partid = 30, data = data + 10 WHERE partid = 20;
2024-11-25 19:08:11.971 CET [562794][autovacuum worker] LOG: automatic analyze of table "regression_test_copy_callbacks.pg_catalog.pg_db_role_setting"
avg read rate: 6.510 MB/s, avg write rate: 5.208 MB/s
buffer usage: 301 hits, 5 reads, 4 dirtied
WAL usage: 7 records, 3 full page images, 22827 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:11.972 CET [562794][autovacuum worker] LOG: automatic vacuum of table "regression_test_copy_callbacks.pg_catalog.pg_shdepend": index scans: 1
pages: 0 removed, 2 remain, 2 scanned (100.00% of total)
tuples: 26 removed, 81 remain, 77 are dead but not yet removable
removable cutoff: 531530, which was 4503 XIDs old when operation ended
new relfrozenxid: 527244, which is 526510 XIDs ahead of previous value
new relminmxid: 2904, which is 2903 MXIDs ahead of previous value
frozen: 0 pages from table (0.00% of total) had 0 tuples frozen
index scan needed: 2 pages from table (100.00% of total) had 26 dead item identifiers removed
index "pg_shdepend_depender_index": pages: 8 in total, 0 newly deleted, 4 currently deleted, 4 reusable
index "pg_shdepend_reference_index": pages: 2 in total, 0 newly deleted, 0 currently deleted, 0 reusable
avg read rate: 150.602 MB/s, avg write rate: 131.777 MB/s
buffer usage: 85 hits, 8 reads, 7 dirtied
WAL usage: 13 records, 7 full page images, 32912 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:11.972 CET [562789][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.037 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:11.974 CET [562795][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.975 CET [562795][client backend] [[unknown]][48/88:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.975 CET [562795][client backend] [[unknown]][48/88:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:11.977 CET [562794][autovacuum worker] LOG: automatic analyze of table "regression_test_copy_callbacks.pg_catalog.pg_shdepend"
avg read rate: 0.000 MB/s, avg write rate: 0.000 MB/s
buffer usage: 193 hits, 0 reads, 0 dirtied
WAL usage: 16 records, 0 full page images, 2439 bytes
system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-11-25 19:08:11.978 CET [562508][client backend] [pg_regress/inherit][:0] LOG: disconnection: session time: 0:00:01.274 user=nkey database=regression host=[local]
2024-11-25 19:08:11.988 CET [562795][client backend] [postgres_fdw][48/97:536049] ERROR: duplicate key value violates unique constraint "t1_pkey"
2024-11-25 19:08:11.988 CET [562795][client backend] [postgres_fdw][48/97:536049] DETAIL: Key ("C 1")=(11) already exists.
2024-11-25 19:08:11.988 CET [562795][client backend] [postgres_fdw][48/97:536049] STATEMENT: INSERT INTO "S 1"."T 1"("C 1", c2, c3, c4, c5, c6, c7, c8) VALUES ($1, $2, $3, $4, $5, $6, $7, $8)
2024-11-25 19:08:11.988 CET [562302][client backend] [pg_regress/postgres_fdw][65/537:0] ERROR: duplicate key value violates unique constraint "t1_pkey"
2024-11-25 19:08:11.988 CET [562302][client backend] [pg_regress/postgres_fdw][65/537:0] DETAIL: Key ("C 1")=(11) already exists.
2024-11-25 19:08:11.988 CET [562302][client backend] [pg_regress/postgres_fdw][65/537:0] CONTEXT: remote SQL command: INSERT INTO "S 1"."T 1"("C 1", c2, c3, c4, c5, c6, c7, c8) VALUES ($1, $2, $3, $4, $5, $6, $7, $8)
2024-11-25 19:08:11.988 CET [562302][client backend] [pg_regress/postgres_fdw][65/537:0] STATEMENT: INSERT INTO ft1(c1, c2) VALUES(11, 12);
2024-11-25 19:08:11.991 CET [562302][client backend] [pg_regress/postgres_fdw][65/539:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:11.991 CET [562302][client backend] [pg_regress/postgres_fdw][65/539:0] STATEMENT: INSERT INTO ft1(c1, c2) VALUES(11, 12) ON CONFLICT (c1, c2) DO NOTHING;
2024-11-25 19:08:11.992 CET [562302][client backend] [pg_regress/postgres_fdw][65/540:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:11.992 CET [562302][client backend] [pg_regress/postgres_fdw][65/540:0] STATEMENT: INSERT INTO ft1(c1, c2) VALUES(11, 12) ON CONFLICT (c1, c2) DO UPDATE SET c3 = 'ffg';
2024-11-25 19:08:11.992 CET [562795][client backend] [postgres_fdw][48/100:0] ERROR: new row for relation "T 1" violates check constraint "c2positive"
2024-11-25 19:08:11.992 CET [562795][client backend] [postgres_fdw][48/100:0] DETAIL: Failing row contains (1111, -2, null, null, null, null, ft1 , null).
2024-11-25 19:08:11.992 CET [562795][client backend] [postgres_fdw][48/100:0] STATEMENT: INSERT INTO "S 1"."T 1"("C 1", c2, c3, c4, c5, c6, c7, c8) VALUES ($1, $2, $3, $4, $5, $6, $7, $8)
2024-11-25 19:08:11.992 CET [562302][client backend] [pg_regress/postgres_fdw][65/541:0] ERROR: new row for relation "T 1" violates check constraint "c2positive"
2024-11-25 19:08:11.992 CET [562302][client backend] [pg_regress/postgres_fdw][65/541:0] DETAIL: Failing row contains (1111, -2, null, null, null, null, ft1 , null).
2024-11-25 19:08:11.992 CET [562302][client backend] [pg_regress/postgres_fdw][65/541:0] CONTEXT: remote SQL command: INSERT INTO "S 1"."T 1"("C 1", c2, c3, c4, c5, c6, c7, c8) VALUES ($1, $2, $3, $4, $5, $6, $7, $8)
2024-11-25 19:08:11.992 CET [562302][client backend] [pg_regress/postgres_fdw][65/541:0] STATEMENT: INSERT INTO ft1(c1, c2) VALUES(1111, -2);
2024-11-25 19:08:11.992 CET [562641][client backend] [isolation/partial-index/s1][:0] LOG: disconnection: session time: 0:00:00.598 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:11.992 CET [562633][client backend] [isolation/partial-index/control connection][:0] LOG: disconnection: session time: 0:00:00.610 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:11.992 CET [562643][client backend] [isolation/partial-index/s2][:0] LOG: disconnection: session time: 0:00:00.595 user=nkey database=isolation_regression host=[local]
2024-11-25 19:08:11.994 CET [562795][client backend] [postgres_fdw][48/102:536055] ERROR: new row for relation "T 1" violates check constraint "c2positive"
2024-11-25 19:08:11.994 CET [562795][client backend] [postgres_fdw][48/102:536055] DETAIL: Failing row contains (1, -1, 00001_trig_update, 1970-01-02 08:00:00+00, 1970-01-02 00:00:00, 1, 1 , foo).
2024-11-25 19:08:11.994 CET [562795][client backend] [postgres_fdw][48/102:536055] STATEMENT: UPDATE "S 1"."T 1" SET c2 = (- c2) WHERE (("C 1" = 1))
2024-11-25 19:08:11.994 CET [562302][client backend] [pg_regress/postgres_fdw][65/542:0] ERROR: new row for relation "T 1" violates check constraint "c2positive"
2024-11-25 19:08:11.994 CET [562302][client backend] [pg_regress/postgres_fdw][65/542:0] DETAIL: Failing row contains (1, -1, 00001_trig_update, 1970-01-02 08:00:00+00, 1970-01-02 00:00:00, 1, 1 , foo).
2024-11-25 19:08:11.994 CET [562302][client backend] [pg_regress/postgres_fdw][65/542:0] CONTEXT: remote SQL command: UPDATE "S 1"."T 1" SET c2 = (- c2) WHERE (("C 1" = 1))
2024-11-25 19:08:11.994 CET [562302][client backend] [pg_regress/postgres_fdw][65/542:0] STATEMENT: UPDATE ft1 SET c2 = -c2 WHERE c1 = 1;
2024-11-25 19:08:11.996 CET [562799][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:11.996 CET [562799][client backend] [[unknown]][54/159:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:11.996 CET [562799][client backend] [[unknown]][54/159:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/two-ids
2024-11-25 19:08:12.001 CET [562800][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:12.002 CET [562800][client backend] [[unknown]][49/418:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:12.002 CET [562800][client backend] [[unknown]][49/418:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/two-ids
2024-11-25 19:08:12.005 CET [562801][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:12.005 CET [562801][client backend] [[unknown]][50/121:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:12.005 CET [562801][client backend] [[unknown]][50/121:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/two-ids
2024-11-25 19:08:12.008 CET [562802][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:12.008 CET [562802][client backend] [[unknown]][67/53:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:12.008 CET [562802][client backend] [[unknown]][67/53:0] LOG: connection authorized: user=nkey database=isolation_regression application_name=isolation/two-ids
2024-11-25 19:08:12.021 CET [562793][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.081 user=nkey database=postgres host=[local]
2024-11-25 19:08:12.021 CET [562502][client backend] [pg_regress/triggers][14/1061:536076] ERROR: except
2024-11-25 19:08:12.021 CET [562502][client backend] [pg_regress/triggers][14/1061:536076] CONTEXT: PL/pgSQL function tgf() line 1 at RAISE
2024-11-25 19:08:12.021 CET [562502][client backend] [pg_regress/triggers][14/1061:536076] STATEMENT: INSERT INTO trgfire VALUES (1);
2024-11-25 19:08:12.022 CET [562780][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.176 user=nkey database=postgres host=[local]
2024-11-25 19:08:12.024 CET [562807][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:12.024 CET [562808][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:12.025 CET [562807][client backend] [[unknown]][96/120:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:12.025 CET [562807][client backend] [[unknown]][96/120:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:12.025 CET [562808][client backend] [[unknown]][18/149:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:12.025 CET [562808][client backend] [[unknown]][18/149:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:12.025 CET [562482][client backend] [isolation/inplace/s2][:0] LOG: disconnection: session time: 0:00:01.328 user=nkey database=isolation_regression_injection_points host=[local]
2024-11-25 19:08:12.026 CET [562471][client backend] [isolation/inplace/control connection][:0] LOG: disconnection: session time: 0:00:01.334 user=nkey database=isolation_regression_injection_points host=[local]
2024-11-25 19:08:12.026 CET [562476][client backend] [isolation/inplace/s1][:0] LOG: disconnection: session time: 0:00:01.331 user=nkey database=isolation_regression_injection_points host=[local]
2024-11-25 19:08:12.026 CET [562505][client backend] [isolation/inplace/s3][:0] LOG: disconnection: session time: 0:00:01.324 user=nkey database=isolation_regression_injection_points host=[local]
2024-11-25 19:08:12.029 CET [562812][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:12.030 CET [562812][client backend] [[unknown]][77/216:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:12.030 CET [562812][client backend] [[unknown]][77/216:0] LOG: connection authorized: user=nkey database=isolation_regression_injection_points application_name=isolation/index_concurrently_upsert
2024-11-25 19:08:12.031 CET [562795][client backend] [postgres_fdw][48/104:536060] ERROR: new row for relation "T 1" violates check constraint "c2positive"
2024-11-25 19:08:12.031 CET [562795][client backend] [postgres_fdw][48/104:536060] DETAIL: Failing row contains (10, -2, 00010_trig_update_trig_update, 1970-01-11 08:00:00+00, 1970-01-11 00:00:00, 0, 0 , foo).
2024-11-25 19:08:12.031 CET [562795][client backend] [postgres_fdw][48/104:536060] STATEMENT: UPDATE "S 1"."T 1" SET c2 = (-2) WHERE ((c2 = 42)) AND (("C 1" = 10))
2024-11-25 19:08:12.031 CET [562302][client backend] [pg_regress/postgres_fdw][65/545:0] ERROR: new row for relation "T 1" violates check constraint "c2positive"
2024-11-25 19:08:12.031 CET [562302][client backend] [pg_regress/postgres_fdw][65/545:0] DETAIL: Failing row contains (10, -2, 00010_trig_update_trig_update, 1970-01-11 08:00:00+00, 1970-01-11 00:00:00, 0, 0 , foo).
2024-11-25 19:08:12.031 CET [562302][client backend] [pg_regress/postgres_fdw][65/545:0] CONTEXT: remote SQL command: UPDATE "S 1"."T 1" SET c2 = (-2) WHERE ((c2 = 42)) AND (("C 1" = 10))
2024-11-25 19:08:12.031 CET [562302][client backend] [pg_regress/postgres_fdw][65/545:0] STATEMENT: update ft2 set c2 = -2 where c2 = 42 and c1 = 10;
2024-11-25 19:08:12.039 CET [562813][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:12.040 CET [562813][client backend] [[unknown]][26/161:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:12.040 CET [562813][client backend] [[unknown]][26/161:0] LOG: connection authorized: user=nkey database=isolation_regression_injection_points application_name=isolation/index_concurrently_upsert
2024-11-25 19:08:12.043 CET [562814][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:12.043 CET [562814][client backend] [[unknown]][25/772:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:12.043 CET [562814][client backend] [[unknown]][25/772:0] LOG: connection authorized: user=nkey database=isolation_regression_injection_points application_name=isolation/index_concurrently_upsert
2024-11-25 19:08:12.046 CET [562815][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:12.047 CET [562815][client backend] [[unknown]][34/82:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:12.047 CET [562815][client backend] [[unknown]][34/82:0] LOG: connection authorized: user=nkey database=isolation_regression_injection_points application_name=isolation/index_concurrently_upsert
2024-11-25 19:08:12.049 CET [562807][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.025 user=nkey database=postgres host=[local]
2024-11-25 19:08:12.049 CET [562816][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:12.050 CET [562808][client backend] [pg_regress][:0] LOG: disconnection: session time: 0:00:00.025 user=nkey database=postgres host=[local]
2024-11-25 19:08:12.050 CET [562816][client backend] [[unknown]][32/155:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:12.050 CET [562816][client backend] [[unknown]][32/155:0] LOG: connection authorized: user=nkey database=isolation_regression_injection_points application_name=isolation/index_concurrently_upsert
2024-11-25 19:08:12.052 CET [562819][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:12.052 CET [562820][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:12.053 CET [562820][client backend] [[unknown]][39/242:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:12.053 CET [562819][client backend] [[unknown]][8/242:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:12.053 CET [562820][client backend] [[unknown]][39/242:0] LOG: connection authorized: user=nkey database=regression_test_pg_dump application_name=pg_regress/test_pg_dump
2024-11-25 19:08:12.053 CET [562819][client backend] [[unknown]][8/242:0] LOG: connection authorized: user=nkey database=regression_test_parser application_name=pg_regress/test_parser
2024-11-25 19:08:12.062 CET [562502][client backend] [pg_regress/triggers][14/1078:536132] ERROR: except
2024-11-25 19:08:12.062 CET [562502][client backend] [pg_regress/triggers][14/1078:536132] CONTEXT: PL/pgSQL function tgf() line 1 at RAISE
2024-11-25 19:08:12.062 CET [562502][client backend] [pg_regress/triggers][14/1078:536132] STATEMENT: INSERT INTO trgfire VALUES (1);
2024-11-25 19:08:12.062 CET [562502][client backend] [pg_regress/triggers][14/1079:536134] ERROR: except
2024-11-25 19:08:12.062 CET [562502][client backend] [pg_regress/triggers][14/1079:536134] CONTEXT: PL/pgSQL function tgf() line 1 at RAISE
2024-11-25 19:08:12.062 CET [562502][client backend] [pg_regress/triggers][14/1079:536134] STATEMENT: INSERT INTO trgfire VALUES (11);
2024-11-25 19:08:12.062 CET [562502][client backend] [pg_regress/triggers][14/1080:536138] ERROR: except
2024-11-25 19:08:12.062 CET [562502][client backend] [pg_regress/triggers][14/1080:536138] CONTEXT: PL/pgSQL function tgf() line 1 at RAISE
2024-11-25 19:08:12.062 CET [562502][client backend] [pg_regress/triggers][14/1080:536138] STATEMENT: INSERT INTO trgfire VALUES (21);
2024-11-25 19:08:12.063 CET [562502][client backend] [pg_regress/triggers][14/1081:536140] ERROR: except
2024-11-25 19:08:12.063 CET [562502][client backend] [pg_regress/triggers][14/1081:536140] CONTEXT: PL/pgSQL function tgf() line 1 at RAISE
2024-11-25 19:08:12.063 CET [562502][client backend] [pg_regress/triggers][14/1081:536140] STATEMENT: INSERT INTO trgfire VALUES (30);
2024-11-25 19:08:12.063 CET [562502][client backend] [pg_regress/triggers][14/1082:536141] ERROR: except
2024-11-25 19:08:12.063 CET [562502][client backend] [pg_regress/triggers][14/1082:536141] CONTEXT: PL/pgSQL function tgf() line 1 at RAISE
2024-11-25 19:08:12.063 CET [562502][client backend] [pg_regress/triggers][14/1082:536141] STATEMENT: INSERT INTO trgfire VALUES (40);
2024-11-25 19:08:12.063 CET [562801][client backend] [isolation/two-ids/s2][50/131:536136] ERROR: could not serialize access due to read/write dependencies among transactions
2024-11-25 19:08:12.063 CET [562801][client backend] [isolation/two-ids/s2][50/131:536136] DETAIL: Reason code: Canceled on identification as a pivot, during commit attempt.
2024-11-25 19:08:12.063 CET [562801][client backend] [isolation/two-ids/s2][50/131:536136] HINT: The transaction might succeed if retried.
2024-11-25 19:08:12.063 CET [562801][client backend] [isolation/two-ids/s2][50/131:536136] STATEMENT: COMMIT;
2024-11-25 19:08:12.063 CET [562801][client backend] [isolation/two-ids/s2][50/0:536136] ERROR: ResourceOwnerEnlarge called after release started
2024-11-25 19:08:12.063 CET [562801][client backend] [isolation/two-ids/s2][50/0:536136] WARNING: AbortTransaction while in ABORT state
TRAP: failed Assert("TransactionIdIsValid(proc->xid)"), File: "../src/backend/storage/ipc/procarray.c", Line: 677, PID: 562801
2024-11-25 19:08:12.064 CET [562819][client backend] [pg_regress/test_parser][:0] LOG: disconnection: session time: 0:00:00.011 user=nkey database=regression_test_parser host=[local]
postgres: nkey isolation_regression [local] COMMIT(ExceptionalCondition+0xbe)[0x55f2a101f185]
postgres: nkey isolation_regression [local] COMMIT(ProcArrayEndTransaction+0x46)[0x55f2a0ddf7b3]
postgres: nkey isolation_regression [local] COMMIT(+0x1e29b1)[0x55f2a09e59b1]
postgres: nkey isolation_regression [local] COMMIT(+0x1e347b)[0x55f2a09e647b]
postgres: nkey isolation_regression [local] COMMIT(AbortCurrentTransaction+0xe)[0x55f2a09e63a3]
postgres: nkey isolation_regression [local] COMMIT(PostgresMain+0x538)[0x55f2a0e20ff1]
postgres: nkey isolation_regression [local] COMMIT(+0x61457b)[0x55f2a0e1757b]
postgres: nkey isolation_regression [local] COMMIT(postmaster_child_launch+0x137)[0x55f2a0d295bf]
postgres: nkey isolation_regression [local] COMMIT(+0x52cff5)[0x55f2a0d2fff5]
postgres: nkey isolation_regression [local] COMMIT(+0x52a6cd)[0x55f2a0d2d6cd]
postgres: nkey isolation_regression [local] COMMIT(PostmasterMain+0x1629)[0x55f2a0d2cfae]
postgres: nkey isolation_regression [local] COMMIT(+0x404ba2)[0x55f2a0c07ba2]
/lib/x86_64-linux-gnu/libc.so.6(+0x2a1ca)[0x7f6afbe7e1ca]
/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x8b)[0x7f6afbe7e28b]
postgres: nkey isolation_regression [local] COMMIT(_start+0x25)[0x55f2a08e3ab5]
2024-11-25 19:08:12.068 CET [562820][client backend] [pg_regress/test_pg_dump][39/245:0] ERROR: cannot add an object of this type to an extension
2024-11-25 19:08:12.068 CET [562820][client backend] [pg_regress/test_pg_dump][39/245:0] STATEMENT: ALTER EXTENSION test_pg_dump ADD DATABASE postgres;
2024-11-25 19:08:12.087 CET [562795][client backend] [postgres_fdw][48/112:0] ERROR: new row for relation "T 1" violates check constraint "c2positive"
2024-11-25 19:08:12.087 CET [562795][client backend] [postgres_fdw][48/112:0] DETAIL: Failing row contains (1111, -2, null, null, null, null, ft1 , null).
2024-11-25 19:08:12.087 CET [562795][client backend] [postgres_fdw][48/112:0] STATEMENT: INSERT INTO "S 1"."T 1"("C 1", c2, c3, c4, c5, c6, c7, c8) VALUES ($1, $2, $3, $4, $5, $6, $7, $8)
2024-11-25 19:08:12.088 CET [562302][client backend] [pg_regress/postgres_fdw][65/587:0] ERROR: new row for relation "T 1" violates check constraint "c2positive"
2024-11-25 19:08:12.088 CET [562302][client backend] [pg_regress/postgres_fdw][65/587:0] DETAIL: Failing row contains (1111, -2, null, null, null, null, ft1 , null).
2024-11-25 19:08:12.088 CET [562302][client backend] [pg_regress/postgres_fdw][65/587:0] CONTEXT: remote SQL command: INSERT INTO "S 1"."T 1"("C 1", c2, c3, c4, c5, c6, c7, c8) VALUES ($1, $2, $3, $4, $5, $6, $7, $8)
2024-11-25 19:08:12.088 CET [562302][client backend] [pg_regress/postgres_fdw][65/587:0] STATEMENT: INSERT INTO ft1(c1, c2) VALUES(1111, -2);
2024-11-25 19:08:12.088 CET [562795][client backend] [postgres_fdw][48/114:536175] ERROR: new row for relation "T 1" violates check constraint "c2positive"
2024-11-25 19:08:12.088 CET [562795][client backend] [postgres_fdw][48/114:536175] DETAIL: Failing row contains (1, -1, 00001_trig_update, 1970-01-02 08:00:00+00, 1970-01-02 00:00:00, 1, 1 , foo).
2024-11-25 19:08:12.088 CET [562795][client backend] [postgres_fdw][48/114:536175] STATEMENT: UPDATE "S 1"."T 1" SET c2 = (- c2) WHERE (("C 1" = 1))
2024-11-25 19:08:12.088 CET [562302][client backend] [pg_regress/postgres_fdw][65/588:0] ERROR: new row for relation "T 1" violates check constraint "c2positive"
2024-11-25 19:08:12.088 CET [562302][client backend] [pg_regress/postgres_fdw][65/588:0] DETAIL: Failing row contains (1, -1, 00001_trig_update, 1970-01-02 08:00:00+00, 1970-01-02 00:00:00, 1, 1 , foo).
2024-11-25 19:08:12.088 CET [562302][client backend] [pg_regress/postgres_fdw][65/588:0] CONTEXT: remote SQL command: UPDATE "S 1"."T 1" SET c2 = (- c2) WHERE (("C 1" = 1))
2024-11-25 19:08:12.088 CET [562302][client backend] [pg_regress/postgres_fdw][65/588:0] STATEMENT: UPDATE ft1 SET c2 = -c2 WHERE c1 = 1;
2024-11-25 19:08:12.100 CET [562827][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:12.100 CET [562827][client backend] [[unknown]][68/27:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:12.100 CET [562827][client backend] [[unknown]][68/27:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:12.103 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:12.105 CET [562302][client backend] [pg_regress/postgres_fdw][65/612:0] ERROR: new row violates check option for view "rw_view"
2024-11-25 19:08:12.105 CET [562302][client backend] [pg_regress/postgres_fdw][65/612:0] DETAIL: Failing row contains (10, 5).
2024-11-25 19:08:12.105 CET [562302][client backend] [pg_regress/postgres_fdw][65/612:0] STATEMENT: INSERT INTO rw_view VALUES (0, 5);
2024-11-25 19:08:12.119 CET [562302][client backend] [pg_regress/postgres_fdw][65/617:0] ERROR: new row violates check option for view "rw_view"
2024-11-25 19:08:12.119 CET [562302][client backend] [pg_regress/postgres_fdw][65/617:0] DETAIL: Failing row contains (20, 20).
2024-11-25 19:08:12.119 CET [562302][client backend] [pg_regress/postgres_fdw][65/617:0] STATEMENT: UPDATE rw_view SET b = b + 5;
2024-11-25 19:08:12.123 CET [562795][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.148 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:12.124 CET [562828][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:12.124 CET [562828][client backend] [[unknown]][29/105:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:12.124 CET [562828][client backend] [[unknown]][29/105:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:12.128 CET [562302][client backend] [pg_regress/postgres_fdw][65/623:0] ERROR: new row violates check option for view "rw_view"
2024-11-25 19:08:12.128 CET [562302][client backend] [pg_regress/postgres_fdw][65/623:0] DETAIL: Failing row contains (10, 5).
2024-11-25 19:08:12.128 CET [562302][client backend] [pg_regress/postgres_fdw][65/623:0] STATEMENT: INSERT INTO rw_view VALUES (0, 15), (0, 5);
2024-11-25 19:08:12.130 CET [562828][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.006 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:12.132 CET [562820][client backend] [pg_regress/test_pg_dump][:0] LOG: disconnection: session time: 0:00:00.080 user=nkey database=regression_test_pg_dump host=[local]
2024-11-25 19:08:12.135 CET [561023][checkpointer] LOG: checkpoint complete: wrote 2401 buffers (14.7%), wrote 4 SLRU buffers; 0 WAL file(s) added, 0 removed, 1 recycled; write=0.031 s, sync=0.001 s, total=0.032 s; sync files=0, longest=0.000 s, average=0.000 s; distance=13349 kB, estimate=13349 kB; lsn=4/5E363328, redo lsn=4/5E2A6D80
2024-11-25 19:08:12.140 CET [562831][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:12.140 CET [562831][client backend] [[unknown]][66/34:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:12.140 CET [562831][client backend] [[unknown]][66/34:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:12.144 CET [562302][client backend] [pg_regress/postgres_fdw][65/645:0] ERROR: new row violates check option for view "rw_view"
2024-11-25 19:08:12.144 CET [562302][client backend] [pg_regress/postgres_fdw][65/645:0] DETAIL: Failing row contains (10, 5).
2024-11-25 19:08:12.144 CET [562302][client backend] [pg_regress/postgres_fdw][65/645:0] STATEMENT: INSERT INTO rw_view VALUES (0, 5);
2024-11-25 19:08:12.147 CET [562302][client backend] [pg_regress/postgres_fdw][65/650:0] ERROR: new row violates check option for view "rw_view"
2024-11-25 19:08:12.147 CET [562302][client backend] [pg_regress/postgres_fdw][65/650:0] DETAIL: Failing row contains (20, 20).
2024-11-25 19:08:12.147 CET [562302][client backend] [pg_regress/postgres_fdw][65/650:0] STATEMENT: UPDATE rw_view SET b = b + 5;
2024-11-25 19:08:12.152 CET [562831][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.012 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:12.153 CET [562833][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:12.154 CET [562833][client backend] [[unknown]][70/78:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:12.154 CET [562833][client backend] [[unknown]][70/78:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:12.157 CET [562302][client backend] [pg_regress/postgres_fdw][65/656:0] ERROR: new row violates check option for view "rw_view"
2024-11-25 19:08:12.157 CET [562302][client backend] [pg_regress/postgres_fdw][65/656:0] DETAIL: Failing row contains (10, 5).
2024-11-25 19:08:12.157 CET [562302][client backend] [pg_regress/postgres_fdw][65/656:0] STATEMENT: INSERT INTO rw_view VALUES (0, 15), (0, 5);
2024-11-25 19:08:12.159 CET [562833][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.005 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:12.164 CET [562813][client backend] [isolation/index_concurrently_upsert/s1][26/164:536312] ERROR: duplicate key value violates unique constraint "tbl_pkey_duplicate"
2024-11-25 19:08:12.164 CET [562813][client backend] [isolation/index_concurrently_upsert/s1][26/164:536312] DETAIL: Key (i)=(13) already exists.
2024-11-25 19:08:12.164 CET [562813][client backend] [isolation/index_concurrently_upsert/s1][26/164:536312] STATEMENT: INSERT INTO test.tbl VALUES(13,now()) on conflict(i) do update set updated_at = now();
2024-11-25 19:08:12.166 CET [562836][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:12.167 CET [562812][client backend] [isolation/index_concurrently_upsert/control connection][:0] LOG: disconnection: session time: 0:00:00.138 user=nkey database=isolation_regression_injection_points host=[local]
2024-11-25 19:08:12.167 CET [562813][client backend] [isolation/index_concurrently_upsert/s1][:0] LOG: disconnection: session time: 0:00:00.128 user=nkey database=isolation_regression_injection_points host=[local]
2024-11-25 19:08:12.167 CET [562836][client backend] [[unknown]][71/28:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:12.167 CET [562836][client backend] [[unknown]][71/28:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:12.167 CET [562814][client backend] [isolation/index_concurrently_upsert/s2][:0] LOG: disconnection: session time: 0:00:00.124 user=nkey database=isolation_regression_injection_points host=[local]
2024-11-25 19:08:12.167 CET [562816][client backend] [isolation/index_concurrently_upsert/s4][:0] LOG: disconnection: session time: 0:00:00.117 user=nkey database=isolation_regression_injection_points host=[local]
2024-11-25 19:08:12.167 CET [562815][client backend] [isolation/index_concurrently_upsert/s3][:0] LOG: disconnection: session time: 0:00:00.121 user=nkey database=isolation_regression_injection_points host=[local]
2024-11-25 19:08:12.168 CET [562840][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:12.169 CET [562840][client backend] [[unknown]][78/66:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:12.169 CET [562840][client backend] [[unknown]][78/66:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:12.173 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:12.176 CET [561023][checkpointer] LOG: checkpoint complete: wrote 217 buffers (1.3%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.004 s, sync=0.001 s, total=0.004 s; sync files=0, longest=0.000 s, average=0.000 s; distance=1033 kB, estimate=12117 kB; lsn=4/5E3BA938, redo lsn=4/5E3A9400
2024-11-25 19:08:12.195 CET [562502][client backend] [pg_regress/triggers][14/1139:0] ERROR: ROW triggers with transition tables are not supported on partitions
2024-11-25 19:08:12.195 CET [562502][client backend] [pg_regress/triggers][14/1139:0] STATEMENT: create trigger child_row_trig
after insert on child referencing new table as new_table
for each row execute procedure dump_insert();
2024-11-25 19:08:12.199 CET [562502][client backend] [pg_regress/triggers][14/1142:536355] ERROR: trigger "child_row_trig" prevents table "child" from becoming a partition
2024-11-25 19:08:12.199 CET [562502][client backend] [pg_regress/triggers][14/1142:536355] DETAIL: ROW triggers with transition tables are not supported on partitions.
2024-11-25 19:08:12.199 CET [562502][client backend] [pg_regress/triggers][14/1142:536355] STATEMENT: alter table parent attach partition child for values in ('AAA');
2024-11-25 19:08:12.202 CET [562836][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.035 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:12.203 CET [562847][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:12.203 CET [562848][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:12.204 CET [562847][client backend] [[unknown]][1/40:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:12.204 CET [562847][client backend] [[unknown]][1/40:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:12.204 CET [562848][client backend] [[unknown]][31/486:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:12.204 CET [562848][client backend] [[unknown]][31/486:0] LOG: connection authorized: user=nkey database=postgres application_name=pg_regress
2024-11-25 19:08:12.206 CET [561023][checkpointer] LOG: checkpoint starting: immediate force wait
2024-11-25 19:08:12.208 CET [561023][checkpointer] LOG: checkpoint complete: wrote 115 buffers (0.7%), wrote 1 SLRU buffers; 0 WAL file(s) added, 0 removed, 0 recycled; write=0.002 s, sync=0.001 s, total=0.002 s; sync files=0, longest=0.000 s, average=0.000 s; distance=567 kB, estimate=10962 kB; lsn=4/5E447AE8, redo lsn=4/5E437378
2024-11-25 19:08:12.221 CET [562847][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.017 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:12.224 CET [562849][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:12.224 CET [562849][client backend] [[unknown]][5/135:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:12.224 CET [562849][client backend] [[unknown]][5/135:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:12.268 CET [562502][client backend] [pg_regress/triggers][14/1190:0] ERROR: ROW triggers with transition tables are not supported on inheritance children
2024-11-25 19:08:12.268 CET [562502][client backend] [pg_regress/triggers][14/1190:0] STATEMENT: create trigger child_row_trig
after insert on child referencing new table as new_table
for each row execute procedure dump_insert();
2024-11-25 19:08:12.272 CET [562502][client backend] [pg_regress/triggers][14/1193:536467] ERROR: trigger "child_row_trig" prevents table "child" from becoming an inheritance child
2024-11-25 19:08:12.272 CET [562502][client backend] [pg_regress/triggers][14/1193:536467] DETAIL: ROW triggers with transition tables are not supported in inheritance hierarchies.
2024-11-25 19:08:12.272 CET [562502][client backend] [pg_regress/triggers][14/1193:536467] STATEMENT: alter table child inherit parent;
2024-11-25 19:08:12.343 CET [562502][client backend] [pg_regress/triggers][14/1224:0] ERROR: transition tables cannot be specified for triggers with more than one event
2024-11-25 19:08:12.343 CET [562502][client backend] [pg_regress/triggers][14/1224:0] STATEMENT: create trigger my_table_multievent_trig
after insert or update on my_table referencing new table as new_table
for each statement execute procedure dump_insert();
2024-11-25 19:08:12.343 CET [562502][client backend] [pg_regress/triggers][14/1225:0] ERROR: transition tables cannot be specified for triggers with column lists
2024-11-25 19:08:12.343 CET [562502][client backend] [pg_regress/triggers][14/1225:0] STATEMENT: create trigger my_table_col_update_trig
after update of b on my_table referencing new table as new_table
for each statement execute procedure dump_insert();
2024-11-25 19:08:12.441 CET [562502][client backend] [pg_regress/triggers][14/1271:0] ERROR: trigger "my_trig" for relation "my_table" already exists
2024-11-25 19:08:12.441 CET [562502][client backend] [pg_regress/triggers][14/1271:0] STATEMENT: create trigger my_trig
before insert on my_table
for each row execute procedure funcB();
2024-11-25 19:08:12.455 CET [562302][client backend] [pg_regress/postgres_fdw][65/929:0] ERROR: WHERE CURRENT OF is not supported for this table type
2024-11-25 19:08:12.455 CET [562302][client backend] [pg_regress/postgres_fdw][65/929:0] STATEMENT: update bar set f2 = null where current of c;
2024-11-25 19:08:12.466 CET [562502][client backend] [pg_regress/triggers][14/1288:0] ERROR: trigger "my_trig" for relation "parted_trig_1" is an internal or a child trigger
2024-11-25 19:08:12.466 CET [562502][client backend] [pg_regress/triggers][14/1288:0] STATEMENT: create or replace trigger my_trig
after insert on parted_trig_1
for each row execute procedure funcB();
2024-11-25 19:08:12.478 CET [562502][client backend] [pg_regress/triggers][14/1294:536684] ERROR: trigger "my_trig" for relation "parted_trig_1" already exists
2024-11-25 19:08:12.478 CET [562502][client backend] [pg_regress/triggers][14/1294:536684] STATEMENT: create trigger my_trig
after insert on parted_trig
for each row execute procedure funcB();
2024-11-25 19:08:12.534 CET [562302][client backend] [pg_regress/postgres_fdw][65/981:0] ERROR: cannot execute MERGE on relation "remp1"
2024-11-25 19:08:12.534 CET [562302][client backend] [pg_regress/postgres_fdw][65/981:0] DETAIL: This operation is not supported for foreign tables.
2024-11-25 19:08:12.534 CET [562302][client backend] [pg_regress/postgres_fdw][65/981:0] STATEMENT: merge into itrtest using (select 1, 'foo') as source on (true)
when matched then do nothing;
2024-11-25 19:08:12.538 CET [562302][client backend] [pg_regress/postgres_fdw][65/985:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:12.538 CET [562302][client backend] [pg_regress/postgres_fdw][65/985:0] STATEMENT: insert into itrtest values (1, 'bar') on conflict (a) do nothing;
2024-11-25 19:08:12.538 CET [562302][client backend] [pg_regress/postgres_fdw][65/986:0] ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification
2024-11-25 19:08:12.538 CET [562302][client backend] [pg_regress/postgres_fdw][65/986:0] STATEMENT: insert into itrtest values (1, 'bar') on conflict (a) do update set b = excluded.b;
2024-11-25 19:08:12.561 CET [562502][client backend] [pg_regress/triggers][14/1336:536775] ERROR: BOOM!
2024-11-25 19:08:12.561 CET [562502][client backend] [pg_regress/triggers][14/1336:536775] CONTEXT: PL/pgSQL function convslot_trig4() line 1 at RAISE
2024-11-25 19:08:12.561 CET [562502][client backend] [pg_regress/triggers][14/1336:536775] STATEMENT: update convslot_test_parent set val = 3;
2024-11-25 19:08:12.572 CET [562849][client backend] [postgres_fdw][5/246:0] ERROR: new row for relation "loct" violates check constraint "loct_a_check"
2024-11-25 19:08:12.572 CET [562849][client backend] [postgres_fdw][5/246:0] DETAIL: Failing row contains (2, foo).
2024-11-25 19:08:12.572 CET [562849][client backend] [postgres_fdw][5/246:0] STATEMENT: UPDATE public.loct SET a = 2 WHERE ((b = 'foo')) RETURNING a, b
2024-11-25 19:08:12.572 CET [562302][client backend] [pg_regress/postgres_fdw][65/1013:0] ERROR: new row for relation "loct" violates check constraint "loct_a_check"
2024-11-25 19:08:12.572 CET [562302][client backend] [pg_regress/postgres_fdw][65/1013:0] DETAIL: Failing row contains (2, foo).
2024-11-25 19:08:12.572 CET [562302][client backend] [pg_regress/postgres_fdw][65/1013:0] CONTEXT: remote SQL command: UPDATE public.loct SET a = 2 WHERE ((b = 'foo')) RETURNING a, b
2024-11-25 19:08:12.572 CET [562302][client backend] [pg_regress/postgres_fdw][65/1013:0] STATEMENT: update utrtest set a = 2 where b = 'foo' returning *;
2024-11-25 19:08:12.572 CET [562302][client backend] [pg_regress/postgres_fdw][65/1014:536783] ERROR: cannot route tuples into foreign table to be updated "remp"
2024-11-25 19:08:12.572 CET [562302][client backend] [pg_regress/postgres_fdw][65/1014:536783] STATEMENT: update utrtest set a = 1 where b = 'qux' returning *;
2024-11-25 19:08:12.580 CET [562302][client backend] [pg_regress/postgres_fdw][65/1023:536791] ERROR: cannot route tuples into foreign table to be updated "remp"
2024-11-25 19:08:12.580 CET [562302][client backend] [pg_regress/postgres_fdw][65/1023:536791] STATEMENT: update utrtest set a = 1 where a = 1 or a = 2 returning *;
2024-11-25 19:08:12.588 CET [562302][client backend] [pg_regress/postgres_fdw][65/1033:536803] ERROR: cannot route tuples into foreign table to be updated "remp"
2024-11-25 19:08:12.588 CET [562302][client backend] [pg_regress/postgres_fdw][65/1033:536803] STATEMENT: update utrtest set a = 1 returning *;
2024-11-25 19:08:12.596 CET [562302][client backend] [pg_regress/postgres_fdw][65/1038:536811] ERROR: cannot route tuples into foreign table to be updated "remp"
2024-11-25 19:08:12.596 CET [562302][client backend] [pg_regress/postgres_fdw][65/1038:536811] STATEMENT: update utrtest set a = 1 from (values (1), (2)) s(x) where a = s.x returning *;
2024-11-25 19:08:12.605 CET [562502][client backend] [pg_regress/triggers][14/1347:0] ERROR: syntax error at or near "only" at character 20
2024-11-25 19:08:12.605 CET [562502][client backend] [pg_regress/triggers][14/1347:0] STATEMENT: alter trigger a on only grandparent rename to b;
2024-11-25 19:08:12.605 CET [562502][client backend] [pg_regress/triggers][14/1348:536823] ERROR: cannot rename trigger "b" on table "middle"
2024-11-25 19:08:12.605 CET [562502][client backend] [pg_regress/triggers][14/1348:536823] HINT: Rename the trigger on the partitioned table "grandparent" instead.
2024-11-25 19:08:12.605 CET [562502][client backend] [pg_regress/triggers][14/1348:536823] STATEMENT: alter trigger b on middle rename to c;
2024-11-25 19:08:12.606 CET [562302][client backend] [pg_regress/postgres_fdw][65/1049:536825] ERROR: cannot route tuples into foreign table to be updated "remp"
2024-11-25 19:08:12.606 CET [562302][client backend] [pg_regress/postgres_fdw][65/1049:536825] STATEMENT: update utrtest set a = 3 returning *;
2024-11-25 19:08:12.607 CET [562302][client backend] [pg_regress/postgres_fdw][65/1051:536826] ERROR: cannot route tuples into foreign table to be updated "remp"
2024-11-25 19:08:12.607 CET [562302][client backend] [pg_regress/postgres_fdw][65/1051:536826] STATEMENT: update utrtest set a = 3 from (values (2), (3)) s(x) where a = s.x returning *;
2024-11-25 19:08:12.609 CET [562502][client backend] [pg_regress/triggers][14/1350:536828] ERROR: trigger "c" for relation "middle" already exists
2024-11-25 19:08:12.609 CET [562502][client backend] [pg_regress/triggers][14/1350:536828] STATEMENT: alter trigger b on grandparent rename to c;
2024-11-25 19:08:12.631 CET [562849][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.407 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:12.632 CET [562850][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:12.633 CET [562850][client backend] [[unknown]][37/232:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:12.633 CET [562850][client backend] [[unknown]][37/232:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:12.644 CET [562850][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.012 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:12.653 CET [562851][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:12.653 CET [562851][client backend] [[unknown]][75/68:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:12.653 CET [562851][client backend] [[unknown]][75/68:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:12.663 CET [562851][client backend] [postgres_fdw][75/78:0] ERROR: new row for relation "loc2" violates check constraint "loc2_f1positive"
2024-11-25 19:08:12.663 CET [562851][client backend] [postgres_fdw][75/78:0] DETAIL: Failing row contains (-1, xyzzy).
2024-11-25 19:08:12.663 CET [562851][client backend] [postgres_fdw][75/78:0] STATEMENT: INSERT INTO public.loc2(f1, f2) VALUES ($1, $2)
2024-11-25 19:08:12.663 CET [562302][client backend] [pg_regress/postgres_fdw][65/1087:0] ERROR: new row for relation "loc2" violates check constraint "loc2_f1positive"
2024-11-25 19:08:12.663 CET [562302][client backend] [pg_regress/postgres_fdw][65/1087:0] DETAIL: Failing row contains (-1, xyzzy).
2024-11-25 19:08:12.663 CET [562302][client backend] [pg_regress/postgres_fdw][65/1087:0] CONTEXT: remote SQL command: INSERT INTO public.loc2(f1, f2) VALUES ($1, $2)
COPY rem2, line 1: "-1 xyzzy"
2024-11-25 19:08:12.663 CET [562302][client backend] [pg_regress/postgres_fdw][65/1087:0] STATEMENT: copy rem2 from stdin;
2024-11-25 19:08:12.686 CET [562502][client backend] [pg_regress/triggers][:0] LOG: disconnection: session time: 0:00:01.986 user=nkey database=regression host=[local]
2024-11-25 19:08:12.708 CET [562885][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:12.709 CET [562885][client backend] [[unknown]][56/68:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:12.709 CET [562885][client backend] [[unknown]][56/68:0] LOG: connection authorized: user=nkey database=regression application_name=pg_regress/sanity_check
2024-11-25 19:08:12.715 CET [562851][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.062 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:12.716 CET [562886][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:12.716 CET [562886][client backend] [[unknown]][92/566:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:12.716 CET [562886][client backend] [[unknown]][92/566:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:12.726 CET [562886][client backend] [postgres_fdw][92/576:0] ERROR: new row for relation "loc2" violates check constraint "loc2_f1positive"
2024-11-25 19:08:12.726 CET [562886][client backend] [postgres_fdw][92/576:0] DETAIL: Failing row contains (-1, xyzzy).
2024-11-25 19:08:12.726 CET [562886][client backend] [postgres_fdw][92/576:0] STATEMENT: INSERT INTO public.loc2(f1, f2) VALUES ($1, $2)
2024-11-25 19:08:12.726 CET [562302][client backend] [pg_regress/postgres_fdw][65/1144:0] ERROR: new row for relation "loc2" violates check constraint "loc2_f1positive"
2024-11-25 19:08:12.726 CET [562302][client backend] [pg_regress/postgres_fdw][65/1144:0] DETAIL: Failing row contains (-1, xyzzy).
2024-11-25 19:08:12.726 CET [562302][client backend] [pg_regress/postgres_fdw][65/1144:0] CONTEXT: remote SQL command: INSERT INTO public.loc2(f1, f2) VALUES ($1, $2)
COPY rem2
2024-11-25 19:08:12.726 CET [562302][client backend] [pg_regress/postgres_fdw][65/1144:0] STATEMENT: copy rem2 from stdin;
2024-11-25 19:08:12.745 CET [562886][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.028 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:12.754 CET [562887][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:12.754 CET [562887][client backend] [[unknown]][57/219:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:12.754 CET [562887][client backend] [[unknown]][57/219:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:12.774 CET [562887][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.020 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:12.774 CET [562302][client backend] [pg_regress/postgres_fdw][65/1191:536952] ERROR: foreign table "tru_ftable" does not allow truncates
2024-11-25 19:08:12.774 CET [562302][client backend] [pg_regress/postgres_fdw][65/1191:536952] STATEMENT: TRUNCATE tru_ftable;
2024-11-25 19:08:12.775 CET [562888][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:12.776 CET [562888][client backend] [[unknown]][62/581:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:12.776 CET [562888][client backend] [[unknown]][62/581:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:12.781 CET [562302][client backend] [pg_regress/postgres_fdw][65/1195:536957] ERROR: foreign table "tru_ftable" does not allow truncates
2024-11-25 19:08:12.781 CET [562302][client backend] [pg_regress/postgres_fdw][65/1195:536957] STATEMENT: TRUNCATE tru_ftable;
2024-11-25 19:08:12.781 CET [562888][client backend] [postgres_fdw][:0] LOG: disconnection: session time: 0:00:00.005 user=nkey database=regression_postgres_fdw host=[local]
2024-11-25 19:08:12.782 CET [562302][client backend] [pg_regress/postgres_fdw][65/1198:536960] ERROR: foreign table "tru_ftable" does not allow truncates
2024-11-25 19:08:12.782 CET [562302][client backend] [pg_regress/postgres_fdw][65/1198:536960] STATEMENT: TRUNCATE tru_ftable;
2024-11-25 19:08:12.784 CET [562889][not initialized] [[unknown]][:0] LOG: connection received: host=[local]
2024-11-25 19:08:12.784 CET [562889][client backend] [[unknown]][19/227:0] LOG: connection authenticated: user="nkey" method=trust (/home/nkey/postgres/buildDir/runningcheck/pg_hba.conf:117)
2024-11-25 19:08:12.784 CET [562889][client backend] [[unknown]][19/227:0] LOG: connection authorized: user=nkey database=regression_postgres_fdw application_name=postgres_fdw
2024-11-25 19:08:12.796 CET [562889][client backend] [postgres_fdw][19/239:536967] ERROR: cannot truncate a table referenced in a foreign key constraint
2024-11-25 19:08:12.796 CET [562889][client backend] [postgres_fdw][19/239:536967] DETAIL: Table "tru_fk_table" references "tru_pk_table".
2024-11-25 19:08:12.796 CET [562889][client backend] [postgres_fdw][19/239:536967] HINT: Truncate table "tru_fk_table" at the same time, or use TRUNCATE ... CASCADE.
2024-11-25 19:08:12.796 CET [562889][client backend] [postgres_fdw][19/239:536967] STATEMENT: TRUNCATE public.tru_pk_table CONTINUE IDENTITY RESTRICT
2024-11-25 19:08:12.797 CET [562302][client backend] [pg_regress/postgres_fdw][65/1208:536966] ERROR: cannot truncate a table referenced in a foreign key constraint
2024-11-25 19:08:12.797 CET [562302][client backend] [pg_regress/postgres_fdw][65/1208:536966] DETAIL: Table "tru_fk_table" references "tru_pk_table".
2024-11-25 19:08:12.797 CET [562302][client backend] [pg_regress/postgres_fdw][65/1208:536966] HINT: Truncate table "tru_fk_table" at the same time, or use TRUNCATE ... CASCADE.
2024-11-25 19:08:12.797 CET [562302][client backend] [pg_regress/postgres_fdw][65/1208:536966] CONTEXT: remote SQL command: TRUNCATE public.tru_pk_table CONTINUE IDENTITY RESTRICT
2024-11-25 19:08:12.797 CET [562302][client backend] [pg_regress/postgres_fdw][65/1208:536966] STATEMENT: TRUNCATE tru_pk_ftable;
NOTICE: truncate cascades to table "tru_fk_table"
NOTICE: truncate cascades to table "tru_fk_table"
2024-11-25 19:08:12.884 CET [561022][postmaster] LOG: client backend (PID 562801) was terminated by signal 6: Aborted
2024-11-25 19:08:12.884 CET [561022][postmaster] DETAIL: Failed process was running: COMMIT;
2024-11-25 19:08:12.884 CET [561022][postmaster] LOG: terminating any other active server processes
2024-11-25 19:08:12.889 CET [561022][postmaster] LOG: shutting down because "restart_after_crash" is off
2024-11-25 19:08:12.910 CET [561022][postmaster] LOG: database system is shut down
Hello, Nathan and Michael!
I believe I’ve identified the root cause of the issue. It appears to be
related to the GetNamedDSMSegment and injection_points module.
Here’s how it happens:
* A backend attaches (even locally!) to an injection point, which might get
triggered during resource release (ResourceOwnerRelease).
* Another backend attempts to release the same resource (e.g., by aborting
a transaction) and triggers the injection point.
* This leads to a call to GetNamedDSMSegment, as it’s the first time this
backend interacts with injection points.
* Consequently, an assertion failure occurs in ResourceOwnerEnlarge because
the backend is in the process of releasing all resources.
I’ve attached a reproducer—this version is much simpler for debugging.
So, it looks like we need to provide some option to guarantee
GetNamedDSMSegment called for injection points module.
Any other ideas?
Best regards,
Mikhail.
[0]: https://github.com/postgres/postgres/commit/8b2bcf3f287c79eaebf724cba57e5ff664b01e06
https://github.com/postgres/postgres/commit/8b2bcf3f287c79eaebf724cba57e5ff664b01e06
Attachments:
v2-0001-Test-to-reproduce-issue-with-crash-caused-by-pass.patchtext/plain; charset=US-ASCII; name=v2-0001-Test-to-reproduce-issue-with-crash-caused-by-pass.patchDownload
From e56b6de29aea01916d35d22e9a59241a04202b37 Mon Sep 17 00:00:00 2001
From: nkey <michail.nikolaev@gmail.com>
Date: Wed, 27 Nov 2024 02:10:17 +0100
Subject: [PATCH v2] Test to reproduce issue with crash caused by passing throw
injection points during transaction aborting (caused by call to
injection_init_shmem).
---
src/backend/utils/time/snapmgr.c | 2 +
src/test/modules/injection_points/Makefile | 2 +-
.../injection_points/expected/crash.out | 26 ++++++++++
src/test/modules/injection_points/meson.build | 1 +
.../modules/injection_points/specs/crash.spec | 47 +++++++++++++++++++
5 files changed, 77 insertions(+), 1 deletion(-)
create mode 100644 src/test/modules/injection_points/expected/crash.out
create mode 100644 src/test/modules/injection_points/specs/crash.spec
diff --git a/src/backend/utils/time/snapmgr.c b/src/backend/utils/time/snapmgr.c
index 7d2b34d4f20..3a7357a050d 100644
--- a/src/backend/utils/time/snapmgr.c
+++ b/src/backend/utils/time/snapmgr.c
@@ -64,6 +64,7 @@
#include "utils/resowner.h"
#include "utils/snapmgr.h"
#include "utils/syscache.h"
+#include "utils/injection_point.h"
/*
@@ -426,6 +427,7 @@ InvalidateCatalogSnapshot(void)
pairingheap_remove(&RegisteredSnapshots, &CatalogSnapshot->ph_node);
CatalogSnapshot = NULL;
SnapshotResetXmin();
+ INJECTION_POINT("invalidate_catalog_snapshot_end");
}
}
diff --git a/src/test/modules/injection_points/Makefile b/src/test/modules/injection_points/Makefile
index 0753a9df58c..da8930ea49f 100644
--- a/src/test/modules/injection_points/Makefile
+++ b/src/test/modules/injection_points/Makefile
@@ -13,7 +13,7 @@ PGFILEDESC = "injection_points - facility for injection points"
REGRESS = injection_points reindex_conc
REGRESS_OPTS = --dlpath=$(top_builddir)/src/test/regress
-ISOLATION = basic inplace
+ISOLATION = basic crash inplace
TAP_TESTS = 1
diff --git a/src/test/modules/injection_points/expected/crash.out b/src/test/modules/injection_points/expected/crash.out
new file mode 100644
index 00000000000..7d7f298c786
--- /dev/null
+++ b/src/test/modules/injection_points/expected/crash.out
@@ -0,0 +1,26 @@
+Parsed test spec with 4 sessions
+
+starting permutation: s4_attach_locally wx1 rxwy2 c1 ry3 c2 c3
+injection_points_set_local
+--------------------------
+
+(1 row)
+
+step s4_attach_locally: SELECT injection_points_attach('invalidate_catalog_snapshot_end', 'wait');
+injection_points_attach
+-----------------------
+
+(1 row)
+
+step wx1: update D1 set id = id + 1;
+step rxwy2: update D2 set id = (select id+1 from D1);
+step c1: COMMIT;
+step ry3: select id from D2;
+id
+--
+ 1
+(1 row)
+
+step c2: COMMIT;
+ERROR: could not serialize access due to read/write dependencies among transactions
+step c3: COMMIT;
diff --git a/src/test/modules/injection_points/meson.build b/src/test/modules/injection_points/meson.build
index 58f19001157..6079187dd57 100644
--- a/src/test/modules/injection_points/meson.build
+++ b/src/test/modules/injection_points/meson.build
@@ -43,6 +43,7 @@ tests += {
'isolation': {
'specs': [
'basic',
+ 'crash',
'inplace',
],
},
diff --git a/src/test/modules/injection_points/specs/crash.spec b/src/test/modules/injection_points/specs/crash.spec
new file mode 100644
index 00000000000..55e6a5434ab
--- /dev/null
+++ b/src/test/modules/injection_points/specs/crash.spec
@@ -0,0 +1,47 @@
+setup
+{
+ create table D1 (id int primary key not null);
+ create table D2 (id int primary key not null);
+ insert into D1 values (1);
+ insert into D2 values (1);
+
+ CREATE EXTENSION injection_points;
+}
+
+teardown
+{
+ DROP TABLE D1, D2;
+ DROP EXTENSION injection_points;
+}
+
+session s1
+setup { BEGIN ISOLATION LEVEL SERIALIZABLE;}
+step wx1 { update D1 set id = id + 1; }
+step c1 { COMMIT; }
+
+session s2
+setup {
+ BEGIN ISOLATION LEVEL SERIALIZABLE;
+}
+step rxwy2 { update D2 set id = (select id+1 from D1); }
+step c2 { COMMIT; }
+
+session s3
+setup { BEGIN ISOLATION LEVEL SERIALIZABLE; }
+step ry3 { select id from D2; }
+step c3 { COMMIT; }
+
+session s4
+setup {
+ SELECT injection_points_set_local();
+}
+step s4_attach_locally { SELECT injection_points_attach('invalidate_catalog_snapshot_end', 'wait'); }
+
+permutation
+ s4_attach_locally
+ wx1
+ rxwy2
+ c1
+ ry3
+ c2
+ c3
\ No newline at end of file
--
2.43.0
Hello, again.
Another backend attempts to release the same resource (e.g., by aborting
a transaction) and triggers the injection point.
Oh, all that GPT-like correctors required to be carefully checked :)
Correct version: Another backend attempts to release some resource (e.g.,
by aborting a transaction) and triggers the injection point.
Best regards,
Mikhail.
Hello, Heikki, Nathan and Michael!
Oh, please excuse my impudence in bringing you all here, but I finally
found what almost the same issue was fixed by Heikki already [0]https://github.com/postgres/postgres/commit/e2e3b8ae9ed73fcd3096c5ca93971891a7767388.
I discovered that a similar issue was previously addressed by Heikki in
commit [0]https://github.com/postgres/postgres/commit/e2e3b8ae9ed73fcd3096c5ca93971891a7767388, where installcheck was disabled for injection point tests.
However, in the meson build configuration, this was only applied to
regression tests - the isolation and TAP tests are still running during
installcheck.
As demonstrated in the previously shared reproducer [1]/messages/by-id/CANtu0ojbx6=esP8euQgzD1CN6tigTQvDmupwEmLTHZT=6_yx_A@mail.gmail.com, even *local*
injection points can cause backend crashes through unexpected side effects.
Therefore, I propose extending the installcheck disable to cover both TAP
and isolation tests as well.
I've attached a patch implementing these changes.
A patch with such change is attached.
Best regards,
Mikhail.
[0]: https://github.com/postgres/postgres/commit/e2e3b8ae9ed73fcd3096c5ca93971891a7767388
https://github.com/postgres/postgres/commit/e2e3b8ae9ed73fcd3096c5ca93971891a7767388
[1]: /messages/by-id/CANtu0ojbx6=esP8euQgzD1CN6tigTQvDmupwEmLTHZT=6_yx_A@mail.gmail.com
/messages/by-id/CANtu0ojbx6=esP8euQgzD1CN6tigTQvDmupwEmLTHZT=6_yx_A@mail.gmail.com
Show quoted text
Attachments:
v2-0001-Test-to-reproduce-issue-with-crash-caused-by-pass.patchtext/plain; charset=US-ASCII; name=v2-0001-Test-to-reproduce-issue-with-crash-caused-by-pass.patchDownload
From e56b6de29aea01916d35d22e9a59241a04202b37 Mon Sep 17 00:00:00 2001
From: nkey <michail.nikolaev@gmail.com>
Date: Wed, 27 Nov 2024 02:10:17 +0100
Subject: [PATCH v2] Test to reproduce issue with crash caused by passing throw
injection points during transaction aborting (caused by call to
injection_init_shmem).
---
src/backend/utils/time/snapmgr.c | 2 +
src/test/modules/injection_points/Makefile | 2 +-
.../injection_points/expected/crash.out | 26 ++++++++++
src/test/modules/injection_points/meson.build | 1 +
.../modules/injection_points/specs/crash.spec | 47 +++++++++++++++++++
5 files changed, 77 insertions(+), 1 deletion(-)
create mode 100644 src/test/modules/injection_points/expected/crash.out
create mode 100644 src/test/modules/injection_points/specs/crash.spec
diff --git a/src/backend/utils/time/snapmgr.c b/src/backend/utils/time/snapmgr.c
index 7d2b34d4f20..3a7357a050d 100644
--- a/src/backend/utils/time/snapmgr.c
+++ b/src/backend/utils/time/snapmgr.c
@@ -64,6 +64,7 @@
#include "utils/resowner.h"
#include "utils/snapmgr.h"
#include "utils/syscache.h"
+#include "utils/injection_point.h"
/*
@@ -426,6 +427,7 @@ InvalidateCatalogSnapshot(void)
pairingheap_remove(&RegisteredSnapshots, &CatalogSnapshot->ph_node);
CatalogSnapshot = NULL;
SnapshotResetXmin();
+ INJECTION_POINT("invalidate_catalog_snapshot_end");
}
}
diff --git a/src/test/modules/injection_points/Makefile b/src/test/modules/injection_points/Makefile
index 0753a9df58c..da8930ea49f 100644
--- a/src/test/modules/injection_points/Makefile
+++ b/src/test/modules/injection_points/Makefile
@@ -13,7 +13,7 @@ PGFILEDESC = "injection_points - facility for injection points"
REGRESS = injection_points reindex_conc
REGRESS_OPTS = --dlpath=$(top_builddir)/src/test/regress
-ISOLATION = basic inplace
+ISOLATION = basic crash inplace
TAP_TESTS = 1
diff --git a/src/test/modules/injection_points/expected/crash.out b/src/test/modules/injection_points/expected/crash.out
new file mode 100644
index 00000000000..7d7f298c786
--- /dev/null
+++ b/src/test/modules/injection_points/expected/crash.out
@@ -0,0 +1,26 @@
+Parsed test spec with 4 sessions
+
+starting permutation: s4_attach_locally wx1 rxwy2 c1 ry3 c2 c3
+injection_points_set_local
+--------------------------
+
+(1 row)
+
+step s4_attach_locally: SELECT injection_points_attach('invalidate_catalog_snapshot_end', 'wait');
+injection_points_attach
+-----------------------
+
+(1 row)
+
+step wx1: update D1 set id = id + 1;
+step rxwy2: update D2 set id = (select id+1 from D1);
+step c1: COMMIT;
+step ry3: select id from D2;
+id
+--
+ 1
+(1 row)
+
+step c2: COMMIT;
+ERROR: could not serialize access due to read/write dependencies among transactions
+step c3: COMMIT;
diff --git a/src/test/modules/injection_points/meson.build b/src/test/modules/injection_points/meson.build
index 58f19001157..6079187dd57 100644
--- a/src/test/modules/injection_points/meson.build
+++ b/src/test/modules/injection_points/meson.build
@@ -43,6 +43,7 @@ tests += {
'isolation': {
'specs': [
'basic',
+ 'crash',
'inplace',
],
},
diff --git a/src/test/modules/injection_points/specs/crash.spec b/src/test/modules/injection_points/specs/crash.spec
new file mode 100644
index 00000000000..55e6a5434ab
--- /dev/null
+++ b/src/test/modules/injection_points/specs/crash.spec
@@ -0,0 +1,47 @@
+setup
+{
+ create table D1 (id int primary key not null);
+ create table D2 (id int primary key not null);
+ insert into D1 values (1);
+ insert into D2 values (1);
+
+ CREATE EXTENSION injection_points;
+}
+
+teardown
+{
+ DROP TABLE D1, D2;
+ DROP EXTENSION injection_points;
+}
+
+session s1
+setup { BEGIN ISOLATION LEVEL SERIALIZABLE;}
+step wx1 { update D1 set id = id + 1; }
+step c1 { COMMIT; }
+
+session s2
+setup {
+ BEGIN ISOLATION LEVEL SERIALIZABLE;
+}
+step rxwy2 { update D2 set id = (select id+1 from D1); }
+step c2 { COMMIT; }
+
+session s3
+setup { BEGIN ISOLATION LEVEL SERIALIZABLE; }
+step ry3 { select id from D2; }
+step c3 { COMMIT; }
+
+session s4
+setup {
+ SELECT injection_points_set_local();
+}
+step s4_attach_locally { SELECT injection_points_attach('invalidate_catalog_snapshot_end', 'wait'); }
+
+permutation
+ s4_attach_locally
+ wx1
+ rxwy2
+ c1
+ ry3
+ c2
+ c3
\ No newline at end of file
--
2.43.0
On Thu, Nov 28, 2024 at 09:04:36PM +0100, Michail Nikolaev wrote:
I discovered that a similar issue was previously addressed by Heikki in
commit [0], where installcheck was disabled for injection point tests.
However, in the meson build configuration, this was only applied to
regression tests - the isolation and TAP tests are still running during
installcheck.
I fail to see how this is related? The original issue was that this
was impossible to run safely concurrently, but now we have the
facilities able to do so. There are a few cases where using a wait
point has limits, for example outside a transaction context for some
of the processes, but that has not really been an issue up to now.
As demonstrated in the previously shared reproducer [1], even *local*
injection points can cause backend crashes through unexpected side effects.
Therefore, I propose extending the installcheck disable to cover both TAP
and isolation tests as well.I've attached a patch implementing these changes.
@@ -426,6 +427,7 @@ InvalidateCatalogSnapshot(void)
pairingheap_remove(&RegisteredSnapshots, &CatalogSnapshot->ph_node);
CatalogSnapshot = NULL;
SnapshotResetXmin();
+ INJECTION_POINT("invalidate_catalog_snapshot_end");
[...]
+step s4_attach_locally { SELECT
injection_points_attach('invalidate_catalog_snapshot_end', 'wait'); }
[...]
#4 0x0000563f09d22f39 in ExceptionalCondition
(conditionName=0x563f0a072d00
"TransactionIdIsValid(proc->xid)", fileName=0x563f0a072a4a
"procarray.c", lineNumber=677) at assert.c:66
#5 0x0000563f096f0684 in ProcArrayEndTransaction
(proc=0x7fbd4d083ac0, latestXid=750) at procarray.c:677
#6 0x0000563f088c54f3 in AbortTransaction () at xact.c:2946
#7 0x0000563f088c758d in AbortCurrentTransactionInternal () at
#xact.c:3531
#8 0x0000563f088c72a6 in AbortCurrentTransaction () at xact.c:3449
#9 0x0000563f0979c0f7 in PostgresMain (dbname=0x563f0f128100
"isolation_regression", username=0x563f0f1280e8 "ioltas") at
postgres.c:4524
#10 0x0000563f0978a5e5 in BackendMain (startup_data=0x7ffdcf50cfa8 "",
startup_data_len=4) at backend_startup.c:107
#11 0x0000563f094d8613 in postmaster_child_launch
(child_type=B_BACKEND, child_slot=1,
startup_data=0x7ffdcf50cfa8 "", startup_data_len=4,
client_sock=0x7ffdcf50cfe0)
Isn't that pointing to an actual bug with serializable transactions?
What you are telling here is that there is a race condition where it
is possible to trigger an assertion failure when finishing a session
while another one is waiting on an invalidation, if there's in the mix
a read/write dependency error. Disabling the test hides the problem,
it does not fix it. And we should do the latter, not the former.
--
Michael
Hello, Michael!
I fail to see how this is related? The original issue was that this
was impossible to run safely concurrently, but now we have the
facilities able to do so. There are a few cases where using a wait
point has limits, for example outside a transaction context for some
of the processes, but that has not really been an issue up to now.
I encountered this issue while trying to stabilize tests for [0]https://commitfest.postgresql.org/50/5160/.
Tests were crashing during the installcheck with assertion of that thread.
I have spent time trying to identify the root cause - injection points and
the way it may affect another tests even if them set to be executed locally.
In the spec, the backend performs the following:
SELECT injection_points_set_local();
SELECT injection_points_attach('invalidate_catalog_snapshot_end',
'wait');
That's all - we don't even execute any command that would trigger the wait
condition.
Meanwhile, three different backends are attempting to test SERIALIZABLE
isolation without any injection points.
Initially, this was a separate 'two-ids' test executed in parallel during
installcheck,
but I incorporated it into the reproducer spec for simplicity.
Isn't that pointing to an actual bug with serializable transactions?
No, let me explain.
What you are telling here is that there is a race condition where it
is possible to trigger an assertion failure when finishing a session
while another one is waiting on an invalidation, if there's in the mix
a read/write dependency error.
Actually, no backend is waiting for invalidation in this case.
Here's the sequence of events:
* The s4 backend creates a local injection point but performs no further
actions. The injection point is marked as local for that pid.
* Three other backends proceed with their serializable snapshot operations.
* s2 determines it cannot commit and correctly decides to abort the
transaction.
* s2 begins releasing resources:
ResourceOwnerReleaseInternal resowner.c:694 <--- NOTE: After
starting the release process, by calling this function, no new
ResourceOwnerRelease resowner.c:654 resources
can be remembered in the resource owner.
AbortTransaction xact.c:2960
AbortCurrentTransactionInternal xact.c:3531
AbortCurrentTransaction xact.c:3449
PostgresMain postgres.c:4513
BackendMain backend_startup.c:107
postmaster_child_launch launch_backend.c:274
BackendStartup postmaster.c:3377
ServerLoop postmaster.c:1663
PostmasterMain postmaster.c:1361
main main.c:196
* During transaction abort, s2 invalidates its catalog snapshot with this
stack trace:
InvalidateCatalogSnapshot snapmgr.c:430
AtEOXact_Snapshot snapmgr.c:1050
CleanupTransaction xact.c:3016
AbortCurrentTransactionInternal xact.c:3532
AbortCurrentTransaction xact.c:3449
PostgresMain postgres.c:4513
BackendMain backend_startup.c:107
postmaster_child_launch launch_backend.c:274
BackendStartup postmaster.c:3377
ServerLoop postmaster.c:1663
PostmasterMain postmaster.c:1361
main main.c:196
* Consequently, s2 encounters
INJECTION_POINT("invalidate_catalog_snapshot_end");
* Although invalidate_catalog_snapshot_end is set to 'wait' only for s4, s2
enters the injection_wait handler
* Since this is s2's first interaction with injection points (as
injection_points isn't in shared_preload_libraries), it calls
injection_init_shmem
* Here, GetNamedDSMSegment is called - this is new infrastructure for
initializing shared memory for extensions without shared_preload_libraries,
committed by Nathan [1]https://github.com/postgres/postgres/commit/8b2bcf3f287c79eaebf724cba57e5ff664b01e06
* GetNamedDSMSegment attempts to attach to memory and triggers the
assertion:
if (owner->releasing)
elog(ERROR, "ResourceOwnerEnlarge called after release
started");
ResourceOwnerEnlarge resowner.c:449
dsm_create_descriptor dsm.c:1206
dsm_attach dsm.c:696
dsa_attach dsa.c:519
init_dsm_registry dsm_registry.c:115
GetNamedDSMSegment dsm_registry.c:156
injection_init_shmem injection_points.c:185
injection_wait injection_points.c:277
InjectionPointRun injection_point.c:551
InvalidateCatalogSnapshot snapmgr.c:430
AtEOXact_Snapshot snapmgr.c:1050
CleanupTransaction xact.c:3016
AbortCurrentTransactionInternal xact.c:3532
AbortCurrentTransaction xact.c:3449
PostgresMain postgres.c:4513
BackendMain backend_startup.c:107
postmaster_child_launch launch_backend.c:274
BackendStartup postmaster.c:3377
ServerLoop postmaster.c:1663
PostmasterMain postmaster.c:1361
main main.c:196
* This assertion during transaction abort triggers another abort call (this
could be improved):
ProcArrayEndTransaction procarray.c:677
AbortTransaction xact.c:2946
AbortCurrentTransactionInternal xact.c:3531
AbortCurrentTransaction xact.c:3449
PostgresMain postgres.c:4513 <--------------- exception handler here
BackendMain backend_startup.c:107
postmaster_child_launch launch_backend.c:274
BackendStartup postmaster.c:3377
ServerLoop postmaster.c:1663
PostmasterMain postmaster.c:1361
main main.c:196
This isn't the same abort attempt - it's the second one, which triggers
Assert(TransactionIdIsValid(proc->xid));
In summary:
Each code component functions correctly in isolation
However, when an injection point registered as local by one backend causes
another backend to register resources (and potentially other operations),
it can lead to difficult-to-diagnose issues
I see several potential solutions:
* Add injection_points to shared_preload_libraries for all tests
* Implement a mechanism to call prev_shmem_startup_hook for libraries
outside shared_preload_libraries
* Modify GetNamedDSMSegment's behavior
* Run all injection_points tests in an isolated environment
In my opinion, the last option seems most appropriate.
Best regards,
Mikhail.
[0]: https://commitfest.postgresql.org/50/5160/
[1]: https://github.com/postgres/postgres/commit/8b2bcf3f287c79eaebf724cba57e5ff664b01e06
https://github.com/postgres/postgres/commit/8b2bcf3f287c79eaebf724cba57e5ff664b01e06
Hello, everyone!
Decide just to clarify - the patch is failing on CFbot [0]https://cirrus-ci.com/github/postgresql-cfbot/postgresql/cf%2F5160, but it is as
designed - it contains a reproducer which shows how unrelated backends may
affect each other even in case of **local** injection points, causing the
crash.
Best regards,
Michail.
[0]: https://cirrus-ci.com/github/postgresql-cfbot/postgresql/cf%2F5160
Show quoted text
Hello!
Noah, I have noticed you already disabled runningcheck for isolation tests
already in injection_points[0]https://github.com/postgres/postgres/blob/b3ac4aa83458b1e3cc8299508a8c3e0e1490cb23/src/test/modules/injection_points/meson.build#L52.
The whole patch here was about to make it default for all types of tests
for injection_points.
Seems like we may close this entry.
Attached patch is just to put a rebased version here for history reasons.
[0]: https://github.com/postgres/postgres/blob/b3ac4aa83458b1e3cc8299508a8c3e0e1490cb23/src/test/modules/injection_points/meson.build#L52
https://github.com/postgres/postgres/blob/b3ac4aa83458b1e3cc8299508a8c3e0e1490cb23/src/test/modules/injection_points/meson.build#L52
Attachments:
v3-0001-Test-to-reproduce-issue-with-crash-caused-by-pass.patchtext/x-patch; charset=US-ASCII; name=v3-0001-Test-to-reproduce-issue-with-crash-caused-by-pass.patchDownload
From b3ac4aa83458b1e3cc8299508a8c3e0e1490cb23 Mon Sep 17 00:00:00 2001
From: nkey <mihailnikalayeu@gmail.com>
Date: Thu, 20 Feb 2025 18:04:20 +0300
Subject: [PATCH v3] Test to reproduce issue with crash caused by passing throw
injection points during transaction aborting (caused by call to
injection_init_shmem).
---
src/backend/utils/time/snapmgr.c | 2 +
src/test/modules/injection_points/Makefile | 2 +-
.../injection_points/expected/crash.out | 26 ++++++++++
src/test/modules/injection_points/meson.build | 1 +
.../modules/injection_points/specs/crash.spec | 47 +++++++++++++++++++
5 files changed, 77 insertions(+), 1 deletion(-)
create mode 100644 src/test/modules/injection_points/expected/crash.out
create mode 100644 src/test/modules/injection_points/specs/crash.spec
diff --git a/src/backend/utils/time/snapmgr.c b/src/backend/utils/time/snapmgr.c
index 8f1508b1ee2..3d018c3a1e8 100644
--- a/src/backend/utils/time/snapmgr.c
+++ b/src/backend/utils/time/snapmgr.c
@@ -64,6 +64,7 @@
#include "utils/resowner.h"
#include "utils/snapmgr.h"
#include "utils/syscache.h"
+#include "utils/injection_point.h"
/*
@@ -388,6 +389,7 @@ InvalidateCatalogSnapshot(void)
pairingheap_remove(&RegisteredSnapshots, &CatalogSnapshot->ph_node);
CatalogSnapshot = NULL;
SnapshotResetXmin();
+ INJECTION_POINT("invalidate_catalog_snapshot_end");
}
}
diff --git a/src/test/modules/injection_points/Makefile b/src/test/modules/injection_points/Makefile
index e680991f8d4..82e0e772b80 100644
--- a/src/test/modules/injection_points/Makefile
+++ b/src/test/modules/injection_points/Makefile
@@ -14,7 +14,7 @@ PGFILEDESC = "injection_points - facility for injection points"
REGRESS = injection_points hashagg reindex_conc
REGRESS_OPTS = --dlpath=$(top_builddir)/src/test/regress
-ISOLATION = basic inplace syscache-update-pruned
+ISOLATION = basic inplace syscache-update-pruned crash
TAP_TESTS = 1
diff --git a/src/test/modules/injection_points/expected/crash.out b/src/test/modules/injection_points/expected/crash.out
new file mode 100644
index 00000000000..7d7f298c786
--- /dev/null
+++ b/src/test/modules/injection_points/expected/crash.out
@@ -0,0 +1,26 @@
+Parsed test spec with 4 sessions
+
+starting permutation: s4_attach_locally wx1 rxwy2 c1 ry3 c2 c3
+injection_points_set_local
+--------------------------
+
+(1 row)
+
+step s4_attach_locally: SELECT injection_points_attach('invalidate_catalog_snapshot_end', 'wait');
+injection_points_attach
+-----------------------
+
+(1 row)
+
+step wx1: update D1 set id = id + 1;
+step rxwy2: update D2 set id = (select id+1 from D1);
+step c1: COMMIT;
+step ry3: select id from D2;
+id
+--
+ 1
+(1 row)
+
+step c2: COMMIT;
+ERROR: could not serialize access due to read/write dependencies among transactions
+step c3: COMMIT;
diff --git a/src/test/modules/injection_points/meson.build b/src/test/modules/injection_points/meson.build
index d61149712fd..f4981a8c118 100644
--- a/src/test/modules/injection_points/meson.build
+++ b/src/test/modules/injection_points/meson.build
@@ -45,6 +45,7 @@ tests += {
'isolation': {
'specs': [
'basic',
+ 'crash',
'inplace',
'syscache-update-pruned',
],
diff --git a/src/test/modules/injection_points/specs/crash.spec b/src/test/modules/injection_points/specs/crash.spec
new file mode 100644
index 00000000000..55e6a5434ab
--- /dev/null
+++ b/src/test/modules/injection_points/specs/crash.spec
@@ -0,0 +1,47 @@
+setup
+{
+ create table D1 (id int primary key not null);
+ create table D2 (id int primary key not null);
+ insert into D1 values (1);
+ insert into D2 values (1);
+
+ CREATE EXTENSION injection_points;
+}
+
+teardown
+{
+ DROP TABLE D1, D2;
+ DROP EXTENSION injection_points;
+}
+
+session s1
+setup { BEGIN ISOLATION LEVEL SERIALIZABLE;}
+step wx1 { update D1 set id = id + 1; }
+step c1 { COMMIT; }
+
+session s2
+setup {
+ BEGIN ISOLATION LEVEL SERIALIZABLE;
+}
+step rxwy2 { update D2 set id = (select id+1 from D1); }
+step c2 { COMMIT; }
+
+session s3
+setup { BEGIN ISOLATION LEVEL SERIALIZABLE; }
+step ry3 { select id from D2; }
+step c3 { COMMIT; }
+
+session s4
+setup {
+ SELECT injection_points_set_local();
+}
+step s4_attach_locally { SELECT injection_points_attach('invalidate_catalog_snapshot_end', 'wait'); }
+
+permutation
+ s4_attach_locally
+ wx1
+ rxwy2
+ c1
+ ry3
+ c2
+ c3
\ No newline at end of file
--
2.43.0