Commit ccbda84 1 parent 07d64b3 commit ccbda84 Copy full SHA for ccbda84
File tree 3 files changed +8
-3
lines changed
3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -153,6 +153,11 @@ SELECT i FROM tst WHERE i > i;
153
153
(0 rows)
154
154
155
155
--SELECT a.j FROM tst a(j);
156
+ SELECT a.* FROM tst as a;
157
+ i
158
+ ---
159
+ (0 rows)
160
+
156
161
DROP GRAPH new_cypher CASCADE;
157
162
NOTICE: drop cascades to 2 other objects
158
163
DETAIL: drop cascades to table new_cypher._ag_label_vertex
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ SELECT a.j FROM tst AS a(j);
77
77
SELECT i FROM tst WHERE i = i;
78
78
SELECT i FROM tst WHERE i > i;
79
79
-- SELECT a.j FROM tst a(j);
80
-
80
+ SELECT a. * FROM tst as a;
81
81
82
82
DROP GRAPH new_cypher CASCADE;
83
83
DROP GRAPH new_cypher_2 CASCADE;
Original file line number Diff line number Diff line change @@ -1838,11 +1838,11 @@ indirection_el:
1838
1838
{
1839
1839
$$ = (Node *) makeString($2 );
1840
1840
}
1841
- /* | '.' '*'
1841
+ | ' .' ' *'
1842
1842
{
1843
1843
$$ = (Node *) makeNode(A_Star);
1844
1844
}
1845
- | '[' cypher_a_expr ']'
1845
+ /* | '[' a_expr ']'
1846
1846
{
1847
1847
A_Indices *ai = makeNode(A_Indices);
1848
1848
ai->is_slice = false;
You can’t perform that action at this time.
0 commit comments