Changeset: 55d622e6bcd1 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=55d622e6bcd1 Modified Files: sql/backends/monet5/iot/Tests/iot00.sql sql/backends/monet5/iot/Tests/iot05.sql Branch: iot Log Message:
Fix optimizer in test diffs (20 lines): diff --git a/sql/backends/monet5/iot/Tests/iot00.sql b/sql/backends/monet5/iot/Tests/iot00.sql --- a/sql/backends/monet5/iot/Tests/iot00.sql +++ b/sql/backends/monet5/iot/Tests/iot00.sql @@ -1,5 +1,6 @@ -- A simple continuous query. set schema iot; +set optimizer='iot_pipe'; create stream table stmp (t timestamp, sensor integer, val decimal(8,2)) ; create table result(like stmp); diff --git a/sql/backends/monet5/iot/Tests/iot05.sql b/sql/backends/monet5/iot/Tests/iot05.sql --- a/sql/backends/monet5/iot/Tests/iot05.sql +++ b/sql/backends/monet5/iot/Tests/iot05.sql @@ -1,5 +1,6 @@ -- introduce a heartbeat query set schema iot; +set optimizer='iot_pipe'; declare hbclk1 integer; declare hbclk2 integer; _______________________________________________ checkin-list mailing list [email protected] https://www.monetdb.org/mailman/listinfo/checkin-list
