Changeset: 53f1469cb436 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/53f1469cb436
Modified Files:
        sql/test/BugTracker-2010/Tests/All
        sql/test/BugTracker-2010/Tests/vacuum.test
Branch: Aug2024
Log Message:

Fix and enable vacuum test


diffs (63 lines):

diff --git a/sql/test/BugTracker-2010/Tests/All 
b/sql/test/BugTracker-2010/Tests/All
--- a/sql/test/BugTracker-2010/Tests/All
+++ b/sql/test/BugTracker-2010/Tests/All
@@ -76,7 +76,7 @@ store_function_argument_correctly.Bug-27
 COPY_INTO_with_backslashes.Bug-2748
 wrong_error_message_dropping_view.Bug-2713
 call_function_without_warning.Bug-2752
-#vacuum
+vacuum
 with-between.Bug-2732
 sequence-restart-with-null.Bug-2648
 constants-optimizer.Bug-2317
diff --git a/sql/test/BugTracker-2010/Tests/vacuum.test 
b/sql/test/BugTracker-2010/Tests/vacuum.test
--- a/sql/test/BugTracker-2010/Tests/vacuum.test
+++ b/sql/test/BugTracker-2010/Tests/vacuum.test
@@ -49,7 +49,10 @@ 9
 dog
 
 statement ok
-call shrink('sys','vac1')
+call vacuum('sys','vac1','i')
+
+statement ok
+call vacuum('sys','vac1','s')
 
 query IT rowsort
 select * from vac1
@@ -77,7 +80,10 @@ statement ok
 delete from vac1 where i = 8
 
 statement ok
-call shrink('sys','vac1')
+call vacuum('sys','vac1','i')
+
+statement ok
+call vacuum('sys','vac1','s')
 
 query IT rowsort
 select * from vac1
@@ -103,7 +109,10 @@ statement ok
 delete from vac1 where i = 2
 
 statement ok
-call shrink('sys','vac1')
+call vacuum('sys','vac1','i')
+
+statement ok
+call vacuum('sys','vac1','s')
 
 query IT rowsort
 select * from vac1
@@ -127,7 +136,10 @@ statement ok
 delete from vac1 where i > 6
 
 statement ok
-call vacuum('sys','vac1')
+call vacuum('sys','vac1','i')
+
+statement ok
+call vacuum('sys','vac1','s')
 
 query IT rowsort
 select * from vac1
_______________________________________________
checkin-list mailing list -- checkin-list@monetdb.org
To unsubscribe send an email to checkin-list-le...@monetdb.org

Reply via email to