diff options
author | Tom Lane | 2001-03-20 03:08:12 +0000 |
---|---|---|
committer | Tom Lane | 2001-03-20 03:08:12 +0000 |
commit | 2ef6e7ee18922c4e653dd8a0512c424453aba9df (patch) | |
tree | 270fe51686bcad8e3b6ac1f670f4573681fa403c /contrib/intarray/expected | |
parent | 9e07c9a39cf7471f0d582f02d494572a2aec0409 (diff) |
Repair intarray's problems with TOASTed input, avoid scribbling on
source data, improve split algorithm for intbig_ops. Oleg Bartunov
with some kibitzing from Tom Lane.
Diffstat (limited to 'contrib/intarray/expected')
-rw-r--r-- | contrib/intarray/expected/_int.out | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/intarray/expected/_int.out b/contrib/intarray/expected/_int.out index 62748cefaf2..4cde92ce566 100644 --- a/contrib/intarray/expected/_int.out +++ b/contrib/intarray/expected/_int.out @@ -8,7 +8,7 @@ CREATE TABLE test__int( a int[] ); SELECT count(*) from test__int WHERE a && '{23,50}'; count ------- - 345 + 403 (1 row) SELECT count(*) from test__int WHERE a @ '{23,50}'; @@ -21,7 +21,7 @@ CREATE INDEX text_idx on test__int using gist ( a gist__int_ops ) with ( islossy SELECT count(*) from test__int WHERE a && '{23,50}'; count ------- - 345 + 403 (1 row) SELECT count(*) from test__int WHERE a @ '{23,50}'; @@ -35,7 +35,7 @@ CREATE INDEX text_idx on test__int using gist ( a gist__intbig_ops ) with ( islo SELECT count(*) from test__int WHERE a && '{23,50}'; count ------- - 345 + 403 (1 row) SELECT count(*) from test__int WHERE a @ '{23,50}'; |