Minor tweak to make rowtypes regression test run faster. We don't

currently have any better strategy for this query than re-running the
sub-select over and over; it seems unlikely that doing so 10000 times
is a more useful test than doing it a few dozen times.
This commit is contained in:
Tom Lane 2007-02-09 20:17:59 +00:00
parent 6e1664beaf
commit 6be40def01
2 changed files with 4 additions and 2 deletions

View File

@ -206,7 +206,8 @@ LINE 1: select ROW('ABC','DEF') ~~ ROW('DEF','ABC') as fail;
HINT: Row comparison operators must be associated with btree operator families.
-- Check row comparison with a subselect
select unique1, unique2 from tenk1
where (unique1, unique2) < any (select ten, ten from tenk1 where hundred < 3);
where (unique1, unique2) < any (select ten, ten from tenk1 where hundred < 3)
and unique1 <= 20;
unique1 | unique2
---------+---------
1 | 2838

View File

@ -100,7 +100,8 @@ select ROW('ABC','DEF') ~~ ROW('DEF','ABC') as fail;
-- Check row comparison with a subselect
select unique1, unique2 from tenk1
where (unique1, unique2) < any (select ten, ten from tenk1 where hundred < 3);
where (unique1, unique2) < any (select ten, ten from tenk1 where hundred < 3)
and unique1 <= 20;
-- Also check row comparison with an indexable condition
select thousand, tenthous from tenk1