Skip to content

Commit

Permalink
Skip varint
Browse files Browse the repository at this point in the history
  • Loading branch information
carlopi committed Sep 17, 2024
1 parent db04b37 commit 5e75810
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_all_types.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function get_all_types(): Promise<string[]> {
return new Promise((resolve, reject) => {
const conn = new duckdb.Database(":memory:");
conn.all(
"describe select * EXCLUDE(fixed_int_array, fixed_varchar_array, fixed_nested_int_array, fixed_nested_varchar_array, fixed_struct_array, struct_of_fixed_array, fixed_array_of_int_list, list_of_fixed_int_array) from test_all_types()",
"describe select * EXCLUDE(fixed_int_array, fixed_varchar_array, fixed_nested_int_array, fixed_nested_varchar_array, fixed_struct_array, struct_of_fixed_array, fixed_array_of_int_list, list_of_fixed_int_array, varint) from test_all_types()",
(error: DuckDbError | null, data: TableData) => {
if (error) reject(error);
resolve(data.map((row) => row.column_name));
Expand Down

0 comments on commit 5e75810

Please sign in to comment.