summaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
Diffstat (limited to 'src/test')
-rw-r--r--src/test/regress/expected/tsearch_1.out12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/test/regress/expected/tsearch_1.out b/src/test/regress/expected/tsearch_1.out
index 4d1f1b131a..94238cbf06 100644
--- a/src/test/regress/expected/tsearch_1.out
+++ b/src/test/regress/expected/tsearch_1.out
@@ -1045,26 +1045,30 @@ DETAIL: The feature is not currently supported
SELECT count(*) FROM test_tsvector WHERE a @@ to_tsquery('345&qwerty');
count
-------
-(0 rows)
+ 0
+(1 row)
INSERT INTO test_tsvector (t) VALUES ('345 qwerty');
SELECT count(*) FROM test_tsvector WHERE a @@ to_tsquery('345&qwerty');
count
-------
-(0 rows)
+ 0
+(1 row)
UPDATE test_tsvector SET t = null WHERE t = '345 qwerty';
ERROR: Partition column can't be updated in current version
SELECT count(*) FROM test_tsvector WHERE a @@ to_tsquery('345&qwerty');
count
-------
-(0 rows)
+ 0
+(1 row)
INSERT INTO test_tsvector (t) VALUES ('345 qwerty');
SELECT count(*) FROM test_tsvector WHERE a @@ to_tsquery('345&qwerty');
count
-------
-(0 rows)
+ 0
+(1 row)
-- test finding items in GIN's pending list
create table pendtest (ts tsvector);