You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE TABLE test_jsonb(id serial primary key, j jsonb);
INSERT INTO test_jsonb(j) VALUES ('{"isDemo":false}');
--Kick off mirror now and after initial load insert another row on Postgres
INSERT INTO test_jsonb(j) VALUES ('{"isDemo":false}');
Data in BQ for JSONB
Setup steps in Postgres for ARRAY
CREATE TABLE test_array(id serial primary key, t text[], i int[]);
INSERT INTO test_array(t,i) VALUES ('{sai,krishna}'::text[],'{1,2}'::int[]);
--Kick off mirror now and after initial load insert another row on Postgres
INSERT INTO test_array(t,i) VALUES ('{sai,krishna}'::text[],'{1,2}'::int[]);
Data in BQ for JSONB
The text was updated successfully, but these errors were encountered:
saisrirampur
changed the title
PG to BQ, CDC messes up format of JSONB columns
PG to BQ, CDC messes up format of JSONB columns, whereas initial load doesn't
Dec 15, 2023
Setup steps in Postgres for JSONB
Data in BQ for JSONB
Setup steps in Postgres for ARRAY
Data in BQ for JSONB
The text was updated successfully, but these errors were encountered: