From 3425143e26015ffd903fc07b1c40e93562934fde Mon Sep 17 00:00:00 2001 From: Carlo Piovesan Date: Tue, 27 Aug 2024 14:48:30 +0200 Subject: [PATCH] Add ordering to parqut tests --- packages/duckdb-wasm/test/all_types.test.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/duckdb-wasm/test/all_types.test.ts b/packages/duckdb-wasm/test/all_types.test.ts index 8620b6a7a..b6c9d9af0 100644 --- a/packages/duckdb-wasm/test/all_types.test.ts +++ b/packages/duckdb-wasm/test/all_types.test.ts @@ -41,7 +41,6 @@ const NOT_IMPLEMENTED_TYPES = [ 'dec_18_6', 'dec38_10', 'uuid', - 'varint', 'map', 'json', 'date_array', @@ -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,