Skip to content

Fix/3950 enums mysql without metadata#4025

Closed
dtunikov wants to merge 8 commits intomainfrom
fix/3950-enums-mysql-without-metadata
Closed

Fix/3950 enums mysql without metadata#4025
dtunikov wants to merge 8 commits intomainfrom
fix/3950-enums-mysql-without-metadata

Conversation

@dtunikov
Copy link
Copy Markdown
Collaborator

@dtunikov dtunikov commented Mar 8, 2026

This PR addresses issue - #3950.
It converts enum strings to integer values during QRep for older MySQL versions without metadata binlog support. It aligns QRep behaviour with CDC behaviour.

@dtunikov dtunikov requested a review from ilidemi March 8, 2026 22:38
return fmt.Errorf("could not convert mysql value for %s: %w", field.Name, err)
}

mapped, err := c.mapQValue(qv, field, enumMap, binlogMetadataSupported)
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

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

so, I thought it would be cleaner to map values inside onRow callback rather than trying to manipulate config.Query with smth like:
select enumField + 0 from table;

does it make sense?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Let's explore both options. With the current one:

  1. The metadata query and the main query need to be consistent with each other, so it would need to be {begin tx; select 1 from WatermarkTable (metadata lock); fetch enum maps; run query; commit}
  2. Would prefer to avoid hand-parsing enum statements if possible. In CDC path we're using github.com/pingcap/tidb/pkg/parser, can it be used for this?

With enumField+0 one:

  1. snapshot_flow cloneTable() already constructs the list of columns in case there are exclusions and has the column type already available there

I find the +0 simpler, wdyt?

Copy link
Copy Markdown
Collaborator Author

@dtunikov dtunikov Mar 10, 2026

Choose a reason for hiding this comment

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

Yeah, I saw that we already have the list of columns on snapshot_flow lvl.
So, yes, for snapshot_flow it would be quite easy to pass this list of columns to QRep workflow.
I was more concerned about arbitrary qrep queries that might be coming if users run QRep directly. But I guess it's fine in this case, because we wouldn't have this consistency issues at all without cdc.

Yep. I think in that case +0 should work fine.
Just one question though. Would it be ok to pass some sort of query builder struct from snapshot into qrep. So, instead of config.Query=select * from ... where ..., we could pass smth like:

type Query struct {
  Table string // or just use WatermarkTable from config
  Columns []FieldDescription
  Where string
}

and then in every connector we would convert this Query struct to actual SQL query.
since we query table schema anyways inside cloneTable(), i think it's fine to always pass this list of columns into qrep (ofc respecting exclude logic).
I feel like manipulating the current Query string inside connector code is a bit error-prone.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Right, the * vs col1, col2+0, col3 discrimination logic would be per-connector. Introducing a structured query object makes a lot of sense here. PG partitioned tables improvement in #3998 would also need go that route.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

+1 on using structured query :)

@dtunikov if you are planning to introduce the Query struct in this PR, i will adopt it in a follow-up.

Copy link
Copy Markdown
Contributor

@jgao54 jgao54 Mar 11, 2026

Choose a reason for hiding this comment

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

Currently QRepConfig is also used by QRepFlowWorkflow which can introduce arbitrary queries (this should be deprecated eventually but is currently available in OSS). Anyways, without overcomplicating the scope, using a shared function that parses the string into a structured query makes the most sense here.

In terms of the struct, Table/Columns/Where sounds good to me as well (and we can evolve it later if needed). this should cover the case where if len(columns) == 0, construct query with *.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

If we leave the standalone QRep as is, couldn't a struct field be added on the side without needing parsing? We build snapshot queries ourselves in snapshot_flow.

Copy link
Copy Markdown
Contributor

@jgao54 jgao54 Mar 11, 2026

Choose a reason for hiding this comment

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

ah gotcha, as in introduce a separate StructuredQuery field used by snapshotting, and let standalone QRep continue to use the existing Query field (since StructuredQuery would be nil). Just keep both. sounds good to me.

Copy link
Copy Markdown
Contributor

@jgao54 jgao54 Mar 11, 2026

Choose a reason for hiding this comment

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

I just noticed the newly introduced BaseQuery in #3983, given we haven't deployed this yet, would it make sense to have a StructuredQuery and then generate the base query from it dynamically which should be trivial now? (thinking that having a Query, BaseQuery, and StructuredQuery is a bit confusing)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Merged #4050 which should allow to just handle all of this in the connector

RequireEnvCanceled(s.t, env)
}

func (s ClickHouseSuite) Test_MySQL_Enum_Consistency() {
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

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

I decided to keep Test_MySQL_Enum as it is, because it tests both enums and sets.
This PR only addresses enums for now.
Also Test_MySQL_Enum checks complete similarity between src and dst tables.
Here we just check that dst.table.rows[0].enumValue == dst.table.rows[1].enumValue (qrep enum value == cdc enum value)

Copy link
Copy Markdown
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 fixes MySQL enum value inconsistencies between initial snapshot (QRep) and CDC for older MySQL versions that lack binlog_row_metadata=full, by mapping snapshot enum strings to their corresponding 1-based enum indexes (matching CDC output).

Changes:

  • Added enum option discovery from information_schema.columns and enum string→index mapping during MySQL QRep pulls.
  • Added unit/integration tests for enum parsing/mapping and enum column option retrieval.
  • Added an E2E ClickHouse↔MySQL test to assert snapshot vs CDC enum consistency.

Reviewed changes

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

Show a summary per file
File Description
flow/e2e/clickhouse_mysql_test.go Adds an E2E test that validates snapshot/CDC enum value consistency.
flow/connectors/mysql/qrep_test.go Adds tests for enum parsing, mapping behavior, and enum option lookup.
flow/connectors/mysql/qrep.go Implements enum option parsing/lookup and applies enum mapping in QRep streaming.
flow/connectors/mysql/mysql.go Adds a helper to detect whether binlog row metadata is supported based on server version/flavor.
flow/connectors/mysql/cdc.go Refactors CDC binlog-metadata support check to use the new helper and closes a result set.

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

Comment thread flow/connectors/mysql/qrep.go
Comment thread flow/connectors/mysql/qrep.go Outdated
Comment thread flow/connectors/mysql/qrep_test.go
@codecov
Copy link
Copy Markdown

codecov Bot commented Mar 9, 2026

❌ 2 Tests Failed:

Tests completed Failed Passed Skipped
1750 2 1748 292
View the top 2 failed test(s) by shortest run time
github.com/PeerDB-io/peerdb/flow/e2e::TestBigQueryClickhouseSuite
Stack Traces | 0s run time
=== RUN   TestBigQueryClickhouseSuite
=== PAUSE TestBigQueryClickhouseSuite
=== CONT  TestBigQueryClickhouseSuite
--- FAIL: TestBigQueryClickhouseSuite (0.00s)
2026/03/09 09:28:03 INFO Received AWS credentials from peer for connector: ci x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN}
2026/03/09 09:28:03 INFO Received AWS credentials from peer for connector: clickhouse x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN}
github.com/PeerDB-io/peerdb/flow/e2e::TestBigQueryClickhouseSuite/Test_Trips_Flow_Small_Partitions
Stack Traces | 183s run time
=== RUN   TestBigQueryClickhouseSuite/Test_Trips_Flow_Small_Partitions
=== PAUSE TestBigQueryClickhouseSuite/Test_Trips_Flow_Small_Partitions
=== CONT  TestBigQueryClickhouseSuite/Test_Trips_Flow_Small_Partitions
2026/03/09 09:25:01 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_2c8mj04h.\"t1\" ORDER BY id"
2026/03/09 09:25:01 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_2c8mj04h.\"t1\" ORDER BY id"
2026/03/09 09:25:01 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_8659488203459985942 CURSOR FOR SELECT id,val FROM e2e_test_api_2c8mj04h.\"t1\" ORDER BY id" args=[]
2026/03/09 09:25:01 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_2c8mj04h.\"t1\" ORDER BY id" channelLen=0
2026/03/09 09:25:01 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_8659488203459985942
2026/03/09 09:25:01 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_8659488203459985942 records=2 bytes=19 channelLen=1
2026/03/09 09:25:01 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_2c8mj04h.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
2026/03/09 09:25:01 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_8659488203459985942
2026/03/09 09:25:01 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_8659488203459985942 records=0 bytes=0 channelLen=0
2026/03/09 09:25:01 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_2c8mj04h.\"t1\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:25:01 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:25:01 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_2c8mj04h.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
    bigquery_source_test.go:484: ClickHouse database: e2e_test_bqch_kv65wjbh
    bigquery_source_test.go:489: Source table trips_1k has 1000 rows
2026/03/09 09:25:02 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_2c8mj04h.\"t1\" ORDER BY id"
2026/03/09 09:25:02 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_2c8mj04h.\"t1\" ORDER BY id"
2026/03/09 09:25:02 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_11230440840194617660 CURSOR FOR SELECT id,val FROM e2e_test_api_2c8mj04h.\"t1\" ORDER BY id" args=[]
2026/03/09 09:25:02 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_2c8mj04h.\"t1\" ORDER BY id" channelLen=0
2026/03/09 09:25:02 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11230440840194617660
2026/03/09 09:25:02 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11230440840194617660 records=2 bytes=19 channelLen=1
2026/03/09 09:25:02 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_2c8mj04h.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
2026/03/09 09:25:02 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11230440840194617660
2026/03/09 09:25:02 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11230440840194617660 records=0 bytes=0 channelLen=0
2026/03/09 09:25:02 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_2c8mj04h.\"t1\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:25:02 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:25:02 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_2c8mj04h.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
    bigquery_source_test.go:511: WaitFor initial load to match 2026-03-09 09:25:02.679501238 +0000 UTC m=+355.750721865
2026/03/09 09:25:02 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_uqqnppc0.\"t1\" ORDER BY id"
2026/03/09 09:25:02 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_uqqnppc0.\"t1\" ORDER BY id"
2026/03/09 09:25:02 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_15934872540365403895 CURSOR FOR SELECT id,val FROM e2e_test_api_uqqnppc0.\"t1\" ORDER BY id" args=[]
2026/03/09 09:25:02 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_uqqnppc0.\"t1\" ORDER BY id" channelLen=0
2026/03/09 09:25:02 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_15934872540365403895
2026/03/09 09:25:02 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_15934872540365403895 records=2 bytes=19 channelLen=1
2026/03/09 09:25:02 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_uqqnppc0.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
2026/03/09 09:25:02 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_15934872540365403895
2026/03/09 09:25:02 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_15934872540365403895 records=0 bytes=0 channelLen=0
2026/03/09 09:25:02 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_uqqnppc0.\"t1\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:25:02 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:25:02 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_uqqnppc0.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
    bigquery_source_test.go:511: code: 60, message: Unknown table expression identifier 'trips_1k_dst_small_partitions' in scope SELECT trip_id, vendor_id, passenger_count, trip_distance, fare_amount FROM trips_1k_dst_small_partitions FINAL WHERE _peerdb_is_deleted = 0 ORDER BY 1 ASC SETTINGS use_query_cache = false
