Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

disable autoloading tests for copy function #4

Merged
merged 1 commit into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions test/sql/excel/xlsx/bignum.test
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
require excel

require no_extension_autoloading "FIXME: make copy to functions autoloadable"

# Note: DuckDB will write out large numbers in scientific notation.
# I cant find anything in the standard about it, but it seems like thats OK for applications that can read xlsx files.
# I suppose most just call `strtod` or equivalent on the cell contents and get the number back.
Expand Down
2 changes: 2 additions & 0 deletions test/sql/excel/xlsx/limits.test
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
require excel

require no_extension_autoloading "FIXME: make copy to functions autoloadable"

statement error
COPY (SELECT * FROM range(5000))
TO '__TEST_DIR__/test_limit1.xlsx' (FORMAT 'XLSX', sheet_row_limit 2049);
Expand Down
2 changes: 2 additions & 0 deletions test/sql/excel/xlsx/roundtrip_bool.test
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
require excel

require no_extension_autoloading "FIXME: make copy to functions autoloadable"

statement ok
COPY (SELECT true as col_true, false as col_false) TO '__TEST_DIR__/test_boolean.xlsx' (FORMAT 'XLSX');

Expand Down
2 changes: 2 additions & 0 deletions test/sql/excel/xlsx/roundtrip_header.test
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
require excel

require no_extension_autoloading "FIXME: make copy to functions autoloadable"

statement ok
COPY (SELECT 1 as xxx) TO 'test_header.xlsx' (FORMAT 'XLSX', HEADER true);

Expand Down
2 changes: 2 additions & 0 deletions test/sql/excel/xlsx/roundtrip_sheet_name.test
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
require excel

require no_extension_autoloading "FIXME: make copy to functions autoloadable"

statement ok
COPY (SELECT 42) TO '__TEST_DIR__/test_sheet_name.xlsx' (FORMAT 'XLSX', HEADER true, SHEET 'test_sheet_name');

Expand Down
2 changes: 2 additions & 0 deletions test/sql/excel/xlsx/roundtrip_time.test
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
require excel

require no_extension_autoloading "FIXME: make copy to functions autoloadable"

# Timestamp (with microseconds) test

statement ok
Expand Down
2 changes: 2 additions & 0 deletions test/sql/excel/xlsx/tpch/tpch.test
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ require excel

require tpch

require no_extension_autoloading "FIXME: make copy to functions autoloadable"

statement ok
CALL dbgen(sf=0.01);

Expand Down
2 changes: 2 additions & 0 deletions test/sql/excel/xlsx/xlsx_test_all_types.test
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
require excel

require no_extension_autoloading "FIXME: make copy to functions autoloadable"

# Just test that we can write all types for now

statement ok
Expand Down
Loading