From 0c01a7bc33bbbc92e0ab43dfbd97d09b1d54388d Mon Sep 17 00:00:00 2001 From: Eric Kidd Date: Tue, 17 Oct 2023 11:23:54 -0400 Subject: [PATCH] Add placeholders for features we don't have yet --- tests/sql/pending/README.md | 5 +++++ tests/sql/pending/date_functions.sql | 2 ++ tests/sql/pending/structs.sql | 2 ++ 3 files changed, 9 insertions(+) create mode 100644 tests/sql/pending/README.md create mode 100644 tests/sql/pending/date_functions.sql create mode 100644 tests/sql/pending/structs.sql diff --git a/tests/sql/pending/README.md b/tests/sql/pending/README.md new file mode 100644 index 0000000..7700455 --- /dev/null +++ b/tests/sql/pending/README.md @@ -0,0 +1,5 @@ +# "Pending" tests + +There are no actual tests in this directory. Mostly, this is because we _know_ +these features won't work on other databases without a major effort. These +"tests" just print an estimate of how hard each feature will be. diff --git a/tests/sql/pending/date_functions.sql b/tests/sql/pending/date_functions.sql new file mode 100644 index 0000000..09b76ac --- /dev/null +++ b/tests/sql/pending/date_functions.sql @@ -0,0 +1,2 @@ +-- pending: snowflake Lots of work but low risk. +-- pending: sqlite3 Lots of work but low risk. \ No newline at end of file diff --git a/tests/sql/pending/structs.sql b/tests/sql/pending/structs.sql new file mode 100644 index 0000000..bb3ef48 --- /dev/null +++ b/tests/sql/pending/structs.sql @@ -0,0 +1,2 @@ +-- pending: snowflake Need to emulate using OBJECT. May be challenging. +-- pending: sqlite3 Need to build structs from scratch.