summaryrefslogtreecommitdiff
path: root/src/test/regress/expected/with.out
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/regress/expected/with.out')
-rw-r--r--src/test/regress/expected/with.out6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/test/regress/expected/with.out b/src/test/regress/expected/with.out
index 3491ce42b5..b31d58f816 100644
--- a/src/test/regress/expected/with.out
+++ b/src/test/regress/expected/with.out
@@ -1678,16 +1678,14 @@ WITH t AS (
(33)
RETURNING *
)
-SELECT * FROM t;
+SELECT * FROM t LIMIT 1;
NOTICE: y_trigger: a = 31
NOTICE: y_trigger: a = 32
NOTICE: y_trigger: a = 33
a
----
31
- 32
- 33
-(3 rows)
+(1 row)
SELECT * FROM y;
a