1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Stop a few regression tests from needlessly disabling GEQO. This was

necessary in 1997, when geqo_threshold did not exist, but it is no
longer needed.
This commit is contained in:
Neil Conway
2007-05-29 04:17:08 +00:00
parent e031844eac
commit 6a6c752b08
8 changed files with 0 additions and 23 deletions

View File

@ -87,8 +87,6 @@ SELECT '' AS twenty, b.f1 / p.f1 AS rotation
-- Paths
--
SET geqo TO 'off';
SELECT '' AS eight, npoints(f1) AS npoints, f1 AS path FROM PATH_TBL;
SELECT '' AS four, path(f1) FROM POLYGON_TBL;
@ -101,8 +99,6 @@ SELECT '' AS eight, p1.f1 + point '(10,10)' AS dist_add
SELECT '' AS eight, p1.f1 * point '(2,-1)' AS dist_mul
FROM PATH_TBL p1;
RESET geqo;
--
-- Polygons
--