File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -28,5 +28,5 @@ dir='$(top_srcdir)/src/include'
28
28
endif
29
29
30
30
# uncomment this if you need autogeneration
31
- # serialize.c deserialize.c: gen_parser.py nodes.h
32
- # python gen_parser.py nodes.h $(dir)
31
+ serialize.c deserialize.c : gen_parser.py nodes.h
32
+ python gen_parser.py nodes.h $(dir )
Original file line number Diff line number Diff line change @@ -53,15 +53,15 @@ SELECT * FROM test_table WHERE test_attr1 = 15;
53
53
------------+------------
54
54
(0 rows)
55
55
56
- SELECT enable, valid, query FROM sr_plans;
56
+ SELECT enable, valid, query FROM sr_plans ORDER BY query_hash ;
57
57
enable | valid | query
58
58
--------+-------+-----------------------------------------------------
59
59
t | t | SELECT * FROM test_table WHERE test_attr1 = _p(10);
60
60
t | t | SELECT * FROM test_table WHERE test_attr1 = 10;
61
61
(2 rows)
62
62
63
63
DROP TABLE test_table;
64
- SELECT enable, valid, query FROM sr_plans;
64
+ SELECT enable, valid, query FROM sr_plans ORDER BY query_hash ;
65
65
enable | valid | query
66
66
--------+-------+-----------------------------------------------------
67
67
t | f | SELECT * FROM test_table WHERE test_attr1 = _p(10);
Original file line number Diff line number Diff line change @@ -18,9 +18,9 @@ SELECT * FROM test_table WHERE test_attr1 = _p(15);
18
18
SELECT * FROM test_table WHERE test_attr1 = 10 ;
19
19
SELECT * FROM test_table WHERE test_attr1 = 15 ;
20
20
21
- SELECT enable, valid, query FROM sr_plans;
21
+ SELECT enable, valid, query FROM sr_plans ORDER BY query_hash ;
22
22
DROP TABLE test_table;
23
- SELECT enable, valid, query FROM sr_plans;
23
+ SELECT enable, valid, query FROM sr_plans ORDER BY query_hash ;
24
24
25
25
CREATE TABLE test_table (test_attr1 int , test_attr2 int );
26
26
You can’t perform that action at this time.
0 commit comments