Changeset: 9743651c6df6 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/9743651c6df6 Modified Files: sql/test/mergetables/Tests/All sql/test/mergetables/Tests/sqlsmith.Bug-6472.test Branch: Sep2022 Log Message:
Make another test independent of netcdf diffs (38 lines): diff --git a/sql/test/mergetables/Tests/All b/sql/test/mergetables/Tests/All --- a/sql/test/mergetables/Tests/All +++ b/sql/test/mergetables/Tests/All @@ -23,7 +23,7 @@ transaction-conflict mergedb_create HAVE_GEOM?sqlsmith.Bug-6459 -HAVE_NETCDF?sqlsmith.Bug-6472 +sqlsmith.Bug-6472 sqlsmith-exists sqlsmith-exists2 diff --git a/sql/test/mergetables/Tests/sqlsmith.Bug-6472.test b/sql/test/mergetables/Tests/sqlsmith.Bug-6472.test --- a/sql/test/mergetables/Tests/sqlsmith.Bug-6472.test +++ b/sql/test/mergetables/Tests/sqlsmith.Bug-6472.test @@ -1,3 +1,6 @@ +statement ok +CREATE TABLE my_dims ("name" VARCHAR(64),"length" INTEGER); + query TIT rowsort select subq_0.c1 as c0, @@ -31,7 +34,7 @@ where EXISTS ( ref_3.length as c3, ref_5.rkey as c4 from - sys.netcdf_dims as ref_3 + my_dims as ref_3 inner join tmp._columns as ref_4 left join tmp.keys as ref_5 on (true) @@ -46,3 +49,6 @@ where EXISTS ( where true) ---- +statement ok +DROP TABLE my_dims; + _______________________________________________ checkin-list mailing list -- checkin-list@monetdb.org To unsubscribe send an email to checkin-list-le...@monetdb.org