Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 7aefcf8

Browse files
author
Vladimir Ershov
committed
Merge commit 'fa41186e604357e96a5dc00d4dfa30f681debdd7' into PGPROEE9_6_ALPHA
2 parents 627dd76 + fa41186 commit 7aefcf8

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

contrib/sr_plan/expected/sr_plan.out

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
CREATE EXTENSION sr_plan;
2-
set client_min_messages = LOG;
32
CREATE TABLE test_table(test_attr1 int, test_attr2 int);
43
SET sr_plan.write_mode = true;
54
SELECT * FROM test_table WHERE test_attr1 = _p(10);
@@ -35,19 +34,16 @@ SELECT * FROM test_table WHERE test_attr1 = 15;
3534

3635
UPDATE sr_plans SET enable = true;
3736
SELECT * FROM test_table WHERE test_attr1 = _p(10);
38-
LOG: Ok we find saved plan.
3937
test_attr1 | test_attr2
4038
------------+------------
4139
(0 rows)
4240

4341
SELECT * FROM test_table WHERE test_attr1 = _p(15);
44-
LOG: Ok we find saved plan.
4542
test_attr1 | test_attr2
4643
------------+------------
4744
(0 rows)
4845

4946
SELECT * FROM test_table WHERE test_attr1 = 10;
50-
LOG: Ok we find saved plan.
5147
test_attr1 | test_attr2
5248
------------+------------
5349
(0 rows)
@@ -83,4 +79,3 @@ SELECT * FROM test_table WHERE test_attr1 = 15;
8379
------------+------------
8480
(0 rows)
8581

86-
RESET client_min_messages;

contrib/sr_plan/sql/sr_plan.sql

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
CREATE EXTENSION sr_plan;
2-
set client_min_messages = LOG;
32

43
CREATE TABLE test_table(test_attr1 int, test_attr2 int);
54
SET sr_plan.write_mode = true;
@@ -26,5 +25,3 @@ SELECT * FROM test_table WHERE test_attr1 = _p(10);
2625
SELECT * FROM test_table WHERE test_attr1 = 10;
2726
SELECT * FROM test_table WHERE test_attr1 = 10;
2827
SELECT * FROM test_table WHERE test_attr1 = 15;
29-
30-
RESET client_min_messages;

0 commit comments

Comments
 (0)