Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mwylde committed Nov 14, 2024
1 parent 614c442 commit 5abb348
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
CREATE TABLE memory (
event_type TEXT,
location TEXT,
driver_id BIGINT,
driver_id BIGINT
);

SELECT * FROM memory;
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ CREATE TABLE nexmark (
channel text,
url text,
datetime timestamp,
extra text,
extra text
) WITH (
connector = 'filesystem',
format = 'parquet',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ CREATE TABLE impulse_source (
max BIGINT,
sum BIGINT,
count BIGINT,
avg DOUBLE,
avg DOUBLE
) WITH (
connector = 'single_file',
path = '$output_path',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ CREATE TABLE cars (
CREATE TABLE memory (
event_type TEXT,
location TEXT,
driver_id BIGINT,
driver_id BIGINT
);

CREATE TABLE cars_output (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ CREATE TABLE impulse_source (
);

CREATE TABLE unnest_output (
counter bigint unsigned not null,
counter bigint unsigned not null
) WITH (
connector = 'single_file',
path = '$output_path',
Expand Down

0 comments on commit 5abb348

Please sign in to comment.