From 1bc31169d401576a4f6042ccfadffa9bf5a5ad0a Mon Sep 17 00:00:00 2001 From: Jelte Fennema-Nio Date: Tue, 24 Sep 2024 13:04:47 -0700 Subject: [PATCH] Remove failing test for now (#214) This quickly removes a test that is now failing in CI. In another PR I'll try to add a non-flaky test back, but this removes the immediate problem. The problematic test was added in #203 --- test/regression/expected/raw_query.out | 23 ----------------------- test/regression/schedule | 1 - test/regression/sql/raw_query.sql | 2 -- 3 files changed, 26 deletions(-) delete mode 100644 test/regression/expected/raw_query.out delete mode 100644 test/regression/sql/raw_query.sql diff --git a/test/regression/expected/raw_query.out b/test/regression/expected/raw_query.out deleted file mode 100644 index a16387cc..00000000 --- a/test/regression/expected/raw_query.out +++ /dev/null @@ -1,23 +0,0 @@ -SELECT duckdb.raw_query($$ CREATE TABLE t(a int) $$); -NOTICE: result: Count -BIGINT -[ Rows: 0] - - - raw_query ------------ - -(1 row) - -SELECT duckdb.raw_query($$ SELECT * FROM duckdb_tables() $$); -NOTICE: result: database_name database_oid schema_name schema_oid table_name table_oid comment tags internal temporary has_primary_key estimated_size column_count index_count check_constraint_count sql -VARCHAR BIGINT VARCHAR BIGINT VARCHAR BIGINT VARCHAR MAP(VARCHAR, VARCHAR) BOOLEAN BOOLEAN BOOLEAN BIGINT BIGINT BIGINT BIGINT VARCHAR -[ Rows: 1] -memory 1148 main 1150 t 1266 NULL {} false false false 0 1 0 0 CREATE TABLE t(a INTEGER); - - - raw_query ------------ - -(1 row) - diff --git a/test/regression/schedule b/test/regression/schedule index 79c956d8..360ad831 100644 --- a/test/regression/schedule +++ b/test/regression/schedule @@ -13,4 +13,3 @@ test: cte test: create_table_as test: standard_conforming_strings test: query_filter -test: raw_query diff --git a/test/regression/sql/raw_query.sql b/test/regression/sql/raw_query.sql deleted file mode 100644 index 5eaa0802..00000000 --- a/test/regression/sql/raw_query.sql +++ /dev/null @@ -1,2 +0,0 @@ -SELECT duckdb.raw_query($$ CREATE TABLE t(a int) $$); -SELECT duckdb.raw_query($$ SELECT * FROM duckdb_tables() $$);