Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
6eeb3d9e
Commit
6eeb3d9e
authored
Feb 13, 1998
by
Vadim B. Mikheev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gram.y: ALL_SUBLINK type was returned for x Op (subquery).
parse_expr.c: only Op of bool type are supported currently...
parent
64e7adb0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
169 additions
and
158 deletions
+169
-158
src/backend/parser/gram.y
src/backend/parser/gram.y
+156
-156
src/backend/parser/parse_expr.c
src/backend/parser/parse_expr.c
+13
-2
No files found.
src/backend/parser/gram.y
View file @
6eeb3d9e
...
...
@@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.
1 1998/02/11 04:11:19 thomas
Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.
2 1998/02/13 08:10:30 vadim
Exp $
*
* HISTORY
* AUTHOR DATE MAJOR EVENT
...
...
@@ -2955,6 +2955,89 @@ row_expr: '(' row_descriptor ')' IN '(' SubSelect ')'
n->subselect = $7;
$$ = (Node *)n;
}
| '(' row_descriptor ')' Op '(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = $2;
n->oper = lcons($4, NIL);
if (strcmp($4,"<>") == 0)
n->useor = true;
else
n->useor = false;
n->subLinkType = EXPR_SUBLINK;
n->subselect = $6;
$$ = (Node *)n;
}
| '(' row_descriptor ')' '+' '(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = $2;
n->oper = lcons("+", NIL);
n->useor = false;
n->subLinkType = EXPR_SUBLINK;
n->subselect = $6;
$$ = (Node *)n;
}
| '(' row_descriptor ')' '-' '(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = $2;
n->oper = lcons("-", NIL);
n->useor = false;
n->subLinkType = EXPR_SUBLINK;
n->subselect = $6;
$$ = (Node *)n;
}
| '(' row_descriptor ')' '/' '(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = $2;
n->oper = lcons("/", NIL);
n->useor = false;
n->subLinkType = EXPR_SUBLINK;
n->subselect = $6;
$$ = (Node *)n;
}
| '(' row_descriptor ')' '*' '(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = $2;
n->oper = lcons("*", NIL);
n->useor = false;
n->subLinkType = EXPR_SUBLINK;
n->subselect = $6;
$$ = (Node *)n;
}
| '(' row_descriptor ')' '<' '(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = $2;
n->oper = lcons("<", NIL);
n->useor = false;
n->subLinkType = EXPR_SUBLINK;
n->subselect = $6;
$$ = (Node *)n;
}
| '(' row_descriptor ')' '>' '(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = $2;
n->oper = lcons(">", NIL);
n->useor = false;
n->subLinkType = EXPR_SUBLINK;
n->subselect = $6;
$$ = (Node *)n;
}
| '(' row_descriptor ')' '=' '(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = $2;
n->oper = lcons("=", NIL);
n->useor = false;
n->subLinkType = EXPR_SUBLINK;
n->subselect = $6;
$$ = (Node *)n;
}
| '(' row_descriptor ')' Op ANY '(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
...
...
@@ -3115,89 +3198,6 @@ row_expr: '(' row_descriptor ')' IN '(' SubSelect ')'
n->subselect = $7;
$$ = (Node *)n;
}
| '(' row_descriptor ')' Op '(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = $2;
n->oper = lcons($4, NIL);
if (strcmp($4,"<>") == 0)
n->useor = true;
else
n->useor = false;
n->subLinkType = EXPR_SUBLINK;
n->subselect = $6;
$$ = (Node *)n;
}
| '(' row_descriptor ')' '+' '(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = $2;
n->oper = lcons("+", NIL);
n->useor = false;
n->subLinkType = EXPR_SUBLINK;
n->subselect = $6;
$$ = (Node *)n;
}
| '(' row_descriptor ')' '-' '(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = $2;
n->oper = lcons("-", NIL);
n->useor = false;
n->subLinkType = EXPR_SUBLINK;
n->subselect = $6;
$$ = (Node *)n;
}
| '(' row_descriptor ')' '/' '(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = $2;
n->oper = lcons("/", NIL);
n->useor = false;
n->subLinkType = EXPR_SUBLINK;
n->subselect = $6;
$$ = (Node *)n;
}
| '(' row_descriptor ')' '*' '(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = $2;
n->oper = lcons("*", NIL);
n->useor = false;
n->subLinkType = EXPR_SUBLINK;
n->subselect = $6;
$$ = (Node *)n;
}
| '(' row_descriptor ')' '<' '(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = $2;
n->oper = lcons("<", NIL);
n->useor = false;
n->subLinkType = EXPR_SUBLINK;
n->subselect = $6;
$$ = (Node *)n;
}
| '(' row_descriptor ')' '>' '(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = $2;
n->oper = lcons(">", NIL);
n->useor = false;
n->subLinkType = EXPR_SUBLINK;
n->subselect = $6;
$$ = (Node *)n;
}
| '(' row_descriptor ')' '=' '(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = $2;
n->oper = lcons("=", NIL);
n->useor = false;
n->subLinkType = EXPR_SUBLINK;
n->subselect = $6;
$$ = (Node *)n;
}
| '(' row_descriptor ')' Op '(' row_descriptor ')'
{
$$ = makeRowExpr($4, $2, $6);
...
...
@@ -3614,244 +3614,244 @@ a_expr: attr opt_indirection
}
else $$ = $6;
}
| a_expr Op
ANY
'(' SubSelect ')'
| a_expr Op '(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = lcons($1,
NI
L);
n->lefthand = lcons($1,
NUL
L);
n->oper = lcons($2,NIL);
n->useor = false;
n->subLinkType =
ANY
_SUBLINK;
n->subselect = $
5
;
n->subLinkType =
EXPR
_SUBLINK;
n->subselect = $
4
;
$$ = (Node *)n;
}
| a_expr '+'
ANY
'(' SubSelect ')'
| a_expr '+' '(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = lcons($1,
NI
L);
n->lefthand = lcons($1,
NUL
L);
n->oper = lcons("+",NIL);
n->useor = false;
n->subLinkType =
ANY
_SUBLINK;
n->subselect = $
5
;
n->subLinkType =
EXPR
_SUBLINK;
n->subselect = $
4
;
$$ = (Node *)n;
}
| a_expr '-'
ANY
'(' SubSelect ')'
| a_expr '-' '(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = lcons($1,
NI
L);
n->lefthand = lcons($1,
NUL
L);
n->oper = lcons("-",NIL);
n->useor = false;
n->subLinkType =
ANY
_SUBLINK;
n->subselect = $
5
;
n->subLinkType =
EXPR
_SUBLINK;
n->subselect = $
4
;
$$ = (Node *)n;
}
| a_expr '/'
ANY
'(' SubSelect ')'
| a_expr '/' '(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = lcons($1,
NI
L);
n->lefthand = lcons($1,
NUL
L);
n->oper = lcons("/",NIL);
n->useor = false;
n->subLinkType =
ANY
_SUBLINK;
n->subselect = $
5
;
n->subLinkType =
EXPR
_SUBLINK;
n->subselect = $
4
;
$$ = (Node *)n;
}
| a_expr '*'
ANY
'(' SubSelect ')'
| a_expr '*' '(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = lcons($1,
NI
L);
n->lefthand = lcons($1,
NUL
L);
n->oper = lcons("*",NIL);
n->useor = false;
n->subLinkType =
ANY
_SUBLINK;
n->subselect = $
5
;
n->subLinkType =
EXPR
_SUBLINK;
n->subselect = $
4
;
$$ = (Node *)n;
}
| a_expr '<'
ANY
'(' SubSelect ')'
| a_expr '<' '(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = lcons($1,
NI
L);
n->lefthand = lcons($1,
NUL
L);
n->oper = lcons("<",NIL);
n->useor = false;
n->subLinkType =
ANY
_SUBLINK;
n->subselect = $
5
;
n->subLinkType =
EXPR
_SUBLINK;
n->subselect = $
4
;
$$ = (Node *)n;
}
| a_expr '>'
ANY
'(' SubSelect ')'
| a_expr '>' '(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = lcons($1,
NI
L);
n->lefthand = lcons($1,
NUL
L);
n->oper = lcons(">",NIL);
n->useor = false;
n->subLinkType =
ANY
_SUBLINK;
n->subselect = $
5
;
n->subLinkType =
EXPR
_SUBLINK;
n->subselect = $
4
;
$$ = (Node *)n;
}
| a_expr '='
ANY
'(' SubSelect ')'
| a_expr '=' '(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = lcons($1,
NI
L);
n->lefthand = lcons($1,
NUL
L);
n->oper = lcons("=",NIL);
n->useor = false;
n->subLinkType =
ANY
_SUBLINK;
n->subselect = $
5
;
n->subLinkType =
EXPR
_SUBLINK;
n->subselect = $
4
;
$$ = (Node *)n;
}
| a_expr Op A
LL
'(' SubSelect ')'
| a_expr Op A
NY
'(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = lcons($1,
NUL
L);
n->lefthand = lcons($1,
NI
L);
n->oper = lcons($2,NIL);
n->useor = false;
n->subLinkType = A
LL
_SUBLINK;
n->subLinkType = A
NY
_SUBLINK;
n->subselect = $5;
$$ = (Node *)n;
}
| a_expr '+' A
LL
'(' SubSelect ')'
| a_expr '+' A
NY
'(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = lcons($1,
NUL
L);
n->lefthand = lcons($1,
NI
L);
n->oper = lcons("+",NIL);
n->useor = false;
n->subLinkType = A
LL
_SUBLINK;
n->subLinkType = A
NY
_SUBLINK;
n->subselect = $5;
$$ = (Node *)n;
}
| a_expr '-' A
LL
'(' SubSelect ')'
| a_expr '-' A
NY
'(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = lcons($1,
NUL
L);
n->lefthand = lcons($1,
NI
L);
n->oper = lcons("-",NIL);
n->useor = false;
n->subLinkType = A
LL
_SUBLINK;
n->subLinkType = A
NY
_SUBLINK;
n->subselect = $5;
$$ = (Node *)n;
}
| a_expr '/' A
LL
'(' SubSelect ')'
| a_expr '/' A
NY
'(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = lcons($1,
NUL
L);
n->lefthand = lcons($1,
NI
L);
n->oper = lcons("/",NIL);
n->useor = false;
n->subLinkType = A
LL
_SUBLINK;
n->subLinkType = A
NY
_SUBLINK;
n->subselect = $5;
$$ = (Node *)n;
}
| a_expr '*' A
LL
'(' SubSelect ')'
| a_expr '*' A
NY
'(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = lcons($1,
NUL
L);
n->lefthand = lcons($1,
NI
L);
n->oper = lcons("*",NIL);
n->useor = false;
n->subLinkType = A
LL
_SUBLINK;
n->subLinkType = A
NY
_SUBLINK;
n->subselect = $5;
$$ = (Node *)n;
}
| a_expr '<' A
LL
'(' SubSelect ')'
| a_expr '<' A
NY
'(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = lcons($1,
NUL
L);
n->lefthand = lcons($1,
NI
L);
n->oper = lcons("<",NIL);
n->useor = false;
n->subLinkType = A
LL
_SUBLINK;
n->subLinkType = A
NY
_SUBLINK;
n->subselect = $5;
$$ = (Node *)n;
}
| a_expr '>' A
LL
'(' SubSelect ')'
| a_expr '>' A
NY
'(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = lcons($1,
NUL
L);
n->lefthand = lcons($1,
NI
L);
n->oper = lcons(">",NIL);
n->useor = false;
n->subLinkType = A
LL
_SUBLINK;
n->subLinkType = A
NY
_SUBLINK;
n->subselect = $5;
$$ = (Node *)n;
}
| a_expr '=' A
LL
'(' SubSelect ')'
| a_expr '=' A
NY
'(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = lcons($1,
NUL
L);
n->lefthand = lcons($1,
NI
L);
n->oper = lcons("=",NIL);
n->useor = false;
n->subLinkType = A
LL
_SUBLINK;
n->subLinkType = A
NY
_SUBLINK;
n->subselect = $5;
$$ = (Node *)n;
}
| a_expr Op '(' SubSelect ')'
| a_expr Op
ALL
'(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = lcons($1, NULL);
n->oper = lcons($2,NIL);
n->useor = false;
n->subLinkType = ALL_SUBLINK;
n->subselect = $
4
;
n->subselect = $
5
;
$$ = (Node *)n;
}
| a_expr '+' '(' SubSelect ')'
| a_expr '+'
ALL
'(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = lcons($1, NULL);
n->oper = lcons("+",NIL);
n->useor = false;
n->subLinkType = ALL_SUBLINK;
n->subselect = $
4
;
n->subselect = $
5
;
$$ = (Node *)n;
}
| a_expr '-' '(' SubSelect ')'
| a_expr '-'
ALL
'(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = lcons($1, NULL);
n->oper = lcons("-",NIL);
n->useor = false;
n->subLinkType = ALL_SUBLINK;
n->subselect = $
4
;
n->subselect = $
5
;
$$ = (Node *)n;
}
| a_expr '/' '(' SubSelect ')'
| a_expr '/'
ALL
'(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = lcons($1, NULL);
n->oper = lcons("/",NIL);
n->useor = false;
n->subLinkType = ALL_SUBLINK;
n->subselect = $
4
;
n->subselect = $
5
;
$$ = (Node *)n;
}
| a_expr '*' '(' SubSelect ')'
| a_expr '*'
ALL
'(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = lcons($1, NULL);
n->oper = lcons("*",NIL);
n->useor = false;
n->subLinkType = ALL_SUBLINK;
n->subselect = $
4
;
n->subselect = $
5
;
$$ = (Node *)n;
}
| a_expr '<' '(' SubSelect ')'
| a_expr '<'
ALL
'(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = lcons($1, NULL);
n->oper = lcons("<",NIL);
n->useor = false;
n->subLinkType = ALL_SUBLINK;
n->subselect = $
4
;
n->subselect = $
5
;
$$ = (Node *)n;
}
| a_expr '>' '(' SubSelect ')'
| a_expr '>'
ALL
'(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = lcons($1, NULL);
n->oper = lcons(">",NIL);
n->useor = false;
n->subLinkType = ALL_SUBLINK;
n->subselect = $
4
;
n->subselect = $
5
;
$$ = (Node *)n;
}
| a_expr '=' '(' SubSelect ')'
| a_expr '='
ALL
'(' SubSelect ')'
{
SubLink *n = makeNode(SubLink);
n->lefthand = lcons($1, NULL);
n->oper = lcons("=",NIL);
n->useor = false;
n->subLinkType = ALL_SUBLINK;
n->subselect = $
4
;
n->subselect = $
5
;
$$ = (Node *)n;
}
| a_expr AND a_expr
...
...
src/backend/parser/parse_expr.c
View file @
6eeb3d9e
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/parse_expr.c,v 1.2
0 1998/02/13 03:41:2
3 vadim Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/parse_expr.c,v 1.2
1 1998/02/13 08:10:3
3 vadim Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -264,7 +264,7 @@ transformExpr(ParseState *pstate, Node *expr, int precedence)
if
(
length
(
left_expr
)
!=
length
(
right_expr
))
elog
(
ERROR
,
"Subselect has too many or too few fields."
);
elog
(
ERROR
,
"
parser:
Subselect has too many or too few fields."
);
sublink
->
oper
=
NIL
;
foreach
(
elist
,
left_expr
)
...
...
@@ -275,6 +275,17 @@ transformExpr(ParseState *pstate, Node *expr, int precedence)
Expr
*
op_expr
;
op_expr
=
make_op
(
op
,
lexpr
,
tent
->
expr
);
/*
* HACK! Second IF is more valid but currently
* we don't support EXPR subqueries inside
* expressions generally, only in WHERE clauses.
* After fixing this, first IF must be removed.
*/
if
(
op_expr
->
typeOid
!=
BOOLOID
)
elog
(
ERROR
,
"parser: '%s' must return 'bool' to be used with subquery"
,
op
);
if
(
op_expr
->
typeOid
!=
BOOLOID
&&
sublink
->
subLinkType
!=
EXPR_SUBLINK
)
elog
(
ERROR
,
"parser: '%s' must return 'bool' to be used with quantified predicate subquery"
,
op
);
sublink
->
oper
=
lappend
(
sublink
->
oper
,
op_expr
);
right_expr
=
lnext
(
right_expr
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment