mirror of
https://github.com/postgres/postgres.git
synced 2025-07-20 05:03:10 +03:00
Improve regression test coverage of GiST index building.
Add a test case that exercises the "buffering build" code path. This covers almost all the non-error-case lines in gistbuild.c and gistbuildbuffers.c. Matheus Alcantara, based on earlier work by Pavel Borisov Discussion: https://postgr.es/m/3z8Fde-IHbW57a7bEZtaf19f4YOCWu67IZoWJoGW18rKD9R16ZHHchf4d7KFI3Yg7-0N4NonFuwKEgh98HjMCZYoVx7KOioPo6Wn2nZRpf4=@pm.me
This commit is contained in:
@ -387,6 +387,9 @@ select p from gist_tbl order by circle(p,1) <-> point(0,0) limit 1;
|
|||||||
|
|
||||||
select p from gist_tbl order by circle(p,1) <-> point(0,0) limit 1;
|
select p from gist_tbl order by circle(p,1) <-> point(0,0) limit 1;
|
||||||
ERROR: lossy distance functions are not supported in index-only scans
|
ERROR: lossy distance functions are not supported in index-only scans
|
||||||
|
-- Force an index build using buffering.
|
||||||
|
create index gist_tbl_box_index_forcing_buffering on gist_tbl using gist (p)
|
||||||
|
with (buffering=on, fillfactor=50);
|
||||||
-- Clean up
|
-- Clean up
|
||||||
reset enable_seqscan;
|
reset enable_seqscan;
|
||||||
reset enable_bitmapscan;
|
reset enable_bitmapscan;
|
||||||
|
@ -169,6 +169,10 @@ explain (verbose, costs off)
|
|||||||
select p from gist_tbl order by circle(p,1) <-> point(0,0) limit 1;
|
select p from gist_tbl order by circle(p,1) <-> point(0,0) limit 1;
|
||||||
select p from gist_tbl order by circle(p,1) <-> point(0,0) limit 1;
|
select p from gist_tbl order by circle(p,1) <-> point(0,0) limit 1;
|
||||||
|
|
||||||
|
-- Force an index build using buffering.
|
||||||
|
create index gist_tbl_box_index_forcing_buffering on gist_tbl using gist (p)
|
||||||
|
with (buffering=on, fillfactor=50);
|
||||||
|
|
||||||
-- Clean up
|
-- Clean up
|
||||||
reset enable_seqscan;
|
reset enable_seqscan;
|
||||||
reset enable_bitmapscan;
|
reset enable_bitmapscan;
|
||||||
|
Reference in New Issue
Block a user