Skip to content

Commit

Permalink
Add ordering to parqut tests
Browse files Browse the repository at this point in the history
  • Loading branch information
carlopi committed Aug 27, 2024
1 parent 6c95ec9 commit 3425143
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/duckdb-wasm/test/all_types.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ const NOT_IMPLEMENTED_TYPES = [
'dec_18_6',
'dec38_10',
'uuid',
'varint',
'map',
'json',
'date_array',
Expand Down Expand Up @@ -157,7 +156,7 @@ function getValue(x: any): any {
const ALL_TYPES_TEST: AllTypesTest[] = [
{
name: 'fully supported types',
query: `SELECT * EXCLUDE(uhugeint, 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) REPLACE('not_implemented' as map) FROM test_all_types()`,
query: `SELECT * EXCLUDE(varint, uhugeint, 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) REPLACE('not_implemented' as map) FROM test_all_types()`,
skip: REPLACE_COLUMNS,
answerMap: FULLY_IMPLEMENTED_ANSWER_MAP,
answerCount: REPLACE_COLUMNS.length + Object.keys(FULLY_IMPLEMENTED_ANSWER_MAP).length,
Expand Down

0 comments on commit 3425143

Please sign in to comment.