Commit 247b3f90 authored by Vadim B. Mikheev's avatar Vadim B. Mikheev

SELECT FOR UPDATE is implemented...

parent 443e24be
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.62 1998/12/18 09:10:21 vadim Exp $ * $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.63 1999/01/25 12:01:03 vadim Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -363,6 +363,32 @@ ExecCheckPerms(CmdType operation, ...@@ -363,6 +363,32 @@ ExecCheckPerms(CmdType operation,
} }
if (!ok) if (!ok)
elog(ERROR, "%s: %s", rname.data, aclcheck_error_strings[aclcheck_result]); elog(ERROR, "%s: %s", rname.data, aclcheck_error_strings[aclcheck_result]);
if (parseTree->rowMark != NULL)
{
foreach(lp, parseTree->rowMark)
{
RowMark *rm = lfirst(lp);
if (!(rm->info & ROW_ACL_FOR_UPDATE))
continue;
relid = ((RangeTblEntry *)nth(rm->rti - 1, rangeTable))->relid;
htup = SearchSysCacheTuple(RELOID,
ObjectIdGetDatum(relid),
0, 0, 0);
if (!HeapTupleIsValid(htup))
elog(ERROR, "ExecCheckPerms: bogus RT relid: %d",
relid);
StrNCpy(rname.data,
((Form_pg_class) GETSTRUCT(htup))->relname.data,
NAMEDATALEN);
ok = ((aclcheck_result = CHECK(ACL_WR)) == ACLCHECK_OK);
opstr = "write";
if (!ok)
elog(ERROR, "%s: %s", rname.data, aclcheck_error_strings[aclcheck_result]);
}
}
} }
/* =============================================================== /* ===============================================================
...@@ -372,6 +398,11 @@ ExecCheckPerms(CmdType operation, ...@@ -372,6 +398,11 @@ ExecCheckPerms(CmdType operation,
* =============================================================== * ===============================================================
*/ */
typedef struct execRowMark
{
Relation relation;
char resname[32];
} execRowMark;
/* ---------------------------------------------------------------- /* ----------------------------------------------------------------
* InitPlan * InitPlan
...@@ -398,6 +429,10 @@ InitPlan(CmdType operation, Query *parseTree, Plan *plan, EState *estate) ...@@ -398,6 +429,10 @@ InitPlan(CmdType operation, Query *parseTree, Plan *plan, EState *estate)
rangeTable = parseTree->rtable; rangeTable = parseTree->rtable;
resultRelation = parseTree->resultRelation; resultRelation = parseTree->resultRelation;
#ifndef NO_SECURITY
ExecCheckPerms(operation, resultRelation, rangeTable, parseTree);
#endif
/****************** /******************
* initialize the node's execution state * initialize the node's execution state
****************** ******************
...@@ -468,9 +503,32 @@ InitPlan(CmdType operation, Query *parseTree, Plan *plan, EState *estate) ...@@ -468,9 +503,32 @@ InitPlan(CmdType operation, Query *parseTree, Plan *plan, EState *estate)
estate->es_result_relation_info = NULL; estate->es_result_relation_info = NULL;
} }
#ifndef NO_SECURITY /*
ExecCheckPerms(operation, resultRelation, rangeTable, parseTree); * Have to lock relations selected for update
#endif */
estate->es_rowMark = NULL;
if (parseTree->rowMark != NULL)
{
Relation relation;
Oid relid;
RowMark *rm;
List *l;
execRowMark *erm;
foreach(l, parseTree->rowMark)
{
rm = lfirst(l);
relid = ((RangeTblEntry *)nth(rm->rti - 1, rangeTable))->relid;
relation = heap_open(relid);
LockRelation(relation, RowShareLock);
if (!(rm->info & ROW_MARK_FOR_UPDATE))
continue;
erm = (execRowMark*) palloc(sizeof(execRowMark));
erm->relation = relation;
sprintf(erm->resname, "ctid%u", rm->rti);
estate->es_rowMark = lappend(estate->es_rowMark, erm);
}
}
/****************** /******************
* initialize the executor "tuple" table. * initialize the executor "tuple" table.
...@@ -777,6 +835,49 @@ ExecutePlan(EState *estate, ...@@ -777,6 +835,49 @@ ExecutePlan(EState *estate,
* ctid!! */ * ctid!! */
tupleid = &tuple_ctid; tupleid = &tuple_ctid;
} }
else if (estate->es_rowMark != NULL)
{
List *l;
execRowMark *erm;
Buffer buffer;
HeapTupleData tuple;
int test;
foreach (l, estate->es_rowMark)
{
erm = lfirst(l);
if (!ExecGetJunkAttribute(junkfilter,
slot,
erm->resname,
&datum,
&isNull))
elog(ERROR, "ExecutePlan: NO (junk) `%s' was found!", erm->resname);
if (isNull)
elog(ERROR, "ExecutePlan: (junk) `%s' is NULL!", erm->resname);
tuple.t_self = *((ItemPointer) DatumGetPointer(datum));
test = heap_mark4update(erm->relation, &tuple, &buffer);
ReleaseBuffer(buffer);
switch (test)
{
case HeapTupleSelfUpdated:
case HeapTupleMayBeUpdated:
break;
case HeapTupleUpdated:
if (XactIsoLevel == XACT_SERIALIZABLE)
elog(ERROR, "Can't serialize access due to concurrent update");
else
elog(ERROR, "Isolation level %u is not supported", XactIsoLevel);
return(NULL);
default:
elog(ERROR, "Unknown status %u from heap_mark4update", test);
return(NULL);
}
}
}
/****************** /******************
* Finally create a new "clean" tuple with all junk attributes * Finally create a new "clean" tuple with all junk attributes
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/optimizer/plan/planner.c,v 1.36 1999/01/18 00:09:47 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/optimizer/plan/planner.c,v 1.37 1999/01/25 12:01:04 vadim Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -20,6 +20,8 @@ ...@@ -20,6 +20,8 @@
#include "nodes/plannodes.h" #include "nodes/plannodes.h"
#include "nodes/parsenodes.h" #include "nodes/parsenodes.h"
#include "nodes/relation.h" #include "nodes/relation.h"
#include "nodes/makefuncs.h"
#include "catalog/pg_type.h"
#include "parser/parse_expr.h" #include "parser/parse_expr.h"
#include "utils/elog.h" #include "utils/elog.h"
...@@ -119,6 +121,8 @@ union_planner(Query *parse) ...@@ -119,6 +121,8 @@ union_planner(Query *parse)
else if ((rt_index = else if ((rt_index =
first_inherit_rt_entry(rangetable)) != -1) first_inherit_rt_entry(rangetable)) != -1)
{ {
if (parse->rowMark != NULL)
elog(ERROR, "SELECT FOR UPDATE is not supported for inherit queries");
result_plan = (Plan *) plan_inherit_queries(parse, rt_index); result_plan = (Plan *) plan_inherit_queries(parse, rt_index);
/* XXX do we need to do this? bjm 12/19/97 */ /* XXX do we need to do this? bjm 12/19/97 */
tlist = preprocess_targetlist(tlist, tlist = preprocess_targetlist(tlist,
...@@ -148,17 +152,49 @@ union_planner(Query *parse) ...@@ -148,17 +152,49 @@ union_planner(Query *parse)
* a new entry and attaches it to the list 'new_tlist' (consisting of the * a new entry and attaches it to the list 'new_tlist' (consisting of the
* VAR node and the RESDOM node as usual with tlists :-) ) */ * VAR node and the RESDOM node as usual with tlists :-) ) */
if (parse->hasAggs) if (parse->hasAggs)
{ {
if (parse->havingQual != NULL) if (parse->havingQual != NULL)
{ {
new_tlist = check_having_qual_for_vars(parse->havingQual,new_tlist); new_tlist = check_having_qual_for_vars(parse->havingQual,new_tlist);
} }
} }
new_tlist = preprocess_targetlist(new_tlist, new_tlist = preprocess_targetlist(new_tlist,
parse->commandType, parse->commandType,
parse->resultRelation, parse->resultRelation,
parse->rtable); parse->rtable);
/* FOR UPDATE ... */
if (parse->rowMark != NULL)
{
List *l;
TargetEntry *ctid;
Resdom *resdom;
Var *var;
char *resname;
foreach (l, parse->rowMark)
{
if (!(((RowMark*)lfirst(l))->info & ROW_MARK_FOR_UPDATE))
continue;
resname = (char*) palloc(32);
sprintf(resname, "ctid%u", ((RowMark*)lfirst(l))->rti);
resdom = makeResdom(length(new_tlist) + 1,
TIDOID,
-1,
resname,
0,
0,
1);
var = makeVar(((RowMark*)lfirst(l))->rti, -1, TIDOID,
-1, 0, ((RowMark*)lfirst(l))->rti, -1);
ctid = makeTargetEntry(resdom, (Node *) var);
new_tlist = lappend(new_tlist, ctid);
}
}
/* Here starts the original (pre having) code */ /* Here starts the original (pre having) code */
tlist = preprocess_targetlist(tlist, tlist = preprocess_targetlist(tlist,
...@@ -290,7 +326,7 @@ union_planner(Query *parse) ...@@ -290,7 +326,7 @@ union_planner(Query *parse)
pfree(vpm); pfree(vpm);
} }
} }
/* /*
* For now, before we hand back the plan, check to see if there is a * For now, before we hand back the plan, check to see if there is a
* user-specified sort that needs to be done. Eventually, this will * user-specified sort that needs to be done. Eventually, this will
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
* *
* Copyright (c) 1994, Regents of the University of California * Copyright (c) 1994, Regents of the University of California
* *
* $Id: analyze.c,v 1.94 1999/01/21 22:48:07 momjian Exp $ * $Id: analyze.c,v 1.95 1999/01/25 12:01:05 vadim Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -45,7 +45,8 @@ static Query *transformUpdateStmt(ParseState *pstate, UpdateStmt *stmt); ...@@ -45,7 +45,8 @@ static Query *transformUpdateStmt(ParseState *pstate, UpdateStmt *stmt);
static Query *transformCursorStmt(ParseState *pstate, SelectStmt *stmt); static Query *transformCursorStmt(ParseState *pstate, SelectStmt *stmt);
static Query *transformCreateStmt(ParseState *pstate, CreateStmt *stmt); static Query *transformCreateStmt(ParseState *pstate, CreateStmt *stmt);
static void transformForUpdate(Query *qry, List *forUpdate); static void transformForUpdate(Query *qry, List *forUpdate);
void CheckSelectForUpdate(Query *qry);
List *extras_before = NIL; List *extras_before = NIL;
List *extras_after = NIL; List *extras_after = NIL;
...@@ -1134,6 +1135,19 @@ Node *A_Expr_to_Expr(Node *ptr, bool *intersect_present) ...@@ -1134,6 +1135,19 @@ Node *A_Expr_to_Expr(Node *ptr, bool *intersect_present)
return result; return result;
} }
void
CheckSelectForUpdate(Query *qry)
{
if (qry->unionClause != NULL)
elog(ERROR, "SELECT FOR UPDATE is not allowed with UNION/INTERSECT/EXCEPT clause");
if (qry->uniqueFlag != NULL)
elog(ERROR, "SELECT FOR UPDATE is not allowed with DISTINCT clause");
if (qry->groupClause != NULL)
elog(ERROR, "SELECT FOR UPDATE is not allowed with GROUP BY clause");
if (qry->hasAggs)
elog(ERROR, "SELECT FOR UPDATE is not allowed with AGGREGATE");
}
static void static void
transformForUpdate(Query *qry, List *forUpdate) transformForUpdate(Query *qry, List *forUpdate)
{ {
...@@ -1142,6 +1156,8 @@ transformForUpdate(Query *qry, List *forUpdate) ...@@ -1142,6 +1156,8 @@ transformForUpdate(Query *qry, List *forUpdate)
List *l; List *l;
Index i; Index i;
CheckSelectForUpdate(qry);
if (lfirst(forUpdate) == NULL) /* all tables */ if (lfirst(forUpdate) == NULL) /* all tables */
{ {
i = 1; i = 1;
......
...@@ -239,7 +239,7 @@ ...@@ -239,7 +239,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/Attic/gram.c,v 2.62 1999/01/24 00:28:23 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/parser/Attic/gram.c,v 2.63 1999/01/25 12:01:07 vadim Exp $
* *
* HISTORY * HISTORY
* AUTHOR DATE MAJOR EVENT * AUTHOR DATE MAJOR EVENT
...@@ -867,55 +867,55 @@ static const short yyrline[] = { 0, ...@@ -867,55 +867,55 @@ static const short yyrline[] = { 0,
2456, 2468, 2484, 2501, 2515, 2533, 2534, 2537, 2540, 2544, 2456, 2468, 2484, 2501, 2515, 2533, 2534, 2537, 2540, 2544,
2561, 2571, 2579, 2605, 2622, 2639, 2640, 2650, 2672, 2694, 2561, 2571, 2579, 2605, 2622, 2639, 2640, 2650, 2672, 2694,
2695, 2696, 2697, 2698, 2701, 2702, 2705, 2706, 2714, 2731, 2695, 2696, 2697, 2698, 2701, 2702, 2705, 2706, 2714, 2731,
2831, 2835, 2839, 2844, 2853, 2860, 2887, 2888, 2891, 2892, 2820, 2824, 2828, 2833, 2842, 2849, 2876, 2877, 2880, 2881,
2895, 2896, 2899, 2900, 2901, 2902, 2905, 2906, 2909, 2910, 2884, 2885, 2888, 2889, 2890, 2891, 2894, 2895, 2898, 2899,
2913, 2921, 2922, 2923, 2924, 2925, 2926, 2936, 2937, 2940, 2902, 2910, 2911, 2912, 2913, 2914, 2915, 2925, 2926, 2929,
2942, 2944, 2948, 2949, 2952, 2956, 2959, 2964, 2968, 2982, 2931, 2933, 2937, 2938, 2941, 2945, 2948, 2953, 2957, 2971,
2987, 2988, 2991, 2993, 2995, 2999, 3005, 3011, 3019, 3020, 2976, 2977, 2980, 2982, 2984, 2988, 2994, 3000, 3008, 3009,
3022, 3024, 3026, 3028, 3030, 3032, 3036, 3037, 3040, 3041, 3011, 3013, 3015, 3017, 3019, 3021, 3025, 3026, 3029, 3030,
3042, 3045, 3046, 3049, 3064, 3071, 3080, 3081, 3084, 3091, 3031, 3034, 3035, 3038, 3053, 3060, 3069, 3070, 3073, 3080,
3099, 3101, 3103, 3107, 3109, 3111, 3126, 3148, 3149, 3156, 3088, 3090, 3092, 3096, 3098, 3100, 3115, 3137, 3138, 3145,
3157, 3158, 3161, 3169, 3170, 3178, 3184, 3189, 3195, 3203, 3146, 3147, 3150, 3158, 3159, 3167, 3173, 3178, 3184, 3192,
3205, 3207, 3209, 3213, 3224, 3230, 3241, 3249, 3255, 3266, 3194, 3196, 3198, 3202, 3213, 3219, 3230, 3238, 3244, 3255,
3274, 3288, 3315, 3334, 3354, 3355, 3356, 3357, 3360, 3361, 3263, 3277, 3304, 3323, 3343, 3344, 3345, 3346, 3349, 3350,
3364, 3365, 3368, 3369, 3372, 3378, 3385, 3391, 3399, 3400, 3353, 3354, 3357, 3358, 3361, 3367, 3374, 3380, 3388, 3389,
3401, 3402, 3403, 3404, 3407, 3408, 3411, 3412, 3413, 3414, 3390, 3391, 3392, 3393, 3396, 3397, 3400, 3401, 3402, 3403,
3415, 3416, 3417, 3418, 3419, 3429, 3431, 3448, 3458, 3468, 3404, 3405, 3406, 3407, 3408, 3418, 3420, 3437, 3447, 3457,
3481, 3494, 3500, 3506, 3510, 3516, 3517, 3518, 3519, 3520, 3470, 3483, 3489, 3495, 3499, 3505, 3506, 3507, 3508, 3509,
3521, 3522, 3523, 3526, 3527, 3538, 3543, 3545, 3547, 3555, 3510, 3511, 3512, 3515, 3516, 3527, 3532, 3534, 3536, 3544,
3557, 3559, 3561, 3563, 3565, 3567, 3569, 3571, 3573, 3575, 3546, 3548, 3550, 3552, 3554, 3556, 3558, 3560, 3562, 3564,
3577, 3593, 3609, 3611, 3613, 3615, 3617, 3619, 3621, 3633, 3566, 3582, 3598, 3600, 3602, 3604, 3606, 3608, 3610, 3622,
3640, 3647, 3662, 3677, 3699, 3714, 3736, 3743, 3750, 3760, 3629, 3636, 3651, 3666, 3688, 3703, 3725, 3732, 3739, 3749,
3767, 3774, 3782, 3789, 3796, 3803, 3810, 3812, 3814, 3816, 3756, 3763, 3771, 3778, 3785, 3792, 3799, 3801, 3803, 3805,
3823, 3833, 3843, 3853, 3863, 3869, 3875, 3875, 3889, 3889, 3812, 3822, 3832, 3842, 3852, 3858, 3864, 3864, 3878, 3878,
3903, 3913, 3923, 3933, 3943, 3953, 3963, 3973, 3983, 3993, 3892, 3902, 3912, 3922, 3932, 3942, 3952, 3962, 3972, 3982,
4003, 4013, 4023, 4033, 4043, 4053, 4063, 4073, 4083, 4093, 3992, 4002, 4012, 4022, 4032, 4042, 4052, 4062, 4072, 4082,
4103, 4113, 4123, 4133, 4143, 4145, 4147, 4149, 4158, 4163, 4092, 4102, 4112, 4122, 4132, 4134, 4136, 4138, 4147, 4152,
4165, 4173, 4175, 4177, 4179, 4181, 4183, 4185, 4187, 4189, 4154, 4162, 4164, 4166, 4168, 4170, 4172, 4174, 4176, 4178,
4205, 4221, 4223, 4225, 4227, 4229, 4236, 4243, 4258, 4273, 4194, 4210, 4212, 4214, 4216, 4218, 4225, 4232, 4247, 4262,
4295, 4310, 4332, 4339, 4346, 4353, 4361, 4368, 4375, 4382, 4284, 4299, 4321, 4328, 4335, 4342, 4350, 4357, 4364, 4371,
4391, 4398, 4405, 4409, 4411, 4413, 4417, 4424, 4428, 4429, 4380, 4387, 4394, 4398, 4400, 4402, 4406, 4413, 4417, 4418,
4430, 4433, 4435, 4439, 4444, 4446, 4448, 4450, 4452, 4454, 4419, 4422, 4424, 4428, 4433, 4435, 4437, 4439, 4441, 4443,
4456, 4458, 4474, 4490, 4492, 4494, 4496, 4498, 4506, 4513, 4445, 4447, 4463, 4479, 4481, 4483, 4485, 4487, 4495, 4502,
4520, 4527, 4535, 4542, 4549, 4556, 4565, 4569, 4573, 4575, 4509, 4516, 4524, 4531, 4538, 4545, 4554, 4558, 4562, 4564,
4584, 4586, 4590, 4592, 4594, 4598, 4604, 4608, 4610, 4616, 4573, 4575, 4579, 4581, 4583, 4587, 4593, 4597, 4599, 4605,
4622, 4626, 4628, 4649, 4657, 4668, 4686, 4688, 4692, 4701, 4611, 4615, 4617, 4638, 4646, 4657, 4675, 4677, 4681, 4690,
4702, 4705, 4710, 4718, 4722, 4730, 4740, 4742, 4744, 4755, 4691, 4694, 4699, 4707, 4711, 4719, 4729, 4731, 4733, 4744,
4757, 4759, 4774, 4781, 4788, 4807, 4809, 4814, 4821, 4828, 4746, 4748, 4763, 4770, 4777, 4796, 4798, 4803, 4810, 4817,
4840, 4854, 4855, 4858, 4863, 4875, 4876, 4877, 4878, 4879, 4829, 4843, 4844, 4847, 4852, 4864, 4865, 4866, 4867, 4868,
4885, 4886, 4888, 4889, 4894, 4901, 4908, 4915, 4923, 4925, 4874, 4875, 4877, 4878, 4883, 4890, 4897, 4904, 4912, 4914,
4935, 4947, 4955, 4956, 4957, 4964, 4966, 4968, 4979, 4980, 4924, 4936, 4944, 4945, 4946, 4953, 4955, 4957, 4968, 4969,
4981, 4982, 4983, 4984, 4985, 4986, 4987, 4988, 4989, 4990, 4970, 4971, 4972, 4973, 4974, 4975, 4976, 4977, 4978, 4979,
4991, 4992, 4993, 4994, 4995, 4996, 4997, 4998, 4999, 5000, 4980, 4981, 4982, 4983, 4984, 4985, 4986, 4987, 4988, 4989,
5001, 5002, 5003, 5004, 5005, 5006, 5007, 5008, 5009, 5010, 4990, 4991, 4992, 4993, 4994, 4995, 4996, 4997, 4998, 4999,
5011, 5012, 5013, 5014, 5015, 5016, 5017, 5018, 5019, 5020, 5000, 5001, 5002, 5003, 5004, 5005, 5006, 5007, 5008, 5009,
5021, 5022, 5023, 5024, 5025, 5026, 5027, 5028, 5029, 5030, 5010, 5011, 5012, 5013, 5014, 5015, 5016, 5017, 5018, 5019,
5031, 5032, 5033, 5034, 5035, 5036, 5037, 5038, 5039, 5040, 5020, 5021, 5022, 5023, 5024, 5025, 5026, 5027, 5028, 5029,
5041, 5042, 5043, 5044, 5045, 5046, 5047, 5048, 5049, 5062, 5030, 5031, 5032, 5033, 5034, 5035, 5036, 5037, 5038, 5051,
5063, 5064, 5065, 5066, 5067, 5068, 5069, 5070, 5071, 5072, 5052, 5053, 5054, 5055, 5056, 5057, 5058, 5059, 5060, 5061,
5073, 5074, 5075, 5076, 5077, 5078, 5079, 5080, 5081, 5082, 5062, 5063, 5064, 5065, 5066, 5067, 5068, 5069, 5070, 5071,
5083, 5084, 5085, 5086, 5087, 5088, 5089, 5090, 5091, 5092, 5072, 5073, 5074, 5075, 5076, 5077, 5078, 5079, 5080, 5081,
5093, 5094, 5095, 5096, 5097, 5098, 5099, 5100, 5103, 5110 5082, 5083, 5084, 5085, 5086, 5087, 5088, 5089, 5092, 5099
}; };
#endif #endif
...@@ -4791,7 +4791,7 @@ static const short yycheck[] = { 3, ...@@ -4791,7 +4791,7 @@ static const short yycheck[] = { 3,
-1, -1, -1, -1, -1, -1, -1, 214 -1, -1, -1, -1, -1, -1, -1, 214
}; };
/* -*-C-*- Note some compilers choke on comments on `#line' lines. */ /* -*-C-*- Note some compilers choke on comments on `#line' lines. */
#line 3 "/usr/local/bison/bison.simple" #line 3 "/usr/share/misc/bison.simple"
/* Skeleton output parser for bison, /* Skeleton output parser for bison,
Copyright (C) 1984, 1989, 1990 Free Software Foundation, Inc. Copyright (C) 1984, 1989, 1990 Free Software Foundation, Inc.
...@@ -4984,7 +4984,7 @@ __yy_memcpy (char *to, char *from, int count) ...@@ -4984,7 +4984,7 @@ __yy_memcpy (char *to, char *from, int count)
#endif #endif
#endif #endif
#line 196 "/usr/local/bison/bison.simple" #line 196 "/usr/share/misc/bison.simple"
/* The user can define YYPARSE_PARAM as the name of an argument to be passed /* The user can define YYPARSE_PARAM as the name of an argument to be passed
into yyparse. The argument should have type void *. into yyparse. The argument should have type void *.
...@@ -7941,42 +7941,31 @@ case 470: ...@@ -7941,42 +7941,31 @@ case 470:
first_select->forUpdate = yyvsp[0].list; first_select->forUpdate = yyvsp[0].list;
yyval.node = (Node *)first_select; yyval.node = (Node *)first_select;
} }
if (((SelectStmt *)yyval.node)->forUpdate != NULL) if (((SelectStmt *)yyval.node)->forUpdate != NULL && QueryIsRule)
{ elog(ERROR, "SELECT FOR UPDATE is not allowed in RULES");
SelectStmt *n = (SelectStmt *)yyval.node;
if (n->unionClause != NULL)
elog(ERROR, "SELECT FOR UPDATE is not allowed with UNION/INTERSECT/EXCEPT clause");
if (n->unique != NULL)
elog(ERROR, "SELECT FOR UPDATE is not allowed with DISTINCT clause");
if (n->groupClause != NULL)
elog(ERROR, "SELECT FOR UPDATE is not allowed with GROUP BY clause");
if (n->havingClause != NULL)
elog(ERROR, "SELECT FOR UPDATE is not allowed with HAVING clause");
}
; ;
break;} break;}
case 471: case 471:
#line 2832 "gram.y" #line 2821 "gram.y"
{ {
yyval.node = yyvsp[-1].node; yyval.node = yyvsp[-1].node;
; ;
break;} break;}
case 472: case 472:
#line 2836 "gram.y" #line 2825 "gram.y"
{ {
yyval.node = yyvsp[0].node; yyval.node = yyvsp[0].node;
; ;
break;} break;}
case 473: case 473:
#line 2840 "gram.y" #line 2829 "gram.y"
{ {
yyval.node = (Node *)makeA_Expr(AND,NULL,yyvsp[-2].node, yyval.node = (Node *)makeA_Expr(AND,NULL,yyvsp[-2].node,
makeA_Expr(NOT,NULL,NULL,yyvsp[0].node)); makeA_Expr(NOT,NULL,NULL,yyvsp[0].node));
; ;
break;} break;}
case 474: case 474:
#line 2845 "gram.y" #line 2834 "gram.y"
{ {
if (IsA(yyvsp[0].node, SelectStmt)) if (IsA(yyvsp[0].node, SelectStmt))
{ {
...@@ -7987,13 +7976,13 @@ case 474: ...@@ -7987,13 +7976,13 @@ case 474:
; ;
break;} break;}
case 475: case 475:
#line 2854 "gram.y" #line 2843 "gram.y"
{ {
yyval.node = (Node *)makeA_Expr(AND,NULL,yyvsp[-2].node,yyvsp[0].node); yyval.node = (Node *)makeA_Expr(AND,NULL,yyvsp[-2].node,yyvsp[0].node);
; ;
break;} break;}
case 476: case 476:
#line 2863 "gram.y" #line 2852 "gram.y"
{ {
SelectStmt *n = makeNode(SelectStmt); SelectStmt *n = makeNode(SelectStmt);
n->unique = yyvsp[-6].str; n->unique = yyvsp[-6].str;
...@@ -8018,63 +8007,63 @@ case 476: ...@@ -8018,63 +8007,63 @@ case 476:
; ;
break;} break;}
case 477: case 477:
#line 2887 "gram.y" #line 2876 "gram.y"
{ yyval.str= yyvsp[0].str; ; { yyval.str= yyvsp[0].str; ;
break;} break;}
case 478: case 478:
#line 2888 "gram.y" #line 2877 "gram.y"
{ yyval.str = NULL; ; { yyval.str = NULL; ;
break;} break;}
case 479: case 479:
#line 2891 "gram.y" #line 2880 "gram.y"
{ yyval.boolean = TRUE; ; { yyval.boolean = TRUE; ;
break;} break;}
case 480: case 480:
#line 2892 "gram.y" #line 2881 "gram.y"
{ yyval.boolean = FALSE; ; { yyval.boolean = FALSE; ;
break;} break;}
case 481: case 481:
#line 2895 "gram.y" #line 2884 "gram.y"
{ yyval.boolean = TRUE; ; { yyval.boolean = TRUE; ;
break;} break;}
case 482: case 482:
#line 2896 "gram.y" #line 2885 "gram.y"
{ yyval.boolean = FALSE; ; { yyval.boolean = FALSE; ;
break;} break;}
case 483: case 483:
#line 2899 "gram.y" #line 2888 "gram.y"
{ yyval.str = "*"; ; { yyval.str = "*"; ;
break;} break;}
case 484: case 484:
#line 2900 "gram.y" #line 2889 "gram.y"
{ yyval.str = yyvsp[0].str; ; { yyval.str = yyvsp[0].str; ;
break;} break;}
case 485: case 485:
#line 2901 "gram.y" #line 2890 "gram.y"
{ yyval.str = NULL; ; { yyval.str = NULL; ;
break;} break;}
case 486: case 486:
#line 2902 "gram.y" #line 2891 "gram.y"
{ yyval.str = NULL; ; { yyval.str = NULL; ;
break;} break;}
case 487: case 487:
#line 2905 "gram.y" #line 2894 "gram.y"
{ yyval.list = yyvsp[0].list; ; { yyval.list = yyvsp[0].list; ;
break;} break;}
case 488: case 488:
#line 2906 "gram.y" #line 2895 "gram.y"
{ yyval.list = NIL; ; { yyval.list = NIL; ;
break;} break;}
case 489: case 489:
#line 2909 "gram.y" #line 2898 "gram.y"
{ yyval.list = lcons(yyvsp[0].sortgroupby, NIL); ; { yyval.list = lcons(yyvsp[0].sortgroupby, NIL); ;
break;} break;}
case 490: case 490:
#line 2910 "gram.y" #line 2899 "gram.y"
{ yyval.list = lappend(yyvsp[-2].list, yyvsp[0].sortgroupby); ; { yyval.list = lappend(yyvsp[-2].list, yyvsp[0].sortgroupby); ;
break;} break;}
case 491: case 491:
#line 2914 "gram.y" #line 2903 "gram.y"
{ {
yyval.sortgroupby = makeNode(SortGroupBy); yyval.sortgroupby = makeNode(SortGroupBy);
yyval.sortgroupby->node = yyvsp[-1].node; yyval.sortgroupby->node = yyvsp[-1].node;
...@@ -8082,110 +8071,110 @@ case 491: ...@@ -8082,110 +8071,110 @@ case 491:
; ;
break;} break;}
case 492: case 492:
#line 2921 "gram.y" #line 2910 "gram.y"
{ yyval.str = yyvsp[0].str; ; { yyval.str = yyvsp[0].str; ;
break;} break;}
case 493: case 493:
#line 2922 "gram.y" #line 2911 "gram.y"
{ yyval.str = "<"; ; { yyval.str = "<"; ;
break;} break;}
case 494: case 494:
#line 2923 "gram.y" #line 2912 "gram.y"
{ yyval.str = ">"; ; { yyval.str = ">"; ;
break;} break;}
case 495: case 495:
#line 2924 "gram.y" #line 2913 "gram.y"
{ yyval.str = "<"; ; { yyval.str = "<"; ;
break;} break;}
case 496: case 496:
#line 2925 "gram.y" #line 2914 "gram.y"
{ yyval.str = ">"; ; { yyval.str = ">"; ;
break;} break;}
case 497: case 497:
#line 2926 "gram.y" #line 2915 "gram.y"
{ yyval.str = "<"; /*default*/ ; { yyval.str = "<"; /*default*/ ;
break;} break;}
case 498: case 498:
#line 2936 "gram.y" #line 2925 "gram.y"
{ yyval.boolean = TRUE; ; { yyval.boolean = TRUE; ;
break;} break;}
case 499: case 499:
#line 2937 "gram.y" #line 2926 "gram.y"
{ yyval.boolean = FALSE; ; { yyval.boolean = FALSE; ;
break;} break;}
case 501: case 501:
#line 2943 "gram.y" #line 2932 "gram.y"
{ yyval.list = lcons(makeString(yyvsp[0].str),NIL); ; { yyval.list = lcons(makeString(yyvsp[0].str),NIL); ;
break;} break;}
case 502: case 502:
#line 2945 "gram.y" #line 2934 "gram.y"
{ yyval.list = lappend(yyvsp[-2].list,makeString(yyvsp[0].str)); ; { yyval.list = lappend(yyvsp[-2].list,makeString(yyvsp[0].str)); ;
break;} break;}
case 503: case 503:
#line 2948 "gram.y" #line 2937 "gram.y"
{ yyval.list = yyvsp[0].list; ; { yyval.list = yyvsp[0].list; ;
break;} break;}
case 504: case 504:
#line 2949 "gram.y" #line 2938 "gram.y"
{ yyval.list = NIL; ; { yyval.list = NIL; ;
break;} break;}
case 505: case 505:
#line 2953 "gram.y" #line 2942 "gram.y"
{ {
yyval.node = yyvsp[0].node; yyval.node = yyvsp[0].node;
; ;
break;} break;}
case 506: case 506:
#line 2956 "gram.y" #line 2945 "gram.y"
{ yyval.node = NULL; ; { yyval.node = NULL; ;
break;} break;}
case 507: case 507:
#line 2961 "gram.y" #line 2950 "gram.y"
{ {
yyval.list = lcons(NULL, NULL); yyval.list = lcons(NULL, NULL);
; ;
break;} break;}
case 508: case 508:
#line 2965 "gram.y" #line 2954 "gram.y"
{ {
yyval.list = yyvsp[0].list; yyval.list = yyvsp[0].list;
; ;
break;} break;}
case 509: case 509:
#line 2969 "gram.y" #line 2958 "gram.y"
{ {
yyval.list = NULL; yyval.list = NULL;
; ;
break;} break;}
case 510: case 510:
#line 2983 "gram.y" #line 2972 "gram.y"
{ {
yyval.list = NIL; yyval.list = NIL;
elog(ERROR,"JOIN not yet implemented"); elog(ERROR,"JOIN not yet implemented");
; ;
break;} break;}
case 511: case 511:
#line 2987 "gram.y" #line 2976 "gram.y"
{ yyval.list = yyvsp[0].list; ; { yyval.list = yyvsp[0].list; ;
break;} break;}
case 512: case 512:
#line 2988 "gram.y" #line 2977 "gram.y"
{ yyval.list = NIL; ; { yyval.list = NIL; ;
break;} break;}
case 513: case 513:
#line 2992 "gram.y" #line 2981 "gram.y"
{ yyval.list = lappend(yyvsp[-2].list, yyvsp[0].range); ; { yyval.list = lappend(yyvsp[-2].list, yyvsp[0].range); ;
break;} break;}
case 514: case 514:
#line 2994 "gram.y" #line 2983 "gram.y"
{ elog(ERROR,"CROSS JOIN not yet implemented"); ; { elog(ERROR,"CROSS JOIN not yet implemented"); ;
break;} break;}
case 515: case 515:
#line 2996 "gram.y" #line 2985 "gram.y"
{ yyval.list = lcons(yyvsp[0].range, NIL); ; { yyval.list = lcons(yyvsp[0].range, NIL); ;
break;} break;}
case 516: case 516:
#line 3000 "gram.y" #line 2989 "gram.y"
{ {
yyval.range = makeNode(RangeVar); yyval.range = makeNode(RangeVar);
yyval.range->relExpr = yyvsp[-2].relexp; yyval.range->relExpr = yyvsp[-2].relexp;
...@@ -8193,7 +8182,7 @@ case 516: ...@@ -8193,7 +8182,7 @@ case 516:
; ;
break;} break;}
case 517: case 517:
#line 3006 "gram.y" #line 2995 "gram.y"
{ {
yyval.range = makeNode(RangeVar); yyval.range = makeNode(RangeVar);
yyval.range->relExpr = yyvsp[-1].relexp; yyval.range->relExpr = yyvsp[-1].relexp;
...@@ -8201,7 +8190,7 @@ case 517: ...@@ -8201,7 +8190,7 @@ case 517:
; ;
break;} break;}
case 518: case 518:
#line 3012 "gram.y" #line 3001 "gram.y"
{ {
yyval.range = makeNode(RangeVar); yyval.range = makeNode(RangeVar);
yyval.range->relExpr = yyvsp[0].relexp; yyval.range->relExpr = yyvsp[0].relexp;
...@@ -8209,67 +8198,67 @@ case 518: ...@@ -8209,67 +8198,67 @@ case 518:
; ;
break;} break;}
case 519: case 519:
#line 3019 "gram.y" #line 3008 "gram.y"
{ yyval.str = NULL; ; { yyval.str = NULL; ;
break;} break;}
case 520: case 520:
#line 3021 "gram.y" #line 3010 "gram.y"
{ elog(ERROR,"FULL OUTER JOIN not yet implemented"); ; { elog(ERROR,"FULL OUTER JOIN not yet implemented"); ;
break;} break;}
case 521: case 521:
#line 3023 "gram.y" #line 3012 "gram.y"
{ elog(ERROR,"LEFT OUTER JOIN not yet implemented"); ; { elog(ERROR,"LEFT OUTER JOIN not yet implemented"); ;
break;} break;}
case 522: case 522:
#line 3025 "gram.y" #line 3014 "gram.y"
{ elog(ERROR,"RIGHT OUTER JOIN not yet implemented"); ; { elog(ERROR,"RIGHT OUTER JOIN not yet implemented"); ;
break;} break;}
case 523: case 523:
#line 3027 "gram.y" #line 3016 "gram.y"
{ elog(ERROR,"OUTER JOIN not yet implemented"); ; { elog(ERROR,"OUTER JOIN not yet implemented"); ;
break;} break;}
case 524: case 524:
#line 3029 "gram.y" #line 3018 "gram.y"
{ elog(ERROR,"INNER JOIN not yet implemented"); ; { elog(ERROR,"INNER JOIN not yet implemented"); ;
break;} break;}
case 525: case 525:
#line 3031 "gram.y" #line 3020 "gram.y"
{ elog(ERROR,"UNION JOIN not yet implemented"); ; { elog(ERROR,"UNION JOIN not yet implemented"); ;
break;} break;}
case 526: case 526:
#line 3033 "gram.y" #line 3022 "gram.y"
{ elog(ERROR,"INNER JOIN not yet implemented"); ; { elog(ERROR,"INNER JOIN not yet implemented"); ;
break;} break;}
case 527: case 527:
#line 3036 "gram.y" #line 3025 "gram.y"
{ yyval.str = NULL; ; { yyval.str = NULL; ;
break;} break;}
case 528: case 528:
#line 3037 "gram.y" #line 3026 "gram.y"
{ yyval.str = NULL; /* no qualifiers */ ; { yyval.str = NULL; /* no qualifiers */ ;
break;} break;}
case 529: case 529:
#line 3040 "gram.y" #line 3029 "gram.y"
{ yyval.str = NULL; ; { yyval.str = NULL; ;
break;} break;}
case 530: case 530:
#line 3041 "gram.y" #line 3030 "gram.y"
{ yyval.str = NULL; ; { yyval.str = NULL; ;
break;} break;}
case 531: case 531:
#line 3042 "gram.y" #line 3031 "gram.y"
{ yyval.str = NULL; /* no qualifiers */ ; { yyval.str = NULL; /* no qualifiers */ ;
break;} break;}
case 532: case 532:
#line 3045 "gram.y" #line 3034 "gram.y"
{ yyval.list = lcons(yyvsp[0].joinusing, NIL); ; { yyval.list = lcons(yyvsp[0].joinusing, NIL); ;
break;} break;}
case 533: case 533:
#line 3046 "gram.y" #line 3035 "gram.y"
{ yyval.list = lappend(yyvsp[-2].list, yyvsp[0].joinusing); ; { yyval.list = lappend(yyvsp[-2].list, yyvsp[0].joinusing); ;
break;} break;}
case 534: case 534:
#line 3058 "gram.y" #line 3047 "gram.y"
{ {
yyval.joinusing = makeNode(JoinUsing); yyval.joinusing = makeNode(JoinUsing);
yyval.joinusing->resno = 0; yyval.joinusing->resno = 0;
...@@ -8278,7 +8267,7 @@ case 534: ...@@ -8278,7 +8267,7 @@ case 534:
; ;
break;} break;}
case 535: case 535:
#line 3065 "gram.y" #line 3054 "gram.y"
{ {
yyval.joinusing = makeNode(JoinUsing); yyval.joinusing = makeNode(JoinUsing);
yyval.joinusing->resno = 0; yyval.joinusing->resno = 0;
...@@ -8287,7 +8276,7 @@ case 535: ...@@ -8287,7 +8276,7 @@ case 535:
; ;
break;} break;}
case 536: case 536:
#line 3072 "gram.y" #line 3061 "gram.y"
{ {
yyval.joinusing = makeNode(JoinUsing); yyval.joinusing = makeNode(JoinUsing);
yyval.joinusing->resno = yyvsp[0].ival; yyval.joinusing->resno = yyvsp[0].ival;
...@@ -8296,15 +8285,15 @@ case 536: ...@@ -8296,15 +8285,15 @@ case 536:
; ;
break;} break;}
case 537: case 537:
#line 3080 "gram.y" #line 3069 "gram.y"
{ yyval.node = yyvsp[0].node; ; { yyval.node = yyvsp[0].node; ;
break;} break;}
case 538: case 538:
#line 3081 "gram.y" #line 3070 "gram.y"
{ yyval.node = NULL; /* no qualifiers */ ; { yyval.node = NULL; /* no qualifiers */ ;
break;} break;}
case 539: case 539:
#line 3085 "gram.y" #line 3074 "gram.y"
{ {
/* normal relations */ /* normal relations */
yyval.relexp = makeNode(RelExpr); yyval.relexp = makeNode(RelExpr);
...@@ -8313,7 +8302,7 @@ case 539: ...@@ -8313,7 +8302,7 @@ case 539:
; ;
break;} break;}
case 540: case 540:
#line 3092 "gram.y" #line 3081 "gram.y"
{ {
/* inheritance query */ /* inheritance query */
yyval.relexp = makeNode(RelExpr); yyval.relexp = makeNode(RelExpr);
...@@ -8322,31 +8311,31 @@ case 540: ...@@ -8322,31 +8311,31 @@ case 540:
; ;
break;} break;}
case 541: case 541:
#line 3100 "gram.y" #line 3089 "gram.y"
{ yyval.list = lcons(makeInteger(-1), yyvsp[0].list); ; { yyval.list = lcons(makeInteger(-1), yyvsp[0].list); ;
break;} break;}
case 542: case 542:
#line 3102 "gram.y" #line 3091 "gram.y"
{ yyval.list = lcons(makeInteger(yyvsp[-2].ival), yyvsp[0].list); ; { yyval.list = lcons(makeInteger(yyvsp[-2].ival), yyvsp[0].list); ;
break;} break;}
case 543: case 543:
#line 3104 "gram.y" #line 3093 "gram.y"
{ yyval.list = NIL; ; { yyval.list = NIL; ;
break;} break;}
case 544: case 544:
#line 3108 "gram.y" #line 3097 "gram.y"
{ yyval.list = lcons(makeInteger(-1), yyvsp[0].list); ; { yyval.list = lcons(makeInteger(-1), yyvsp[0].list); ;
break;} break;}
case 545: case 545:
#line 3110 "gram.y" #line 3099 "gram.y"
{ yyval.list = lcons(makeInteger(yyvsp[-2].ival), yyvsp[0].list); ; { yyval.list = lcons(makeInteger(yyvsp[-2].ival), yyvsp[0].list); ;
break;} break;}
case 546: case 546:
#line 3112 "gram.y" #line 3101 "gram.y"
{ yyval.list = NIL; ; { yyval.list = NIL; ;
break;} break;}
case 547: case 547:
#line 3127 "gram.y" #line 3116 "gram.y"
{ {
yyval.typnam = yyvsp[-1].typnam; yyval.typnam = yyvsp[-1].typnam;
yyval.typnam->arrayBounds = yyvsp[0].list; yyval.typnam->arrayBounds = yyvsp[0].list;
...@@ -8370,14 +8359,14 @@ case 547: ...@@ -8370,14 +8359,14 @@ case 547:
; ;
break;} break;}
case 549: case 549:
#line 3150 "gram.y" #line 3139 "gram.y"
{ {
yyval.typnam = yyvsp[0].typnam; yyval.typnam = yyvsp[0].typnam;
yyval.typnam->setof = TRUE; yyval.typnam->setof = TRUE;
; ;
break;} break;}
case 553: case 553:
#line 3162 "gram.y" #line 3151 "gram.y"
{ {
yyval.typnam = makeNode(TypeName); yyval.typnam = makeNode(TypeName);
yyval.typnam->name = xlateSqlType(yyvsp[0].str); yyval.typnam->name = xlateSqlType(yyvsp[0].str);
...@@ -8385,15 +8374,15 @@ case 553: ...@@ -8385,15 +8374,15 @@ case 553:
; ;
break;} break;}
case 554: case 554:
#line 3169 "gram.y" #line 3158 "gram.y"
{ yyval.str = yyvsp[0].str; ; { yyval.str = yyvsp[0].str; ;
break;} break;}
case 555: case 555:
#line 3170 "gram.y" #line 3159 "gram.y"
{ yyval.str = xlateSqlType("type"); ; { yyval.str = xlateSqlType("type"); ;
break;} break;}
case 556: case 556:
#line 3179 "gram.y" #line 3168 "gram.y"
{ {
yyval.typnam = makeNode(TypeName); yyval.typnam = makeNode(TypeName);
yyval.typnam->name = xlateSqlType(yyvsp[0].str); yyval.typnam->name = xlateSqlType(yyvsp[0].str);
...@@ -8401,14 +8390,14 @@ case 556: ...@@ -8401,14 +8390,14 @@ case 556:
; ;
break;} break;}
case 557: case 557:
#line 3185 "gram.y" #line 3174 "gram.y"
{ {
yyval.typnam = makeNode(TypeName); yyval.typnam = makeNode(TypeName);
yyval.typnam->name = xlateSqlType("float"); yyval.typnam->name = xlateSqlType("float");
; ;
break;} break;}
case 558: case 558:
#line 3190 "gram.y" #line 3179 "gram.y"
{ {
yyval.typnam = makeNode(TypeName); yyval.typnam = makeNode(TypeName);
yyval.typnam->name = xlateSqlType("numeric"); yyval.typnam->name = xlateSqlType("numeric");
...@@ -8416,7 +8405,7 @@ case 558: ...@@ -8416,7 +8405,7 @@ case 558:
; ;
break;} break;}
case 559: case 559:
#line 3196 "gram.y" #line 3185 "gram.y"
{ {
yyval.typnam = makeNode(TypeName); yyval.typnam = makeNode(TypeName);
yyval.typnam->name = xlateSqlType("numeric"); yyval.typnam->name = xlateSqlType("numeric");
...@@ -8424,23 +8413,23 @@ case 559: ...@@ -8424,23 +8413,23 @@ case 559:
; ;
break;} break;}
case 560: case 560:
#line 3204 "gram.y" #line 3193 "gram.y"
{ yyval.str = xlateSqlType("float8"); ; { yyval.str = xlateSqlType("float8"); ;
break;} break;}
case 561: case 561:
#line 3206 "gram.y" #line 3195 "gram.y"
{ yyval.str = xlateSqlType("float8"); ; { yyval.str = xlateSqlType("float8"); ;
break;} break;}
case 562: case 562:
#line 3208 "gram.y" #line 3197 "gram.y"
{ yyval.str = xlateSqlType("numeric"); ; { yyval.str = xlateSqlType("numeric"); ;
break;} break;}
case 563: case 563:
#line 3210 "gram.y" #line 3199 "gram.y"
{ yyval.str = xlateSqlType("numeric"); ; { yyval.str = xlateSqlType("numeric"); ;
break;} break;}
case 564: case 564:
#line 3214 "gram.y" #line 3203 "gram.y"
{ {
if (yyvsp[-1].ival < 1) if (yyvsp[-1].ival < 1)
elog(ERROR,"precision for FLOAT must be at least 1"); elog(ERROR,"precision for FLOAT must be at least 1");
...@@ -8453,13 +8442,13 @@ case 564: ...@@ -8453,13 +8442,13 @@ case 564:
; ;
break;} break;}
case 565: case 565:
#line 3225 "gram.y" #line 3214 "gram.y"
{ {
yyval.str = xlateSqlType("float8"); yyval.str = xlateSqlType("float8");
; ;
break;} break;}
case 566: case 566:
#line 3231 "gram.y" #line 3220 "gram.y"
{ {
if (yyvsp[-3].ival < 1 || yyvsp[-3].ival > NUMERIC_MAX_PRECISION) if (yyvsp[-3].ival < 1 || yyvsp[-3].ival > NUMERIC_MAX_PRECISION)
elog(ERROR,"NUMERIC precision %d must be beween 1 and %d", elog(ERROR,"NUMERIC precision %d must be beween 1 and %d",
...@@ -8472,7 +8461,7 @@ case 566: ...@@ -8472,7 +8461,7 @@ case 566:
; ;
break;} break;}
case 567: case 567:
#line 3242 "gram.y" #line 3231 "gram.y"
{ {
if (yyvsp[-1].ival < 1 || yyvsp[-1].ival > NUMERIC_MAX_PRECISION) if (yyvsp[-1].ival < 1 || yyvsp[-1].ival > NUMERIC_MAX_PRECISION)
elog(ERROR,"NUMERIC precision %d must be beween 1 and %d", elog(ERROR,"NUMERIC precision %d must be beween 1 and %d",
...@@ -8482,13 +8471,13 @@ case 567: ...@@ -8482,13 +8471,13 @@ case 567:
; ;
break;} break;}
case 568: case 568:
#line 3250 "gram.y" #line 3239 "gram.y"
{ {
yyval.ival = ((NUMERIC_DEFAULT_PRECISION << 16) | NUMERIC_DEFAULT_SCALE) + VARHDRSZ; yyval.ival = ((NUMERIC_DEFAULT_PRECISION << 16) | NUMERIC_DEFAULT_SCALE) + VARHDRSZ;
; ;
break;} break;}
case 569: case 569:
#line 3256 "gram.y" #line 3245 "gram.y"
{ {
if (yyvsp[-3].ival < 1 || yyvsp[-3].ival > NUMERIC_MAX_PRECISION) if (yyvsp[-3].ival < 1 || yyvsp[-3].ival > NUMERIC_MAX_PRECISION)
elog(ERROR,"DECIMAL precision %d must be beween 1 and %d", elog(ERROR,"DECIMAL precision %d must be beween 1 and %d",
...@@ -8501,7 +8490,7 @@ case 569: ...@@ -8501,7 +8490,7 @@ case 569:
; ;
break;} break;}
case 570: case 570:
#line 3267 "gram.y" #line 3256 "gram.y"
{ {
if (yyvsp[-1].ival < 1 || yyvsp[-1].ival > NUMERIC_MAX_PRECISION) if (yyvsp[-1].ival < 1 || yyvsp[-1].ival > NUMERIC_MAX_PRECISION)
elog(ERROR,"DECIMAL precision %d must be beween 1 and %d", elog(ERROR,"DECIMAL precision %d must be beween 1 and %d",
...@@ -8511,13 +8500,13 @@ case 570: ...@@ -8511,13 +8500,13 @@ case 570:
; ;
break;} break;}
case 571: case 571:
#line 3275 "gram.y" #line 3264 "gram.y"
{ {
yyval.ival = ((NUMERIC_DEFAULT_PRECISION << 16) | NUMERIC_DEFAULT_SCALE) + VARHDRSZ; yyval.ival = ((NUMERIC_DEFAULT_PRECISION << 16) | NUMERIC_DEFAULT_SCALE) + VARHDRSZ;
; ;
break;} break;}
case 572: case 572:
#line 3289 "gram.y" #line 3278 "gram.y"
{ {
yyval.typnam = makeNode(TypeName); yyval.typnam = makeNode(TypeName);
if (strcasecmp(yyvsp[-3].str, "char") == 0) if (strcasecmp(yyvsp[-3].str, "char") == 0)
...@@ -8546,7 +8535,7 @@ case 572: ...@@ -8546,7 +8535,7 @@ case 572:
; ;
break;} break;}
case 573: case 573:
#line 3316 "gram.y" #line 3305 "gram.y"
{ {
yyval.typnam = makeNode(TypeName); yyval.typnam = makeNode(TypeName);
/* Let's try to make all single-character types into bpchar(1) /* Let's try to make all single-character types into bpchar(1)
...@@ -8565,7 +8554,7 @@ case 573: ...@@ -8565,7 +8554,7 @@ case 573:
; ;
break;} break;}
case 574: case 574:
#line 3335 "gram.y" #line 3324 "gram.y"
{ {
char *type, *c; char *type, *c;
if ((yyvsp[-1].str == NULL) || (strcasecmp(yyvsp[-1].str, "sql_text") == 0)) { if ((yyvsp[-1].str == NULL) || (strcasecmp(yyvsp[-1].str, "sql_text") == 0)) {
...@@ -8587,47 +8576,47 @@ case 574: ...@@ -8587,47 +8576,47 @@ case 574:
; ;
break;} break;}
case 575: case 575:
#line 3354 "gram.y" #line 3343 "gram.y"
{ yyval.str = xlateSqlType(yyvsp[0].boolean? "varchar": "char"); ; { yyval.str = xlateSqlType(yyvsp[0].boolean? "varchar": "char"); ;
break;} break;}
case 576: case 576:
#line 3355 "gram.y" #line 3344 "gram.y"
{ yyval.str = xlateSqlType("varchar"); ; { yyval.str = xlateSqlType("varchar"); ;
break;} break;}
case 577: case 577:
#line 3356 "gram.y" #line 3345 "gram.y"
{ yyval.str = xlateSqlType(yyvsp[0].boolean? "varchar": "char"); ; { yyval.str = xlateSqlType(yyvsp[0].boolean? "varchar": "char"); ;
break;} break;}
case 578: case 578:
#line 3357 "gram.y" #line 3346 "gram.y"
{ yyval.str = xlateSqlType(yyvsp[0].boolean? "varchar": "char"); ; { yyval.str = xlateSqlType(yyvsp[0].boolean? "varchar": "char"); ;
break;} break;}
case 579: case 579:
#line 3360 "gram.y" #line 3349 "gram.y"
{ yyval.boolean = TRUE; ; { yyval.boolean = TRUE; ;
break;} break;}
case 580: case 580:
#line 3361 "gram.y" #line 3350 "gram.y"
{ yyval.boolean = FALSE; ; { yyval.boolean = FALSE; ;
break;} break;}
case 581: case 581:
#line 3364 "gram.y" #line 3353 "gram.y"
{ yyval.str = yyvsp[0].str; ; { yyval.str = yyvsp[0].str; ;
break;} break;}
case 582: case 582:
#line 3365 "gram.y" #line 3354 "gram.y"
{ yyval.str = NULL; ; { yyval.str = NULL; ;
break;} break;}
case 583: case 583:
#line 3368 "gram.y" #line 3357 "gram.y"
{ yyval.str = yyvsp[0].str; ; { yyval.str = yyvsp[0].str; ;
break;} break;}
case 584: case 584:
#line 3369 "gram.y" #line 3358 "gram.y"
{ yyval.str = NULL; ; { yyval.str = NULL; ;
break;} break;}
case 585: case 585:
#line 3373 "gram.y" #line 3362 "gram.y"
{ {
yyval.typnam = makeNode(TypeName); yyval.typnam = makeNode(TypeName);
yyval.typnam->name = xlateSqlType(yyvsp[0].str); yyval.typnam->name = xlateSqlType(yyvsp[0].str);
...@@ -8635,7 +8624,7 @@ case 585: ...@@ -8635,7 +8624,7 @@ case 585:
; ;
break;} break;}
case 586: case 586:
#line 3379 "gram.y" #line 3368 "gram.y"
{ {
yyval.typnam = makeNode(TypeName); yyval.typnam = makeNode(TypeName);
yyval.typnam->name = xlateSqlType("timestamp"); yyval.typnam->name = xlateSqlType("timestamp");
...@@ -8644,7 +8633,7 @@ case 586: ...@@ -8644,7 +8633,7 @@ case 586:
; ;
break;} break;}
case 587: case 587:
#line 3386 "gram.y" #line 3375 "gram.y"
{ {
yyval.typnam = makeNode(TypeName); yyval.typnam = makeNode(TypeName);
yyval.typnam->name = xlateSqlType("time"); yyval.typnam->name = xlateSqlType("time");
...@@ -8652,7 +8641,7 @@ case 587: ...@@ -8652,7 +8641,7 @@ case 587:
; ;
break;} break;}
case 588: case 588:
#line 3392 "gram.y" #line 3381 "gram.y"
{ {
yyval.typnam = makeNode(TypeName); yyval.typnam = makeNode(TypeName);
yyval.typnam->name = xlateSqlType("interval"); yyval.typnam->name = xlateSqlType("interval");
...@@ -8660,79 +8649,79 @@ case 588: ...@@ -8660,79 +8649,79 @@ case 588:
; ;
break;} break;}
case 589: case 589:
#line 3399 "gram.y" #line 3388 "gram.y"
{ yyval.str = "year"; ; { yyval.str = "year"; ;
break;} break;}
case 590: case 590:
#line 3400 "gram.y" #line 3389 "gram.y"
{ yyval.str = "month"; ; { yyval.str = "month"; ;
break;} break;}
case 591: case 591:
#line 3401 "gram.y" #line 3390 "gram.y"
{ yyval.str = "day"; ; { yyval.str = "day"; ;
break;} break;}
case 592: case 592:
#line 3402 "gram.y" #line 3391 "gram.y"
{ yyval.str = "hour"; ; { yyval.str = "hour"; ;
break;} break;}
case 593: case 593:
#line 3403 "gram.y" #line 3392 "gram.y"
{ yyval.str = "minute"; ; { yyval.str = "minute"; ;
break;} break;}
case 594: case 594:
#line 3404 "gram.y" #line 3393 "gram.y"
{ yyval.str = "second"; ; { yyval.str = "second"; ;
break;} break;}
case 595: case 595:
#line 3407 "gram.y" #line 3396 "gram.y"
{ yyval.boolean = TRUE; ; { yyval.boolean = TRUE; ;
break;} break;}
case 596: case 596:
#line 3408 "gram.y" #line 3397 "gram.y"
{ yyval.boolean = FALSE; ; { yyval.boolean = FALSE; ;
break;} break;}
case 597: case 597:
#line 3411 "gram.y" #line 3400 "gram.y"
{ yyval.list = lcons(yyvsp[0].str, NIL); ; { yyval.list = lcons(yyvsp[0].str, NIL); ;
break;} break;}
case 598: case 598:
#line 3412 "gram.y" #line 3401 "gram.y"
{ yyval.list = NIL; ; { yyval.list = NIL; ;
break;} break;}
case 599: case 599:
#line 3413 "gram.y" #line 3402 "gram.y"
{ yyval.list = NIL; ; { yyval.list = NIL; ;
break;} break;}
case 600: case 600:
#line 3414 "gram.y" #line 3403 "gram.y"
{ yyval.list = NIL; ; { yyval.list = NIL; ;
break;} break;}
case 601: case 601:
#line 3415 "gram.y" #line 3404 "gram.y"
{ yyval.list = NIL; ; { yyval.list = NIL; ;
break;} break;}
case 602: case 602:
#line 3416 "gram.y" #line 3405 "gram.y"
{ yyval.list = NIL; ; { yyval.list = NIL; ;
break;} break;}
case 603: case 603:
#line 3417 "gram.y" #line 3406 "gram.y"
{ yyval.list = NIL; ; { yyval.list = NIL; ;
break;} break;}
case 604: case 604:
#line 3418 "gram.y" #line 3407 "gram.y"
{ yyval.list = NIL; ; { yyval.list = NIL; ;
break;} break;}
case 605: case 605:
#line 3419 "gram.y" #line 3408 "gram.y"
{ yyval.list = NIL; ; { yyval.list = NIL; ;
break;} break;}
case 606: case 606:
#line 3430 "gram.y" #line 3419 "gram.y"
{ yyval.node = yyvsp[0].node; ; { yyval.node = yyvsp[0].node; ;
break;} break;}
case 607: case 607:
#line 3432 "gram.y" #line 3421 "gram.y"
{ {
A_Const *n = makeNode(A_Const); A_Const *n = makeNode(A_Const);
n->val.type = T_Null; n->val.type = T_Null;
...@@ -8740,7 +8729,7 @@ case 607: ...@@ -8740,7 +8729,7 @@ case 607:
; ;
break;} break;}
case 608: case 608:
#line 3449 "gram.y" #line 3438 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->lefthand = yyvsp[-5].list; n->lefthand = yyvsp[-5].list;
...@@ -8752,7 +8741,7 @@ case 608: ...@@ -8752,7 +8741,7 @@ case 608:
; ;
break;} break;}
case 609: case 609:
#line 3459 "gram.y" #line 3448 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->lefthand = yyvsp[-6].list; n->lefthand = yyvsp[-6].list;
...@@ -8764,7 +8753,7 @@ case 609: ...@@ -8764,7 +8753,7 @@ case 609:
; ;
break;} break;}
case 610: case 610:
#line 3469 "gram.y" #line 3458 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->lefthand = yyvsp[-6].list; n->lefthand = yyvsp[-6].list;
...@@ -8779,7 +8768,7 @@ case 610: ...@@ -8779,7 +8768,7 @@ case 610:
; ;
break;} break;}
case 611: case 611:
#line 3482 "gram.y" #line 3471 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->lefthand = yyvsp[-5].list; n->lefthand = yyvsp[-5].list;
...@@ -8794,86 +8783,86 @@ case 611: ...@@ -8794,86 +8783,86 @@ case 611:
; ;
break;} break;}
case 612: case 612:
#line 3495 "gram.y" #line 3484 "gram.y"
{ {
yyval.node = makeRowExpr(yyvsp[-3].str, yyvsp[-5].list, yyvsp[-1].list); yyval.node = makeRowExpr(yyvsp[-3].str, yyvsp[-5].list, yyvsp[-1].list);
; ;
break;} break;}
case 613: case 613:
#line 3501 "gram.y" #line 3490 "gram.y"
{ {
yyval.list = lappend(yyvsp[-2].list, yyvsp[0].node); yyval.list = lappend(yyvsp[-2].list, yyvsp[0].node);
; ;
break;} break;}
case 614: case 614:
#line 3507 "gram.y" #line 3496 "gram.y"
{ {
yyval.list = lappend(yyvsp[-2].list, yyvsp[0].node); yyval.list = lappend(yyvsp[-2].list, yyvsp[0].node);
; ;
break;} break;}
case 615: case 615:
#line 3511 "gram.y" #line 3500 "gram.y"
{ {
yyval.list = lcons(yyvsp[0].node, NIL); yyval.list = lcons(yyvsp[0].node, NIL);
; ;
break;} break;}
case 616: case 616:
#line 3516 "gram.y" #line 3505 "gram.y"
{ yyval.str = yyvsp[0].str; ; { yyval.str = yyvsp[0].str; ;
break;} break;}
case 617: case 617:
#line 3517 "gram.y" #line 3506 "gram.y"
{ yyval.str = "<"; ; { yyval.str = "<"; ;
break;} break;}
case 618: case 618:
#line 3518 "gram.y" #line 3507 "gram.y"
{ yyval.str = "="; ; { yyval.str = "="; ;
break;} break;}
case 619: case 619:
#line 3519 "gram.y" #line 3508 "gram.y"
{ yyval.str = ">"; ; { yyval.str = ">"; ;
break;} break;}
case 620: case 620:
#line 3520 "gram.y" #line 3509 "gram.y"
{ yyval.str = "+"; ; { yyval.str = "+"; ;
break;} break;}
case 621: case 621:
#line 3521 "gram.y" #line 3510 "gram.y"
{ yyval.str = "-"; ; { yyval.str = "-"; ;
break;} break;}
case 622: case 622:
#line 3522 "gram.y" #line 3511 "gram.y"
{ yyval.str = "*"; ; { yyval.str = "*"; ;
break;} break;}
case 623: case 623:
#line 3523 "gram.y" #line 3512 "gram.y"
{ yyval.str = "/"; ; { yyval.str = "/"; ;
break;} break;}
case 624: case 624:
#line 3526 "gram.y" #line 3515 "gram.y"
{ yyval.ival = ANY_SUBLINK; ; { yyval.ival = ANY_SUBLINK; ;
break;} break;}
case 625: case 625:
#line 3527 "gram.y" #line 3516 "gram.y"
{ yyval.ival = ALL_SUBLINK; ; { yyval.ival = ALL_SUBLINK; ;
break;} break;}
case 626: case 626:
#line 3539 "gram.y" #line 3528 "gram.y"
{ {
yyvsp[-1].attr->indirection = yyvsp[0].list; yyvsp[-1].attr->indirection = yyvsp[0].list;
yyval.node = (Node *)yyvsp[-1].attr; yyval.node = (Node *)yyvsp[-1].attr;
; ;
break;} break;}
case 627: case 627:
#line 3544 "gram.y" #line 3533 "gram.y"
{ yyval.node = yyvsp[0].node; ; { yyval.node = yyvsp[0].node; ;
break;} break;}
case 628: case 628:
#line 3546 "gram.y" #line 3535 "gram.y"
{ yyval.node = yyvsp[0].node; ; { yyval.node = yyvsp[0].node; ;
break;} break;}
case 629: case 629:
#line 3548 "gram.y" #line 3537 "gram.y"
{ {
/* could be a column name or a relation_name */ /* could be a column name or a relation_name */
Ident *n = makeNode(Ident); Ident *n = makeNode(Ident);
...@@ -8883,51 +8872,51 @@ case 629: ...@@ -8883,51 +8872,51 @@ case 629:
; ;
break;} break;}
case 630: case 630:
#line 3556 "gram.y" #line 3545 "gram.y"
{ yyval.node = makeA_Expr(OP, "-", NULL, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, "-", NULL, yyvsp[0].node); ;
break;} break;}
case 631: case 631:
#line 3558 "gram.y" #line 3547 "gram.y"
{ yyval.node = makeA_Expr(OP, "+", yyvsp[-2].node, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, "+", yyvsp[-2].node, yyvsp[0].node); ;
break;} break;}
case 632: case 632:
#line 3560 "gram.y" #line 3549 "gram.y"
{ yyval.node = makeA_Expr(OP, "-", yyvsp[-2].node, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, "-", yyvsp[-2].node, yyvsp[0].node); ;
break;} break;}
case 633: case 633:
#line 3562 "gram.y" #line 3551 "gram.y"
{ yyval.node = makeA_Expr(OP, "/", yyvsp[-2].node, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, "/", yyvsp[-2].node, yyvsp[0].node); ;
break;} break;}
case 634: case 634:
#line 3564 "gram.y" #line 3553 "gram.y"
{ yyval.node = makeA_Expr(OP, "*", yyvsp[-2].node, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, "*", yyvsp[-2].node, yyvsp[0].node); ;
break;} break;}
case 635: case 635:
#line 3566 "gram.y" #line 3555 "gram.y"
{ yyval.node = makeA_Expr(OP, "<", yyvsp[-2].node, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, "<", yyvsp[-2].node, yyvsp[0].node); ;
break;} break;}
case 636: case 636:
#line 3568 "gram.y" #line 3557 "gram.y"
{ yyval.node = makeA_Expr(OP, ">", yyvsp[-2].node, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, ">", yyvsp[-2].node, yyvsp[0].node); ;
break;} break;}
case 637: case 637:
#line 3570 "gram.y" #line 3559 "gram.y"
{ yyval.node = makeA_Expr(OP, "=", yyvsp[-2].node, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, "=", yyvsp[-2].node, yyvsp[0].node); ;
break;} break;}
case 638: case 638:
#line 3572 "gram.y" #line 3561 "gram.y"
{ yyval.node = makeA_Expr(OP, ":", NULL, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, ":", NULL, yyvsp[0].node); ;
break;} break;}
case 639: case 639:
#line 3574 "gram.y" #line 3563 "gram.y"
{ yyval.node = makeA_Expr(OP, ";", NULL, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, ";", NULL, yyvsp[0].node); ;
break;} break;}
case 640: case 640:
#line 3576 "gram.y" #line 3565 "gram.y"
{ yyval.node = makeA_Expr(OP, "|", NULL, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, "|", NULL, yyvsp[0].node); ;
break;} break;}
case 641: case 641:
#line 3578 "gram.y" #line 3567 "gram.y"
{ {
yyval.node = (Node *)yyvsp[-2].node; yyval.node = (Node *)yyvsp[-2].node;
/* AexprConst can be either A_Const or ParamNo */ /* AexprConst can be either A_Const or ParamNo */
...@@ -8945,7 +8934,7 @@ case 641: ...@@ -8945,7 +8934,7 @@ case 641:
; ;
break;} break;}
case 642: case 642:
#line 3594 "gram.y" #line 3583 "gram.y"
{ {
yyval.node = (Node *)yyvsp[-3].node; yyval.node = (Node *)yyvsp[-3].node;
/* AexprConst can be either A_Const or ParamNo */ /* AexprConst can be either A_Const or ParamNo */
...@@ -8963,31 +8952,31 @@ case 642: ...@@ -8963,31 +8952,31 @@ case 642:
; ;
break;} break;}
case 643: case 643:
#line 3610 "gram.y" #line 3599 "gram.y"
{ yyval.node = yyvsp[-1].node; ; { yyval.node = yyvsp[-1].node; ;
break;} break;}
case 644: case 644:
#line 3612 "gram.y" #line 3601 "gram.y"
{ yyval.node = makeIndexable(yyvsp[-1].str,yyvsp[-2].node,yyvsp[0].node); ; { yyval.node = makeIndexable(yyvsp[-1].str,yyvsp[-2].node,yyvsp[0].node); ;
break;} break;}
case 645: case 645:
#line 3614 "gram.y" #line 3603 "gram.y"
{ yyval.node = makeIndexable("~~", yyvsp[-2].node, yyvsp[0].node); ; { yyval.node = makeIndexable("~~", yyvsp[-2].node, yyvsp[0].node); ;
break;} break;}
case 646: case 646:
#line 3616 "gram.y" #line 3605 "gram.y"
{ yyval.node = makeA_Expr(OP, "!~~", yyvsp[-3].node, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, "!~~", yyvsp[-3].node, yyvsp[0].node); ;
break;} break;}
case 647: case 647:
#line 3618 "gram.y" #line 3607 "gram.y"
{ yyval.node = makeA_Expr(OP, yyvsp[-1].str, NULL, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, yyvsp[-1].str, NULL, yyvsp[0].node); ;
break;} break;}
case 648: case 648:
#line 3620 "gram.y" #line 3609 "gram.y"
{ yyval.node = makeA_Expr(OP, yyvsp[0].str, yyvsp[-1].node, NULL); ; { yyval.node = makeA_Expr(OP, yyvsp[0].str, yyvsp[-1].node, NULL); ;
break;} break;}
case 649: case 649:
#line 3622 "gram.y" #line 3611 "gram.y"
{ {
/* cheap hack for aggregate (eg. count) */ /* cheap hack for aggregate (eg. count) */
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
...@@ -9001,7 +8990,7 @@ case 649: ...@@ -9001,7 +8990,7 @@ case 649:
; ;
break;} break;}
case 650: case 650:
#line 3634 "gram.y" #line 3623 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = yyvsp[-2].str; n->funcname = yyvsp[-2].str;
...@@ -9010,7 +8999,7 @@ case 650: ...@@ -9010,7 +8999,7 @@ case 650:
; ;
break;} break;}
case 651: case 651:
#line 3641 "gram.y" #line 3630 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = yyvsp[-3].str; n->funcname = yyvsp[-3].str;
...@@ -9019,7 +9008,7 @@ case 651: ...@@ -9019,7 +9008,7 @@ case 651:
; ;
break;} break;}
case 652: case 652:
#line 3648 "gram.y" #line 3637 "gram.y"
{ {
A_Const *n = makeNode(A_Const); A_Const *n = makeNode(A_Const);
TypeName *t = makeNode(TypeName); TypeName *t = makeNode(TypeName);
...@@ -9036,7 +9025,7 @@ case 652: ...@@ -9036,7 +9025,7 @@ case 652:
; ;
break;} break;}
case 653: case 653:
#line 3663 "gram.y" #line 3652 "gram.y"
{ {
A_Const *n = makeNode(A_Const); A_Const *n = makeNode(A_Const);
TypeName *t = makeNode(TypeName); TypeName *t = makeNode(TypeName);
...@@ -9053,7 +9042,7 @@ case 653: ...@@ -9053,7 +9042,7 @@ case 653:
; ;
break;} break;}
case 654: case 654:
#line 3678 "gram.y" #line 3667 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
A_Const *s = makeNode(A_Const); A_Const *s = makeNode(A_Const);
...@@ -9077,7 +9066,7 @@ case 654: ...@@ -9077,7 +9066,7 @@ case 654:
; ;
break;} break;}
case 655: case 655:
#line 3700 "gram.y" #line 3689 "gram.y"
{ {
A_Const *n = makeNode(A_Const); A_Const *n = makeNode(A_Const);
TypeName *t = makeNode(TypeName); TypeName *t = makeNode(TypeName);
...@@ -9094,7 +9083,7 @@ case 655: ...@@ -9094,7 +9083,7 @@ case 655:
; ;
break;} break;}
case 656: case 656:
#line 3715 "gram.y" #line 3704 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
A_Const *s = makeNode(A_Const); A_Const *s = makeNode(A_Const);
...@@ -9118,7 +9107,7 @@ case 656: ...@@ -9118,7 +9107,7 @@ case 656:
; ;
break;} break;}
case 657: case 657:
#line 3737 "gram.y" #line 3726 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = "getpgusername"; n->funcname = "getpgusername";
...@@ -9127,7 +9116,7 @@ case 657: ...@@ -9127,7 +9116,7 @@ case 657:
; ;
break;} break;}
case 658: case 658:
#line 3744 "gram.y" #line 3733 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = "getpgusername"; n->funcname = "getpgusername";
...@@ -9136,7 +9125,7 @@ case 658: ...@@ -9136,7 +9125,7 @@ case 658:
; ;
break;} break;}
case 659: case 659:
#line 3751 "gram.y" #line 3740 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->lefthand = NIL; n->lefthand = NIL;
...@@ -9148,7 +9137,7 @@ case 659: ...@@ -9148,7 +9137,7 @@ case 659:
; ;
break;} break;}
case 660: case 660:
#line 3761 "gram.y" #line 3750 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = "date_part"; n->funcname = "date_part";
...@@ -9157,7 +9146,7 @@ case 660: ...@@ -9157,7 +9146,7 @@ case 660:
; ;
break;} break;}
case 661: case 661:
#line 3768 "gram.y" #line 3757 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = "strpos"; n->funcname = "strpos";
...@@ -9166,7 +9155,7 @@ case 661: ...@@ -9166,7 +9155,7 @@ case 661:
; ;
break;} break;}
case 662: case 662:
#line 3775 "gram.y" #line 3764 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = "substr"; n->funcname = "substr";
...@@ -9175,7 +9164,7 @@ case 662: ...@@ -9175,7 +9164,7 @@ case 662:
; ;
break;} break;}
case 663: case 663:
#line 3783 "gram.y" #line 3772 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = "btrim"; n->funcname = "btrim";
...@@ -9184,7 +9173,7 @@ case 663: ...@@ -9184,7 +9173,7 @@ case 663:
; ;
break;} break;}
case 664: case 664:
#line 3790 "gram.y" #line 3779 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = "ltrim"; n->funcname = "ltrim";
...@@ -9193,7 +9182,7 @@ case 664: ...@@ -9193,7 +9182,7 @@ case 664:
; ;
break;} break;}
case 665: case 665:
#line 3797 "gram.y" #line 3786 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = "rtrim"; n->funcname = "rtrim";
...@@ -9202,7 +9191,7 @@ case 665: ...@@ -9202,7 +9191,7 @@ case 665:
; ;
break;} break;}
case 666: case 666:
#line 3804 "gram.y" #line 3793 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = "btrim"; n->funcname = "btrim";
...@@ -9211,23 +9200,23 @@ case 666: ...@@ -9211,23 +9200,23 @@ case 666:
; ;
break;} break;}
case 667: case 667:
#line 3811 "gram.y" #line 3800 "gram.y"
{ yyval.node = makeA_Expr(ISNULL, NULL, yyvsp[-1].node, NULL); ; { yyval.node = makeA_Expr(ISNULL, NULL, yyvsp[-1].node, NULL); ;
break;} break;}
case 668: case 668:
#line 3813 "gram.y" #line 3802 "gram.y"
{ yyval.node = makeA_Expr(ISNULL, NULL, yyvsp[-2].node, NULL); ; { yyval.node = makeA_Expr(ISNULL, NULL, yyvsp[-2].node, NULL); ;
break;} break;}
case 669: case 669:
#line 3815 "gram.y" #line 3804 "gram.y"
{ yyval.node = makeA_Expr(NOTNULL, NULL, yyvsp[-1].node, NULL); ; { yyval.node = makeA_Expr(NOTNULL, NULL, yyvsp[-1].node, NULL); ;
break;} break;}
case 670: case 670:
#line 3817 "gram.y" #line 3806 "gram.y"
{ yyval.node = makeA_Expr(NOTNULL, NULL, yyvsp[-3].node, NULL); ; { yyval.node = makeA_Expr(NOTNULL, NULL, yyvsp[-3].node, NULL); ;
break;} break;}
case 671: case 671:
#line 3824 "gram.y" #line 3813 "gram.y"
{ {
A_Const *n = makeNode(A_Const); A_Const *n = makeNode(A_Const);
n->val.type = T_String; n->val.type = T_String;
...@@ -9239,7 +9228,7 @@ case 671: ...@@ -9239,7 +9228,7 @@ case 671:
; ;
break;} break;}
case 672: case 672:
#line 3834 "gram.y" #line 3823 "gram.y"
{ {
A_Const *n = makeNode(A_Const); A_Const *n = makeNode(A_Const);
n->val.type = T_String; n->val.type = T_String;
...@@ -9251,7 +9240,7 @@ case 672: ...@@ -9251,7 +9240,7 @@ case 672:
; ;
break;} break;}
case 673: case 673:
#line 3844 "gram.y" #line 3833 "gram.y"
{ {
A_Const *n = makeNode(A_Const); A_Const *n = makeNode(A_Const);
n->val.type = T_String; n->val.type = T_String;
...@@ -9263,7 +9252,7 @@ case 673: ...@@ -9263,7 +9252,7 @@ case 673:
; ;
break;} break;}
case 674: case 674:
#line 3854 "gram.y" #line 3843 "gram.y"
{ {
A_Const *n = makeNode(A_Const); A_Const *n = makeNode(A_Const);
n->val.type = T_String; n->val.type = T_String;
...@@ -9275,7 +9264,7 @@ case 674: ...@@ -9275,7 +9264,7 @@ case 674:
; ;
break;} break;}
case 675: case 675:
#line 3864 "gram.y" #line 3853 "gram.y"
{ {
yyval.node = makeA_Expr(AND, NULL, yyval.node = makeA_Expr(AND, NULL,
makeA_Expr(OP, ">=", yyvsp[-4].node, yyvsp[-2].node), makeA_Expr(OP, ">=", yyvsp[-4].node, yyvsp[-2].node),
...@@ -9283,7 +9272,7 @@ case 675: ...@@ -9283,7 +9272,7 @@ case 675:
; ;
break;} break;}
case 676: case 676:
#line 3870 "gram.y" #line 3859 "gram.y"
{ {
yyval.node = makeA_Expr(OR, NULL, yyval.node = makeA_Expr(OR, NULL,
makeA_Expr(OP, "<", yyvsp[-5].node, yyvsp[-2].node), makeA_Expr(OP, "<", yyvsp[-5].node, yyvsp[-2].node),
...@@ -9291,11 +9280,11 @@ case 676: ...@@ -9291,11 +9280,11 @@ case 676:
; ;
break;} break;}
case 677: case 677:
#line 3875 "gram.y" #line 3864 "gram.y"
{ saved_In_Expr = lcons(yyvsp[-1].node,saved_In_Expr); ; { saved_In_Expr = lcons(yyvsp[-1].node,saved_In_Expr); ;
break;} break;}
case 678: case 678:
#line 3876 "gram.y" #line 3865 "gram.y"
{ {
saved_In_Expr = lnext(saved_In_Expr); saved_In_Expr = lnext(saved_In_Expr);
if (nodeTag(yyvsp[-1].node) == T_SubLink) if (nodeTag(yyvsp[-1].node) == T_SubLink)
...@@ -9311,11 +9300,11 @@ case 678: ...@@ -9311,11 +9300,11 @@ case 678:
; ;
break;} break;}
case 679: case 679:
#line 3889 "gram.y" #line 3878 "gram.y"
{ saved_In_Expr = lcons(yyvsp[-2].node,saved_In_Expr); ; { saved_In_Expr = lcons(yyvsp[-2].node,saved_In_Expr); ;
break;} break;}
case 680: case 680:
#line 3890 "gram.y" #line 3879 "gram.y"
{ {
saved_In_Expr = lnext(saved_In_Expr); saved_In_Expr = lnext(saved_In_Expr);
if (nodeTag(yyvsp[-1].node) == T_SubLink) if (nodeTag(yyvsp[-1].node) == T_SubLink)
...@@ -9331,7 +9320,7 @@ case 680: ...@@ -9331,7 +9320,7 @@ case 680:
; ;
break;} break;}
case 681: case 681:
#line 3904 "gram.y" #line 3893 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->lefthand = lcons(yyvsp[-4].node, NULL); n->lefthand = lcons(yyvsp[-4].node, NULL);
...@@ -9343,7 +9332,7 @@ case 681: ...@@ -9343,7 +9332,7 @@ case 681:
; ;
break;} break;}
case 682: case 682:
#line 3914 "gram.y" #line 3903 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->lefthand = lcons(yyvsp[-4].node, NULL); n->lefthand = lcons(yyvsp[-4].node, NULL);
...@@ -9355,7 +9344,7 @@ case 682: ...@@ -9355,7 +9344,7 @@ case 682:
; ;
break;} break;}
case 683: case 683:
#line 3924 "gram.y" #line 3913 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->lefthand = lcons(yyvsp[-4].node, NULL); n->lefthand = lcons(yyvsp[-4].node, NULL);
...@@ -9367,7 +9356,7 @@ case 683: ...@@ -9367,7 +9356,7 @@ case 683:
; ;
break;} break;}
case 684: case 684:
#line 3934 "gram.y" #line 3923 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->lefthand = lcons(yyvsp[-4].node, NULL); n->lefthand = lcons(yyvsp[-4].node, NULL);
...@@ -9379,7 +9368,7 @@ case 684: ...@@ -9379,7 +9368,7 @@ case 684:
; ;
break;} break;}
case 685: case 685:
#line 3944 "gram.y" #line 3933 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->lefthand = lcons(yyvsp[-4].node, NULL); n->lefthand = lcons(yyvsp[-4].node, NULL);
...@@ -9391,7 +9380,7 @@ case 685: ...@@ -9391,7 +9380,7 @@ case 685:
; ;
break;} break;}
case 686: case 686:
#line 3954 "gram.y" #line 3943 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->lefthand = lcons(yyvsp[-4].node, NULL); n->lefthand = lcons(yyvsp[-4].node, NULL);
...@@ -9403,7 +9392,7 @@ case 686: ...@@ -9403,7 +9392,7 @@ case 686:
; ;
break;} break;}
case 687: case 687:
#line 3964 "gram.y" #line 3953 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->lefthand = lcons(yyvsp[-4].node, NULL); n->lefthand = lcons(yyvsp[-4].node, NULL);
...@@ -9415,7 +9404,7 @@ case 687: ...@@ -9415,7 +9404,7 @@ case 687:
; ;
break;} break;}
case 688: case 688:
#line 3974 "gram.y" #line 3963 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->lefthand = lcons(yyvsp[-4].node, NULL); n->lefthand = lcons(yyvsp[-4].node, NULL);
...@@ -9427,7 +9416,7 @@ case 688: ...@@ -9427,7 +9416,7 @@ case 688:
; ;
break;} break;}
case 689: case 689:
#line 3984 "gram.y" #line 3973 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->lefthand = lcons(yyvsp[-5].node,NIL); n->lefthand = lcons(yyvsp[-5].node,NIL);
...@@ -9439,7 +9428,7 @@ case 689: ...@@ -9439,7 +9428,7 @@ case 689:
; ;
break;} break;}
case 690: case 690:
#line 3994 "gram.y" #line 3983 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->lefthand = lcons(yyvsp[-5].node,NIL); n->lefthand = lcons(yyvsp[-5].node,NIL);
...@@ -9451,7 +9440,7 @@ case 690: ...@@ -9451,7 +9440,7 @@ case 690:
; ;
break;} break;}
case 691: case 691:
#line 4004 "gram.y" #line 3993 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->lefthand = lcons(yyvsp[-5].node,NIL); n->lefthand = lcons(yyvsp[-5].node,NIL);
...@@ -9463,7 +9452,7 @@ case 691: ...@@ -9463,7 +9452,7 @@ case 691:
; ;
break;} break;}
case 692: case 692:
#line 4014 "gram.y" #line 4003 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->lefthand = lcons(yyvsp[-5].node,NIL); n->lefthand = lcons(yyvsp[-5].node,NIL);
...@@ -9475,7 +9464,7 @@ case 692: ...@@ -9475,7 +9464,7 @@ case 692:
; ;
break;} break;}
case 693: case 693:
#line 4024 "gram.y" #line 4013 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->lefthand = lcons(yyvsp[-5].node,NIL); n->lefthand = lcons(yyvsp[-5].node,NIL);
...@@ -9487,7 +9476,7 @@ case 693: ...@@ -9487,7 +9476,7 @@ case 693:
; ;
break;} break;}
case 694: case 694:
#line 4034 "gram.y" #line 4023 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->lefthand = lcons(yyvsp[-5].node,NIL); n->lefthand = lcons(yyvsp[-5].node,NIL);
...@@ -9499,7 +9488,7 @@ case 694: ...@@ -9499,7 +9488,7 @@ case 694:
; ;
break;} break;}
case 695: case 695:
#line 4044 "gram.y" #line 4033 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->lefthand = lcons(yyvsp[-5].node,NIL); n->lefthand = lcons(yyvsp[-5].node,NIL);
...@@ -9511,7 +9500,7 @@ case 695: ...@@ -9511,7 +9500,7 @@ case 695:
; ;
break;} break;}
case 696: case 696:
#line 4054 "gram.y" #line 4043 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->lefthand = lcons(yyvsp[-5].node,NIL); n->lefthand = lcons(yyvsp[-5].node,NIL);
...@@ -9523,7 +9512,7 @@ case 696: ...@@ -9523,7 +9512,7 @@ case 696:
; ;
break;} break;}
case 697: case 697:
#line 4064 "gram.y" #line 4053 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->lefthand = lcons(yyvsp[-5].node, NULL); n->lefthand = lcons(yyvsp[-5].node, NULL);
...@@ -9535,7 +9524,7 @@ case 697: ...@@ -9535,7 +9524,7 @@ case 697:
; ;
break;} break;}
case 698: case 698:
#line 4074 "gram.y" #line 4063 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->lefthand = lcons(yyvsp[-5].node, NULL); n->lefthand = lcons(yyvsp[-5].node, NULL);
...@@ -9547,7 +9536,7 @@ case 698: ...@@ -9547,7 +9536,7 @@ case 698:
; ;
break;} break;}
case 699: case 699:
#line 4084 "gram.y" #line 4073 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->lefthand = lcons(yyvsp[-5].node, NULL); n->lefthand = lcons(yyvsp[-5].node, NULL);
...@@ -9559,7 +9548,7 @@ case 699: ...@@ -9559,7 +9548,7 @@ case 699:
; ;
break;} break;}
case 700: case 700:
#line 4094 "gram.y" #line 4083 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->lefthand = lcons(yyvsp[-5].node, NULL); n->lefthand = lcons(yyvsp[-5].node, NULL);
...@@ -9571,7 +9560,7 @@ case 700: ...@@ -9571,7 +9560,7 @@ case 700:
; ;
break;} break;}
case 701: case 701:
#line 4104 "gram.y" #line 4093 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->lefthand = lcons(yyvsp[-5].node, NULL); n->lefthand = lcons(yyvsp[-5].node, NULL);
...@@ -9583,7 +9572,7 @@ case 701: ...@@ -9583,7 +9572,7 @@ case 701:
; ;
break;} break;}
case 702: case 702:
#line 4114 "gram.y" #line 4103 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->lefthand = lcons(yyvsp[-5].node, NULL); n->lefthand = lcons(yyvsp[-5].node, NULL);
...@@ -9595,7 +9584,7 @@ case 702: ...@@ -9595,7 +9584,7 @@ case 702:
; ;
break;} break;}
case 703: case 703:
#line 4124 "gram.y" #line 4113 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->lefthand = lcons(yyvsp[-5].node, NULL); n->lefthand = lcons(yyvsp[-5].node, NULL);
...@@ -9607,7 +9596,7 @@ case 703: ...@@ -9607,7 +9596,7 @@ case 703:
; ;
break;} break;}
case 704: case 704:
#line 4134 "gram.y" #line 4123 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->lefthand = lcons(yyvsp[-5].node, NULL); n->lefthand = lcons(yyvsp[-5].node, NULL);
...@@ -9619,34 +9608,34 @@ case 704: ...@@ -9619,34 +9608,34 @@ case 704:
; ;
break;} break;}
case 705: case 705:
#line 4144 "gram.y" #line 4133 "gram.y"
{ yyval.node = makeA_Expr(AND, NULL, yyvsp[-2].node, yyvsp[0].node); ; { yyval.node = makeA_Expr(AND, NULL, yyvsp[-2].node, yyvsp[0].node); ;
break;} break;}
case 706: case 706:
#line 4146 "gram.y" #line 4135 "gram.y"
{ yyval.node = makeA_Expr(OR, NULL, yyvsp[-2].node, yyvsp[0].node); ; { yyval.node = makeA_Expr(OR, NULL, yyvsp[-2].node, yyvsp[0].node); ;
break;} break;}
case 707: case 707:
#line 4148 "gram.y" #line 4137 "gram.y"
{ yyval.node = makeA_Expr(NOT, NULL, NULL, yyvsp[0].node); ; { yyval.node = makeA_Expr(NOT, NULL, NULL, yyvsp[0].node); ;
break;} break;}
case 708: case 708:
#line 4150 "gram.y" #line 4139 "gram.y"
{ yyval.node = yyvsp[0].node; ; { yyval.node = yyvsp[0].node; ;
break;} break;}
case 709: case 709:
#line 4159 "gram.y" #line 4148 "gram.y"
{ {
yyvsp[-1].attr->indirection = yyvsp[0].list; yyvsp[-1].attr->indirection = yyvsp[0].list;
yyval.node = (Node *)yyvsp[-1].attr; yyval.node = (Node *)yyvsp[-1].attr;
; ;
break;} break;}
case 710: case 710:
#line 4164 "gram.y" #line 4153 "gram.y"
{ yyval.node = yyvsp[0].node; ; { yyval.node = yyvsp[0].node; ;
break;} break;}
case 711: case 711:
#line 4166 "gram.y" #line 4155 "gram.y"
{ {
/* could be a column name or a relation_name */ /* could be a column name or a relation_name */
Ident *n = makeNode(Ident); Ident *n = makeNode(Ident);
...@@ -9656,39 +9645,39 @@ case 711: ...@@ -9656,39 +9645,39 @@ case 711:
; ;
break;} break;}
case 712: case 712:
#line 4174 "gram.y" #line 4163 "gram.y"
{ yyval.node = makeA_Expr(OP, "-", NULL, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, "-", NULL, yyvsp[0].node); ;
break;} break;}
case 713: case 713:
#line 4176 "gram.y" #line 4165 "gram.y"
{ yyval.node = makeA_Expr(OP, "+", yyvsp[-2].node, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, "+", yyvsp[-2].node, yyvsp[0].node); ;
break;} break;}
case 714: case 714:
#line 4178 "gram.y" #line 4167 "gram.y"
{ yyval.node = makeA_Expr(OP, "-", yyvsp[-2].node, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, "-", yyvsp[-2].node, yyvsp[0].node); ;
break;} break;}
case 715: case 715:
#line 4180 "gram.y" #line 4169 "gram.y"
{ yyval.node = makeA_Expr(OP, "/", yyvsp[-2].node, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, "/", yyvsp[-2].node, yyvsp[0].node); ;
break;} break;}
case 716: case 716:
#line 4182 "gram.y" #line 4171 "gram.y"
{ yyval.node = makeA_Expr(OP, "*", yyvsp[-2].node, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, "*", yyvsp[-2].node, yyvsp[0].node); ;
break;} break;}
case 717: case 717:
#line 4184 "gram.y" #line 4173 "gram.y"
{ yyval.node = makeA_Expr(OP, ":", NULL, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, ":", NULL, yyvsp[0].node); ;
break;} break;}
case 718: case 718:
#line 4186 "gram.y" #line 4175 "gram.y"
{ yyval.node = makeA_Expr(OP, ";", NULL, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, ";", NULL, yyvsp[0].node); ;
break;} break;}
case 719: case 719:
#line 4188 "gram.y" #line 4177 "gram.y"
{ yyval.node = makeA_Expr(OP, "|", NULL, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, "|", NULL, yyvsp[0].node); ;
break;} break;}
case 720: case 720:
#line 4190 "gram.y" #line 4179 "gram.y"
{ {
yyval.node = (Node *)yyvsp[-2].node; yyval.node = (Node *)yyvsp[-2].node;
/* AexprConst can be either A_Const or ParamNo */ /* AexprConst can be either A_Const or ParamNo */
...@@ -9706,7 +9695,7 @@ case 720: ...@@ -9706,7 +9695,7 @@ case 720:
; ;
break;} break;}
case 721: case 721:
#line 4206 "gram.y" #line 4195 "gram.y"
{ {
yyval.node = (Node *)yyvsp[-3].node; yyval.node = (Node *)yyvsp[-3].node;
/* AexprConst can be either A_Const or ParamNo */ /* AexprConst can be either A_Const or ParamNo */
...@@ -9724,23 +9713,23 @@ case 721: ...@@ -9724,23 +9713,23 @@ case 721:
; ;
break;} break;}
case 722: case 722:
#line 4222 "gram.y" #line 4211 "gram.y"
{ yyval.node = yyvsp[-1].node; ; { yyval.node = yyvsp[-1].node; ;
break;} break;}
case 723: case 723:
#line 4224 "gram.y" #line 4213 "gram.y"
{ yyval.node = makeIndexable(yyvsp[-1].str,yyvsp[-2].node,yyvsp[0].node); ; { yyval.node = makeIndexable(yyvsp[-1].str,yyvsp[-2].node,yyvsp[0].node); ;
break;} break;}
case 724: case 724:
#line 4226 "gram.y" #line 4215 "gram.y"
{ yyval.node = makeA_Expr(OP, yyvsp[-1].str, NULL, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, yyvsp[-1].str, NULL, yyvsp[0].node); ;
break;} break;}
case 725: case 725:
#line 4228 "gram.y" #line 4217 "gram.y"
{ yyval.node = makeA_Expr(OP, yyvsp[0].str, yyvsp[-1].node, NULL); ; { yyval.node = makeA_Expr(OP, yyvsp[0].str, yyvsp[-1].node, NULL); ;
break;} break;}
case 726: case 726:
#line 4230 "gram.y" #line 4219 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = yyvsp[-2].str; n->funcname = yyvsp[-2].str;
...@@ -9749,7 +9738,7 @@ case 726: ...@@ -9749,7 +9738,7 @@ case 726:
; ;
break;} break;}
case 727: case 727:
#line 4237 "gram.y" #line 4226 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = yyvsp[-3].str; n->funcname = yyvsp[-3].str;
...@@ -9758,7 +9747,7 @@ case 727: ...@@ -9758,7 +9747,7 @@ case 727:
; ;
break;} break;}
case 728: case 728:
#line 4244 "gram.y" #line 4233 "gram.y"
{ {
A_Const *n = makeNode(A_Const); A_Const *n = makeNode(A_Const);
TypeName *t = makeNode(TypeName); TypeName *t = makeNode(TypeName);
...@@ -9775,7 +9764,7 @@ case 728: ...@@ -9775,7 +9764,7 @@ case 728:
; ;
break;} break;}
case 729: case 729:
#line 4259 "gram.y" #line 4248 "gram.y"
{ {
A_Const *n = makeNode(A_Const); A_Const *n = makeNode(A_Const);
TypeName *t = makeNode(TypeName); TypeName *t = makeNode(TypeName);
...@@ -9792,7 +9781,7 @@ case 729: ...@@ -9792,7 +9781,7 @@ case 729:
; ;
break;} break;}
case 730: case 730:
#line 4274 "gram.y" #line 4263 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
A_Const *s = makeNode(A_Const); A_Const *s = makeNode(A_Const);
...@@ -9816,7 +9805,7 @@ case 730: ...@@ -9816,7 +9805,7 @@ case 730:
; ;
break;} break;}
case 731: case 731:
#line 4296 "gram.y" #line 4285 "gram.y"
{ {
A_Const *n = makeNode(A_Const); A_Const *n = makeNode(A_Const);
TypeName *t = makeNode(TypeName); TypeName *t = makeNode(TypeName);
...@@ -9833,7 +9822,7 @@ case 731: ...@@ -9833,7 +9822,7 @@ case 731:
; ;
break;} break;}
case 732: case 732:
#line 4311 "gram.y" #line 4300 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
A_Const *s = makeNode(A_Const); A_Const *s = makeNode(A_Const);
...@@ -9857,7 +9846,7 @@ case 732: ...@@ -9857,7 +9846,7 @@ case 732:
; ;
break;} break;}
case 733: case 733:
#line 4333 "gram.y" #line 4322 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = "getpgusername"; n->funcname = "getpgusername";
...@@ -9866,7 +9855,7 @@ case 733: ...@@ -9866,7 +9855,7 @@ case 733:
; ;
break;} break;}
case 734: case 734:
#line 4340 "gram.y" #line 4329 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = "getpgusername"; n->funcname = "getpgusername";
...@@ -9875,7 +9864,7 @@ case 734: ...@@ -9875,7 +9864,7 @@ case 734:
; ;
break;} break;}
case 735: case 735:
#line 4347 "gram.y" #line 4336 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = "strpos"; n->funcname = "strpos";
...@@ -9884,7 +9873,7 @@ case 735: ...@@ -9884,7 +9873,7 @@ case 735:
; ;
break;} break;}
case 736: case 736:
#line 4354 "gram.y" #line 4343 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = "substr"; n->funcname = "substr";
...@@ -9893,7 +9882,7 @@ case 736: ...@@ -9893,7 +9882,7 @@ case 736:
; ;
break;} break;}
case 737: case 737:
#line 4362 "gram.y" #line 4351 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = "btrim"; n->funcname = "btrim";
...@@ -9902,7 +9891,7 @@ case 737: ...@@ -9902,7 +9891,7 @@ case 737:
; ;
break;} break;}
case 738: case 738:
#line 4369 "gram.y" #line 4358 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = "ltrim"; n->funcname = "ltrim";
...@@ -9911,7 +9900,7 @@ case 738: ...@@ -9911,7 +9900,7 @@ case 738:
; ;
break;} break;}
case 739: case 739:
#line 4376 "gram.y" #line 4365 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = "rtrim"; n->funcname = "rtrim";
...@@ -9920,7 +9909,7 @@ case 739: ...@@ -9920,7 +9909,7 @@ case 739:
; ;
break;} break;}
case 740: case 740:
#line 4383 "gram.y" #line 4372 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = "btrim"; n->funcname = "btrim";
...@@ -9929,7 +9918,7 @@ case 740: ...@@ -9929,7 +9918,7 @@ case 740:
; ;
break;} break;}
case 741: case 741:
#line 4392 "gram.y" #line 4381 "gram.y"
{ {
A_Indices *ai = makeNode(A_Indices); A_Indices *ai = makeNode(A_Indices);
ai->lidx = NULL; ai->lidx = NULL;
...@@ -9938,7 +9927,7 @@ case 741: ...@@ -9938,7 +9927,7 @@ case 741:
; ;
break;} break;}
case 742: case 742:
#line 4399 "gram.y" #line 4388 "gram.y"
{ {
A_Indices *ai = makeNode(A_Indices); A_Indices *ai = makeNode(A_Indices);
ai->lidx = yyvsp[-4].node; ai->lidx = yyvsp[-4].node;
...@@ -9947,23 +9936,23 @@ case 742: ...@@ -9947,23 +9936,23 @@ case 742:
; ;
break;} break;}
case 743: case 743:
#line 4406 "gram.y" #line 4395 "gram.y"
{ yyval.list = NIL; ; { yyval.list = NIL; ;
break;} break;}
case 744: case 744:
#line 4410 "gram.y" #line 4399 "gram.y"
{ yyval.list = lcons(yyvsp[0].node, NIL); ; { yyval.list = lcons(yyvsp[0].node, NIL); ;
break;} break;}
case 745: case 745:
#line 4412 "gram.y" #line 4401 "gram.y"
{ yyval.list = lappend(yyvsp[-2].list, yyvsp[0].node); ; { yyval.list = lappend(yyvsp[-2].list, yyvsp[0].node); ;
break;} break;}
case 746: case 746:
#line 4414 "gram.y" #line 4403 "gram.y"
{ yyval.list = lappend(yyvsp[-2].list, yyvsp[0].node); ; { yyval.list = lappend(yyvsp[-2].list, yyvsp[0].node); ;
break;} break;}
case 747: case 747:
#line 4418 "gram.y" #line 4407 "gram.y"
{ {
A_Const *n = makeNode(A_Const); A_Const *n = makeNode(A_Const);
n->val.type = T_String; n->val.type = T_String;
...@@ -9972,66 +9961,66 @@ case 747: ...@@ -9972,66 +9961,66 @@ case 747:
; ;
break;} break;}
case 748: case 748:
#line 4425 "gram.y" #line 4414 "gram.y"
{ yyval.list = NIL; ; { yyval.list = NIL; ;
break;} break;}
case 749: case 749:
#line 4428 "gram.y" #line 4417 "gram.y"
{ yyval.str = yyvsp[0].str; ; { yyval.str = yyvsp[0].str; ;
break;} break;}
case 750: case 750:
#line 4429 "gram.y" #line 4418 "gram.y"
{ yyval.str = "tz_hour"; ; { yyval.str = "tz_hour"; ;
break;} break;}
case 751: case 751:
#line 4430 "gram.y" #line 4419 "gram.y"
{ yyval.str = "tz_minute"; ; { yyval.str = "tz_minute"; ;
break;} break;}
case 752: case 752:
#line 4434 "gram.y" #line 4423 "gram.y"
{ yyval.list = makeList(yyvsp[0].node, yyvsp[-2].node, -1); ; { yyval.list = makeList(yyvsp[0].node, yyvsp[-2].node, -1); ;
break;} break;}
case 753: case 753:
#line 4436 "gram.y" #line 4425 "gram.y"
{ yyval.list = NIL; ; { yyval.list = NIL; ;
break;} break;}
case 754: case 754:
#line 4440 "gram.y" #line 4429 "gram.y"
{ {
yyvsp[-1].attr->indirection = yyvsp[0].list; yyvsp[-1].attr->indirection = yyvsp[0].list;
yyval.node = (Node *)yyvsp[-1].attr; yyval.node = (Node *)yyvsp[-1].attr;
; ;
break;} break;}
case 755: case 755:
#line 4445 "gram.y" #line 4434 "gram.y"
{ yyval.node = yyvsp[0].node; ; { yyval.node = yyvsp[0].node; ;
break;} break;}
case 756: case 756:
#line 4447 "gram.y" #line 4436 "gram.y"
{ yyval.node = makeA_Expr(OP, "-", NULL, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, "-", NULL, yyvsp[0].node); ;
break;} break;}
case 757: case 757:
#line 4449 "gram.y" #line 4438 "gram.y"
{ yyval.node = makeA_Expr(OP, "+", yyvsp[-2].node, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, "+", yyvsp[-2].node, yyvsp[0].node); ;
break;} break;}
case 758: case 758:
#line 4451 "gram.y" #line 4440 "gram.y"
{ yyval.node = makeA_Expr(OP, "-", yyvsp[-2].node, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, "-", yyvsp[-2].node, yyvsp[0].node); ;
break;} break;}
case 759: case 759:
#line 4453 "gram.y" #line 4442 "gram.y"
{ yyval.node = makeA_Expr(OP, "/", yyvsp[-2].node, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, "/", yyvsp[-2].node, yyvsp[0].node); ;
break;} break;}
case 760: case 760:
#line 4455 "gram.y" #line 4444 "gram.y"
{ yyval.node = makeA_Expr(OP, "*", yyvsp[-2].node, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, "*", yyvsp[-2].node, yyvsp[0].node); ;
break;} break;}
case 761: case 761:
#line 4457 "gram.y" #line 4446 "gram.y"
{ yyval.node = makeA_Expr(OP, "|", NULL, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, "|", NULL, yyvsp[0].node); ;
break;} break;}
case 762: case 762:
#line 4459 "gram.y" #line 4448 "gram.y"
{ {
yyval.node = (Node *)yyvsp[-2].node; yyval.node = (Node *)yyvsp[-2].node;
/* AexprConst can be either A_Const or ParamNo */ /* AexprConst can be either A_Const or ParamNo */
...@@ -10049,7 +10038,7 @@ case 762: ...@@ -10049,7 +10038,7 @@ case 762:
; ;
break;} break;}
case 763: case 763:
#line 4475 "gram.y" #line 4464 "gram.y"
{ {
yyval.node = (Node *)yyvsp[-3].node; yyval.node = (Node *)yyvsp[-3].node;
/* AexprConst can be either A_Const or ParamNo */ /* AexprConst can be either A_Const or ParamNo */
...@@ -10067,23 +10056,23 @@ case 763: ...@@ -10067,23 +10056,23 @@ case 763:
; ;
break;} break;}
case 764: case 764:
#line 4491 "gram.y" #line 4480 "gram.y"
{ yyval.node = yyvsp[-1].node; ; { yyval.node = yyvsp[-1].node; ;
break;} break;}
case 765: case 765:
#line 4493 "gram.y" #line 4482 "gram.y"
{ yyval.node = makeA_Expr(OP, yyvsp[-1].str, yyvsp[-2].node, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, yyvsp[-1].str, yyvsp[-2].node, yyvsp[0].node); ;
break;} break;}
case 766: case 766:
#line 4495 "gram.y" #line 4484 "gram.y"
{ yyval.node = makeA_Expr(OP, yyvsp[-1].str, NULL, yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, yyvsp[-1].str, NULL, yyvsp[0].node); ;
break;} break;}
case 767: case 767:
#line 4497 "gram.y" #line 4486 "gram.y"
{ yyval.node = makeA_Expr(OP, yyvsp[0].str, yyvsp[-1].node, NULL); ; { yyval.node = makeA_Expr(OP, yyvsp[0].str, yyvsp[-1].node, NULL); ;
break;} break;}
case 768: case 768:
#line 4499 "gram.y" #line 4488 "gram.y"
{ {
/* could be a column name or a relation_name */ /* could be a column name or a relation_name */
Ident *n = makeNode(Ident); Ident *n = makeNode(Ident);
...@@ -10093,7 +10082,7 @@ case 768: ...@@ -10093,7 +10082,7 @@ case 768:
; ;
break;} break;}
case 769: case 769:
#line 4507 "gram.y" #line 4496 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = yyvsp[-2].str; n->funcname = yyvsp[-2].str;
...@@ -10102,7 +10091,7 @@ case 769: ...@@ -10102,7 +10091,7 @@ case 769:
; ;
break;} break;}
case 770: case 770:
#line 4514 "gram.y" #line 4503 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = yyvsp[-3].str; n->funcname = yyvsp[-3].str;
...@@ -10111,7 +10100,7 @@ case 770: ...@@ -10111,7 +10100,7 @@ case 770:
; ;
break;} break;}
case 771: case 771:
#line 4521 "gram.y" #line 4510 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = "strpos"; n->funcname = "strpos";
...@@ -10120,7 +10109,7 @@ case 771: ...@@ -10120,7 +10109,7 @@ case 771:
; ;
break;} break;}
case 772: case 772:
#line 4528 "gram.y" #line 4517 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = "substr"; n->funcname = "substr";
...@@ -10129,7 +10118,7 @@ case 772: ...@@ -10129,7 +10118,7 @@ case 772:
; ;
break;} break;}
case 773: case 773:
#line 4536 "gram.y" #line 4525 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = "btrim"; n->funcname = "btrim";
...@@ -10138,7 +10127,7 @@ case 773: ...@@ -10138,7 +10127,7 @@ case 773:
; ;
break;} break;}
case 774: case 774:
#line 4543 "gram.y" #line 4532 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = "ltrim"; n->funcname = "ltrim";
...@@ -10147,7 +10136,7 @@ case 774: ...@@ -10147,7 +10136,7 @@ case 774:
; ;
break;} break;}
case 775: case 775:
#line 4550 "gram.y" #line 4539 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = "rtrim"; n->funcname = "rtrim";
...@@ -10156,7 +10145,7 @@ case 775: ...@@ -10156,7 +10145,7 @@ case 775:
; ;
break;} break;}
case 776: case 776:
#line 4557 "gram.y" #line 4546 "gram.y"
{ {
FuncCall *n = makeNode(FuncCall); FuncCall *n = makeNode(FuncCall);
n->funcname = "btrim"; n->funcname = "btrim";
...@@ -10165,21 +10154,21 @@ case 776: ...@@ -10165,21 +10154,21 @@ case 776:
; ;
break;} break;}
case 777: case 777:
#line 4566 "gram.y" #line 4555 "gram.y"
{ {
yyval.list = nconc(nconc(yyvsp[-2].list,yyvsp[-1].list),yyvsp[0].list); yyval.list = nconc(nconc(yyvsp[-2].list,yyvsp[-1].list),yyvsp[0].list);
; ;
break;} break;}
case 778: case 778:
#line 4570 "gram.y" #line 4559 "gram.y"
{ yyval.list = NIL; ; { yyval.list = NIL; ;
break;} break;}
case 779: case 779:
#line 4574 "gram.y" #line 4563 "gram.y"
{ yyval.list = yyvsp[0].list; ; { yyval.list = yyvsp[0].list; ;
break;} break;}
case 780: case 780:
#line 4576 "gram.y" #line 4565 "gram.y"
{ {
A_Const *n = makeNode(A_Const); A_Const *n = makeNode(A_Const);
n->val.type = T_Integer; n->val.type = T_Integer;
...@@ -10188,27 +10177,27 @@ case 780: ...@@ -10188,27 +10177,27 @@ case 780:
; ;
break;} break;}
case 781: case 781:
#line 4585 "gram.y" #line 4574 "gram.y"
{ yyval.list = yyvsp[0].list; ; { yyval.list = yyvsp[0].list; ;
break;} break;}
case 782: case 782:
#line 4587 "gram.y" #line 4576 "gram.y"
{ yyval.list = NIL; ; { yyval.list = NIL; ;
break;} break;}
case 783: case 783:
#line 4591 "gram.y" #line 4580 "gram.y"
{ yyval.list = lappend(yyvsp[0].list, yyvsp[-2].node); ; { yyval.list = lappend(yyvsp[0].list, yyvsp[-2].node); ;
break;} break;}
case 784: case 784:
#line 4593 "gram.y" #line 4582 "gram.y"
{ yyval.list = yyvsp[0].list; ; { yyval.list = yyvsp[0].list; ;
break;} break;}
case 785: case 785:
#line 4595 "gram.y" #line 4584 "gram.y"
{ yyval.list = yyvsp[0].list; ; { yyval.list = yyvsp[0].list; ;
break;} break;}
case 786: case 786:
#line 4599 "gram.y" #line 4588 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->subselect = yyvsp[0].node; n->subselect = yyvsp[0].node;
...@@ -10216,21 +10205,21 @@ case 786: ...@@ -10216,21 +10205,21 @@ case 786:
; ;
break;} break;}
case 787: case 787:
#line 4605 "gram.y" #line 4594 "gram.y"
{ yyval.node = yyvsp[0].node; ; { yyval.node = yyvsp[0].node; ;
break;} break;}
case 788: case 788:
#line 4609 "gram.y" #line 4598 "gram.y"
{ yyval.node = makeA_Expr(OP, "=", lfirst(saved_In_Expr), yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, "=", lfirst(saved_In_Expr), yyvsp[0].node); ;
break;} break;}
case 789: case 789:
#line 4611 "gram.y" #line 4600 "gram.y"
{ yyval.node = makeA_Expr(OR, NULL, yyvsp[-2].node, { yyval.node = makeA_Expr(OR, NULL, yyvsp[-2].node,
makeA_Expr(OP, "=", lfirst(saved_In_Expr), yyvsp[0].node)); makeA_Expr(OP, "=", lfirst(saved_In_Expr), yyvsp[0].node));
; ;
break;} break;}
case 790: case 790:
#line 4617 "gram.y" #line 4606 "gram.y"
{ {
SubLink *n = makeNode(SubLink); SubLink *n = makeNode(SubLink);
n->subselect = yyvsp[0].node; n->subselect = yyvsp[0].node;
...@@ -10238,21 +10227,21 @@ case 790: ...@@ -10238,21 +10227,21 @@ case 790:
; ;
break;} break;}
case 791: case 791:
#line 4623 "gram.y" #line 4612 "gram.y"
{ yyval.node = yyvsp[0].node; ; { yyval.node = yyvsp[0].node; ;
break;} break;}
case 792: case 792:
#line 4627 "gram.y" #line 4616 "gram.y"
{ yyval.node = makeA_Expr(OP, "<>", lfirst(saved_In_Expr), yyvsp[0].node); ; { yyval.node = makeA_Expr(OP, "<>", lfirst(saved_In_Expr), yyvsp[0].node); ;
break;} break;}
case 793: case 793:
#line 4629 "gram.y" #line 4618 "gram.y"
{ yyval.node = makeA_Expr(AND, NULL, yyvsp[-2].node, { yyval.node = makeA_Expr(AND, NULL, yyvsp[-2].node,
makeA_Expr(OP, "<>", lfirst(saved_In_Expr), yyvsp[0].node)); makeA_Expr(OP, "<>", lfirst(saved_In_Expr), yyvsp[0].node));
; ;
break;} break;}
case 794: case 794:
#line 4650 "gram.y" #line 4639 "gram.y"
{ {
CaseExpr *c = makeNode(CaseExpr); CaseExpr *c = makeNode(CaseExpr);
c->arg = yyvsp[-3].node; c->arg = yyvsp[-3].node;
...@@ -10262,7 +10251,7 @@ case 794: ...@@ -10262,7 +10251,7 @@ case 794:
; ;
break;} break;}
case 795: case 795:
#line 4658 "gram.y" #line 4647 "gram.y"
{ {
CaseExpr *c = makeNode(CaseExpr); CaseExpr *c = makeNode(CaseExpr);
CaseWhen *w = makeNode(CaseWhen); CaseWhen *w = makeNode(CaseWhen);
...@@ -10275,7 +10264,7 @@ case 795: ...@@ -10275,7 +10264,7 @@ case 795:
; ;
break;} break;}
case 796: case 796:
#line 4669 "gram.y" #line 4658 "gram.y"
{ {
CaseExpr *c = makeNode(CaseExpr); CaseExpr *c = makeNode(CaseExpr);
CaseWhen *w; CaseWhen *w;
...@@ -10293,15 +10282,15 @@ case 796: ...@@ -10293,15 +10282,15 @@ case 796:
; ;
break;} break;}
case 797: case 797:
#line 4687 "gram.y" #line 4676 "gram.y"
{ yyval.list = lappend(yyvsp[-1].list, yyvsp[0].node); ; { yyval.list = lappend(yyvsp[-1].list, yyvsp[0].node); ;
break;} break;}
case 798: case 798:
#line 4689 "gram.y" #line 4678 "gram.y"
{ yyval.list = lcons(yyvsp[0].node, NIL); ; { yyval.list = lcons(yyvsp[0].node, NIL); ;
break;} break;}
case 799: case 799:
#line 4693 "gram.y" #line 4682 "gram.y"
{ {
CaseWhen *w = makeNode(CaseWhen); CaseWhen *w = makeNode(CaseWhen);
w->expr = yyvsp[-2].node; w->expr = yyvsp[-2].node;
...@@ -10310,22 +10299,22 @@ case 799: ...@@ -10310,22 +10299,22 @@ case 799:
; ;
break;} break;}
case 800: case 800:
#line 4701 "gram.y" #line 4690 "gram.y"
{ yyval.node = yyvsp[0].node; ; { yyval.node = yyvsp[0].node; ;
break;} break;}
case 801: case 801:
#line 4702 "gram.y" #line 4691 "gram.y"
{ yyval.node = NULL; ; { yyval.node = NULL; ;
break;} break;}
case 802: case 802:
#line 4706 "gram.y" #line 4695 "gram.y"
{ {
yyvsp[-1].attr->indirection = yyvsp[0].list; yyvsp[-1].attr->indirection = yyvsp[0].list;
yyval.node = (Node *)yyvsp[-1].attr; yyval.node = (Node *)yyvsp[-1].attr;
; ;
break;} break;}
case 803: case 803:
#line 4711 "gram.y" #line 4700 "gram.y"
{ {
/* could be a column name or a relation_name */ /* could be a column name or a relation_name */
Ident *n = makeNode(Ident); Ident *n = makeNode(Ident);
...@@ -10335,11 +10324,11 @@ case 803: ...@@ -10335,11 +10324,11 @@ case 803:
; ;
break;} break;}
case 804: case 804:
#line 4719 "gram.y" #line 4708 "gram.y"
{ yyval.node = NULL; ; { yyval.node = NULL; ;
break;} break;}
case 805: case 805:
#line 4723 "gram.y" #line 4712 "gram.y"
{ {
yyval.attr = makeNode(Attr); yyval.attr = makeNode(Attr);
yyval.attr->relname = yyvsp[-2].str; yyval.attr->relname = yyvsp[-2].str;
...@@ -10349,7 +10338,7 @@ case 805: ...@@ -10349,7 +10338,7 @@ case 805:
; ;
break;} break;}
case 806: case 806:
#line 4731 "gram.y" #line 4720 "gram.y"
{ {
yyval.attr = makeNode(Attr); yyval.attr = makeNode(Attr);
yyval.attr->relname = NULL; yyval.attr->relname = NULL;
...@@ -10359,27 +10348,27 @@ case 806: ...@@ -10359,27 +10348,27 @@ case 806:
; ;
break;} break;}
case 807: case 807:
#line 4741 "gram.y" #line 4730 "gram.y"
{ yyval.list = lcons(makeString(yyvsp[0].str), NIL); ; { yyval.list = lcons(makeString(yyvsp[0].str), NIL); ;
break;} break;}
case 808: case 808:
#line 4743 "gram.y" #line 4732 "gram.y"
{ yyval.list = lappend(yyvsp[-2].list, makeString(yyvsp[0].str)); ; { yyval.list = lappend(yyvsp[-2].list, makeString(yyvsp[0].str)); ;
break;} break;}
case 809: case 809:
#line 4745 "gram.y" #line 4734 "gram.y"
{ yyval.list = lappend(yyvsp[-2].list, makeString("*")); ; { yyval.list = lappend(yyvsp[-2].list, makeString("*")); ;
break;} break;}
case 810: case 810:
#line 4756 "gram.y" #line 4745 "gram.y"
{ yyval.list = lappend(yyvsp[-2].list,yyvsp[0].target); ; { yyval.list = lappend(yyvsp[-2].list,yyvsp[0].target); ;
break;} break;}
case 811: case 811:
#line 4758 "gram.y" #line 4747 "gram.y"
{ yyval.list = lcons(yyvsp[0].target, NIL); ; { yyval.list = lcons(yyvsp[0].target, NIL); ;
break;} break;}
case 812: case 812:
#line 4760 "gram.y" #line 4749 "gram.y"
{ {
ResTarget *rt = makeNode(ResTarget); ResTarget *rt = makeNode(ResTarget);
Attr *att = makeNode(Attr); Attr *att = makeNode(Attr);
...@@ -10394,7 +10383,7 @@ case 812: ...@@ -10394,7 +10383,7 @@ case 812:
; ;
break;} break;}
case 813: case 813:
#line 4775 "gram.y" #line 4764 "gram.y"
{ {
yyval.target = makeNode(ResTarget); yyval.target = makeNode(ResTarget);
yyval.target->name = yyvsp[-3].str; yyval.target->name = yyvsp[-3].str;
...@@ -10403,7 +10392,7 @@ case 813: ...@@ -10403,7 +10392,7 @@ case 813:
; ;
break;} break;}
case 814: case 814:
#line 4782 "gram.y" #line 4771 "gram.y"
{ {
yyval.target = makeNode(ResTarget); yyval.target = makeNode(ResTarget);
yyval.target->name = NULL; yyval.target->name = NULL;
...@@ -10412,7 +10401,7 @@ case 814: ...@@ -10412,7 +10401,7 @@ case 814:
; ;
break;} break;}
case 815: case 815:
#line 4789 "gram.y" #line 4778 "gram.y"
{ {
Attr *att = makeNode(Attr); Attr *att = makeNode(Attr);
att->relname = yyvsp[-2].str; att->relname = yyvsp[-2].str;
...@@ -10426,15 +10415,15 @@ case 815: ...@@ -10426,15 +10415,15 @@ case 815:
; ;
break;} break;}
case 816: case 816:
#line 4808 "gram.y" #line 4797 "gram.y"
{ yyval.list = lappend(yyvsp[-2].list, yyvsp[0].target); ; { yyval.list = lappend(yyvsp[-2].list, yyvsp[0].target); ;
break;} break;}
case 817: case 817:
#line 4810 "gram.y" #line 4799 "gram.y"
{ yyval.list = lcons(yyvsp[0].target, NIL); ; { yyval.list = lcons(yyvsp[0].target, NIL); ;
break;} break;}
case 818: case 818:
#line 4815 "gram.y" #line 4804 "gram.y"
{ {
yyval.target = makeNode(ResTarget); yyval.target = makeNode(ResTarget);
yyval.target->name = yyvsp[0].str; yyval.target->name = yyvsp[0].str;
...@@ -10443,7 +10432,7 @@ case 818: ...@@ -10443,7 +10432,7 @@ case 818:
; ;
break;} break;}
case 819: case 819:
#line 4822 "gram.y" #line 4811 "gram.y"
{ {
yyval.target = makeNode(ResTarget); yyval.target = makeNode(ResTarget);
yyval.target->name = NULL; yyval.target->name = NULL;
...@@ -10452,7 +10441,7 @@ case 819: ...@@ -10452,7 +10441,7 @@ case 819:
; ;
break;} break;}
case 820: case 820:
#line 4829 "gram.y" #line 4818 "gram.y"
{ {
Attr *att = makeNode(Attr); Attr *att = makeNode(Attr);
att->relname = yyvsp[-2].str; att->relname = yyvsp[-2].str;
...@@ -10466,7 +10455,7 @@ case 820: ...@@ -10466,7 +10455,7 @@ case 820:
; ;
break;} break;}
case 821: case 821:
#line 4841 "gram.y" #line 4830 "gram.y"
{ {
Attr *att = makeNode(Attr); Attr *att = makeNode(Attr);
att->relname = "*"; att->relname = "*";
...@@ -10480,22 +10469,22 @@ case 821: ...@@ -10480,22 +10469,22 @@ case 821:
; ;
break;} break;}
case 822: case 822:
#line 4854 "gram.y" #line 4843 "gram.y"
{ yyval.str = yyvsp[0].str; ; { yyval.str = yyvsp[0].str; ;
break;} break;}
case 823: case 823:
#line 4855 "gram.y" #line 4844 "gram.y"
{ yyval.str = NULL; ; { yyval.str = NULL; ;
break;} break;}
case 824: case 824:
#line 4859 "gram.y" #line 4848 "gram.y"
{ {
yyval.str = yyvsp[0].str; yyval.str = yyvsp[0].str;
StrNCpy(saved_relname, yyvsp[0].str, NAMEDATALEN); StrNCpy(saved_relname, yyvsp[0].str, NAMEDATALEN);
; ;
break;} break;}
case 825: case 825:
#line 4864 "gram.y" #line 4853 "gram.y"
{ {
/* disallow refs to variable system tables */ /* disallow refs to variable system tables */
if (strcmp(LogRelationName, yyvsp[0].str) == 0 if (strcmp(LogRelationName, yyvsp[0].str) == 0
...@@ -10507,43 +10496,43 @@ case 825: ...@@ -10507,43 +10496,43 @@ case 825:
; ;
break;} break;}
case 826: case 826:
#line 4875 "gram.y" #line 4864 "gram.y"
{ yyval.str = yyvsp[0].str; ; { yyval.str = yyvsp[0].str; ;
break;} break;}
case 827: case 827:
#line 4876 "gram.y" #line 4865 "gram.y"
{ yyval.str = yyvsp[0].str; ; { yyval.str = yyvsp[0].str; ;
break;} break;}
case 828: case 828:
#line 4877 "gram.y" #line 4866 "gram.y"
{ yyval.str = yyvsp[0].str; ; { yyval.str = yyvsp[0].str; ;
break;} break;}
case 829: case 829:
#line 4878 "gram.y" #line 4867 "gram.y"
{ yyval.str = yyvsp[0].str; ; { yyval.str = yyvsp[0].str; ;
break;} break;}
case 830: case 830:
#line 4879 "gram.y" #line 4868 "gram.y"
{ yyval.str = yyvsp[0].str; ; { yyval.str = yyvsp[0].str; ;
break;} break;}
case 831: case 831:
#line 4885 "gram.y" #line 4874 "gram.y"
{ yyval.str = yyvsp[0].str; ; { yyval.str = yyvsp[0].str; ;
break;} break;}
case 832: case 832:
#line 4886 "gram.y" #line 4875 "gram.y"
{ yyval.str = xlateSqlFunc(yyvsp[0].str); ; { yyval.str = xlateSqlFunc(yyvsp[0].str); ;
break;} break;}
case 833: case 833:
#line 4888 "gram.y" #line 4877 "gram.y"
{ yyval.str = yyvsp[0].str; ; { yyval.str = yyvsp[0].str; ;
break;} break;}
case 834: case 834:
#line 4889 "gram.y" #line 4878 "gram.y"
{ yyval.str = yyvsp[0].str; ; { yyval.str = yyvsp[0].str; ;
break;} break;}
case 835: case 835:
#line 4895 "gram.y" #line 4884 "gram.y"
{ {
A_Const *n = makeNode(A_Const); A_Const *n = makeNode(A_Const);
n->val.type = T_Integer; n->val.type = T_Integer;
...@@ -10552,7 +10541,7 @@ case 835: ...@@ -10552,7 +10541,7 @@ case 835:
; ;
break;} break;}
case 836: case 836:
#line 4902 "gram.y" #line 4891 "gram.y"
{ {
A_Const *n = makeNode(A_Const); A_Const *n = makeNode(A_Const);
n->val.type = T_Float; n->val.type = T_Float;
...@@ -10561,7 +10550,7 @@ case 836: ...@@ -10561,7 +10550,7 @@ case 836:
; ;
break;} break;}
case 837: case 837:
#line 4909 "gram.y" #line 4898 "gram.y"
{ {
A_Const *n = makeNode(A_Const); A_Const *n = makeNode(A_Const);
n->val.type = T_String; n->val.type = T_String;
...@@ -10570,7 +10559,7 @@ case 837: ...@@ -10570,7 +10559,7 @@ case 837:
; ;
break;} break;}
case 838: case 838:
#line 4916 "gram.y" #line 4905 "gram.y"
{ {
A_Const *n = makeNode(A_Const); A_Const *n = makeNode(A_Const);
n->typename = yyvsp[-1].typnam; n->typename = yyvsp[-1].typnam;
...@@ -10580,11 +10569,11 @@ case 838: ...@@ -10580,11 +10569,11 @@ case 838:
; ;
break;} break;}
case 839: case 839:
#line 4924 "gram.y" #line 4913 "gram.y"
{ yyval.node = (Node *)yyvsp[0].paramno; ; { yyval.node = (Node *)yyvsp[0].paramno; ;
break;} break;}
case 840: case 840:
#line 4926 "gram.y" #line 4915 "gram.y"
{ {
A_Const *n = makeNode(A_Const); A_Const *n = makeNode(A_Const);
n->val.type = T_String; n->val.type = T_String;
...@@ -10596,7 +10585,7 @@ case 840: ...@@ -10596,7 +10585,7 @@ case 840:
; ;
break;} break;}
case 841: case 841:
#line 4936 "gram.y" #line 4925 "gram.y"
{ {
A_Const *n = makeNode(A_Const); A_Const *n = makeNode(A_Const);
n->val.type = T_String; n->val.type = T_String;
...@@ -10608,7 +10597,7 @@ case 841: ...@@ -10608,7 +10597,7 @@ case 841:
; ;
break;} break;}
case 842: case 842:
#line 4948 "gram.y" #line 4937 "gram.y"
{ {
yyval.paramno = makeNode(ParamNo); yyval.paramno = makeNode(ParamNo);
yyval.paramno->number = yyvsp[-1].ival; yyval.paramno->number = yyvsp[-1].ival;
...@@ -10616,471 +10605,471 @@ case 842: ...@@ -10616,471 +10605,471 @@ case 842:
; ;
break;} break;}
case 843: case 843:
#line 4955 "gram.y" #line 4944 "gram.y"
{ yyval.ival = yyvsp[0].ival; ; { yyval.ival = yyvsp[0].ival; ;
break;} break;}
case 844: case 844:
#line 4956 "gram.y" #line 4945 "gram.y"
{ yyval.str = yyvsp[0].str; ; { yyval.str = yyvsp[0].str; ;
break;} break;}
case 845: case 845:
#line 4957 "gram.y" #line 4946 "gram.y"
{ yyval.str = yyvsp[0].str; ; { yyval.str = yyvsp[0].str; ;
break;} break;}
case 846: case 846:
#line 4965 "gram.y" #line 4954 "gram.y"
{ yyval.str = xlateSqlType(yyvsp[0].str); ; { yyval.str = xlateSqlType(yyvsp[0].str); ;
break;} break;}
case 847: case 847:
#line 4967 "gram.y" #line 4956 "gram.y"
{ yyval.str = xlateSqlType(yyvsp[0].str); ; { yyval.str = xlateSqlType(yyvsp[0].str); ;
break;} break;}
case 848: case 848:
#line 4969 "gram.y" #line 4958 "gram.y"
{ yyval.str = xlateSqlType(yyvsp[0].str); ; { yyval.str = xlateSqlType(yyvsp[0].str); ;
break;} break;}
case 849: case 849:
#line 4979 "gram.y" #line 4968 "gram.y"
{ yyval.str = yyvsp[0].str; ; { yyval.str = yyvsp[0].str; ;
break;} break;}
case 850: case 850:
#line 4980 "gram.y" #line 4969 "gram.y"
{ yyval.str = yyvsp[0].str; ; { yyval.str = yyvsp[0].str; ;
break;} break;}
case 851: case 851:
#line 4981 "gram.y" #line 4970 "gram.y"
{ yyval.str = "absolute"; ; { yyval.str = "absolute"; ;
break;} break;}
case 852: case 852:
#line 4982 "gram.y" #line 4971 "gram.y"
{ yyval.str = "action"; ; { yyval.str = "action"; ;
break;} break;}
case 853: case 853:
#line 4983 "gram.y" #line 4972 "gram.y"
{ yyval.str = "after"; ; { yyval.str = "after"; ;
break;} break;}
case 854: case 854:
#line 4984 "gram.y" #line 4973 "gram.y"
{ yyval.str = "aggregate"; ; { yyval.str = "aggregate"; ;
break;} break;}
case 855: case 855:
#line 4985 "gram.y" #line 4974 "gram.y"
{ yyval.str = "backward"; ; { yyval.str = "backward"; ;
break;} break;}
case 856: case 856:
#line 4986 "gram.y" #line 4975 "gram.y"
{ yyval.str = "before"; ; { yyval.str = "before"; ;
break;} break;}
case 857: case 857:
#line 4987 "gram.y" #line 4976 "gram.y"
{ yyval.str = "cache"; ; { yyval.str = "cache"; ;
break;} break;}
case 858: case 858:
#line 4988 "gram.y" #line 4977 "gram.y"
{ yyval.str = "createdb"; ; { yyval.str = "createdb"; ;
break;} break;}
case 859: case 859:
#line 4989 "gram.y" #line 4978 "gram.y"
{ yyval.str = "createuser"; ; { yyval.str = "createuser"; ;
break;} break;}
case 860: case 860:
#line 4990 "gram.y" #line 4979 "gram.y"
{ yyval.str = "cycle"; ; { yyval.str = "cycle"; ;
break;} break;}
case 861: case 861:
#line 4991 "gram.y" #line 4980 "gram.y"
{ yyval.str = "database"; ; { yyval.str = "database"; ;
break;} break;}
case 862: case 862:
#line 4992 "gram.y" #line 4981 "gram.y"
{ yyval.str = "delimiters"; ; { yyval.str = "delimiters"; ;
break;} break;}
case 863: case 863:
#line 4993 "gram.y" #line 4982 "gram.y"
{ yyval.str = "double"; ; { yyval.str = "double"; ;
break;} break;}
case 864: case 864:
#line 4994 "gram.y" #line 4983 "gram.y"
{ yyval.str = "each"; ; { yyval.str = "each"; ;
break;} break;}
case 865: case 865:
#line 4995 "gram.y" #line 4984 "gram.y"
{ yyval.str = "encoding"; ; { yyval.str = "encoding"; ;
break;} break;}
case 866: case 866:
#line 4996 "gram.y" #line 4985 "gram.y"
{ yyval.str = "forward"; ; { yyval.str = "forward"; ;
break;} break;}
case 867: case 867:
#line 4997 "gram.y" #line 4986 "gram.y"
{ yyval.str = "function"; ; { yyval.str = "function"; ;
break;} break;}
case 868: case 868:
#line 4998 "gram.y" #line 4987 "gram.y"
{ yyval.str = "handler"; ; { yyval.str = "handler"; ;
break;} break;}
case 869: case 869:
#line 4999 "gram.y" #line 4988 "gram.y"
{ yyval.str = "increment"; ; { yyval.str = "increment"; ;
break;} break;}
case 870: case 870:
#line 5000 "gram.y" #line 4989 "gram.y"
{ yyval.str = "index"; ; { yyval.str = "index"; ;
break;} break;}
case 871: case 871:
#line 5001 "gram.y" #line 4990 "gram.y"
{ yyval.str = "inherits"; ; { yyval.str = "inherits"; ;
break;} break;}
case 872: case 872:
#line 5002 "gram.y" #line 4991 "gram.y"
{ yyval.str = "insensitive"; ; { yyval.str = "insensitive"; ;
break;} break;}
case 873: case 873:
#line 5003 "gram.y" #line 4992 "gram.y"
{ yyval.str = "instead"; ; { yyval.str = "instead"; ;
break;} break;}
case 874: case 874:
#line 5004 "gram.y" #line 4993 "gram.y"
{ yyval.str = "isnull"; ; { yyval.str = "isnull"; ;
break;} break;}
case 875: case 875:
#line 5005 "gram.y" #line 4994 "gram.y"
{ yyval.str = "key"; ; { yyval.str = "key"; ;
break;} break;}
case 876: case 876:
#line 5006 "gram.y" #line 4995 "gram.y"
{ yyval.str = "language"; ; { yyval.str = "language"; ;
break;} break;}
case 877: case 877:
#line 5007 "gram.y" #line 4996 "gram.y"
{ yyval.str = "lancompiler"; ; { yyval.str = "lancompiler"; ;
break;} break;}
case 878: case 878:
#line 5008 "gram.y" #line 4997 "gram.y"
{ yyval.str = "location"; ; { yyval.str = "location"; ;
break;} break;}
case 879: case 879:
#line 5009 "gram.y" #line 4998 "gram.y"
{ yyval.str = "match"; ; { yyval.str = "match"; ;
break;} break;}
case 880: case 880:
#line 5010 "gram.y" #line 4999 "gram.y"
{ yyval.str = "maxvalue"; ; { yyval.str = "maxvalue"; ;
break;} break;}
case 881: case 881:
#line 5011 "gram.y" #line 5000 "gram.y"
{ yyval.str = "minvalue"; ; { yyval.str = "minvalue"; ;
break;} break;}
case 882: case 882:
#line 5012 "gram.y" #line 5001 "gram.y"
{ yyval.str = "next"; ; { yyval.str = "next"; ;
break;} break;}
case 883: case 883:
#line 5013 "gram.y" #line 5002 "gram.y"
{ yyval.str = "nocreatedb"; ; { yyval.str = "nocreatedb"; ;
break;} break;}
case 884: case 884:
#line 5014 "gram.y" #line 5003 "gram.y"
{ yyval.str = "nocreateuser"; ; { yyval.str = "nocreateuser"; ;
break;} break;}
case 885: case 885:
#line 5015 "gram.y" #line 5004 "gram.y"
{ yyval.str = "nothing"; ; { yyval.str = "nothing"; ;
break;} break;}
case 886: case 886:
#line 5016 "gram.y" #line 5005 "gram.y"
{ yyval.str = "notnull"; ; { yyval.str = "notnull"; ;
break;} break;}
case 887: case 887:
#line 5017 "gram.y" #line 5006 "gram.y"
{ yyval.str = "of"; ; { yyval.str = "of"; ;
break;} break;}
case 888: case 888:
#line 5018 "gram.y" #line 5007 "gram.y"
{ yyval.str = "oids"; ; { yyval.str = "oids"; ;
break;} break;}
case 889: case 889:
#line 5019 "gram.y" #line 5008 "gram.y"
{ yyval.str = "only"; ; { yyval.str = "only"; ;
break;} break;}
case 890: case 890:
#line 5020 "gram.y" #line 5009 "gram.y"
{ yyval.str = "operator"; ; { yyval.str = "operator"; ;
break;} break;}
case 891: case 891:
#line 5021 "gram.y" #line 5010 "gram.y"
{ yyval.str = "option"; ; { yyval.str = "option"; ;
break;} break;}
case 892: case 892:
#line 5022 "gram.y" #line 5011 "gram.y"
{ yyval.str = "password"; ; { yyval.str = "password"; ;
break;} break;}
case 893: case 893:
#line 5023 "gram.y" #line 5012 "gram.y"
{ yyval.str = "prior"; ; { yyval.str = "prior"; ;
break;} break;}
case 894: case 894:
#line 5024 "gram.y" #line 5013 "gram.y"
{ yyval.str = "privileges"; ; { yyval.str = "privileges"; ;
break;} break;}
case 895: case 895:
#line 5025 "gram.y" #line 5014 "gram.y"
{ yyval.str = "procedural"; ; { yyval.str = "procedural"; ;
break;} break;}
case 896: case 896:
#line 5026 "gram.y" #line 5015 "gram.y"
{ yyval.str = "read"; ; { yyval.str = "read"; ;
break;} break;}
case 897: case 897:
#line 5027 "gram.y" #line 5016 "gram.y"
{ yyval.str = "recipe"; ; { yyval.str = "recipe"; ;
break;} break;}
case 898: case 898:
#line 5028 "gram.y" #line 5017 "gram.y"
{ yyval.str = "relative"; ; { yyval.str = "relative"; ;
break;} break;}
case 899: case 899:
#line 5029 "gram.y" #line 5018 "gram.y"
{ yyval.str = "rename"; ; { yyval.str = "rename"; ;
break;} break;}
case 900: case 900:
#line 5030 "gram.y" #line 5019 "gram.y"
{ yyval.str = "returns"; ; { yyval.str = "returns"; ;
break;} break;}
case 901: case 901:
#line 5031 "gram.y" #line 5020 "gram.y"
{ yyval.str = "row"; ; { yyval.str = "row"; ;
break;} break;}
case 902: case 902:
#line 5032 "gram.y" #line 5021 "gram.y"
{ yyval.str = "rule"; ; { yyval.str = "rule"; ;
break;} break;}
case 903: case 903:
#line 5033 "gram.y" #line 5022 "gram.y"
{ yyval.str = "scroll"; ; { yyval.str = "scroll"; ;
break;} break;}
case 904: case 904:
#line 5034 "gram.y" #line 5023 "gram.y"
{ yyval.str = "sequence"; ; { yyval.str = "sequence"; ;
break;} break;}
case 905: case 905:
#line 5035 "gram.y" #line 5024 "gram.y"
{ yyval.str = "serial"; ; { yyval.str = "serial"; ;
break;} break;}
case 906: case 906:
#line 5036 "gram.y" #line 5025 "gram.y"
{ yyval.str = "start"; ; { yyval.str = "start"; ;
break;} break;}
case 907: case 907:
#line 5037 "gram.y" #line 5026 "gram.y"
{ yyval.str = "statement"; ; { yyval.str = "statement"; ;
break;} break;}
case 908: case 908:
#line 5038 "gram.y" #line 5027 "gram.y"
{ yyval.str = "stdin"; ; { yyval.str = "stdin"; ;
break;} break;}
case 909: case 909:
#line 5039 "gram.y" #line 5028 "gram.y"
{ yyval.str = "stdout"; ; { yyval.str = "stdout"; ;
break;} break;}
case 910: case 910:
#line 5040 "gram.y" #line 5029 "gram.y"
{ yyval.str = "time"; ; { yyval.str = "time"; ;
break;} break;}
case 911: case 911:
#line 5041 "gram.y" #line 5030 "gram.y"
{ yyval.str = "timestamp"; ; { yyval.str = "timestamp"; ;
break;} break;}
case 912: case 912:
#line 5042 "gram.y" #line 5031 "gram.y"
{ yyval.str = "timezone_hour"; ; { yyval.str = "timezone_hour"; ;
break;} break;}
case 913: case 913:
#line 5043 "gram.y" #line 5032 "gram.y"
{ yyval.str = "timezone_minute"; ; { yyval.str = "timezone_minute"; ;
break;} break;}
case 914: case 914:
#line 5044 "gram.y" #line 5033 "gram.y"
{ yyval.str = "trigger"; ; { yyval.str = "trigger"; ;
break;} break;}
case 915: case 915:
#line 5045 "gram.y" #line 5034 "gram.y"
{ yyval.str = "trusted"; ; { yyval.str = "trusted"; ;
break;} break;}
case 916: case 916:
#line 5046 "gram.y" #line 5035 "gram.y"
{ yyval.str = "type"; ; { yyval.str = "type"; ;
break;} break;}
case 917: case 917:
#line 5047 "gram.y" #line 5036 "gram.y"
{ yyval.str = "valid"; ; { yyval.str = "valid"; ;
break;} break;}
case 918: case 918:
#line 5048 "gram.y" #line 5037 "gram.y"
{ yyval.str = "version"; ; { yyval.str = "version"; ;
break;} break;}
case 919: case 919:
#line 5049 "gram.y" #line 5038 "gram.y"
{ yyval.str = "zone"; ; { yyval.str = "zone"; ;
break;} break;}
case 920: case 920:
#line 5062 "gram.y" #line 5051 "gram.y"
{ yyval.str = yyvsp[0].str; ; { yyval.str = yyvsp[0].str; ;
break;} break;}
case 921: case 921:
#line 5063 "gram.y" #line 5052 "gram.y"
{ yyval.str = "abort"; ; { yyval.str = "abort"; ;
break;} break;}
case 922: case 922:
#line 5064 "gram.y" #line 5053 "gram.y"
{ yyval.str = "analyze"; ; { yyval.str = "analyze"; ;
break;} break;}
case 923: case 923:
#line 5065 "gram.y" #line 5054 "gram.y"
{ yyval.str = "binary"; ; { yyval.str = "binary"; ;
break;} break;}
case 924: case 924:
#line 5066 "gram.y" #line 5055 "gram.y"
{ yyval.str = "case"; ; { yyval.str = "case"; ;
break;} break;}
case 925: case 925:
#line 5067 "gram.y" #line 5056 "gram.y"
{ yyval.str = "cluster"; ; { yyval.str = "cluster"; ;
break;} break;}
case 926: case 926:
#line 5068 "gram.y" #line 5057 "gram.y"
{ yyval.str = "coalesce"; ; { yyval.str = "coalesce"; ;
break;} break;}
case 927: case 927:
#line 5069 "gram.y" #line 5058 "gram.y"
{ yyval.str = "constraint"; ; { yyval.str = "constraint"; ;
break;} break;}
case 928: case 928:
#line 5070 "gram.y" #line 5059 "gram.y"
{ yyval.str = "copy"; ; { yyval.str = "copy"; ;
break;} break;}
case 929: case 929:
#line 5071 "gram.y" #line 5060 "gram.y"
{ yyval.str = "cross"; ; { yyval.str = "cross"; ;
break;} break;}
case 930: case 930:
#line 5072 "gram.y" #line 5061 "gram.y"
{ yyval.str = "current"; ; { yyval.str = "current"; ;
break;} break;}
case 931: case 931:
#line 5073 "gram.y" #line 5062 "gram.y"
{ yyval.str = "do"; ; { yyval.str = "do"; ;
break;} break;}
case 932: case 932:
#line 5074 "gram.y" #line 5063 "gram.y"
{ yyval.str = "else"; ; { yyval.str = "else"; ;
break;} break;}
case 933: case 933:
#line 5075 "gram.y" #line 5064 "gram.y"
{ yyval.str = "end"; ; { yyval.str = "end"; ;
break;} break;}
case 934: case 934:
#line 5076 "gram.y" #line 5065 "gram.y"
{ yyval.str = "explain"; ; { yyval.str = "explain"; ;
break;} break;}
case 935: case 935:
#line 5077 "gram.y" #line 5066 "gram.y"
{ yyval.str = "extend"; ; { yyval.str = "extend"; ;
break;} break;}
case 936: case 936:
#line 5078 "gram.y" #line 5067 "gram.y"
{ yyval.str = "false"; ; { yyval.str = "false"; ;
break;} break;}
case 937: case 937:
#line 5079 "gram.y" #line 5068 "gram.y"
{ yyval.str = "foreign"; ; { yyval.str = "foreign"; ;
break;} break;}
case 938: case 938:
#line 5080 "gram.y" #line 5069 "gram.y"
{ yyval.str = "group"; ; { yyval.str = "group"; ;
break;} break;}
case 939: case 939:
#line 5081 "gram.y" #line 5070 "gram.y"
{ yyval.str = "listen"; ; { yyval.str = "listen"; ;
break;} break;}
case 940: case 940:
#line 5082 "gram.y" #line 5071 "gram.y"
{ yyval.str = "load"; ; { yyval.str = "load"; ;
break;} break;}
case 941: case 941:
#line 5083 "gram.y" #line 5072 "gram.y"
{ yyval.str = "lock"; ; { yyval.str = "lock"; ;
break;} break;}
case 942: case 942:
#line 5084 "gram.y" #line 5073 "gram.y"
{ yyval.str = "move"; ; { yyval.str = "move"; ;
break;} break;}
case 943: case 943:
#line 5085 "gram.y" #line 5074 "gram.y"
{ yyval.str = "new"; ; { yyval.str = "new"; ;
break;} break;}
case 944: case 944:
#line 5086 "gram.y" #line 5075 "gram.y"
{ yyval.str = "none"; ; { yyval.str = "none"; ;
break;} break;}
case 945: case 945:
#line 5087 "gram.y" #line 5076 "gram.y"
{ yyval.str = "nullif"; ; { yyval.str = "nullif"; ;
break;} break;}
case 946: case 946:
#line 5088 "gram.y" #line 5077 "gram.y"
{ yyval.str = "order"; ; { yyval.str = "order"; ;
break;} break;}
case 947: case 947:
#line 5089 "gram.y" #line 5078 "gram.y"
{ yyval.str = "position"; ; { yyval.str = "position"; ;
break;} break;}
case 948: case 948:
#line 5090 "gram.y" #line 5079 "gram.y"
{ yyval.str = "precision"; ; { yyval.str = "precision"; ;
break;} break;}
case 949: case 949:
#line 5091 "gram.y" #line 5080 "gram.y"
{ yyval.str = "reset"; ; { yyval.str = "reset"; ;
break;} break;}
case 950: case 950:
#line 5092 "gram.y" #line 5081 "gram.y"
{ yyval.str = "setof"; ; { yyval.str = "setof"; ;
break;} break;}
case 951: case 951:
#line 5093 "gram.y" #line 5082 "gram.y"
{ yyval.str = "show"; ; { yyval.str = "show"; ;
break;} break;}
case 952: case 952:
#line 5094 "gram.y" #line 5083 "gram.y"
{ yyval.str = "table"; ; { yyval.str = "table"; ;
break;} break;}
case 953: case 953:
#line 5095 "gram.y" #line 5084 "gram.y"
{ yyval.str = "then"; ; { yyval.str = "then"; ;
break;} break;}
case 954: case 954:
#line 5096 "gram.y" #line 5085 "gram.y"
{ yyval.str = "transaction"; ; { yyval.str = "transaction"; ;
break;} break;}
case 955: case 955:
#line 5097 "gram.y" #line 5086 "gram.y"
{ yyval.str = "true"; ; { yyval.str = "true"; ;
break;} break;}
case 956: case 956:
#line 5098 "gram.y" #line 5087 "gram.y"
{ yyval.str = "vacuum"; ; { yyval.str = "vacuum"; ;
break;} break;}
case 957: case 957:
#line 5099 "gram.y" #line 5088 "gram.y"
{ yyval.str = "verbose"; ; { yyval.str = "verbose"; ;
break;} break;}
case 958: case 958:
#line 5100 "gram.y" #line 5089 "gram.y"
{ yyval.str = "when"; ; { yyval.str = "when"; ;
break;} break;}
case 959: case 959:
#line 5104 "gram.y" #line 5093 "gram.y"
{ {
if (QueryIsRule) if (QueryIsRule)
yyval.str = "*CURRENT*"; yyval.str = "*CURRENT*";
...@@ -11089,7 +11078,7 @@ case 959: ...@@ -11089,7 +11078,7 @@ case 959:
; ;
break;} break;}
case 960: case 960:
#line 5111 "gram.y" #line 5100 "gram.y"
{ {
if (QueryIsRule) if (QueryIsRule)
yyval.str = "*NEW*"; yyval.str = "*NEW*";
...@@ -11099,7 +11088,7 @@ case 960: ...@@ -11099,7 +11088,7 @@ case 960:
break;} break;}
} }
/* the action file gets copied in in place of this dollarsign */ /* the action file gets copied in in place of this dollarsign */
#line 498 "/usr/local/bison/bison.simple" #line 498 "/usr/share/misc/bison.simple"
yyvsp -= yylen; yyvsp -= yylen;
yyssp -= yylen; yyssp -= yylen;
...@@ -11295,7 +11284,7 @@ yyerrhandle: ...@@ -11295,7 +11284,7 @@ yyerrhandle:
yystate = yyn; yystate = yyn;
goto yynewstate; goto yynewstate;
} }
#line 5119 "gram.y" #line 5108 "gram.y"
static Node * static Node *
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.48 1999/01/22 19:35:54 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.49 1999/01/25 12:01:13 vadim Exp $
* *
* HISTORY * HISTORY
* AUTHOR DATE MAJOR EVENT * AUTHOR DATE MAJOR EVENT
...@@ -2798,19 +2798,8 @@ SelectStmt: select_w_o_sort sort_clause for_update_clause ...@@ -2798,19 +2798,8 @@ SelectStmt: select_w_o_sort sort_clause for_update_clause
first_select->forUpdate = $3; first_select->forUpdate = $3;
$$ = (Node *)first_select; $$ = (Node *)first_select;
} }
if (((SelectStmt *)$$)->forUpdate != NULL) if (((SelectStmt *)$$)->forUpdate != NULL && QueryIsRule)
{ elog(ERROR, "SELECT FOR UPDATE is not allowed in RULES");
SelectStmt *n = (SelectStmt *)$$;
if (n->unionClause != NULL)
elog(ERROR, "SELECT FOR UPDATE is not allowed with UNION/INTERSECT/EXCEPT clause");
if (n->unique != NULL)
elog(ERROR, "SELECT FOR UPDATE is not allowed with DISTINCT clause");
if (n->groupClause != NULL)
elog(ERROR, "SELECT FOR UPDATE is not allowed with GROUP BY clause");
if (n->havingClause != NULL)
elog(ERROR, "SELECT FOR UPDATE is not allowed with HAVING clause");
}
} }
; ;
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/rewrite/rewriteHandler.c,v 1.30 1999/01/24 00:28:30 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/rewrite/rewriteHandler.c,v 1.31 1999/01/25 12:01:14 vadim Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -1787,6 +1787,7 @@ apply_RIR_view(Node **nodePtr, int rt_index, RangeTblEntry *rte, List *tlist, in ...@@ -1787,6 +1787,7 @@ apply_RIR_view(Node **nodePtr, int rt_index, RangeTblEntry *rte, List *tlist, in
} }
} }
extern void CheckSelectForUpdate(Query *rule_action); /* in analyze.c */
static void static void
ApplyRetrieveRule(Query *parsetree, ApplyRetrieveRule(Query *parsetree,
...@@ -1847,6 +1848,7 @@ ApplyRetrieveRule(Query *parsetree, ...@@ -1847,6 +1848,7 @@ ApplyRetrieveRule(Query *parsetree,
Index rti = 1; Index rti = 1;
List *l2; List *l2;
CheckSelectForUpdate(rule_action);
/* /*
* We believe that rt_index is VIEW - nothing should be * We believe that rt_index is VIEW - nothing should be
* marked for VIEW, but ACL check must be done. * marked for VIEW, but ACL check must be done.
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* *
* Copyright (c) 1994, Regents of the University of California * Copyright (c) 1994, Regents of the University of California
* *
* $Id: execnodes.h,v 1.20 1998/12/14 05:19:16 scrappy Exp $ * $Id: execnodes.h,v 1.21 1999/01/25 12:01:19 vadim Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -208,6 +208,7 @@ typedef struct EState ...@@ -208,6 +208,7 @@ typedef struct EState
int *es_refcount; int *es_refcount;
uint32 es_processed; /* # of tuples processed */ uint32 es_processed; /* # of tuples processed */
Oid es_lastoid; /* last oid processed (by INSERT) */ Oid es_lastoid; /* last oid processed (by INSERT) */
List *es_rowMark; /* not good place, but there is no other */
} EState; } EState;
/* ---------------- /* ----------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment