Skip to content

Commit

Permalink
add bool roundtrip
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxxen committed Nov 15, 2024
1 parent a190b1e commit 2efe17b
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions test/sql/excel/xlsx/roundtrip_bool.test
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
require excel

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

query II
SELECT * FROM '__TEST_DIR__/test_boolean.xlsx';
----
true false

query II
SELECT typeof(COLUMNS(*)) FROM '__TEST_DIR__/test_boolean.xlsx';
----
BOOLEAN BOOLEAN

0 comments on commit 2efe17b

Please sign in to comment.