diff --git a/flow/e2e/postgres/peer_flow_pg_test.go b/flow/e2e/postgres/peer_flow_pg_test.go index f2ca26443a..bd816e79e1 100644 --- a/flow/e2e/postgres/peer_flow_pg_test.go +++ b/flow/e2e/postgres/peer_flow_pg_test.go @@ -101,7 +101,7 @@ func (s PeerFlowE2ETestSuitePG) Test_Types_PG() { c14 INET,c15 INTEGER,c21 MACADDR, c29 SMALLINT,c32 TEXT, c33 TIMESTAMP,c34 TIMESTAMPTZ,c35 TIME, c36 TIMETZ, - c40 UUID, c42 INT[], c43 FLOAT[], c44 TEXT[], + c40 UUID, c42 INT[], c43 FLOAT[], c44 TEXT[], c45 UUID[], c46 DATE[], c47 TIMESTAMPTZ[], c48 TIMESTAMP[], c49 BOOLEAN[], c50 SMALLINT[]); `, srcTableName)) require.NoError(s.t, err) @@ -129,6 +129,7 @@ func (s PeerFlowE2ETestSuitePG) Test_Types_PG() { ARRAY[10299301,2579827], ARRAY[0.0003, 8902.0092], ARRAY['hello','bye'], + ARRAY['66073c38-b8df-4bdb-bbca-1c97596b8940','cd76be3e-d20a-451b-8e60-015872d7f607']::uuid[], '{2020-01-01, 2020-01-02}'::date[], '{"2020-01-01 01:01:01+00", "2020-01-02 01:01:01+00"}'::timestamptz[], '{"2020-01-01 01:01:01", "2020-01-02 01:01:01"}'::timestamp[], @@ -142,7 +143,7 @@ func (s PeerFlowE2ETestSuitePG) Test_Types_PG() { "c1", "c2", "c4", "c40", "id", "c9", "c11", "c12", "c13", "c14", "c15", "c21", "c29", "c33", "c34", "c35", "c36", - "c7", "c8", "c32", "c42", "c43", "c44", "c46", "c47", "c48", "c49", "c50", + "c7", "c8", "c32", "c42", "c43", "c44", "c45", "c46", "c47", "c48", "c49", "c50", }, ",") e2e.EnvWaitFor(s.t, env, 3*time.Minute, "normalize types", func() bool { return s.comparePGTables(srcTableName, dstTableName, allCols) == nil