Skip to content

Commit

Permalink
Merge pull request #4 from Maxxen/main
Browse files Browse the repository at this point in the history
disable autoloading tests for copy function
  • Loading branch information
Maxxen authored Dec 10, 2024
2 parents 2e7e415 + 9996272 commit e243577
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 0 deletions.
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

0 comments on commit e243577

Please sign in to comment.