Skip to content

Commit

Permalink
check results
Browse files Browse the repository at this point in the history
  • Loading branch information
kwannoel committed Dec 24, 2024
1 parent d0ef4be commit 4c34456
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions e2e_test/sink/pg_native_vs_jdbc.slt
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@ CREATE SINK pg_sink FROM datagen_source WITH (

sleep 240s

system ok
psql --tuples-only -c 'select count(*) from datagen_source;'
----
2000000


statement ok
CREATE SINK pg_sink_jdbc FROM datagen_source WITH (
connector='jdbc',
Expand All @@ -56,6 +62,12 @@ CREATE SINK pg_sink_jdbc FROM datagen_source WITH (

sleep 240s

system ok
psql --tuples-only -c 'select count(*) from datagen_source_jdbc;'
----
2000000


statement ok
DROP SINK IF EXISTS pg_sink;

Expand Down

0 comments on commit 4c34456

Please sign in to comment.