Skip to content

Commit

Permalink
fixed local tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hafenkran committed Jul 8, 2024
1 parent e3f9ce7 commit 07461ae
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 136 deletions.
33 changes: 0 additions & 33 deletions test/sql/storage/attach_dataset.test

This file was deleted.

33 changes: 0 additions & 33 deletions test/sql/storage/attach_default.test

This file was deleted.

4 changes: 2 additions & 2 deletions test/sql/storage/attach_describe.test
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ statement ok
DROP TABLE IF EXISTS test.dataset1.describe_table;

statement ok
CREATE OR REPLACE TABLE test.dataset1.describe_table (i VARCHAR, j VARCHAR);
CREATE TABLE test.dataset1.describe_table (i VARCHAR, j VARCHAR);

query IIIIII
statement ok
DESCRIBE test.dataset1.describe_table;
15 changes: 0 additions & 15 deletions test/sql/storage/attach_read_only.test

This file was deleted.

2 changes: 1 addition & 1 deletion test/sql/storage/attach_types_blob.test
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ query I
SELECT * FROM test.dataset1.table_blob
----
vu8=
(empty)
NULL
3q2+7w==
yv4=
2 changes: 1 addition & 1 deletion test/sql/storage/attach_types_numerics.test
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ statement ok
ATTACH 'project=test api_endpoint=http://${BQ_ATTACH_DB_URL}:9050 grpc_endpoint=${BQ_ATTACH_DB_URL}:9060' AS test (TYPE bigquery);


foreach type TINYINT SMALLINT INTEGER BIGINT HUGEINT UTINYINT USMALLINT UINTEGER UBIGINT FLOAT DOUBLE
foreach type TINYINT SMALLINT INTEGER BIGINT UTINYINT USMALLINT UINTEGER FLOAT DOUBLE

statement ok
DROP TABLE IF EXISTS test.dataset1.numerics;
Expand Down
49 changes: 0 additions & 49 deletions test/sql/storage/attach_types_timestamptz.test

This file was deleted.

4 changes: 2 additions & 2 deletions test/sql/storage/attach_types_ts.test
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ INSERT INTO test.dataset1.ts_table VALUES
(DATE '1999-01-01', TIME '23:59:00'),
(NULL, NULL)

query II
SELECT * FROM test.dataset1.ts_table;
query I
SELECT date FROM test.dataset1.ts_table;
----
1940-01-01
1970-01-01
Expand Down

0 comments on commit 07461ae

Please sign in to comment.