From 9996272e6ca1cf3a521960708e5379da45238f3b Mon Sep 17 00:00:00 2001 From: Max Gabrielsson Date: Tue, 10 Dec 2024 10:59:46 +0100 Subject: [PATCH] disable autoloading tests for copy function --- test/sql/excel/xlsx/bignum.test | 2 ++ test/sql/excel/xlsx/limits.test | 2 ++ test/sql/excel/xlsx/roundtrip_bool.test | 2 ++ test/sql/excel/xlsx/roundtrip_header.test | 2 ++ test/sql/excel/xlsx/roundtrip_sheet_name.test | 2 ++ test/sql/excel/xlsx/roundtrip_time.test | 2 ++ test/sql/excel/xlsx/tpch/tpch.test | 2 ++ test/sql/excel/xlsx/xlsx_test_all_types.test | 2 ++ 8 files changed, 16 insertions(+) diff --git a/test/sql/excel/xlsx/bignum.test b/test/sql/excel/xlsx/bignum.test index f748fd7..7924af8 100644 --- a/test/sql/excel/xlsx/bignum.test +++ b/test/sql/excel/xlsx/bignum.test @@ -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. diff --git a/test/sql/excel/xlsx/limits.test b/test/sql/excel/xlsx/limits.test index df3ff90..f10b1d6 100644 --- a/test/sql/excel/xlsx/limits.test +++ b/test/sql/excel/xlsx/limits.test @@ -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); diff --git a/test/sql/excel/xlsx/roundtrip_bool.test b/test/sql/excel/xlsx/roundtrip_bool.test index 5317d09..21830d6 100644 --- a/test/sql/excel/xlsx/roundtrip_bool.test +++ b/test/sql/excel/xlsx/roundtrip_bool.test @@ -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'); diff --git a/test/sql/excel/xlsx/roundtrip_header.test b/test/sql/excel/xlsx/roundtrip_header.test index 83501f6..be899cf 100644 --- a/test/sql/excel/xlsx/roundtrip_header.test +++ b/test/sql/excel/xlsx/roundtrip_header.test @@ -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); diff --git a/test/sql/excel/xlsx/roundtrip_sheet_name.test b/test/sql/excel/xlsx/roundtrip_sheet_name.test index 898d085..bd17259 100644 --- a/test/sql/excel/xlsx/roundtrip_sheet_name.test +++ b/test/sql/excel/xlsx/roundtrip_sheet_name.test @@ -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'); diff --git a/test/sql/excel/xlsx/roundtrip_time.test b/test/sql/excel/xlsx/roundtrip_time.test index 1283054..664af60 100644 --- a/test/sql/excel/xlsx/roundtrip_time.test +++ b/test/sql/excel/xlsx/roundtrip_time.test @@ -1,5 +1,7 @@ require excel +require no_extension_autoloading "FIXME: make copy to functions autoloadable" + # Timestamp (with microseconds) test statement ok diff --git a/test/sql/excel/xlsx/tpch/tpch.test b/test/sql/excel/xlsx/tpch/tpch.test index ac86b30..d723117 100644 --- a/test/sql/excel/xlsx/tpch/tpch.test +++ b/test/sql/excel/xlsx/tpch/tpch.test @@ -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); diff --git a/test/sql/excel/xlsx/xlsx_test_all_types.test b/test/sql/excel/xlsx/xlsx_test_all_types.test index b024825..769c1ac 100644 --- a/test/sql/excel/xlsx/xlsx_test_all_types.test +++ b/test/sql/excel/xlsx/xlsx_test_all_types.test @@ -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