Skip to content

Commit

Permalink
correct query syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
imor committed Nov 13, 2024
1 parent 750072d commit 4d7e29d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pg_replicate/src/clients/bigquery.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ impl BigQueryClient {
&Type::TIMESTAMP_ARRAY | &Type::TIMESTAMPTZ_ARRAY => "array<timestamp>",
&Type::UUID_ARRAY => "array<string>",
&Type::JSON_ARRAY | &Type::JSONB_ARRAY => "array<json>",
&Type::OID_ARRAY => "array>int64>",
&Type::OID_ARRAY => "array<int64>",
&Type::BYTEA_ARRAY => "array<bytes>",
_ => "string",
}
Expand Down

0 comments on commit 4d7e29d

Please sign in to comment.