2026/03/09 09:25:03 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_2c8mj04h.\"t1\" ORDER BY id"
2026/03/09 09:25:03 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_2c8mj04h.\"t1\" ORDER BY id"
2026/03/09 09:25:03 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_12164324858445853492 CURSOR FOR SELECT id,val FROM e2e_test_api_2c8mj04h.\"t1\" ORDER BY id" args=[]
2026/03/09 09:25:03 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_2c8mj04h.\"t1\" ORDER BY id" channelLen=0
2026/03/09 09:25:03 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12164324858445853492
2026/03/09 09:25:03 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12164324858445853492 records=2 bytes=19 channelLen=1
2026/03/09 09:25:03 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_2c8mj04h.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=1
2026/03/09 09:25:03 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12164324858445853492
2026/03/09 09:25:03 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12164324858445853492 records=0 bytes=0 channelLen=0
2026/03/09 09:25:03 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_2c8mj04h.\"t1\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:25:03 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:25:03 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_2c8mj04h.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
    bigquery_source_test.go:511: code: 60, message: Unknown table expression identifier 'trips_1k_dst_small_partitions' in scope SELECT trip_id, vendor_id, passenger_count, trip_distance, fare_amount FROM trips_1k_dst_small_partitions FINAL WHERE _peerdb_is_deleted = 0 ORDER BY 1 ASC SETTINGS use_query_cache = false
2026/03/09 09:25:04 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_uqqnppc0.\"t1\" ORDER BY id"
2026/03/09 09:25:04 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_uqqnppc0.\"t1\" ORDER BY id"
2026/03/09 09:25:04 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_78324941978128215 CURSOR FOR SELECT id,val FROM e2e_test_api_uqqnppc0.\"t1\" ORDER BY id" args=[]
2026/03/09 09:25:04 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_uqqnppc0.\"t1\" ORDER BY id" channelLen=0
2026/03/09 09:25:04 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_78324941978128215
2026/03/09 09:25:04 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_78324941978128215 records=2 bytes=19 channelLen=1
2026/03/09 09:25:04 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_uqqnppc0.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
2026/03/09 09:25:04 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_78324941978128215
2026/03/09 09:25:04 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_78324941978128215 records=0 bytes=0 channelLen=0
2026/03/09 09:25:04 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_uqqnppc0.\"t1\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:25:04 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:25:04 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_uqqnppc0.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:25:07 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_uqqnppc0.\"t1\" ORDER BY id"
2026/03/09 09:25:07 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_uqqnppc0.\"t1\" ORDER BY id"
2026/03/09 09:25:07 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_2505006819179241909 CURSOR FOR SELECT id,val FROM e2e_test_api_uqqnppc0.\"t1\" ORDER BY id" args=[]
2026/03/09 09:25:07 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_uqqnppc0.\"t1\" ORDER BY id" channelLen=0
2026/03/09 09:25:07 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_2505006819179241909
2026/03/09 09:25:07 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_2505006819179241909 records=2 bytes=19 channelLen=1
2026/03/09 09:25:07 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_uqqnppc0.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
2026/03/09 09:25:07 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_2505006819179241909
2026/03/09 09:25:07 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_2505006819179241909 records=0 bytes=0 channelLen=0
2026/03/09 09:25:07 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_uqqnppc0.\"t1\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:25:07 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:25:07 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_uqqnppc0.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:25:08 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,val FROM e2e_test_api_uqqnppc0.\"t1\" ORDER BY id"
2026/03/09 09:25: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_uqqnppc0.\"t1\" ORDER BY id"
2026/03/09 09:25:08 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_11062322302240450870 CURSOR FOR SELECT id,val FROM e2e_test_api_uqqnppc0.\"t1\" ORDER BY id" args=[]
2026/03/09 09:25: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_uqqnppc0.\"t1\" ORDER BY id" channelLen=0
2026/03/09 09:25:08 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11062322302240450870
2026/03/09 09:25:08 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11062322302240450870 records=2 bytes=19 channelLen=1
2026/03/09 09:25: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_uqqnppc0.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
2026/03/09 09:25:08 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11062322302240450870
2026/03/09 09:25:08 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11062322302240450870 records=0 bytes=0 channelLen=0
2026/03/09 09:25: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_uqqnppc0.\"t1\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:25:08 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:25: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_uqqnppc0.\"t1\" ORDER BY id" rows=2 bytes=19 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:25:24 INFO Received AWS credentials from peer for connector: ci x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN}
2026/03/09 09:25:24 INFO Received AWS credentials from peer for connector: clickhouse x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN}
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:25:29 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id"
2026/03/09 09:25:29 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id"
2026/03/09 09:25:29 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_10086129415812243329 CURSOR FOR SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id" args=[]
2026/03/09 09:25:29 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_ijunbezi.\"test_nullengine\" ORDER BY id" channelLen=0
2026/03/09 09:25:29 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_10086129415812243329
2026/03/09 09:25:29 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_10086129415812243329 records=1 bytes=7 channelLen=0
2026/03/09 09:25:29 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id" rows=1 bytes=7 channelLen=0
2026/03/09 09:25:29 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_10086129415812243329
2026/03/09 09:25:29 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_10086129415812243329 records=0 bytes=0 channelLen=0
2026/03/09 09:25:29 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:25:29 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:25:29 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_ijunbezi.\"test_nullengine\" ORDER BY id" rows=1 bytes=7 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:25:31 INFO Received AWS credentials from peer for connector: ci x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN}
2026/03/09 09:25:31 INFO Received AWS credentials from peer for connector: clickhouse x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN}
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:25:37 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id"
2026/03/09 09:25: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_ijunbezi.\"test_nullengine\" ORDER BY id"
2026/03/09 09:25:37 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_1275970433722619561 CURSOR FOR SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id" args=[]
2026/03/09 09:25: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_ijunbezi.\"test_nullengine\" ORDER BY id" channelLen=0
2026/03/09 09:25:37 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_1275970433722619561
2026/03/09 09:25:37 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_1275970433722619561 records=1 bytes=7 channelLen=0
2026/03/09 09:25: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_ijunbezi.\"test_nullengine\" ORDER BY id" rows=1 bytes=7 channelLen=0
2026/03/09 09:25:37 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_1275970433722619561
2026/03/09 09:25:37 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_1275970433722619561 records=0 bytes=0 channelLen=0
2026/03/09 09:25: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_ijunbezi.\"test_nullengine\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:25:37 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:25: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_ijunbezi.\"test_nullengine\" ORDER BY id" rows=1 bytes=7 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:25:38 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_bcrnhuil.\"test_update_pkey_enabled\" ORDER BY id"
2026/03/09 09:25:38 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_bcrnhuil.\"test_update_pkey_enabled\" ORDER BY id"
2026/03/09 09:25:38 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_9884671560345615625 CURSOR FOR SELECT id,\"key\" FROM e2e_test_pgchcl_bcrnhuil.\"test_update_pkey_enabled\" ORDER BY id" args=[]
2026/03/09 09:25:38 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_bcrnhuil.\"test_update_pkey_enabled\" ORDER BY id" channelLen=0
2026/03/09 09:25:38 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9884671560345615625
2026/03/09 09:25:38 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9884671560345615625 records=1 bytes=10 channelLen=0
2026/03/09 09:25:38 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_bcrnhuil.\"test_update_pkey_enabled\" ORDER BY id" rows=1 bytes=10 channelLen=0
2026/03/09 09:25:38 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9884671560345615625
2026/03/09 09:25:38 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9884671560345615625 records=0 bytes=0 channelLen=0
2026/03/09 09:25:38 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_bcrnhuil.\"test_update_pkey_enabled\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:25:38 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:25:38 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_bcrnhuil.\"test_update_pkey_enabled\" ORDER BY id" rows=1 bytes=10 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:25:40 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id"
2026/03/09 09:25:40 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id"
2026/03/09 09:25:40 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_4754303663223654238 CURSOR FOR SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id" args=[]
2026/03/09 09:25:40 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_ijunbezi.\"test_nullengine\" ORDER BY id" channelLen=0
2026/03/09 09:25:40 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4754303663223654238
2026/03/09 09:25:40 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4754303663223654238 records=1 bytes=7 channelLen=0
2026/03/09 09:25:40 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id" rows=1 bytes=7 channelLen=0
2026/03/09 09:25:40 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4754303663223654238
2026/03/09 09:25:40 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4754303663223654238 records=0 bytes=0 channelLen=0
2026/03/09 09:25:40 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:25:40 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:25:40 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_ijunbezi.\"test_nullengine\" ORDER BY id" rows=1 bytes=7 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:25:42 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"id number\",key,\"spacey column\",\"#sync_me!\",\"2birds1stone\",\"quo'te\",\"Анна Каренина\",\"人間失格\" FROM e2e_test_pgchcl_kohqcyni.\"test_unprivileged_columns\" ORDER BY id"
2026/03/09 09:25:42 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_3912067735746797941 CURSOR FOR SELECT id,\"id number\",key,\"spacey column\",\"#sync_me!\",\"2birds1stone\",\"quo'te\",\"Анна Каренина\",\"人間失格\" FROM e2e_test_pgchcl_kohqcyni.\"test_unprivileged_columns\" ORDER BY id" args=[]
2026/03/09 09:25:42 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"id number\",key,\"spacey column\",\"#sync_me!\",\"2birds1stone\",\"quo'te\",\"Анна Каренина\",\"人間失格\" FROM e2e_test_pgchcl_kohqcyni.\"test_unprivileged_columns\" ORDER BY id" channelLen=0
2026/03/09 09:25:42 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_3912067735746797941
2026/03/09 09:25:42 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_3912067735746797941 records=2 bytes=120 channelLen=1
2026/03/09 09:25:42 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"id number\",key,\"spacey column\",\"#sync_me!\",\"2birds1stone\",\"quo'te\",\"Анна Каренина\",\"人間失格\" FROM e2e_test_pgchcl_kohqcyni.\"test_unprivileged_columns\" ORDER BY id" rows=2 bytes=120 channelLen=0
2026/03/09 09:25:42 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_3912067735746797941
2026/03/09 09:25:42 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_3912067735746797941 records=0 bytes=0 channelLen=0
2026/03/09 09:25:42 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"id number\",key,\"spacey column\",\"#sync_me!\",\"2birds1stone\",\"quo'te\",\"Анна Каренина\",\"人間失格\" FROM e2e_test_pgchcl_kohqcyni.\"test_unprivileged_columns\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:25:42 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:25:42 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"id number\",key,\"spacey column\",\"#sync_me!\",\"2birds1stone\",\"quo'te\",\"Анна Каренина\",\"人間失格\" FROM e2e_test_pgchcl_kohqcyni.\"test_unprivileged_columns\" ORDER BY id" rows=2 bytes=120 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:25:44 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT sync_batch_id FROM metadata_last_sync_state WHERE job_name='test_normalize_metadata_with_retry_pgchcl_ebytxbeh'"
2026/03/09 09:25:44 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT sync_batch_id FROM metadata_last_sync_state WHERE job_name='test_normalize_metadata_with_retry_pgchcl_ebytxbeh'"
2026/03/09 09:25:44 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_17047806458995151187 CURSOR FOR SELECT sync_batch_id FROM metadata_last_sync_state WHERE job_name='test_normalize_metadata_with_retry_pgchcl_ebytxbeh'" args=[]
2026/03/09 09:25:44 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT sync_batch_id FROM metadata_last_sync_state WHERE job_name='test_normalize_metadata_with_retry_pgchcl_ebytxbeh'" channelLen=0
2026/03/09 09:25:44 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_17047806458995151187
2026/03/09 09:25:44 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_17047806458995151187 records=0 bytes=0 channelLen=0
2026/03/09 09:25:44 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT sync_batch_id FROM metadata_last_sync_state WHERE job_name='test_normalize_metadata_with_retry_pgchcl_ebytxbeh'" rows=0 bytes=0 channelLen=0
2026/03/09 09:25:44 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:25:44 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT sync_batch_id FROM metadata_last_sync_state WHERE job_name='test_normalize_metadata_with_retry_pgchcl_ebytxbeh'" rows=0 bytes=0 channelLen=0
2026/03/09 09:25:44 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pgchcl_zvmstycx.\"test_pgvector_text\" ORDER BY id"
2026/03/09 09:25:44 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_pgchcl_zvmstycx.\"test_pgvector_text\" ORDER BY id"
2026/03/09 09:25:44 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_16349571823621381344 CURSOR FOR SELECT id,v1,hv,sv FROM e2e_test_pgchcl_zvmstycx.\"test_pgvector_text\" ORDER BY id" args=[]
2026/03/09 09:25:44 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_pgchcl_zvmstycx.\"test_pgvector_text\" ORDER BY id" channelLen=0
2026/03/09 09:25:44 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_16349571823621381344
2026/03/09 09:25:44 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_16349571823621381344 records=2 bytes=76 channelLen=1
2026/03/09 09:25:44 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_pgchcl_zvmstycx.\"test_pgvector_text\" ORDER BY id" rows=2 bytes=76 channelLen=0
2026/03/09 09:25:44 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_16349571823621381344
2026/03/09 09:25:44 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_16349571823621381344 records=0 bytes=0 channelLen=0
2026/03/09 09:25:44 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_pgchcl_zvmstycx.\"test_pgvector_text\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:25:44 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:25:44 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_pgchcl_zvmstycx.\"test_pgvector_text\" ORDER BY id" rows=2 bytes=76 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:25:45 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_bcrnhuil.\"test_update_pkey_enabled\" ORDER BY id"
2026/03/09 09:25:45 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_bcrnhuil.\"test_update_pkey_enabled\" ORDER BY id"
2026/03/09 09:25:45 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_11531613967132082189 CURSOR FOR SELECT id,\"key\" FROM e2e_test_pgchcl_bcrnhuil.\"test_update_pkey_enabled\" ORDER BY id" args=[]
2026/03/09 09:25:45 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_bcrnhuil.\"test_update_pkey_enabled\" ORDER BY id" channelLen=0
2026/03/09 09:25:45 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11531613967132082189
2026/03/09 09:25:45 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11531613967132082189 records=1 bytes=10 channelLen=0
2026/03/09 09:25:45 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_bcrnhuil.\"test_update_pkey_enabled\" ORDER BY id" rows=1 bytes=10 channelLen=0
2026/03/09 09:25:45 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11531613967132082189
2026/03/09 09:25:45 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11531613967132082189 records=0 bytes=0 channelLen=0
2026/03/09 09:25:45 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_bcrnhuil.\"test_update_pkey_enabled\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:25:45 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:25:45 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_bcrnhuil.\"test_update_pkey_enabled\" ORDER BY id" rows=1 bytes=10 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:25:47 INFO Received AWS credentials from peer for connector: clickhouse x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN}
2026/03/09 09:25:47 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id"
2026/03/09 09:25:47 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id"
2026/03/09 09:25:47 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_4612254090087858372 CURSOR FOR SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id" args=[]
2026/03/09 09:25:47 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_ijunbezi.\"test_nullengine\" ORDER BY id" channelLen=0
2026/03/09 09:25:47 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4612254090087858372
2026/03/09 09:25:47 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4612254090087858372 records=2 bytes=13 channelLen=1
2026/03/09 09:25:47 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id" rows=2 bytes=13 channelLen=0
2026/03/09 09:25:47 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4612254090087858372
2026/03/09 09:25:47 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4612254090087858372 records=0 bytes=0 channelLen=0
2026/03/09 09:25:47 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:25:47 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:25:47 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_ijunbezi.\"test_nullengine\" ORDER BY id" rows=2 bytes=13 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:25:48 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_bcrnhuil.\"test_update_pkey_enabled\" ORDER BY id"
2026/03/09 09:25:48 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_bcrnhuil.\"test_update_pkey_enabled\" ORDER BY id"
2026/03/09 09:25:48 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_12091896746696429770 CURSOR FOR SELECT id,\"key\" FROM e2e_test_pgchcl_bcrnhuil.\"test_update_pkey_enabled\" ORDER BY id" args=[]
2026/03/09 09:25:48 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_bcrnhuil.\"test_update_pkey_enabled\" ORDER BY id" channelLen=0
2026/03/09 09:25:48 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12091896746696429770
2026/03/09 09:25:48 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12091896746696429770 records=1 bytes=10 channelLen=0
2026/03/09 09:25:48 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_bcrnhuil.\"test_update_pkey_enabled\" ORDER BY id" rows=1 bytes=10 channelLen=0
2026/03/09 09:25:48 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12091896746696429770
2026/03/09 09:25:48 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12091896746696429770 records=0 bytes=0 channelLen=0
2026/03/09 09:25:48 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_bcrnhuil.\"test_update_pkey_enabled\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:25:48 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:25:48 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_bcrnhuil.\"test_update_pkey_enabled\" ORDER BY id" rows=1 bytes=10 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:25:50 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id"
2026/03/09 09:25:50 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id"
2026/03/09 09:25:50 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_5911550220149296936 CURSOR FOR SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id" args=[]
2026/03/09 09:25:50 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_ijunbezi.\"test_nullengine\" ORDER BY id" channelLen=0
2026/03/09 09:25:50 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_5911550220149296936
2026/03/09 09:25:50 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_5911550220149296936 records=2 bytes=13 channelLen=1
2026/03/09 09:25:50 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id" rows=2 bytes=13 channelLen=0
2026/03/09 09:25:50 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_5911550220149296936
2026/03/09 09:25:50 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_5911550220149296936 records=0 bytes=0 channelLen=0
2026/03/09 09:25:50 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:25:50 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:25:50 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_ijunbezi.\"test_nullengine\" ORDER BY id" rows=2 bytes=13 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:25:54 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id"
2026/03/09 09:25:54 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id"
2026/03/09 09:25:54 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_14468308617773377176 CURSOR FOR SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id" args=[]
2026/03/09 09:25:54 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_ijunbezi.\"test_nullengine\" ORDER BY id" channelLen=0
2026/03/09 09:25:54 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_14468308617773377176
2026/03/09 09:25:54 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_14468308617773377176 records=2 bytes=13 channelLen=1
2026/03/09 09:25:54 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id" rows=2 bytes=13 channelLen=1
2026/03/09 09:25:54 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_14468308617773377176
2026/03/09 09:25:54 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_14468308617773377176 records=0 bytes=0 channelLen=0
2026/03/09 09:25:54 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:25:54 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:25:54 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_ijunbezi.\"test_nullengine\" ORDER BY id" rows=2 bytes=13 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:25:55 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"id number\",key,\"spacey column\",\"#sync_me!\",\"2birds1stone\",\"quo'te\",\"Анна Каренина\",\"人間失格\" FROM e2e_test_pgchcl_kohqcyni.\"test_unprivileged_columns\" ORDER BY id"
2026/03/09 09:25:55 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"id number\",key,\"spacey column\",\"#sync_me!\",\"2birds1stone\",\"quo'te\",\"Анна Каренина\",\"人間失格\" FROM e2e_test_pgchcl_kohqcyni.\"test_unprivileged_columns\" ORDER BY id"
2026/03/09 09:25:55 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_11561848064017410696 CURSOR FOR SELECT id,\"id number\",key,\"spacey column\",\"#sync_me!\",\"2birds1stone\",\"quo'te\",\"Анна Каренина\",\"人間失格\" FROM e2e_test_pgchcl_kohqcyni.\"test_unprivileged_columns\" ORDER BY id" args=[]
2026/03/09 09:25:55 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"id number\",key,\"spacey column\",\"#sync_me!\",\"2birds1stone\",\"quo'te\",\"Анна Каренина\",\"人間失格\" FROM e2e_test_pgchcl_kohqcyni.\"test_unprivileged_columns\" ORDER BY id" channelLen=0
2026/03/09 09:25:55 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11561848064017410696
2026/03/09 09:25:55 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11561848064017410696 records=2 bytes=120 channelLen=1
2026/03/09 09:25:55 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"id number\",key,\"spacey column\",\"#sync_me!\",\"2birds1stone\",\"quo'te\",\"Анна Каренина\",\"人間失格\" FROM e2e_test_pgchcl_kohqcyni.\"test_unprivileged_columns\" ORDER BY id" rows=2 bytes=120 channelLen=0
2026/03/09 09:25:55 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11561848064017410696
2026/03/09 09:25:55 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11561848064017410696 records=0 bytes=0 channelLen=0
2026/03/09 09:25:55 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"id number\",key,\"spacey column\",\"#sync_me!\",\"2birds1stone\",\"quo'te\",\"Анна Каренина\",\"人間失格\" FROM e2e_test_pgchcl_kohqcyni.\"test_unprivileged_columns\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:25:55 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:25:55 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"id number\",key,\"spacey column\",\"#sync_me!\",\"2birds1stone\",\"quo'te\",\"Анна Каренина\",\"人間失格\" FROM e2e_test_pgchcl_kohqcyni.\"test_unprivileged_columns\" ORDER BY id" rows=2 bytes=120 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:25:57 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id"
2026/03/09 09:25:57 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id"
2026/03/09 09:25:57 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_6219815231544464000 CURSOR FOR SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id" args=[]
2026/03/09 09:25:57 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_ijunbezi.\"test_nullengine\" ORDER BY id" channelLen=0
2026/03/09 09:25:57 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_6219815231544464000
2026/03/09 09:25:57 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_6219815231544464000 records=2 bytes=13 channelLen=1
2026/03/09 09:25:57 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id" rows=2 bytes=13 channelLen=1
2026/03/09 09:25:57 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_6219815231544464000
2026/03/09 09:25:57 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_6219815231544464000 records=0 bytes=0 channelLen=0
2026/03/09 09:25:57 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:25:57 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:25:57 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_ijunbezi.\"test_nullengine\" ORDER BY id" rows=2 bytes=13 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:25:58 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_9ubs2seh.\"test_skip_snapshot\" ORDER BY id"
2026/03/09 09:25:58 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_9ubs2seh.\"test_skip_snapshot\" ORDER BY id"
2026/03/09 09:25:58 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_12803091483740671958 CURSOR FOR SELECT id,\"key\" FROM e2e_test_pgchcl_9ubs2seh.\"test_skip_snapshot\" ORDER BY id" args=[]
2026/03/09 09:25:58 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_9ubs2seh.\"test_skip_snapshot\" ORDER BY id" channelLen=0
2026/03/09 09:25:58 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12803091483740671958
2026/03/09 09:25:58 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12803091483740671958 records=2 bytes=15 channelLen=1
2026/03/09 09:25:58 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_9ubs2seh.\"test_skip_snapshot\" ORDER BY id" rows=2 bytes=15 channelLen=1
2026/03/09 09:25:58 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12803091483740671958
2026/03/09 09:25:58 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12803091483740671958 records=0 bytes=0 channelLen=0
2026/03/09 09:25:58 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_9ubs2seh.\"test_skip_snapshot\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:25:58 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:25:58 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_9ubs2seh.\"test_skip_snapshot\" ORDER BY id" rows=2 bytes=15 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:26:01 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_9ubs2seh.\"test_skip_snapshot\" ORDER BY id"
2026/03/09 09:26:01 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_9ubs2seh.\"test_skip_snapshot\" ORDER BY id"
2026/03/09 09:26:01 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_14474510941390456774 CURSOR FOR SELECT id,\"key\" FROM e2e_test_pgchcl_9ubs2seh.\"test_skip_snapshot\" ORDER BY id" args=[]
2026/03/09 09:26:01 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_9ubs2seh.\"test_skip_snapshot\" ORDER BY id" channelLen=0
2026/03/09 09:26:01 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_14474510941390456774
2026/03/09 09:26:01 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_14474510941390456774 records=2 bytes=15 channelLen=1
2026/03/09 09:26:01 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_9ubs2seh.\"test_skip_snapshot\" ORDER BY id" rows=2 bytes=15 channelLen=0
2026/03/09 09:26:01 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_14474510941390456774
2026/03/09 09:26:01 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_14474510941390456774 records=0 bytes=0 channelLen=0
2026/03/09 09:26:01 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_9ubs2seh.\"test_skip_snapshot\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:01 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:01 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_9ubs2seh.\"test_skip_snapshot\" ORDER BY id" rows=2 bytes=15 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:26:03 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,c2,t FROM e2e_test_pgchcl_wnbhxu2x.\"test_replident_full_toast\" ORDER BY id"
2026/03/09 09:26:03 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,c2,t FROM e2e_test_pgchcl_wnbhxu2x.\"test_replident_full_toast\" ORDER BY id"
2026/03/09 09:26:03 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_12849841535655764458 CURSOR FOR SELECT id,c1,c2,t FROM e2e_test_pgchcl_wnbhxu2x.\"test_replident_full_toast\" ORDER BY id" args=[]
2026/03/09 09:26:03 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,c2,t FROM e2e_test_pgchcl_wnbhxu2x.\"test_replident_full_toast\" ORDER BY id" channelLen=0
2026/03/09 09:26:03 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12849841535655764458
2026/03/09 09:26:03 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12849841535655764458 records=1 bytes=76045 channelLen=0
2026/03/09 09:26:03 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,c2,t FROM e2e_test_pgchcl_wnbhxu2x.\"test_replident_full_toast\" ORDER BY id" rows=1 bytes=76045 channelLen=0
2026/03/09 09:26:03 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12849841535655764458
2026/03/09 09:26:03 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12849841535655764458 records=0 bytes=0 channelLen=0
2026/03/09 09:26:03 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,c2,t FROM e2e_test_pgchcl_wnbhxu2x.\"test_replident_full_toast\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:03 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:03 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,c2,t FROM e2e_test_pgchcl_wnbhxu2x.\"test_replident_full_toast\" ORDER BY id" rows=1 bytes=76045 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:26:04 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT sync_batch_id FROM metadata_last_sync_state WHERE job_name='test_normalize_metadata_with_retry_pgchcl_ebytxbeh'"
2026/03/09 09:26:04 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT sync_batch_id FROM metadata_last_sync_state WHERE job_name='test_normalize_metadata_with_retry_pgchcl_ebytxbeh'"
2026/03/09 09:26:04 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_7499472265151780887 CURSOR FOR SELECT sync_batch_id FROM metadata_last_sync_state WHERE job_name='test_normalize_metadata_with_retry_pgchcl_ebytxbeh'" args=[]
2026/03/09 09:26:04 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT sync_batch_id FROM metadata_last_sync_state WHERE job_name='test_normalize_metadata_with_retry_pgchcl_ebytxbeh'" channelLen=0
2026/03/09 09:26:04 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_7499472265151780887
2026/03/09 09:26:04 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_7499472265151780887 records=1 bytes=8 channelLen=0
2026/03/09 09:26:04 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT sync_batch_id FROM metadata_last_sync_state WHERE job_name='test_normalize_metadata_with_retry_pgchcl_ebytxbeh'" rows=1 bytes=8 channelLen=0
2026/03/09 09:26:04 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_7499472265151780887
2026/03/09 09:26:04 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_7499472265151780887 records=0 bytes=0 channelLen=0
2026/03/09 09:26:04 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT sync_batch_id FROM metadata_last_sync_state WHERE job_name='test_normalize_metadata_with_retry_pgchcl_ebytxbeh'" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:04 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:04 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT sync_batch_id FROM metadata_last_sync_state WHERE job_name='test_normalize_metadata_with_retry_pgchcl_ebytxbeh'" rows=1 bytes=8 channelLen=0
2026/03/09 09:26:04 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,t,t_nullable,t_nullable_2 FROM e2e_test_pgchcl_atnaxoom.\"test_time\" ORDER BY id"
2026/03/09 09:26:04 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,t,t_nullable,t_nullable_2 FROM e2e_test_pgchcl_atnaxoom.\"test_time\" ORDER BY id"
2026/03/09 09:26:04 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_12030020591429661642 CURSOR FOR SELECT id,t,t_nullable,t_nullable_2 FROM e2e_test_pgchcl_atnaxoom.\"test_time\" ORDER BY id" args=[]
2026/03/09 09:26:04 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,t,t_nullable,t_nullable_2 FROM e2e_test_pgchcl_atnaxoom.\"test_time\" ORDER BY id" channelLen=0
2026/03/09 09:26:04 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12030020591429661642
2026/03/09 09:26:04 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12030020591429661642 records=2 bytes=40 channelLen=1
2026/03/09 09:26:04 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,t,t_nullable,t_nullable_2 FROM e2e_test_pgchcl_atnaxoom.\"test_time\" ORDER BY id" rows=2 bytes=40 channelLen=0
2026/03/09 09:26:04 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12030020591429661642
2026/03/09 09:26:04 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12030020591429661642 records=0 bytes=0 channelLen=0
2026/03/09 09:26:04 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,t,t_nullable,t_nullable_2 FROM e2e_test_pgchcl_atnaxoom.\"test_time\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:04 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:04 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,t,t_nullable,t_nullable_2 FROM e2e_test_pgchcl_atnaxoom.\"test_time\" ORDER BY id" rows=2 bytes=40 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:26:07 INFO Received AWS credentials from peer for connector: clickhouse x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN}
2026/03/09 09:26:07 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,t,t_nullable,t_nullable_2 FROM e2e_test_pgchcl_atnaxoom.\"test_time\" ORDER BY id"
2026/03/09 09:26:07 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,t,t_nullable,t_nullable_2 FROM e2e_test_pgchcl_atnaxoom.\"test_time\" ORDER BY id"
2026/03/09 09:26:07 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_9767903579710736720 CURSOR FOR SELECT id,t,t_nullable,t_nullable_2 FROM e2e_test_pgchcl_atnaxoom.\"test_time\" ORDER BY id" args=[]
2026/03/09 09:26:07 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,t,t_nullable,t_nullable_2 FROM e2e_test_pgchcl_atnaxoom.\"test_time\" ORDER BY id" channelLen=0
2026/03/09 09:26:07 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9767903579710736720
2026/03/09 09:26:07 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9767903579710736720 records=2 bytes=40 channelLen=1
2026/03/09 09:26:07 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,t,t_nullable,t_nullable_2 FROM e2e_test_pgchcl_atnaxoom.\"test_time\" ORDER BY id" rows=2 bytes=40 channelLen=0
2026/03/09 09:26:07 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9767903579710736720
2026/03/09 09:26:07 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9767903579710736720 records=0 bytes=0 channelLen=0
2026/03/09 09:26:07 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,t,t_nullable,t_nullable_2 FROM e2e_test_pgchcl_atnaxoom.\"test_time\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:07 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:07 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,t,t_nullable,t_nullable_2 FROM e2e_test_pgchcl_atnaxoom.\"test_time\" ORDER BY id" rows=2 bytes=40 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:26:10 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pgchcl_a2eofzg6.\"test_pgvector\" ORDER BY id"
2026/03/09 09:26:10 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_7nddse7y.\"test_schema_as_column\" ORDER BY id"
2026/03/09 09:26:10 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_7nddse7y.\"test_schema_as_column\" ORDER BY id"
2026/03/09 09:26:10 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_pgchcl_a2eofzg6.\"test_pgvector\" ORDER BY id"
2026/03/09 09:26:10 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_3473321860073765021 CURSOR FOR SELECT id,\"key\" FROM e2e_test_pgchcl_7nddse7y.\"test_schema_as_column\" ORDER BY id" args=[]
2026/03/09 09:26:10 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_7nddse7y.\"test_schema_as_column\" ORDER BY id" channelLen=0
2026/03/09 09:26:10 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_15999348380727059380 CURSOR FOR SELECT id,v1,hv,sv FROM e2e_test_pgchcl_a2eofzg6.\"test_pgvector\" ORDER BY id" args=[]
2026/03/09 09:26:10 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_pgchcl_a2eofzg6.\"test_pgvector\" ORDER BY id" channelLen=0
2026/03/09 09:26:10 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_3473321860073765021
2026/03/09 09:26:10 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_15999348380727059380
2026/03/09 09:26:10 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_3473321860073765021 records=2 bytes=15 channelLen=1
2026/03/09 09:26:10 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_7nddse7y.\"test_schema_as_column\" ORDER BY id" rows=2 bytes=15 channelLen=0
2026/03/09 09:26:10 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_3473321860073765021
2026/03/09 09:26:10 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_3473321860073765021 records=0 bytes=0 channelLen=0
2026/03/09 09:26:10 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_7nddse7y.\"test_schema_as_column\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:10 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:10 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_15999348380727059380 records=2 bytes=76 channelLen=1
2026/03/09 09:26:10 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_pgchcl_a2eofzg6.\"test_pgvector\" ORDER BY id" rows=2 bytes=76 channelLen=0
2026/03/09 09:26:10 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_15999348380727059380
2026/03/09 09:26:10 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_15999348380727059380 records=0 bytes=0 channelLen=0
2026/03/09 09:26:10 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_pgchcl_a2eofzg6.\"test_pgvector\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:10 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:10 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_7nddse7y.\"test_schema_as_column\" ORDER BY id" rows=2 bytes=15 channelLen=0
2026/03/09 09:26:10 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_pgchcl_a2eofzg6.\"test_pgvector\" ORDER BY id" rows=2 bytes=76 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:26:15 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id"
2026/03/09 09:26:15 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id"
2026/03/09 09:26:15 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_9499646353392079200 CURSOR FOR SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id" args=[]
2026/03/09 09:26:15 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id" channelLen=0
2026/03/09 09:26:15 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9499646353392079200
2026/03/09 09:26:15 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9499646353392079200 records=1 bytes=16 channelLen=0
2026/03/09 09:26:15 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id" rows=1 bytes=16 channelLen=0
2026/03/09 09:26:15 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9499646353392079200
2026/03/09 09:26:15 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9499646353392079200 records=0 bytes=0 channelLen=0
2026/03/09 09:26:15 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:15 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:15 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id" rows=1 bytes=16 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:26:17 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,v1,hv,sv FROM e2e_test_pgchcl_a2eofzg6.\"test_pgvector\" ORDER BY id"
2026/03/09 09:26:17 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_pgchcl_a2eofzg6.\"test_pgvector\" ORDER BY id"
2026/03/09 09:26:17 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_15302270073747739125 CURSOR FOR SELECT id,v1,hv,sv FROM e2e_test_pgchcl_a2eofzg6.\"test_pgvector\" ORDER BY id" args=[]
2026/03/09 09:26:17 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_pgchcl_a2eofzg6.\"test_pgvector\" ORDER BY id" channelLen=0
2026/03/09 09:26:17 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_15302270073747739125
2026/03/09 09:26:17 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_15302270073747739125 records=2 bytes=76 channelLen=1
2026/03/09 09:26:17 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_pgchcl_a2eofzg6.\"test_pgvector\" ORDER BY id" rows=2 bytes=76 channelLen=0
2026/03/09 09:26:17 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_15302270073747739125
2026/03/09 09:26:17 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_15302270073747739125 records=0 bytes=0 channelLen=0
2026/03/09 09:26:17 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_pgchcl_a2eofzg6.\"test_pgvector\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:17 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:17 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_pgchcl_a2eofzg6.\"test_pgvector\" ORDER BY id" rows=2 bytes=76 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:26:19 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id"
2026/03/09 09:26:19 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id"
2026/03/09 09:26:19 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_5807313246390371057 CURSOR FOR SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id" args=[]
2026/03/09 09:26:19 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id" channelLen=0
2026/03/09 09:26:19 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_5807313246390371057
2026/03/09 09:26:19 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_5807313246390371057 records=1 bytes=16 channelLen=0
2026/03/09 09:26:19 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id" rows=1 bytes=16 channelLen=0
2026/03/09 09:26:19 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_5807313246390371057
2026/03/09 09:26:19 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_5807313246390371057 records=0 bytes=0 channelLen=0
2026/03/09 09:26:19 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:19 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:19 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id" rows=1 bytes=16 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:26:22 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id"
2026/03/09 09:26:22 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id"
2026/03/09 09:26:22 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_6456969069205649838 CURSOR FOR SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id" args=[]
2026/03/09 09:26:22 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id" channelLen=0
2026/03/09 09:26:22 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_6456969069205649838
2026/03/09 09:26:22 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_6456969069205649838 records=1 bytes=16 channelLen=0
2026/03/09 09:26:22 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id" rows=1 bytes=16 channelLen=0
2026/03/09 09:26:22 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_6456969069205649838
2026/03/09 09:26:22 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_6456969069205649838 records=0 bytes=0 channelLen=0
2026/03/09 09:26:22 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:22 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:22 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id" rows=1 bytes=16 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:26:23 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id"
2026/03/09 09:26:23 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id"
2026/03/09 09:26:23 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_15091908472597749264 CURSOR FOR SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id" args=[]
2026/03/09 09:26:23 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id" channelLen=0
2026/03/09 09:26:23 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_15091908472597749264
2026/03/09 09:26:23 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_15091908472597749264 records=1 bytes=16 channelLen=0
2026/03/09 09:26:23 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id" rows=1 bytes=16 channelLen=0
2026/03/09 09:26:23 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_15091908472597749264
2026/03/09 09:26:23 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_15091908472597749264 records=0 bytes=0 channelLen=0
2026/03/09 09:26:23 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:23 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:23 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id" rows=1 bytes=16 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:26:25 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id"
2026/03/09 09:26:25 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id"
2026/03/09 09:26:25 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_7130682161853025956 CURSOR FOR SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id" args=[]
2026/03/09 09:26:25 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_ijunbezi.\"test_nullengine\" ORDER BY id" channelLen=0
2026/03/09 09:26:25 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_7130682161853025956
2026/03/09 09:26:25 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_7130682161853025956 records=3 bytes=26 channelLen=2
2026/03/09 09:26:25 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id" rows=3 bytes=26 channelLen=0
2026/03/09 09:26:25 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_7130682161853025956
2026/03/09 09:26:25 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_7130682161853025956 records=0 bytes=0 channelLen=0
2026/03/09 09:26:25 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_ijunbezi.\"test_nullengine\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:25 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:25 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_ijunbezi.\"test_nullengine\" ORDER BY id" rows=3 bytes=26 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:26:26 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id"
2026/03/09 09:26:26 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id"
2026/03/09 09:26:26 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_4685185475325808147 CURSOR FOR SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id" args=[]
2026/03/09 09:26:26 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id" channelLen=0
2026/03/09 09:26:26 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4685185475325808147
2026/03/09 09:26:26 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4685185475325808147 records=1 bytes=16 channelLen=0
2026/03/09 09:26:26 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id" rows=1 bytes=16 channelLen=0
2026/03/09 09:26:26 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4685185475325808147
2026/03/09 09:26:26 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4685185475325808147 records=0 bytes=0 channelLen=0
2026/03/09 09:26:26 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:26 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:26 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,\"Ac2\",\"Ac3\",c4 FROM e2e_test_pgchcl_bkpisckb.\"test_nullable_sc_ch_replident_full\" ORDER BY id" rows=1 bytes=16 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:26:29 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,t FROM e2e_test_pgchcl_pyblsnnf.\"test_exclude_ch\" ORDER BY id"
2026/03/09 09:26:29 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,t FROM e2e_test_pgchcl_pyblsnnf.\"test_exclude_ch\" ORDER BY id"
2026/03/09 09:26:29 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_17133555044944381217 CURSOR FOR SELECT id,c1,t FROM e2e_test_pgchcl_pyblsnnf.\"test_exclude_ch\" ORDER BY id" args=[]
2026/03/09 09:26:29 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,t FROM e2e_test_pgchcl_pyblsnnf.\"test_exclude_ch\" ORDER BY id" channelLen=0
2026/03/09 09:26:29 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_17133555044944381217
2026/03/09 09:26:29 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_17133555044944381217 records=4 bytes=80 channelLen=3
2026/03/09 09:26:29 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,t FROM e2e_test_pgchcl_pyblsnnf.\"test_exclude_ch\" ORDER BY id" rows=4 bytes=80 channelLen=0
2026/03/09 09:26:29 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_17133555044944381217
2026/03/09 09:26:29 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_17133555044944381217 records=0 bytes=0 channelLen=0
2026/03/09 09:26:29 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,t FROM e2e_test_pgchcl_pyblsnnf.\"test_exclude_ch\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:29 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:29 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,t FROM e2e_test_pgchcl_pyblsnnf.\"test_exclude_ch\" ORDER BY id" rows=4 bytes=80 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:26:31 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,c2 FROM e2e_test_pgchcl_ndlxekdc.\"test_nullable_sc_ch\" ORDER BY id"
2026/03/09 09:26:31 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,c2 FROM e2e_test_pgchcl_ndlxekdc.\"test_nullable_sc_ch\" ORDER BY id"
2026/03/09 09:26:31 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_14451010101396669219 CURSOR FOR SELECT id,c1,c2 FROM e2e_test_pgchcl_ndlxekdc.\"test_nullable_sc_ch\" ORDER BY id" args=[]
2026/03/09 09:26:31 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,c2 FROM e2e_test_pgchcl_ndlxekdc.\"test_nullable_sc_ch\" ORDER BY id" channelLen=0
2026/03/09 09:26:31 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_14451010101396669219
2026/03/09 09:26:31 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_14451010101396669219 records=1 bytes=8 channelLen=0
2026/03/09 09:26:31 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,c2 FROM e2e_test_pgchcl_ndlxekdc.\"test_nullable_sc_ch\" ORDER BY id" rows=1 bytes=8 channelLen=0
2026/03/09 09:26:31 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_14451010101396669219
2026/03/09 09:26:31 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_14451010101396669219 records=0 bytes=0 channelLen=0
2026/03/09 09:26:31 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,c2 FROM e2e_test_pgchcl_ndlxekdc.\"test_nullable_sc_ch\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:31 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:31 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,c2 FROM e2e_test_pgchcl_ndlxekdc.\"test_nullable_sc_ch\" ORDER BY id" rows=1 bytes=8 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:26:32 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,t FROM e2e_test_pgchcl_pyblsnnf.\"test_exclude_ch\" ORDER BY id"
2026/03/09 09:26:32 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,t FROM e2e_test_pgchcl_pyblsnnf.\"test_exclude_ch\" ORDER BY id"
2026/03/09 09:26:32 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_5306348822449709896 CURSOR FOR SELECT id,c1,t FROM e2e_test_pgchcl_pyblsnnf.\"test_exclude_ch\" ORDER BY id" args=[]
2026/03/09 09:26:32 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,t FROM e2e_test_pgchcl_pyblsnnf.\"test_exclude_ch\" ORDER BY id" channelLen=0
2026/03/09 09:26:32 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_5306348822449709896
2026/03/09 09:26:32 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_5306348822449709896 records=4 bytes=80 channelLen=3
2026/03/09 09:26:32 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,t FROM e2e_test_pgchcl_pyblsnnf.\"test_exclude_ch\" ORDER BY id" rows=4 bytes=80 channelLen=0
2026/03/09 09:26:32 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_5306348822449709896
2026/03/09 09:26:32 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_5306348822449709896 records=0 bytes=0 channelLen=0
2026/03/09 09:26:32 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,t FROM e2e_test_pgchcl_pyblsnnf.\"test_exclude_ch\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:32 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:32 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,t FROM e2e_test_pgchcl_pyblsnnf.\"test_exclude_ch\" ORDER BY id" rows=4 bytes=80 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:26:33 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_gnwadxep.\"test_nullable_column\" ORDER BY id"
2026/03/09 09:26:33 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_gnwadxep.\"test_nullable_column\" ORDER BY id"
2026/03/09 09:26:33 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_1503228456314209050 CURSOR FOR SELECT id,ky,val,n,t FROM e2e_test_pgchcl_gnwadxep.\"test_nullable_column\" ORDER BY id" args=[]
2026/03/09 09:26:33 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_gnwadxep.\"test_nullable_column\" ORDER BY id" channelLen=0
2026/03/09 09:26:33 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_1503228456314209050
2026/03/09 09:26:33 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_1503228456314209050 records=2 bytes=15 channelLen=1
2026/03/09 09:26:33 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_gnwadxep.\"test_nullable_column\" ORDER BY id" rows=2 bytes=15 channelLen=1
2026/03/09 09:26:33 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_1503228456314209050
2026/03/09 09:26:33 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_1503228456314209050 records=0 bytes=0 channelLen=0
2026/03/09 09:26:33 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_gnwadxep.\"test_nullable_column\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:33 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:33 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_gnwadxep.\"test_nullable_column\" ORDER BY id" rows=2 bytes=15 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:26:35 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,c2 FROM e2e_test_pgchcl_ndlxekdc.\"test_nullable_sc_ch\" ORDER BY id"
2026/03/09 09:26:35 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,c2 FROM e2e_test_pgchcl_ndlxekdc.\"test_nullable_sc_ch\" ORDER BY id"
2026/03/09 09:26:35 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_12786661370808832051 CURSOR FOR SELECT id,c1,c2 FROM e2e_test_pgchcl_ndlxekdc.\"test_nullable_sc_ch\" ORDER BY id" args=[]
2026/03/09 09:26:35 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,c2 FROM e2e_test_pgchcl_ndlxekdc.\"test_nullable_sc_ch\" ORDER BY id" channelLen=0
2026/03/09 09:26:35 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12786661370808832051
2026/03/09 09:26:35 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12786661370808832051 records=1 bytes=8 channelLen=0
2026/03/09 09:26:35 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,c2 FROM e2e_test_pgchcl_ndlxekdc.\"test_nullable_sc_ch\" ORDER BY id" rows=1 bytes=8 channelLen=0
2026/03/09 09:26:35 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12786661370808832051
2026/03/09 09:26:35 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_12786661370808832051 records=0 bytes=0 channelLen=0
2026/03/09 09:26:35 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,c2 FROM e2e_test_pgchcl_ndlxekdc.\"test_nullable_sc_ch\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:35 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:35 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,c1,c2 FROM e2e_test_pgchcl_ndlxekdc.\"test_nullable_sc_ch\" ORDER BY id" rows=1 bytes=8 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:26:36 INFO Received AWS credentials from peer for connector: clickhouse x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN}
2026/03/09 09:26:36 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id FROM e2e_test_pgchcl_yliivmr4.\"test_infinite_time\" ORDER BY id"
2026/03/09 09:26:36 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id FROM e2e_test_pgchcl_yliivmr4.\"test_infinite_time\" ORDER BY id"
2026/03/09 09:26:36 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_2744022525672803757 CURSOR FOR SELECT id FROM e2e_test_pgchcl_yliivmr4.\"test_infinite_time\" ORDER BY id" args=[]
2026/03/09 09:26:36 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id FROM e2e_test_pgchcl_yliivmr4.\"test_infinite_time\" ORDER BY id" channelLen=0
2026/03/09 09:26:36 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_2744022525672803757
2026/03/09 09:26:36 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_2744022525672803757 records=2 bytes=8 channelLen=1
2026/03/09 09:26:36 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id FROM e2e_test_pgchcl_yliivmr4.\"test_infinite_time\" ORDER BY id" rows=2 bytes=8 channelLen=0
2026/03/09 09:26:36 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_2744022525672803757
2026/03/09 09:26:36 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_2744022525672803757 records=0 bytes=0 channelLen=0
2026/03/09 09:26:36 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id FROM e2e_test_pgchcl_yliivmr4.\"test_infinite_time\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:36 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:36 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id FROM e2e_test_pgchcl_yliivmr4.\"test_infinite_time\" ORDER BY id" rows=2 bytes=8 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:26:38 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_u11vaeky.\"test_nullable_mirror\" ORDER BY id"
2026/03/09 09:26:38 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_u11vaeky.\"test_nullable_mirror\" ORDER BY id"
2026/03/09 09:26:38 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_1525277896265460396 CURSOR FOR SELECT id,ky,val,n,t FROM e2e_test_pgchcl_u11vaeky.\"test_nullable_mirror\" ORDER BY id" args=[]
2026/03/09 09:26:38 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_u11vaeky.\"test_nullable_mirror\" ORDER BY id" channelLen=0
2026/03/09 09:26:38 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_1525277896265460396
2026/03/09 09:26:38 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_1525277896265460396 records=2 bytes=15 channelLen=1
2026/03/09 09:26:38 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_u11vaeky.\"test_nullable_mirror\" ORDER BY id" rows=2 bytes=15 channelLen=1
2026/03/09 09:26:38 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_1525277896265460396
2026/03/09 09:26:38 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_1525277896265460396 records=0 bytes=0 channelLen=0
2026/03/09 09:26:38 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_u11vaeky.\"test_nullable_mirror\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:38 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:38 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_u11vaeky.\"test_nullable_mirror\" ORDER BY id" rows=2 bytes=15 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:26:39 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id FROM e2e_test_pgchcl_yliivmr4.\"test_infinite_time\" ORDER BY id"
2026/03/09 09:26:39 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id FROM e2e_test_pgchcl_yliivmr4.\"test_infinite_time\" ORDER BY id"
2026/03/09 09:26:39 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_8535594292894888645 CURSOR FOR SELECT id FROM e2e_test_pgchcl_yliivmr4.\"test_infinite_time\" ORDER BY id" args=[]
2026/03/09 09:26:39 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id FROM e2e_test_pgchcl_yliivmr4.\"test_infinite_time\" ORDER BY id" channelLen=0
2026/03/09 09:26:39 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_8535594292894888645
2026/03/09 09:26:39 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_8535594292894888645 records=2 bytes=8 channelLen=1
2026/03/09 09:26:39 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id FROM e2e_test_pgchcl_yliivmr4.\"test_infinite_time\" ORDER BY id" rows=2 bytes=8 channelLen=0
2026/03/09 09:26:39 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_8535594292894888645
2026/03/09 09:26:39 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_8535594292894888645 records=0 bytes=0 channelLen=0
2026/03/09 09:26:39 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id FROM e2e_test_pgchcl_yliivmr4.\"test_infinite_time\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:39 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:39 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id FROM e2e_test_pgchcl_yliivmr4.\"test_infinite_time\" ORDER BY id" rows=2 bytes=8 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:26:40 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_gnwadxep.\"test_nullable_column\" ORDER BY id"
2026/03/09 09:26:40 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_gnwadxep.\"test_nullable_column\" ORDER BY id"
2026/03/09 09:26:40 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_3434405088179030196 CURSOR FOR SELECT id,ky,val,n,t FROM e2e_test_pgchcl_gnwadxep.\"test_nullable_column\" ORDER BY id" args=[]
2026/03/09 09:26:40 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_gnwadxep.\"test_nullable_column\" ORDER BY id" channelLen=0
2026/03/09 09:26:40 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_3434405088179030196
2026/03/09 09:26:40 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_3434405088179030196 records=2 bytes=15 channelLen=1
2026/03/09 09:26:40 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_gnwadxep.\"test_nullable_column\" ORDER BY id" rows=2 bytes=15 channelLen=1
2026/03/09 09:26:40 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_3434405088179030196
2026/03/09 09:26:40 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_3434405088179030196 records=0 bytes=0 channelLen=0
2026/03/09 09:26:40 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_gnwadxep.\"test_nullable_column\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:40 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:40 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_gnwadxep.\"test_nullable_column\" ORDER BY id" rows=2 bytes=15 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:26:42 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_u11vaeky.\"test_nullable_mirror\" ORDER BY id"
2026/03/09 09:26:42 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_u11vaeky.\"test_nullable_mirror\" ORDER BY id"
2026/03/09 09:26:42 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_244252163991262995 CURSOR FOR SELECT id,ky,val,n,t FROM e2e_test_pgchcl_u11vaeky.\"test_nullable_mirror\" ORDER BY id" args=[]
2026/03/09 09:26:42 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_u11vaeky.\"test_nullable_mirror\" ORDER BY id" channelLen=0
2026/03/09 09:26:42 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_244252163991262995
2026/03/09 09:26:42 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_244252163991262995 records=2 bytes=15 channelLen=1
2026/03/09 09:26:42 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_u11vaeky.\"test_nullable_mirror\" ORDER BY id" rows=2 bytes=15 channelLen=0
2026/03/09 09:26:42 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_244252163991262995
2026/03/09 09:26:42 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_244252163991262995 records=0 bytes=0 channelLen=0
2026/03/09 09:26:42 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_u11vaeky.\"test_nullable_mirror\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:42 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:42 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_u11vaeky.\"test_nullable_mirror\" ORDER BY id" rows=2 bytes=15 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:26:43 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id FROM e2e_test_pgchcl_yliivmr4.\"test_infinite_time\" ORDER BY id"
2026/03/09 09:26:43 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id FROM e2e_test_pgchcl_yliivmr4.\"test_infinite_time\" ORDER BY id"
2026/03/09 09:26:43 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_11721488928355994884 CURSOR FOR SELECT id FROM e2e_test_pgchcl_yliivmr4.\"test_infinite_time\" ORDER BY id" args=[]
2026/03/09 09:26:43 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id FROM e2e_test_pgchcl_yliivmr4.\"test_infinite_time\" ORDER BY id" channelLen=0
2026/03/09 09:26:43 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11721488928355994884
2026/03/09 09:26:43 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11721488928355994884 records=2 bytes=8 channelLen=1
2026/03/09 09:26:43 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id FROM e2e_test_pgchcl_yliivmr4.\"test_infinite_time\" ORDER BY id" rows=2 bytes=8 channelLen=1
2026/03/09 09:26:43 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11721488928355994884
2026/03/09 09:26:43 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11721488928355994884 records=0 bytes=0 channelLen=0
2026/03/09 09:26:43 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id FROM e2e_test_pgchcl_yliivmr4.\"test_infinite_time\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:43 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:43 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id FROM e2e_test_pgchcl_yliivmr4.\"test_infinite_time\" ORDER BY id" rows=2 bytes=8 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:26:45 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_gnwadxep.\"test_nullable_column\" ORDER BY id"
2026/03/09 09:26:45 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_gnwadxep.\"test_nullable_column\" ORDER BY id"
2026/03/09 09:26:45 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_8866904160704388961 CURSOR FOR SELECT id,ky,val,n,t FROM e2e_test_pgchcl_gnwadxep.\"test_nullable_column\" ORDER BY id" args=[]
2026/03/09 09:26:45 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_gnwadxep.\"test_nullable_column\" ORDER BY id" channelLen=0
2026/03/09 09:26:45 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_8866904160704388961
2026/03/09 09:26:45 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_8866904160704388961 records=2 bytes=15 channelLen=1
2026/03/09 09:26:45 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_gnwadxep.\"test_nullable_column\" ORDER BY id" rows=2 bytes=15 channelLen=0
2026/03/09 09:26:45 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_8866904160704388961
2026/03/09 09:26:45 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_8866904160704388961 records=0 bytes=0 channelLen=0
2026/03/09 09:26:45 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_gnwadxep.\"test_nullable_column\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:45 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:45 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,ky,val,n,t FROM e2e_test_pgchcl_gnwadxep.\"test_nullable_column\" ORDER BY id" rows=2 bytes=15 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:26:46 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id FROM e2e_test_pgchcl_yliivmr4.\"test_infinite_time\" ORDER BY id"
2026/03/09 09:26:46 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id FROM e2e_test_pgchcl_yliivmr4.\"test_infinite_time\" ORDER BY id"
2026/03/09 09:26:46 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_13654315219654734741 CURSOR FOR SELECT id FROM e2e_test_pgchcl_yliivmr4.\"test_infinite_time\" ORDER BY id" args=[]
2026/03/09 09:26:46 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id FROM e2e_test_pgchcl_yliivmr4.\"test_infinite_time\" ORDER BY id" channelLen=0
2026/03/09 09:26:46 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_13654315219654734741
2026/03/09 09:26:46 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_13654315219654734741 records=2 bytes=8 channelLen=1
2026/03/09 09:26:46 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id FROM e2e_test_pgchcl_yliivmr4.\"test_infinite_time\" ORDER BY id" rows=2 bytes=8 channelLen=1
2026/03/09 09:26:46 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_13654315219654734741
2026/03/09 09:26:46 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_13654315219654734741 records=0 bytes=0 channelLen=0
2026/03/09 09:26:46 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id FROM e2e_test_pgchcl_yliivmr4.\"test_infinite_time\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:46 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:46 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id FROM e2e_test_pgchcl_yliivmr4.\"test_infinite_time\" ORDER BY id" rows=2 bytes=8 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:26:52 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT b, a, c FROM e2e_test_pgchcl_okuaek5r.\"test_composite_pkey_ordering\" ORDER BY id"
2026/03/09 09:26:52 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT b, a, c FROM e2e_test_pgchcl_okuaek5r.\"test_composite_pkey_ordering\" ORDER BY id"
2026/03/09 09:26:52 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_4202652657060124175 CURSOR FOR SELECT b, a, c FROM e2e_test_pgchcl_okuaek5r.\"test_composite_pkey_ordering\" ORDER BY id" args=[]
2026/03/09 09:26:52 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT b, a, c FROM e2e_test_pgchcl_okuaek5r.\"test_composite_pkey_ordering\" ORDER BY id" channelLen=0
2026/03/09 09:26:52 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4202652657060124175
2026/03/09 09:26:52 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4202652657060124175 records=2 bytes=24 channelLen=1
2026/03/09 09:26:52 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT b, a, c FROM e2e_test_pgchcl_okuaek5r.\"test_composite_pkey_ordering\" ORDER BY id" rows=2 bytes=24 channelLen=0
2026/03/09 09:26:52 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4202652657060124175
2026/03/09 09:26:52 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_4202652657060124175 records=0 bytes=0 channelLen=0
2026/03/09 09:26:52 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT b, a, c FROM e2e_test_pgchcl_okuaek5r.\"test_composite_pkey_ordering\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:52 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:52 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT b, a, c FROM e2e_test_pgchcl_okuaek5r.\"test_composite_pkey_ordering\" ORDER BY id" rows=2 bytes=24 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:26:53 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_1rmhlcvp.\"test_update_pkey_chunking_initial_load_enabled\" ORDER BY id"
2026/03/09 09:26:53 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_1rmhlcvp.\"test_update_pkey_chunking_initial_load_enabled\" ORDER BY id"
2026/03/09 09:26:53 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_15463879381589862312 CURSOR FOR SELECT id,\"key\" FROM e2e_test_pgchcl_1rmhlcvp.\"test_update_pkey_chunking_initial_load_enabled\" ORDER BY id" args=[]
2026/03/09 09:26:53 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_1rmhlcvp.\"test_update_pkey_chunking_initial_load_enabled\" ORDER BY id" channelLen=0
2026/03/09 09:26:53 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_15463879381589862312
2026/03/09 09:26:53 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_15463879381589862312 records=4 bytes=40 channelLen=3
2026/03/09 09:26:53 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_1rmhlcvp.\"test_update_pkey_chunking_initial_load_enabled\" ORDER BY id" rows=4 bytes=40 channelLen=0
2026/03/09 09:26:53 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_15463879381589862312
2026/03/09 09:26:53 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_15463879381589862312 records=0 bytes=0 channelLen=0
2026/03/09 09:26:53 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_1rmhlcvp.\"test_update_pkey_chunking_initial_load_enabled\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:53 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:53 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_1rmhlcvp.\"test_update_pkey_chunking_initial_load_enabled\" ORDER BY id" rows=4 bytes=40 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:26:57 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_lcsavpyg.\"test_extra_ch_cols\" ORDER BY id"
2026/03/09 09:26:57 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_lcsavpyg.\"test_extra_ch_cols\" ORDER BY id"
2026/03/09 09:26:57 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_3237955736833985166 CURSOR FOR SELECT id,\"key\" FROM e2e_test_pgchcl_lcsavpyg.\"test_extra_ch_cols\" ORDER BY id" args=[]
2026/03/09 09:26:57 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_lcsavpyg.\"test_extra_ch_cols\" ORDER BY id" channelLen=0
2026/03/09 09:26:57 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_3237955736833985166
2026/03/09 09:26:57 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_3237955736833985166 records=2 bytes=15 channelLen=1
2026/03/09 09:26:57 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_lcsavpyg.\"test_extra_ch_cols\" ORDER BY id" rows=2 bytes=15 channelLen=1
2026/03/09 09:26:57 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_3237955736833985166
2026/03/09 09:26:57 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_3237955736833985166 records=0 bytes=0 channelLen=0
2026/03/09 09:26:57 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT id,\"key\" FROM e2e_test_pgchcl_lcsavpyg.\"test_extra_ch_cols\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:26:57 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:26:57 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_lcsavpyg.\"test_extra_ch_cols\" ORDER BY id" rows=2 bytes=15 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:27:02 INFO Executing and processing query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT b, a, c FROM e2e_test_pgchcl_okuaek5r.\"test_composite_pkey_ordering\" ORDER BY id"
2026/03/09 09:27:02 INFO Executing and processing query stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT b, a, c FROM e2e_test_pgchcl_okuaek5r.\"test_composite_pkey_ordering\" ORDER BY id"
2026/03/09 09:27:02 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_8441594774526387350 CURSOR FOR SELECT b, a, c FROM e2e_test_pgchcl_okuaek5r.\"test_composite_pkey_ordering\" ORDER BY id" args=[]
2026/03/09 09:27:02 INFO [pg_query_executor] fetching rows start x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT b, a, c FROM e2e_test_pgchcl_okuaek5r.\"test_composite_pkey_ordering\" ORDER BY id" channelLen=0
2026/03/09 09:27:02 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_8441594774526387350
2026/03/09 09:27:02 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_8441594774526387350 records=2 bytes=24 channelLen=1
2026/03/09 09:27:02 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT b, a, c FROM e2e_test_pgchcl_okuaek5r.\"test_composite_pkey_ordering\" ORDER BY id" rows=2 bytes=24 channelLen=1
2026/03/09 09:27:02 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_8441594774526387350
2026/03/09 09:27:02 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_8441594774526387350 records=0 bytes=0 channelLen=0
2026/03/09 09:27:02 INFO [pg_query_executor] fetched rows x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT b, a, c FROM e2e_test_pgchcl_okuaek5r.\"test_composite_pkey_ordering\" ORDER BY id" rows=0 bytes=0 channelLen=0
2026/03/09 09:27:02 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:27:02 INFO [pg_query_executor] committed transaction for query x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart query="SELECT b, a, c FROM e2e_test_pgchcl_okuaek5r.\"test_composite_pkey_ordering\" ORDER BY id" rows=2 bytes=24 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:27: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('cancel_table_addition_test_flow_no_removal_assumed_with_removal_api_tj4yjqgs' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_tj4yjqgs.t5_mv_api_tj4yjqgs%'"
2026/03/09 09:27: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('cancel_table_addition_test_flow_no_removal_assumed_with_removal_api_tj4yjqgs' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_tj4yjqgs.t5_mv_api_tj4yjqgs%'"
2026/03/09 09:27:26 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_5890643549159169634 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_tj4yjqgs' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_tj4yjqgs.t5_mv_api_tj4yjqgs%'" args=[]
2026/03/09 09:27: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('cancel_table_addition_test_flow_no_removal_assumed_with_removal_api_tj4yjqgs' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_tj4yjqgs.t5_mv_api_tj4yjqgs%'" channelLen=0
2026/03/09 09:27:26 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_5890643549159169634
2026/03/09 09:27:26 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_5890643549159169634 records=1 bytes=8 channelLen=0
2026/03/09 09:27: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('cancel_table_addition_test_flow_no_removal_assumed_with_removal_api_tj4yjqgs' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_tj4yjqgs.t5_mv_api_tj4yjqgs%'" rows=1 bytes=8 channelLen=0
2026/03/09 09:27:26 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_5890643549159169634
2026/03/09 09:27:26 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_5890643549159169634 records=0 bytes=0 channelLen=0
2026/03/09 09:27: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('cancel_table_addition_test_flow_no_removal_assumed_with_removal_api_tj4yjqgs' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_tj4yjqgs.t5_mv_api_tj4yjqgs%'" rows=0 bytes=0 channelLen=0
2026/03/09 09:27:26 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:27: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('cancel_table_addition_test_flow_no_removal_assumed_with_removal_api_tj4yjqgs' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_tj4yjqgs.t5_mv_api_tj4yjqgs%'" rows=1 bytes=8 channelLen=0
2026/03/09 09:27: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_add_cancel_api_ykzvxqmd' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_ykzvxqmd.t2_mv_first%'"
2026/03/09 09:27: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_add_cancel_api_ykzvxqmd' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_ykzvxqmd.t2_mv_first%'"
2026/03/09 09:27:26 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_11292409658793525988 CURSOR FOR \n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_ykzvxqmd' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_ykzvxqmd.t2_mv_first%'" args=[]
2026/03/09 09:27: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_add_cancel_api_ykzvxqmd' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_ykzvxqmd.t2_mv_first%'" channelLen=0
2026/03/09 09:27:26 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11292409658793525988
2026/03/09 09:27:26 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11292409658793525988 records=1 bytes=8 channelLen=0
2026/03/09 09:27: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_add_cancel_api_ykzvxqmd' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_ykzvxqmd.t2_mv_first%'" rows=1 bytes=8 channelLen=0
2026/03/09 09:27:26 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11292409658793525988
2026/03/09 09:27:26 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_11292409658793525988 records=0 bytes=0 channelLen=0
2026/03/09 09:27: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_add_cancel_api_ykzvxqmd' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_ykzvxqmd.t2_mv_first%'" rows=0 bytes=0 channelLen=0
2026/03/09 09:27:26 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:27: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_add_cancel_api_ykzvxqmd' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_ykzvxqmd.t2_mv_first%'" rows=1 bytes=8 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:27: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('test_cancel_add_cancel_api_ykzvxqmd' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_ykzvxqmd.t2_mv_third%'"
2026/03/09 09:27: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('test_cancel_add_cancel_api_ykzvxqmd' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_ykzvxqmd.t2_mv_third%'"
2026/03/09 09:27:52 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_9422651859852645440 CURSOR FOR \n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_ykzvxqmd' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_ykzvxqmd.t2_mv_third%'" args=[]
2026/03/09 09:27: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('test_cancel_add_cancel_api_ykzvxqmd' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_ykzvxqmd.t2_mv_third%'" channelLen=0
2026/03/09 09:27:52 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9422651859852645440
2026/03/09 09:27:52 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9422651859852645440 records=1 bytes=8 channelLen=0
2026/03/09 09:27: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('test_cancel_add_cancel_api_ykzvxqmd' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_ykzvxqmd.t2_mv_third%'" rows=1 bytes=8 channelLen=0
2026/03/09 09:27:52 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9422651859852645440
2026/03/09 09:27:52 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9422651859852645440 records=0 bytes=0 channelLen=0
2026/03/09 09:27: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('test_cancel_add_cancel_api_ykzvxqmd' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_ykzvxqmd.t2_mv_third%'" rows=0 bytes=0 channelLen=0
2026/03/09 09:27:52 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:27: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('test_cancel_add_cancel_api_ykzvxqmd' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_ykzvxqmd.t2_mv_third%'" rows=1 bytes=8 channelLen=0
2026/03/09 09:27:52 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_api_syuaijrl.valid
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:27:54 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_pyenlkhk' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_pyenlkhk.t2_mv_first%'"
2026/03/09 09:27:54 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_pyenlkhk' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_pyenlkhk.t2_mv_first%'"
2026/03/09 09:27:54 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_6862539667005783867 CURSOR FOR \n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_pyenlkhk' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_pyenlkhk.t2_mv_first%'" args=[]
2026/03/09 09:27:54 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_pyenlkhk' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_pyenlkhk.t2_mv_first%'" channelLen=0
2026/03/09 09:27:54 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_6862539667005783867
2026/03/09 09:27:54 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_6862539667005783867 records=1 bytes=8 channelLen=0
2026/03/09 09:27:54 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_pyenlkhk' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_pyenlkhk.t2_mv_first%'" rows=1 bytes=8 channelLen=0
2026/03/09 09:27:54 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_6862539667005783867
2026/03/09 09:27:54 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_6862539667005783867 records=0 bytes=0 channelLen=0
2026/03/09 09:27:54 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_pyenlkhk' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_pyenlkhk.t2_mv_first%'" rows=0 bytes=0 channelLen=0
2026/03/09 09:27:54 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:27:54 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_pyenlkhk' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_pyenlkhk.t2_mv_first%'" rows=1 bytes=8 channelLen=0
2026/03/09 09:27:54 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_yvf2m3py' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_yvf2m3py.t5_mv_api_yvf2m3py%'"
2026/03/09 09:27:54 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_yvf2m3py' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_yvf2m3py.t5_mv_api_yvf2m3py%'"
2026/03/09 09:27:54 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_5917121408233006374 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_yvf2m3py' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_yvf2m3py.t5_mv_api_yvf2m3py%'" args=[]
2026/03/09 09:27:54 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_yvf2m3py' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_yvf2m3py.t5_mv_api_yvf2m3py%'" channelLen=0
2026/03/09 09:27:54 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_5917121408233006374
2026/03/09 09:27:54 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_5917121408233006374 records=1 bytes=8 channelLen=0
2026/03/09 09:27:54 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_yvf2m3py' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_yvf2m3py.t5_mv_api_yvf2m3py%'" rows=1 bytes=8 channelLen=0
2026/03/09 09:27:54 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_5917121408233006374
2026/03/09 09:27:54 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_5917121408233006374 records=0 bytes=0 channelLen=0
2026/03/09 09:27:54 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_yvf2m3py' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_yvf2m3py.t5_mv_api_yvf2m3py%'" rows=0 bytes=0 channelLen=0
2026/03/09 09:27:54 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:27:54 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_yvf2m3py' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_yvf2m3py.t5_mv_api_yvf2m3py%'" rows=1 bytes=8 channelLen=0
2026/03/09 09:27:54 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_lgq6k7gw' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_lgq6k7gw.t5_mv_api_lgq6k7gw%'"
2026/03/09 09:27:54 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_lgq6k7gw' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_lgq6k7gw.t5_mv_api_lgq6k7gw%'"
2026/03/09 09:27:54 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_430100047878642437 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_lgq6k7gw' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_lgq6k7gw.t5_mv_api_lgq6k7gw%'" args=[]
2026/03/09 09:27:54 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_lgq6k7gw' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_lgq6k7gw.t5_mv_api_lgq6k7gw%'" channelLen=0
2026/03/09 09:27:54 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_430100047878642437
2026/03/09 09:27:54 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_430100047878642437 records=1 bytes=8 channelLen=0
2026/03/09 09:27:54 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_lgq6k7gw' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_lgq6k7gw.t5_mv_api_lgq6k7gw%'" rows=1 bytes=8 channelLen=0
2026/03/09 09:27:54 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_430100047878642437
2026/03/09 09:27:54 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_430100047878642437 records=0 bytes=0 channelLen=0
2026/03/09 09:27:54 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_lgq6k7gw' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_lgq6k7gw.t5_mv_api_lgq6k7gw%'" rows=0 bytes=0 channelLen=0
2026/03/09 09:27:54 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:27:54 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_lgq6k7gw' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_lgq6k7gw.t5_mv_api_lgq6k7gw%'" rows=1 bytes=8 channelLen=0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:27:55 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_ykzvxqmd' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_ykzvxqmd.t2_mv_third%'"
2026/03/09 09:27:55 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_ykzvxqmd' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_ykzvxqmd.t2_mv_third%'"
2026/03/09 09:27:55 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_15035997034633257641 CURSOR FOR \n\t\tSELECT COUNT(*) FROM peerdb_stats.flow_errors\n\t\tWHERE error_type='error' AND position('test_cancel_add_cancel_api_ykzvxqmd' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_ykzvxqmd.t2_mv_third%'" args=[]
2026/03/09 09:27:55 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_ykzvxqmd' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_ykzvxqmd.t2_mv_third%'" channelLen=0
2026/03/09 09:27:55 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_15035997034633257641
2026/03/09 09:27:55 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_15035997034633257641 records=1 bytes=8 channelLen=0
2026/03/09 09:27:55 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_ykzvxqmd' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_ykzvxqmd.t2_mv_third%'" rows=1 bytes=8 channelLen=0
2026/03/09 09:27:55 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_15035997034633257641
2026/03/09 09:27:55 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_15035997034633257641 records=0 bytes=0 channelLen=0
2026/03/09 09:27:55 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_ykzvxqmd' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_ykzvxqmd.t2_mv_third%'" rows=0 bytes=0 channelLen=0
2026/03/09 09:27:55 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:27:55 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_ykzvxqmd' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_ykzvxqmd.t2_mv_third%'" rows=1 bytes=8 channelLen=0
2026/03/09 09:27:55 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_api_syuaijrl.valid
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:27:57 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_wevwa9az.test_update_pkey_enabled
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:27:58 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_maf4uw4m' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_maf4uw4m.t5_mv_api_maf4uw4m%'"
2026/03/09 09:27:58 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_maf4uw4m' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_maf4uw4m.t5_mv_api_maf4uw4m%'"
2026/03/09 09:27:58 INFO [pg_query_executor] declared cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursorQuery="DECLARE peerdb_cursor_9976652367928530376 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_maf4uw4m' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_maf4uw4m.t5_mv_api_maf4uw4m%'" args=[]
2026/03/09 09:27:58 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_maf4uw4m' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_maf4uw4m.t5_mv_api_maf4uw4m%'" channelLen=0
2026/03/09 09:27:58 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9976652367928530376
2026/03/09 09:27:58 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9976652367928530376 records=1 bytes=8 channelLen=0
2026/03/09 09:27:58 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_maf4uw4m' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_maf4uw4m.t5_mv_api_maf4uw4m%'" rows=1 bytes=8 channelLen=0
2026/03/09 09:27:58 INFO [pg_query_executor] fetching from cursor x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9976652367928530376
2026/03/09 09:27:58 INFO processed row stream x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart cursor=peerdb_cursor_9976652367928530376 records=0 bytes=0 channelLen=0
2026/03/09 09:27:58 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_maf4uw4m' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_maf4uw4m.t5_mv_api_maf4uw4m%'" rows=0 bytes=0 channelLen=0
2026/03/09 09:27:58 INFO [pg_query_executor] committing transaction x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} partitionId=testpart
2026/03/09 09:27:58 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_maf4uw4m' in flow_name) > 0\n\t\tAND error_message ILIKE '%while pushing to view e2e_test_api_maf4uw4m.t5_mv_api_maf4uw4m%'" rows=1 bytes=8 channelLen=0
2026/03/09 09:27:58 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_api_hd78mndj.original
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:28:01 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_wevwa9az.test_update_pkey_enabled
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
2026/03/09 09:28:02 INFO fetched schema x-peerdb-additional-metadata={Operation:FLOW_OPERATION_UNKNOWN} table=e2e_test_mych_ddlhyy4h.test_unsigned
    bigquery_source_test.go:511: q.NumRecords: 1000
    bigquery_source_test.go:511: other.NumRecords: 0
    bigquery_source_test.go:511: UNEXPECTED TIMEOUT initial load to match 2026-03-09 09:28:03.871147329 +0000 UTC m=+536.942367956
--- FAIL: TestBigQueryClickhouseSuite/Test_Trips_Flow_Small_Partitions (182.81s)

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

Copy link
Copy Markdown
Contributor

@ilidemi ilidemi left a comment

Choose a reason for hiding this comment

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

Couple of integration points:

  1. Let's introduce QKindIntEnum that maps to an integer on the destination
  2. Add an internal version to only enable it for new mirrors/pipes

return fmt.Errorf("could not convert mysql value for %s: %w", field.Name, err)
}

mapped, err := c.mapQValue(qv, field, enumMap, binlogMetadataSupported)
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Let's explore both options. With the current one:

  1. The metadata query and the main query need to be consistent with each other, so it would need to be {begin tx; select 1 from WatermarkTable (metadata lock); fetch enum maps; run query; commit}
  2. Would prefer to avoid hand-parsing enum statements if possible. In CDC path we're using github.com/pingcap/tidb/pkg/parser, can it be used for this?

With enumField+0 one:

  1. snapshot_flow cloneTable() already constructs the list of columns in case there are exclusions and has the column type already available there

I find the +0 simpler, wdyt?

ilidemi added a commit that referenced this pull request Mar 13, 2026
To simplify handling of partitioned tables in postgres and enums special
case in mysql 5.7, just move query building into connector layer. Proto
change assumed to be safe as there was no release since the last change.

Bringing back the CH null partition test as the MySQL path didn't have
any without it - h/t @jgao54 for
[fixing](#4037) it.

Intended to unblock #3998 and #4025
@dtunikov dtunikov closed this Mar 14, 2026
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.

4 participants