Fix test's failure due to fast update of GIN index
[gevel.git] / expected / gevel.out
index 0faefea..5afe9ed 100644 (file)
@@ -101,6 +101,7 @@ CREATE TABLE test__int( a int[] );
 CREATE INDEX gin_idx ON test__int USING gin ( a );
 INSERT INTO test__int ( SELECT ARRAY[t] || '{1000}'::_int4 FROM generate_series (1,300) as t );
 INSERT INTO test__int ( SELECT ARRAY[t] || '{1001}'::_int4 FROM generate_series (1,300) as t, generate_series(1,12) );
+VACUUM ANALYZE test__int; 
 SELECT * FROM gin_stat('gin_idx') as t(value int, nrow int);
  value | nrow 
 -------+------
@@ -406,6 +407,6 @@ SELECT * FROM gin_stat('gin_idx') as t(value int, nrow int);
    299 |   26
    300 |   13
   1000 |  300
-  1001 | 3395
+  1001 | 3741
 (303 rows)