Skip to content

Comments

fix(postgres): fix PG->PG schemaqual, NUMERIC handling during schema changes#3940

Merged
heavycrystal merged 4 commits intomainfrom
fix/pg-pg-numeric-schema-qual
Feb 19, 2026
Merged

fix(postgres): fix PG->PG schemaqual, NUMERIC handling during schema changes#3940
heavycrystal merged 4 commits intomainfrom
fix/pg-pg-numeric-schema-qual

Conversation

@heavycrystal
Copy link
Contributor

schema qualification for types adding in schema changes in PG->PG
numeric typmod handling
all schema change tests now use both type systems

Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR improves Postgres schema-delta replay behavior (notably for PG→PG) by adding schema qualification for added-column types and improving NUMERIC typmod handling, and updates schema-delta tests to run against both Q and PG type systems.

Changes:

  • Add per-type-system field conversion helpers for schema-delta tests and extend test coverage to run for both TypeSystem_Q and TypeSystem_PG.
  • Update schema-delta replay to schema-qualify PG types during ALTER TABLE ... ADD COLUMN operations.
  • Add NUMERIC typmod formatting during schema-delta replay.

Reviewed changes

Copilot reviewed 3 out of 3 changed files in this pull request and generated 6 comments.

File Description
flow/connectors/postgres/schema_delta_test_constants.go Adds type-system conversion helpers and extends test field constants (including NUMERIC typmod).
flow/connectors/postgres/postgres_schema_delta_test.go Runs schema-delta tests for both Q and PG type systems using the new conversion helper.
flow/connectors/postgres/postgres.go Updates schema-delta replay to schema-qualify PG types and apply NUMERIC typmod formatting.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines 57 to 58
s.t.Run(system.String(), func(_ *testing.T) {
s.testSimpleAddColumn(system)
Copy link

Copilot AI Feb 16, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These subtests ignore the *testing.T passed into Run and continue to use s.t inside the helper methods. That prevents proper subtest scoping (failures/logs get attributed to the parent test, and helpers like t.Parallel() can’t be used safely). Consider passing the subtest t into the helper (or cloning the suite with t: subT) and using it for require/context.

Suggested change
s.t.Run(system.String(), func(_ *testing.T) {
s.testSimpleAddColumn(system)
s.t.Run(system.String(), func(subT *testing.T) {
subSuite := s
subSuite.t = subT
subSuite.testSimpleAddColumn(system)

Copilot uses AI. Check for mistakes.
@codecov
Copy link

codecov bot commented Feb 16, 2026

❌ 2 Tests Failed:

Tests completed Failed Passed Skipped
1675 2 1673 163
View the top 3 failed test(s) by shortest run time
github.com/PeerDB-io/peerdb/flow/e2e::TestApiPg
Stack Traces | 0.01s run time
=== RUN   TestApiPg
=== PAUSE TestApiPg
=== CONT  TestApiPg
--- FAIL: TestApiPg (0.01s)
github.com/PeerDB-io/peerdb/flow/e2e::TestBigQueryClickhouseSuite
Stack Traces | 0.01s run time
=== RUN   TestBigQueryClickhouseSuite
=== PAUSE TestBigQueryClickhouseSuite
=== CONT  TestBigQueryClickhouseSuite
--- FAIL: TestBigQueryClickhouseSuite (0.01s)
2026/02/18 15:51:48 INFO Received AWS credentials from peer for connector: ci x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN}
github.com/PeerDB-io/peerdb/flow/e2e::TestApiPg/TestResyncFailed
Stack Traces | 139s run time
=== RUN   TestApiPg/TestResyncFailed
=== PAUSE TestApiPg/TestResyncFailed
=== CONT  TestApiPg/TestResyncFailed
2026/02/18 15:53:52 INFO Received AWS credentials from peer for connector: ci x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN}
2026/02/18 15:53:52 INFO Received AWS credentials from peer for connector: clickhouse x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN}
    api_test.go:848: WaitFor wait for MV error messages 2026-02-18 15:53:52.472080254 +0000 UTC m=+492.922536502
2026/02/18 15:53:52 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('resync_failed_api_e0xq2cla' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_e0xq2cla.resync_failed_api_e0xq2cla_mv_api_e0xq2cla%'"
2026/02/18 15:53:52 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('resync_failed_api_e0xq2cla' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_e0xq2cla.resync_failed_api_e0xq2cla_mv_api_e0xq2cla%'"
2026/02/18 15:53:52 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_3236246188581379665 CURSOR FOR \n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('resync_failed_api_e0xq2cla' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_e0xq2cla.resync_failed_api_e0xq2cla_mv_api_e0xq2cla%'" args=[]
2026/02/18 15:53:52 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('resync_failed_api_e0xq2cla' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_e0xq2cla.resync_failed_api_e0xq2cla_mv_api_e0xq2cla%'" channelLen=0
2026/02/18 15:53:52 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_3236246188581379665
2026/02/18 15:53:52 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_3236246188581379665 records=1 bytes=8 channelLen=0
2026/02/18 15:53:52 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('resync_failed_api_e0xq2cla' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_e0xq2cla.resync_failed_api_e0xq2cla_mv_api_e0xq2cla%'" rows=1 bytes=8 channelLen=0
2026/02/18 15:53:52 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_3236246188581379665
2026/02/18 15:53:52 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_3236246188581379665 records=0 bytes=0 channelLen=0
2026/02/18 15:53:52 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('resync_failed_api_e0xq2cla' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_e0xq2cla.resync_failed_api_e0xq2cla_mv_api_e0xq2cla%'" rows=0 bytes=0 channelLen=0
2026/02/18 15:53:52 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:53:52 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('resync_failed_api_e0xq2cla' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_e0xq2cla.resync_failed_api_e0xq2cla_mv_api_e0xq2cla%'" rows=1 bytes=8 channelLen=0
2026/02/18 15:53:52 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_1gorwb5d.test_nullengine
    api_test.go:861: WaitFor wait for failed 2026-02-18 15:53:55.502585858 +0000 UTC m=+495.953042098
2026/02/18 15:53:55 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_1gorwb5d.test_nullengine
    api_test.go:879: WaitFor resync should have 2 rows 2026-02-18 15:54:06.00252123 +0000 UTC m=+506.452977469
2026/02/18 15:54:06 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_m62zramq.\"table1\" ORDER BY id"
2026/02/18 15:54:06 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_m62zramq.\"table1\" ORDER BY id"
2026/02/18 15:54:06 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_490488434445305053 CURSOR FOR SELECT id,val FROM e2e_test_api_m62zramq.\"table1\" ORDER BY id" args=[]
2026/02/18 15:54:06 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_m62zramq.\"table1\" ORDER BY id" channelLen=0
2026/02/18 15:54:06 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_490488434445305053
2026/02/18 15:54:06 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_490488434445305053 records=2 bytes=19 channelLen=1
2026/02/18 15:54:06 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_m62zramq.\"table1\" ORDER BY id" rows=2 bytes=19 channelLen=0
2026/02/18 15:54:06 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_490488434445305053
2026/02/18 15:54:06 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_490488434445305053 records=0 bytes=0 channelLen=0
2026/02/18 15:54:06 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_m62zramq.\"table1\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/02/18 15:54:06 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:54:06 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_m62zramq.\"table1\" ORDER BY id" rows=2 bytes=19 channelLen=0
    api_test.go:44: begin tearing down postgres schema api_e0xq2cla
2026/02/18 15:54:11 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_m62zramq.\"table1\" ORDER BY id"
2026/02/18 15:54:11 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_m62zramq.\"table1\" ORDER BY id"
2026/02/18 15:54:11 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_4604005175801649123 CURSOR FOR SELECT id,val FROM e2e_test_api_m62zramq.\"table1\" ORDER BY id" args=[]
2026/02/18 15:54:11 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_m62zramq.\"table1\" ORDER BY id" channelLen=0
2026/02/18 15:54:11 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4604005175801649123
2026/02/18 15:54:11 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4604005175801649123 records=2 bytes=19 channelLen=1
2026/02/18 15:54:11 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_m62zramq.\"table1\" ORDER BY id" rows=2 bytes=19 channelLen=1
2026/02/18 15:54:11 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4604005175801649123
2026/02/18 15:54:11 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4604005175801649123 records=0 bytes=0 channelLen=0
2026/02/18 15:54:11 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_m62zramq.\"table1\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/02/18 15:54:11 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:54:11 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_m62zramq.\"table1\" ORDER BY id" rows=2 bytes=19 channelLen=0
    api_test.go:44: 
        	Error Trace:	.../flow/e2e/pg.go:149
        	            				.../flow/e2e/api_test.go:44
        	            				.../flow/e2eshared/e2eshared.go:38
        	            				.../hostedtoolcache/go/1.26.0.../src/testing/testing.go:1317
        	            				.../hostedtoolcache/go/1.26.0.../src/testing/testing.go:1667
        	            				.../hostedtoolcache/go/1.26.0.../src/testing/testing.go:2030
        	            				.../hostedtoolcache/go/1.26.0.../src/runtime/asm_amd64.s:1771
        	Error:      	failed to teardown postgres schema
        	Test:       	TestApiPg/TestResyncFailed
        	Messages:   	api_e0xq2cla: failed to drop replication slots: ERROR: replication slot "peerflow_slot_resync_failed_api_e0xq2cla" is active for PID 23499 (SQLSTATE 55006)
--- FAIL: TestApiPg/TestResyncFailed (138.85s)
github.com/PeerDB-io/peerdb/flow/e2e::TestBigQueryClickhouseSuite/Test_JSON_Support
Stack Traces | 186s run time
=== RUN   TestBigQueryClickhouseSuite/Test_JSON_Support
=== PAUSE TestBigQueryClickhouseSuite/Test_JSON_Support
=== CONT  TestBigQueryClickhouseSuite/Test_JSON_Support
    bigquery_source_test.go:716: ClickHouse database: e2e_test_bqch_lnfw20bc
    bigquery_source_test.go:722: Creating test table test_json_0co3gxlf with JSON column
2026/02/18 15:48:43 INFO Received AWS credentials from peer for connector: ci x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN}
2026/02/18 15:48:43 INFO Received AWS credentials from peer for connector: clickhouse x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN}
    bigquery_source_test.go:799: Inserted 3 rows into source table
2026/02/18 15:48:46 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_cw6an3jo.\"added\" ORDER BY id"
2026/02/18 15:48:46 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_cw6an3jo.\"added\" ORDER BY id"
2026/02/18 15:48:46 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_5969056284874548398 CURSOR FOR SELECT id,val FROM e2e_test_api_cw6an3jo.\"added\" ORDER BY id" args=[]
2026/02/18 15:48:46 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_cw6an3jo.\"added\" ORDER BY id" channelLen=0
2026/02/18 15:48:46 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_5969056284874548398
2026/02/18 15:48:46 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_5969056284874548398 records=1 bytes=9 channelLen=0
2026/02/18 15:48:46 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_cw6an3jo.\"added\" ORDER BY id" rows=1 bytes=9 channelLen=0
2026/02/18 15:48:46 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_5969056284874548398
2026/02/18 15:48:46 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_5969056284874548398 records=0 bytes=0 channelLen=0
2026/02/18 15:48:46 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_cw6an3jo.\"added\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/02/18 15:48:46 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:48:46 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_cw6an3jo.\"added\" ORDER BY id" rows=1 bytes=9 channelLen=0
    bigquery_source_test.go:819: WaitFor JSON data replicated 2026-02-18 15:48:47.433670142 +0000 UTC m=+221.847980247
    bigquery_source_test.go:819: code: 60, message: Unknown table expression identifier 'test_json_0co3gxlf_dst' in scope SELECT id, name FROM test_json_0co3gxlf_dst FINAL WHERE _peerdb_is_deleted = 0 ORDER BY 1 ASC SETTINGS use_query_cache = false
2026/02/18 15:48:47 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_with_removal_api_1tzrwq2a' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_1tzrwq2a.t5_mv_api_1tzrwq2a%'"
2026/02/18 15:48:47 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_with_removal_api_1tzrwq2a' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_1tzrwq2a.t5_mv_api_1tzrwq2a%'"
2026/02/18 15:48:47 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_11324223516840102596 CURSOR FOR \n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_with_removal_api_1tzrwq2a' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_1tzrwq2a.t5_mv_api_1tzrwq2a%'" args=[]
2026/02/18 15:48:47 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_with_removal_api_1tzrwq2a' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_1tzrwq2a.t5_mv_api_1tzrwq2a%'" channelLen=0
2026/02/18 15:48:47 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11324223516840102596
2026/02/18 15:48:47 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11324223516840102596 records=1 bytes=8 channelLen=0
2026/02/18 15:48:47 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_with_removal_api_1tzrwq2a' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_1tzrwq2a.t5_mv_api_1tzrwq2a%'" rows=1 bytes=8 channelLen=0
2026/02/18 15:48:47 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11324223516840102596
2026/02/18 15:48:47 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11324223516840102596 records=0 bytes=0 channelLen=0
2026/02/18 15:48:47 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_with_removal_api_1tzrwq2a' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_1tzrwq2a.t5_mv_api_1tzrwq2a%'" rows=0 bytes=0 channelLen=0
2026/02/18 15:48:47 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:48:47 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_with_removal_api_1tzrwq2a' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_1tzrwq2a.t5_mv_api_1tzrwq2a%'" rows=1 bytes=8 channelLen=0
    bigquery_source_test.go:819: code: 60, message: Unknown table expression identifier 'test_json_0co3gxlf_dst' in scope SELECT id, name FROM test_json_0co3gxlf_dst FINAL WHERE _peerdb_is_deleted = 0 ORDER BY 1 ASC SETTINGS use_query_cache = false
2026/02/18 15:48:49 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id"
2026/02/18 15:48:49 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id"
2026/02/18 15:48:49 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_13179403971978783258 CURSOR FOR SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id" args=[]
2026/02/18 15:48:49 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id" channelLen=0
2026/02/18 15:48:49 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_13179403971978783258
2026/02/18 15:48:49 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_13179403971978783258 records=2 bytes=19 channelLen=1
2026/02/18 15:48:49 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=1
2026/02/18 15:48:49 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_13179403971978783258
2026/02/18 15:48:49 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_13179403971978783258 records=0 bytes=0 channelLen=0
2026/02/18 15:48:49 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/02/18 15:48:49 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:48:49 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:48:50 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id"
2026/02/18 15:48:50 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id"
2026/02/18 15:48:50 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_13128060113605624848 CURSOR FOR SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id" args=[]
2026/02/18 15:48:50 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id" channelLen=0
2026/02/18 15:48:50 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_13128060113605624848
2026/02/18 15:48:50 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_13128060113605624848 records=2 bytes=19 channelLen=1
2026/02/18 15:48:50 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
2026/02/18 15:48:50 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_13128060113605624848
2026/02/18 15:48:50 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_13128060113605624848 records=0 bytes=0 channelLen=0
2026/02/18 15:48:50 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/02/18 15:48:50 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:48:50 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:48:53 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id"
2026/02/18 15:48:53 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id"
2026/02/18 15:48:53 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_9951712652802753512 CURSOR FOR SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id" args=[]
2026/02/18 15:48:53 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id" channelLen=0
2026/02/18 15:48:53 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9951712652802753512
2026/02/18 15:48:53 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9951712652802753512 records=2 bytes=19 channelLen=1
2026/02/18 15:48:53 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=1
2026/02/18 15:48:53 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9951712652802753512
2026/02/18 15:48:53 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9951712652802753512 records=0 bytes=0 channelLen=0
2026/02/18 15:48:53 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/02/18 15:48:53 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:48:53 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:49:08 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_wsleszee.\"original\" ORDER BY id"
2026/02/18 15:49:08 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_wsleszee.\"original\" ORDER BY id"
2026/02/18 15:49:08 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_11274362953460207215 CURSOR FOR SELECT id,val FROM e2e_test_api_wsleszee.\"original\" ORDER BY id" args=[]
2026/02/18 15:49:08 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_wsleszee.\"original\" ORDER BY id" channelLen=0
2026/02/18 15:49:08 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11274362953460207215
2026/02/18 15:49:08 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11274362953460207215 records=2 bytes=19 channelLen=1
2026/02/18 15:49:08 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_wsleszee.\"original\" ORDER BY id" rows=2 bytes=19 channelLen=0
2026/02/18 15:49:08 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11274362953460207215
2026/02/18 15:49:08 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11274362953460207215 records=0 bytes=0 channelLen=0
2026/02/18 15:49:08 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_wsleszee.\"original\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/02/18 15:49:08 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:49:08 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_wsleszee.\"original\" ORDER BY id" rows=2 bytes=19 channelLen=0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:49:13 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_second%'"
2026/02/18 15:49:13 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_second%'"
2026/02/18 15:49:13 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_3850108250674291005 CURSOR FOR \n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_second%'" args=[]
2026/02/18 15:49:13 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_second%'" channelLen=0
2026/02/18 15:49:13 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_3850108250674291005
2026/02/18 15:49:13 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_3850108250674291005 records=1 bytes=8 channelLen=0
2026/02/18 15:49:13 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_second%'" rows=1 bytes=8 channelLen=0
2026/02/18 15:49:13 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_3850108250674291005
2026/02/18 15:49:13 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_3850108250674291005 records=0 bytes=0 channelLen=0
2026/02/18 15:49:13 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_second%'" rows=0 bytes=0 channelLen=0
2026/02/18 15:49:13 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:49:13 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_second%'" rows=1 bytes=8 channelLen=0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:49:16 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_third%'"
2026/02/18 15:49:16 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_third%'"
2026/02/18 15:49:16 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_685442467006676757 CURSOR FOR \n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_third%'" args=[]
2026/02/18 15:49:16 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_third%'" channelLen=0
2026/02/18 15:49:16 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_685442467006676757
2026/02/18 15:49:16 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_685442467006676757 records=1 bytes=8 channelLen=0
2026/02/18 15:49:16 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_third%'" rows=1 bytes=8 channelLen=0
2026/02/18 15:49:16 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_685442467006676757
2026/02/18 15:49:16 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_685442467006676757 records=0 bytes=0 channelLen=0
2026/02/18 15:49:16 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_third%'" rows=0 bytes=0 channelLen=0
2026/02/18 15:49:16 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:49:16 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_third%'" rows=1 bytes=8 channelLen=0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:49:19 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_third%'"
2026/02/18 15:49:19 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_third%'"
2026/02/18 15:49:19 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_7193853841329377307 CURSOR FOR \n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_third%'" args=[]
2026/02/18 15:49:19 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_third%'" channelLen=0
2026/02/18 15:49:19 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_7193853841329377307
2026/02/18 15:49:19 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_7193853841329377307 records=1 bytes=8 channelLen=0
2026/02/18 15:49:19 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_third%'" rows=1 bytes=8 channelLen=0
2026/02/18 15:49:19 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_7193853841329377307
2026/02/18 15:49:19 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_7193853841329377307 records=0 bytes=0 channelLen=0
2026/02/18 15:49:19 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_third%'" rows=0 bytes=0 channelLen=0
2026/02/18 15:49:19 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:49:19 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_third%'" rows=1 bytes=8 channelLen=0
2026/02/18 15:49:20 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector\" ORDER BY id"
2026/02/18 15:49:20 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector\" ORDER BY id"
2026/02/18 15:49:20 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_11182816932951669890 CURSOR FOR SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector\" ORDER BY id" args=[]
2026/02/18 15:49:20 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector\" ORDER BY id" channelLen=0
2026/02/18 15:49:20 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11182816932951669890
2026/02/18 15:49:20 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11182816932951669890 records=2 bytes=76 channelLen=1
2026/02/18 15:49:20 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector\" ORDER BY id" rows=2 bytes=76 channelLen=0
2026/02/18 15:49:20 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11182816932951669890
2026/02/18 15:49:20 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11182816932951669890 records=0 bytes=0 channelLen=0
2026/02/18 15:49:20 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/02/18 15:49:20 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:49:20 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector\" ORDER BY id" rows=2 bytes=76 channelLen=0
2026/02/18 15:49:20 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector_dst\" ORDER BY id"
2026/02/18 15:49:20 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector_dst\" ORDER BY id"
2026/02/18 15:49:20 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_14751703455994014879 CURSOR FOR SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector_dst\" ORDER BY id" args=[]
2026/02/18 15:49:20 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector_dst\" ORDER BY id" channelLen=0
2026/02/18 15:49:20 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_14751703455994014879
2026/02/18 15:49:20 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_14751703455994014879 records=1 bytes=152 channelLen=0
2026/02/18 15:49:20 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector_dst\" ORDER BY id" rows=1 bytes=152 channelLen=0
2026/02/18 15:49:20 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_14751703455994014879
2026/02/18 15:49:20 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_14751703455994014879 records=0 bytes=0 channelLen=0
2026/02/18 15:49:20 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector_dst\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/02/18 15:49:20 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:49:20 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector_dst\" ORDER BY id" rows=1 bytes=152 channelLen=0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:49:21 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector\" ORDER BY id"
2026/02/18 15:49:21 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector\" ORDER BY id"
2026/02/18 15:49:21 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_11495509213260263983 CURSOR FOR SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector\" ORDER BY id" args=[]
2026/02/18 15:49:21 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector\" ORDER BY id" channelLen=0
2026/02/18 15:49:21 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11495509213260263983
2026/02/18 15:49:21 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11495509213260263983 records=2 bytes=76 channelLen=1
2026/02/18 15:49:21 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector\" ORDER BY id" rows=2 bytes=76 channelLen=1
2026/02/18 15:49:21 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11495509213260263983
2026/02/18 15:49:21 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11495509213260263983 records=0 bytes=0 channelLen=0
2026/02/18 15:49:21 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/02/18 15:49:21 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:49:21 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector\" ORDER BY id" rows=2 bytes=76 channelLen=0
2026/02/18 15:49:21 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector_dst\" ORDER BY id"
2026/02/18 15:49:21 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector_dst\" ORDER BY id"
2026/02/18 15:49:21 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_9098932900322597489 CURSOR FOR SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector_dst\" ORDER BY id" args=[]
2026/02/18 15:49:21 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector_dst\" ORDER BY id" channelLen=0
2026/02/18 15:49:21 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9098932900322597489
2026/02/18 15:49:21 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9098932900322597489 records=1 bytes=152 channelLen=0
2026/02/18 15:49:21 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector_dst\" ORDER BY id" rows=1 bytes=152 channelLen=0
2026/02/18 15:49:21 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9098932900322597489
2026/02/18 15:49:21 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9098932900322597489 records=0 bytes=0 channelLen=0
2026/02/18 15:49:21 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector_dst\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/02/18 15:49:21 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:49:21 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector_dst\" ORDER BY id" rows=1 bytes=152 channelLen=0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:49:22 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector\" ORDER BY id"
2026/02/18 15:49:22 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector\" ORDER BY id"
2026/02/18 15:49:22 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_13280087199645189319 CURSOR FOR SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector\" ORDER BY id" args=[]
2026/02/18 15:49:22 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector\" ORDER BY id" channelLen=0
2026/02/18 15:49:22 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_13280087199645189319
2026/02/18 15:49:22 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_13280087199645189319 records=2 bytes=76 channelLen=1
2026/02/18 15:49:22 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector\" ORDER BY id" rows=2 bytes=76 channelLen=0
2026/02/18 15:49:22 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_13280087199645189319
2026/02/18 15:49:22 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_13280087199645189319 records=0 bytes=0 channelLen=0
2026/02/18 15:49:22 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/02/18 15:49:22 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:49:22 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector\" ORDER BY id" rows=2 bytes=76 channelLen=0
2026/02/18 15:49:22 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector_dst\" ORDER BY id"
2026/02/18 15:49:22 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector_dst\" ORDER BY id"
2026/02/18 15:49:22 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_11034925519630251635 CURSOR FOR SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector_dst\" ORDER BY id" args=[]
2026/02/18 15:49:22 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector_dst\" ORDER BY id" channelLen=0
2026/02/18 15:49:22 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11034925519630251635
2026/02/18 15:49:22 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11034925519630251635 records=1 bytes=152 channelLen=0
2026/02/18 15:49:22 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector_dst\" ORDER BY id" rows=1 bytes=152 channelLen=0
2026/02/18 15:49:22 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11034925519630251635
2026/02/18 15:49:22 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11034925519630251635 records=0 bytes=0 channelLen=0
2026/02/18 15:49:22 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector_dst\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/02/18 15:49:22 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:49:22 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pg_rvxko2ve.\"pg_pgvector_dst\" ORDER BY id" rows=1 bytes=152 channelLen=0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:49:35 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id"
2026/02/18 15:49:35 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id"
2026/02/18 15:49:35 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_10751178474408890149 CURSOR FOR SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id" args=[]
2026/02/18 15:49:35 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id" channelLen=0
2026/02/18 15:49:35 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_10751178474408890149
2026/02/18 15:49:35 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_10751178474408890149 records=2 bytes=19 channelLen=1
2026/02/18 15:49:35 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
2026/02/18 15:49:35 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_10751178474408890149
2026/02/18 15:49:35 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_10751178474408890149 records=0 bytes=0 channelLen=0
2026/02/18 15:49:35 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/02/18 15:49:35 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:49:35 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:49:36 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_cw6an3jo.\"added\" ORDER BY id"
2026/02/18 15:49:36 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_cw6an3jo.\"added\" ORDER BY id"
2026/02/18 15:49:36 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_9149952913754364191 CURSOR FOR SELECT id,val FROM e2e_test_api_cw6an3jo.\"added\" ORDER BY id" args=[]
2026/02/18 15:49:36 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_cw6an3jo.\"added\" ORDER BY id" channelLen=0
2026/02/18 15:49:36 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9149952913754364191
2026/02/18 15:49:36 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9149952913754364191 records=3 bytes=38 channelLen=2
2026/02/18 15:49:36 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_cw6an3jo.\"added\" ORDER BY id" rows=3 bytes=38 channelLen=2
2026/02/18 15:49:36 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9149952913754364191
2026/02/18 15:49:36 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9149952913754364191 records=0 bytes=0 channelLen=0
2026/02/18 15:49:36 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_cw6an3jo.\"added\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/02/18 15:49:36 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:49:36 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_cw6an3jo.\"added\" ORDER BY id" rows=3 bytes=38 channelLen=0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:49:38 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id"
2026/02/18 15:49:38 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id"
2026/02/18 15:49:38 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_4108486502486332108 CURSOR FOR SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id" args=[]
2026/02/18 15:49:38 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id" channelLen=0
2026/02/18 15:49:38 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4108486502486332108
2026/02/18 15:49:38 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4108486502486332108 records=2 bytes=19 channelLen=1
2026/02/18 15:49:38 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
2026/02/18 15:49:38 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4108486502486332108
2026/02/18 15:49:38 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4108486502486332108 records=0 bytes=0 channelLen=0
2026/02/18 15:49:38 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/02/18 15:49:38 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:49:38 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:49:39 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_cw6an3jo.\"added\" ORDER BY id"
2026/02/18 15:49:39 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_cw6an3jo.\"added\" ORDER BY id"
2026/02/18 15:49:39 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_3899672824465893945 CURSOR FOR SELECT id,val FROM e2e_test_api_cw6an3jo.\"added\" ORDER BY id" args=[]
2026/02/18 15:49:39 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_cw6an3jo.\"added\" ORDER BY id" channelLen=0
2026/02/18 15:49:39 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_3899672824465893945
2026/02/18 15:49:39 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_3899672824465893945 records=3 bytes=38 channelLen=2
2026/02/18 15:49:39 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_cw6an3jo.\"added\" ORDER BY id" rows=3 bytes=38 channelLen=2
2026/02/18 15:49:39 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_3899672824465893945
2026/02/18 15:49:39 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_3899672824465893945 records=0 bytes=0 channelLen=0
2026/02/18 15:49:39 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_cw6an3jo.\"added\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/02/18 15:49:39 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:49:39 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_cw6an3jo.\"added\" ORDER BY id" rows=3 bytes=38 channelLen=0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:50:00 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_ombnfrjn.test_table_add_remove
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:50:02 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_fgjndi4n.test_unsigned
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:50:05 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_fgjndi4n.test_unsigned
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:50:10 INFO Received AWS credentials from peer for connector: clickhouse x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN}
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:50:14 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_fgjndi4n.test_unsigned
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:50:16 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_ujwz73q1.test_skip_snapshot
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:50:17 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_w7ahdyti.test_schema_as_column
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:50:22 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_nbytwhpz.test_nullengine
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:50:24 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_9bks1wak.test_vector
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:50:26 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_xs6x3qo1.test_float
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:50:27 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_nbytwhpz.test_nullengine
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:50:30 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_te5lte9z.test_mysql_schema_changes
2026/02/18 15:50:30 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_spktmenv.test_datetime
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:50:31 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_bthrgvsw.test_my_enum
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:50:34 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_bthrgvsw.test_my_enum
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:50:36 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_erws3ahl.test_mysql_ghost_schema
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:50:37 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_bthrgvsw.test_my_enum
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:50:44 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_6bnyspcs.test_json
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:50:46 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_erws3ahl.test_mysql_ghost_schema
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:50:47 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_1831s4ed.test_exclude_ch
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:50:49 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_erws3ahl.test_mysql_ghost_schema
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:50:50 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_1831s4ed.test_exclude_ch
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:50:52 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_ugt4ffhx.test_extra_ch_cols
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:50:53 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_1831s4ed.test_exclude_ch
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:50:55 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_ugt4ffhx.test_extra_ch_cols
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:50:56 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_1831s4ed.test_exclude_ch
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:50:58 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_ugt4ffhx.test_extra_ch_cols
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:51:00 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_nbytwhpz.test_nullengine
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:51:02 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_1831s4ed.test_exclude_ch
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:51:04 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_erws3ahl.test_mysql_ghost_schema
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:51:08 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_api_1iv7ncnh.qrepapi_api_1iv7ncnh
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:51:10 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_normal_api_wk17bvdl' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_wk17bvdl.t5_mv_api_wk17bvdl%'"
2026/02/18 15:51:10 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_normal_api_wk17bvdl' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_wk17bvdl.t5_mv_api_wk17bvdl%'"
2026/02/18 15:51:10 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_8209285158471113479 CURSOR FOR \n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_normal_api_wk17bvdl' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_wk17bvdl.t5_mv_api_wk17bvdl%'" args=[]
2026/02/18 15:51:10 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_normal_api_wk17bvdl' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_wk17bvdl.t5_mv_api_wk17bvdl%'" channelLen=0
2026/02/18 15:51:10 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_8209285158471113479
2026/02/18 15:51:10 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_8209285158471113479 records=1 bytes=8 channelLen=0
2026/02/18 15:51:10 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_normal_api_wk17bvdl' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_wk17bvdl.t5_mv_api_wk17bvdl%'" rows=1 bytes=8 channelLen=0
2026/02/18 15:51:10 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_8209285158471113479
2026/02/18 15:51:10 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_8209285158471113479 records=0 bytes=0 channelLen=0
2026/02/18 15:51:10 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_normal_api_wk17bvdl' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_wk17bvdl.t5_mv_api_wk17bvdl%'" rows=0 bytes=0 channelLen=0
2026/02/18 15:51:10 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:51:10 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_normal_api_wk17bvdl' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_wk17bvdl.t5_mv_api_wk17bvdl%'" rows=1 bytes=8 channelLen=0
2026/02/18 15:51:10 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_no_removal_assumed_with_removal_api_sp37rdh9' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_sp37rdh9.t5_mv_api_sp37rdh9%'"
2026/02/18 15:51:10 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_no_removal_assumed_with_removal_api_sp37rdh9' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_sp37rdh9.t5_mv_api_sp37rdh9%'"
2026/02/18 15:51:10 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_13293767051089336572 CURSOR FOR \n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_no_removal_assumed_with_removal_api_sp37rdh9' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_sp37rdh9.t5_mv_api_sp37rdh9%'" args=[]
2026/02/18 15:51:10 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_no_removal_assumed_with_removal_api_sp37rdh9' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_sp37rdh9.t5_mv_api_sp37rdh9%'" channelLen=0
2026/02/18 15:51:10 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_13293767051089336572
2026/02/18 15:51:10 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_13293767051089336572 records=1 bytes=8 channelLen=0
2026/02/18 15:51:10 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_no_removal_assumed_with_removal_api_sp37rdh9' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_sp37rdh9.t5_mv_api_sp37rdh9%'" rows=1 bytes=8 channelLen=0
2026/02/18 15:51:10 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_13293767051089336572
2026/02/18 15:51:10 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_13293767051089336572 records=0 bytes=0 channelLen=0
2026/02/18 15:51:10 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_no_removal_assumed_with_removal_api_sp37rdh9' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_sp37rdh9.t5_mv_api_sp37rdh9%'" rows=0 bytes=0 channelLen=0
2026/02/18 15:51:10 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:51:10 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_no_removal_assumed_with_removal_api_sp37rdh9' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_sp37rdh9.t5_mv_api_sp37rdh9%'" rows=1 bytes=8 channelLen=0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:51:12 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_api_tpl7diic.table1
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:51:14 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_error_on_pg_zero_oids_api_a3b9o5vk' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_a3b9o5vk.t2_mv_api_a3b9o5vk%'"
2026/02/18 15:51:14 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_error_on_pg_zero_oids_api_a3b9o5vk' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_a3b9o5vk.t2_mv_api_a3b9o5vk%'"
2026/02/18 15:51:14 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_4316751070670684503 CURSOR FOR \n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_error_on_pg_zero_oids_api_a3b9o5vk' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_a3b9o5vk.t2_mv_api_a3b9o5vk%'" args=[]
2026/02/18 15:51:14 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_error_on_pg_zero_oids_api_a3b9o5vk' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_a3b9o5vk.t2_mv_api_a3b9o5vk%'" channelLen=0
2026/02/18 15:51:14 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4316751070670684503
2026/02/18 15:51:14 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4316751070670684503 records=1 bytes=8 channelLen=0
2026/02/18 15:51:14 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_error_on_pg_zero_oids_api_a3b9o5vk' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_a3b9o5vk.t2_mv_api_a3b9o5vk%'" rows=1 bytes=8 channelLen=0
2026/02/18 15:51:14 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4316751070670684503
2026/02/18 15:51:14 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4316751070670684503 records=0 bytes=0 channelLen=0
2026/02/18 15:51:14 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_error_on_pg_zero_oids_api_a3b9o5vk' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_a3b9o5vk.t2_mv_api_a3b9o5vk%'" rows=0 bytes=0 channelLen=0
2026/02/18 15:51:14 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:51:14 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_error_on_pg_zero_oids_api_a3b9o5vk' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_a3b9o5vk.t2_mv_api_a3b9o5vk%'" rows=1 bytes=8 channelLen=0
2026/02/18 15:51:14 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_a4gu75tl' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_a4gu75tl.t2_mv_first%'"
2026/02/18 15:51:14 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_a4gu75tl' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_a4gu75tl.t2_mv_first%'"
2026/02/18 15:51:14 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_306795732192315707 CURSOR FOR \n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_a4gu75tl' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_a4gu75tl.t2_mv_first%'" args=[]
2026/02/18 15:51:14 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_a4gu75tl' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_a4gu75tl.t2_mv_first%'" channelLen=0
2026/02/18 15:51:14 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_306795732192315707
2026/02/18 15:51:14 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_306795732192315707 records=1 bytes=8 channelLen=0
2026/02/18 15:51:14 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_a4gu75tl' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_a4gu75tl.t2_mv_first%'" rows=1 bytes=8 channelLen=0
2026/02/18 15:51:14 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_306795732192315707
2026/02/18 15:51:14 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_306795732192315707 records=0 bytes=0 channelLen=0
2026/02/18 15:51:14 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_a4gu75tl' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_a4gu75tl.t2_mv_first%'" rows=0 bytes=0 channelLen=0
2026/02/18 15:51:14 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:51:14 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_a4gu75tl' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_a4gu75tl.t2_mv_first%'" rows=1 bytes=8 channelLen=0
2026/02/18 15:51:14 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_normal_api_wk17bvdl' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_wk17bvdl.t5_mv_api_wk17bvdl%'"
2026/02/18 15:51:14 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_normal_api_wk17bvdl' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_wk17bvdl.t5_mv_api_wk17bvdl%'"
2026/02/18 15:51:14 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_12318215072678396531 CURSOR FOR \n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_normal_api_wk17bvdl' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_wk17bvdl.t5_mv_api_wk17bvdl%'" args=[]
2026/02/18 15:51:14 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_normal_api_wk17bvdl' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_wk17bvdl.t5_mv_api_wk17bvdl%'" channelLen=0
2026/02/18 15:51:14 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12318215072678396531
2026/02/18 15:51:14 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12318215072678396531 records=1 bytes=8 channelLen=0
2026/02/18 15:51:14 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_normal_api_wk17bvdl' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_wk17bvdl.t5_mv_api_wk17bvdl%'" rows=1 bytes=8 channelLen=0
2026/02/18 15:51:14 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12318215072678396531
2026/02/18 15:51:14 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12318215072678396531 records=0 bytes=0 channelLen=0
2026/02/18 15:51:14 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_normal_api_wk17bvdl' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_wk17bvdl.t5_mv_api_wk17bvdl%'" rows=0 bytes=0 channelLen=0
2026/02/18 15:51:14 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:51:14 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_normal_api_wk17bvdl' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_wk17bvdl.t5_mv_api_wk17bvdl%'" rows=1 bytes=8 channelLen=0
2026/02/18 15:51:14 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_api_sp37rdh9.t1
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:51:20 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_api_wk17bvdl.t1
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:51:26 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_api_wk17bvdl.t1
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:51:29 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_api_wk17bvdl.t1
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:51:34 INFO Received AWS credentials from peer for connector: clickhouse x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN}
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
2026/02/18 15:51:37 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_p4dtfoek.\"test_table_add_remove\" ORDER BY id"
2026/02/18 15:51:37 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_p4dtfoek.\"test_table_add_remove\" ORDER BY id"
2026/02/18 15:51:37 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_12404733937279728506 CURSOR FOR SELECT id,\"key\" FROM e2e_test_pgchcl_p4dtfoek.\"test_table_add_remove\" ORDER BY id" args=[]
2026/02/18 15:51:37 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_p4dtfoek.\"test_table_add_remove\" ORDER BY id" channelLen=0
2026/02/18 15:51:37 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12404733937279728506
2026/02/18 15:51:37 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12404733937279728506 records=1 bytes=8 channelLen=0
2026/02/18 15:51:37 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_p4dtfoek.\"test_table_add_remove\" ORDER BY id" rows=1 bytes=8 channelLen=0
2026/02/18 15:51:37 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12404733937279728506
2026/02/18 15:51:37 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12404733937279728506 records=0 bytes=0 channelLen=0
2026/02/18 15:51:37 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_p4dtfoek.\"test_table_add_remove\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/02/18 15:51:37 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:51:37 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_p4dtfoek.\"test_table_add_remove\" ORDER BY id" rows=1 bytes=8 channelLen=0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: q.NumRecords: 3
    bigquery_source_test.go:819: other.NumRecords: 0
    bigquery_source_test.go:819: UNEXPECTED TIMEOUT JSON data replicated 2026-02-18 15:51:48.574923133 +0000 UTC m=+402.989233238
--- FAIL: TestBigQueryClickhouseSuite/Test_JSON_Support (185.57s)
github.com/PeerDB-io/peerdb/flow/e2e::TestBigQueryClickhouseSuite/Test_Types
Stack Traces | 186s run time
=== RUN   TestBigQueryClickhouseSuite/Test_Types
=== PAUSE TestBigQueryClickhouseSuite/Test_Types
=== CONT  TestBigQueryClickhouseSuite/Test_Types
    bigquery_source_test.go:498: ClickHouse database: e2e_test_bqch_1wcbpwwy
    bigquery_source_test.go:504: Creating test table test_types_s6nruvuw with all supported types
    bigquery_source_test.go:664: Inserted 3 rows into source table
2026/02/18 15:48:45 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_with_removal_api_1tzrwq2a' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_1tzrwq2a.t5_mv_api_1tzrwq2a%'"
2026/02/18 15:48:45 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_with_removal_api_1tzrwq2a' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_1tzrwq2a.t5_mv_api_1tzrwq2a%'"
2026/02/18 15:48:45 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_4611401113444322290 CURSOR FOR \n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_with_removal_api_1tzrwq2a' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_1tzrwq2a.t5_mv_api_1tzrwq2a%'" args=[]
2026/02/18 15:48:45 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_with_removal_api_1tzrwq2a' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_1tzrwq2a.t5_mv_api_1tzrwq2a%'" channelLen=0
2026/02/18 15:48:45 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4611401113444322290
2026/02/18 15:48:45 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4611401113444322290 records=1 bytes=8 channelLen=0
2026/02/18 15:48:45 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_with_removal_api_1tzrwq2a' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_1tzrwq2a.t5_mv_api_1tzrwq2a%'" rows=1 bytes=8 channelLen=0
2026/02/18 15:48:45 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4611401113444322290
2026/02/18 15:48:45 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4611401113444322290 records=0 bytes=0 channelLen=0
2026/02/18 15:48:45 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_with_removal_api_1tzrwq2a' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_1tzrwq2a.t5_mv_api_1tzrwq2a%'" rows=0 bytes=0 channelLen=0
2026/02/18 15:48:45 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:48:45 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_with_removal_api_1tzrwq2a' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_1tzrwq2a.t5_mv_api_1tzrwq2a%'" rows=1 bytes=8 channelLen=0
    bigquery_source_test.go:684: WaitFor all types replicated 2026-02-18 15:48:46.5567564 +0000 UTC m=+220.971066495
    bigquery_source_test.go:684: code: 60, message: Unknown table expression identifier 'test_types_s6nruvuw_dst' in scope SELECT id FROM test_types_s6nruvuw_dst FINAL WHERE _peerdb_is_deleted = 0 ORDER BY 1 ASC SETTINGS use_query_cache = false
2026/02/18 15:48:47 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_normal_api_v6lrgiy9' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_v6lrgiy9.t5_mv_api_v6lrgiy9%'"
2026/02/18 15:48:47 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_normal_api_v6lrgiy9' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_v6lrgiy9.t5_mv_api_v6lrgiy9%'"
2026/02/18 15:48:47 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_2189718764399949549 CURSOR FOR \n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_normal_api_v6lrgiy9' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_v6lrgiy9.t5_mv_api_v6lrgiy9%'" args=[]
2026/02/18 15:48:47 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_normal_api_v6lrgiy9' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_v6lrgiy9.t5_mv_api_v6lrgiy9%'" channelLen=0
2026/02/18 15:48:47 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_2189718764399949549
2026/02/18 15:48:47 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_2189718764399949549 records=1 bytes=8 channelLen=0
2026/02/18 15:48:47 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_normal_api_v6lrgiy9' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_v6lrgiy9.t5_mv_api_v6lrgiy9%'" rows=1 bytes=8 channelLen=0
2026/02/18 15:48:47 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_2189718764399949549
2026/02/18 15:48:47 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_2189718764399949549 records=0 bytes=0 channelLen=0
2026/02/18 15:48:47 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_normal_api_v6lrgiy9' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_v6lrgiy9.t5_mv_api_v6lrgiy9%'" rows=0 bytes=0 channelLen=0
2026/02/18 15:48:47 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:48:47 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_normal_api_v6lrgiy9' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_v6lrgiy9.t5_mv_api_v6lrgiy9%'" rows=1 bytes=8 channelLen=0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:48:51 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id"
2026/02/18 15:48:51 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id"
2026/02/18 15:48:51 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_2735469397610112306 CURSOR FOR SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id" args=[]
2026/02/18 15:48:51 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id" channelLen=0
2026/02/18 15:48:51 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_2735469397610112306
2026/02/18 15:48:51 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_2735469397610112306 records=2 bytes=19 channelLen=1
2026/02/18 15:48:51 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
2026/02/18 15:48:51 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_2735469397610112306
2026/02/18 15:48:51 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_2735469397610112306 records=0 bytes=0 channelLen=0
2026/02/18 15:48:51 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/02/18 15:48:51 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:48:51 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:48:54 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id"
2026/02/18 15:48:54 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id"
2026/02/18 15:48:54 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_2083857438184335455 CURSOR FOR SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id" args=[]
2026/02/18 15:48:54 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id" channelLen=0
2026/02/18 15:48:54 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_2083857438184335455
2026/02/18 15:48:54 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_2083857438184335455 records=2 bytes=19 channelLen=1
2026/02/18 15:48:54 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
2026/02/18 15:48:54 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_2083857438184335455
2026/02/18 15:48:54 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_2083857438184335455 records=0 bytes=0 channelLen=0
2026/02/18 15:48:54 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/02/18 15:48:54 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:48:54 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_180g7wv8.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:49:20 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_third%'"
2026/02/18 15:49:20 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_third%'"
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:49:23 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_third%'"
2026/02/18 15:49:23 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_third%'"
2026/02/18 15:49:23 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_16743647372040365347 CURSOR FOR \n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_third%'" args=[]
2026/02/18 15:49:23 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_third%'" channelLen=0
2026/02/18 15:49:23 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_16743647372040365347
2026/02/18 15:49:23 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_16743647372040365347 records=1 bytes=8 channelLen=0
2026/02/18 15:49:23 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_third%'" rows=1 bytes=8 channelLen=0
2026/02/18 15:49:23 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_16743647372040365347
2026/02/18 15:49:23 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_16743647372040365347 records=0 bytes=0 channelLen=0
2026/02/18 15:49:23 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_third%'" rows=0 bytes=0 channelLen=0
2026/02/18 15:49:23 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:49:23 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_kitj3l4d' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_kitj3l4d.t2_mv_third%'" rows=1 bytes=8 channelLen=0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:49:26 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_remove_add_remove_api_xili4ma2' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_xili4ma2.t2_mv_api_xili4ma2%'"
2026/02/18 15:49:26 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_remove_add_remove_api_xili4ma2' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_xili4ma2.t2_mv_api_xili4ma2%'"
2026/02/18 15:49:26 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_2122580409410744712 CURSOR FOR \n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_remove_add_remove_api_xili4ma2' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_xili4ma2.t2_mv_api_xili4ma2%'" args=[]
2026/02/18 15:49:26 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_remove_add_remove_api_xili4ma2' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_xili4ma2.t2_mv_api_xili4ma2%'" channelLen=0
2026/02/18 15:49:26 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_2122580409410744712
2026/02/18 15:49:26 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_2122580409410744712 records=1 bytes=8 channelLen=0
2026/02/18 15:49:26 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_remove_add_remove_api_xili4ma2' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_xili4ma2.t2_mv_api_xili4ma2%'" rows=1 bytes=8 channelLen=0
2026/02/18 15:49:26 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_2122580409410744712
2026/02/18 15:49:26 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_2122580409410744712 records=0 bytes=0 channelLen=0
2026/02/18 15:49:26 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_remove_add_remove_api_xili4ma2' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_xili4ma2.t2_mv_api_xili4ma2%'" rows=0 bytes=0 channelLen=0
2026/02/18 15:49:26 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:49:26 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_remove_add_remove_api_xili4ma2' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_xili4ma2.t2_mv_api_xili4ma2%'" rows=1 bytes=8 channelLen=0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:49:28 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_kitj3l4d.\"t1\" ORDER BY id"
2026/02/18 15:49:28 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_kitj3l4d.\"t1\" ORDER BY id"
2026/02/18 15:49:28 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_10543352133023637368 CURSOR FOR SELECT id,val FROM e2e_test_api_kitj3l4d.\"t1\" ORDER BY id" args=[]
2026/02/18 15:49:28 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_kitj3l4d.\"t1\" ORDER BY id" channelLen=0
2026/02/18 15:49:28 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_10543352133023637368
2026/02/18 15:49:28 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_10543352133023637368 records=2 bytes=19 channelLen=1
2026/02/18 15:49:28 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_kitj3l4d.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=1
2026/02/18 15:49:28 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_10543352133023637368
2026/02/18 15:49:28 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_10543352133023637368 records=0 bytes=0 channelLen=0
2026/02/18 15:49:28 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_kitj3l4d.\"t1\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/02/18 15:49:28 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:49:28 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_kitj3l4d.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:49:29 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id"
2026/02/18 15:49:29 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id"
2026/02/18 15:49:29 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_4236391258359140710 CURSOR FOR SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id" args=[]
2026/02/18 15:49:29 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id" channelLen=0
2026/02/18 15:49:29 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4236391258359140710
2026/02/18 15:49:29 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4236391258359140710 records=2 bytes=19 channelLen=1
2026/02/18 15:49:29 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
2026/02/18 15:49:29 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4236391258359140710
2026/02/18 15:49:29 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4236391258359140710 records=0 bytes=0 channelLen=0
2026/02/18 15:49:29 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/02/18 15:49:29 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:49:29 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:49:35 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_kitj3l4d.\"t1\" ORDER BY id"
2026/02/18 15:49:35 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_kitj3l4d.\"t1\" ORDER BY id"
2026/02/18 15:49:35 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_2183805867001211835 CURSOR FOR SELECT id,val FROM e2e_test_api_kitj3l4d.\"t1\" ORDER BY id" args=[]
2026/02/18 15:49:35 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_kitj3l4d.\"t1\" ORDER BY id" channelLen=0
2026/02/18 15:49:35 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_2183805867001211835
2026/02/18 15:49:35 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_2183805867001211835 records=2 bytes=19 channelLen=1
2026/02/18 15:49:35 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_kitj3l4d.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
2026/02/18 15:49:35 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_2183805867001211835
2026/02/18 15:49:35 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_2183805867001211835 records=0 bytes=0 channelLen=0
2026/02/18 15:49:35 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_kitj3l4d.\"t1\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/02/18 15:49:35 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:49:35 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_kitj3l4d.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:49:36 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id"
2026/02/18 15:49:36 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id"
2026/02/18 15:49:36 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_17104613655764996602 CURSOR FOR SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id" args=[]
2026/02/18 15:49:36 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id" channelLen=0
2026/02/18 15:49:36 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_17104613655764996602
2026/02/18 15:49:36 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_17104613655764996602 records=2 bytes=19 channelLen=1
2026/02/18 15:49:36 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=1
2026/02/18 15:49:36 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_17104613655764996602
2026/02/18 15:49:36 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_17104613655764996602 records=0 bytes=0 channelLen=0
2026/02/18 15:49:36 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/02/18 15:49:36 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:49:36 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:49:43 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id"
2026/02/18 15:49:43 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id"
2026/02/18 15:49:43 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_12219831222549502639 CURSOR FOR SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id" args=[]
2026/02/18 15:49:43 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id" channelLen=0
2026/02/18 15:49:43 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12219831222549502639
2026/02/18 15:49:43 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12219831222549502639 records=2 bytes=19 channelLen=1
2026/02/18 15:49:43 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
2026/02/18 15:49:43 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12219831222549502639
2026/02/18 15:49:43 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12219831222549502639 records=0 bytes=0 channelLen=0
2026/02/18 15:49:43 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/02/18 15:49:43 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:49:43 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_xili4ma2.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:50:02 INFO Received AWS credentials from peer for connector: clickhouse x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN}
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:50:05 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_w7ahdyti.test_schema_as_column
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:50:06 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_ujwz73q1.test_skip_snapshot
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:50:08 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_fgjndi4n.test_unsigned
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:50:09 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_ujwz73q1.test_skip_snapshot
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:50:17 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_tjksjuee.test_nullable_sc_ch
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:50:34 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_xs6x3qo1.test_float
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:50:39 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_bthrgvsw.test_my_enum
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:50:41 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_ny8nyg7b.test_date_coercion
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:50:42 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_6bnyspcs.test_json
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:50:44 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_p2vo6cwn.test_bit
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:50:45 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_1831s4ed.test_exclude_ch
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:50:47 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_erws3ahl.test_mysql_ghost_schema
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:50:48 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_1831s4ed.test_exclude_ch
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:50:50 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_erws3ahl.test_mysql_ghost_schema
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:50:51 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_1831s4ed.test_exclude_ch
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:50:53 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_ugt4ffhx.test_extra_ch_cols
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:50:54 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_1831s4ed.test_exclude_ch
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:50:58 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_nbytwhpz.test_nullengine
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:50:59 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_u3dsfxfg.test_update_pkey_chunking_initial_load_enabled
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:51:01 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_erws3ahl.test_mysql_ghost_schema
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:51:02 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_api_tpl7diic.table1
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:51:04 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_nbytwhpz.test_nullengine
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:51:06 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_api_1iv7ncnh.qrepapi_api_1iv7ncnh
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:51:08 INFO Received AWS credentials from peer for connector: ci x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN}
2026/02/18 15:51:08 INFO Received AWS credentials from peer for connector: clickhouse x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN}
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:51:10 INFO Received AWS credentials from peer for connector: ci x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN}
2026/02/18 15:51:10 INFO Received AWS credentials from peer for connector: clickhouse x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN}
2026/02/18 15:51:10 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_nbytwhpz.test_nullengine
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:51:11 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_normal_api_wk17bvdl' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_wk17bvdl.t5_mv_api_wk17bvdl%'"
2026/02/18 15:51:11 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_normal_api_wk17bvdl' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_wk17bvdl.t5_mv_api_wk17bvdl%'"
2026/02/18 15:51:11 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_11880573432033056699 CURSOR FOR \n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_normal_api_wk17bvdl' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_wk17bvdl.t5_mv_api_wk17bvdl%'" args=[]
2026/02/18 15:51:11 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_normal_api_wk17bvdl' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_wk17bvdl.t5_mv_api_wk17bvdl%'" channelLen=0
2026/02/18 15:51:11 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11880573432033056699
2026/02/18 15:51:11 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11880573432033056699 records=1 bytes=8 channelLen=0
2026/02/18 15:51:11 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_normal_api_wk17bvdl' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_wk17bvdl.t5_mv_api_wk17bvdl%'" rows=1 bytes=8 channelLen=0
2026/02/18 15:51:11 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11880573432033056699
2026/02/18 15:51:11 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11880573432033056699 records=0 bytes=0 channelLen=0
2026/02/18 15:51:11 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_normal_api_wk17bvdl' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_wk17bvdl.t5_mv_api_wk17bvdl%'" rows=0 bytes=0 channelLen=0
2026/02/18 15:51:11 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/02/18 15:51:11 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="\n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('cancel_table_addition_test_flow_normal_api_wk17bvdl' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_wk17bvdl.t5_mv_api_wk17bvdl%'" rows=1 bytes=8 channelLen=0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:51:19 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_api_wk17bvdl.t1
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:51:22 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_api_wk17bvdl.t1
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:51:25 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_api_sp37rdh9.t1
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
2026/02/18 15:51:27 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_api_r5vqnrlv.original
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: q.NumRecords: 3
    bigquery_source_test.go:684: other.NumRecords: 0
    bigquery_source_test.go:684: UNEXPECTED TIMEOUT all types replicated 2026-02-18 15:51:47.659059127 +0000 UTC m=+402.073369232
--- FAIL: TestBigQueryClickhouseSuite/Test_Types (185.73s)

To view more test analytics, go to the Test Analytics Dashboard
📋 Got 3 mins? Take this short survey to help us improve Test Analytics.

@heavycrystal heavycrystal force-pushed the fix/pg-pg-numeric-schema-qual branch from 89bee81 to 9252ea5 Compare February 18, 2026 12:19
@heavycrystal heavycrystal merged commit 6db8600 into main Feb 19, 2026
13 of 15 checks passed
@heavycrystal heavycrystal deleted the fix/pg-pg-numeric-schema-qual branch February 19, 2026 09:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants