aboutsummaryrefslogtreecommitdiff
path: root/src/test/regress/expected/random.out
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/regress/expected/random.out')
-rw-r--r--src/test/regress/expected/random.out3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/regress/expected/random.out b/src/test/regress/expected/random.out
index 302c3d61c7a..a919b28d8da 100644
--- a/src/test/regress/expected/random.out
+++ b/src/test/regress/expected/random.out
@@ -23,7 +23,8 @@ INTERSECT
(0 rows)
-- count roughly 1/10 of the tuples
-SELECT count(*) AS random INTO RANDOM_TBL
+CREATE TABLE RANDOM_TBL AS
+ SELECT count(*) AS random
FROM onek WHERE random() < 1.0/10;
-- select again, the count should be different
INSERT INTO RANDOM_TBL (random)