From 07d21474f2dbdf19a3fb6a40ebdce940279fe09f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikolas=20G=C3=B6bel?= Date: Thu, 7 Dec 2023 11:34:32 +0100 Subject: [PATCH] Remove auto_number test --- rai/results_test.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/rai/results_test.go b/rai/results_test.go index 219d422..057ecaa 100644 --- a/rai/results_test.go +++ b/rai/results_test.go @@ -247,14 +247,6 @@ var primitiveTypeTests = []execTest{ rdata: xdata("0.arrow", sig("output", Int64Type), [][]any{{"output", "output"}, {int64(2), int64(3)}}), }, - { - query: `def output = auto_number[1]`, - // TODO (dba) AutoNumber was incorrectly tagged as having an `Int64Type`. Until the change in the engine is in prod, we need to keep it as `nil`. - // mdata: mdata("0.arrow", sig("output", Int64Type, - // vtype("rel:base:AutoNumber", Uint64Type))), - pdata: xdata("0.arrow", sig(Int64Type, Uint64Type), nil), // value changes on each call - rdata: xdata("0.arrow", sig("output", Int64Type, Uint64Type), nil), - }, { query: `def output = int[8, 12], int[8, -12]`, mdata: mdata("0.arrow", sig("output", Int8Type, Int8Type)),