diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-02-06 20:28:11 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-02-06 20:28:11 +0000 |
commit | fd1afb74533d97357195983a2520a4bbac59a1aa (patch) | |
tree | fb47831d276973b76cd56e09903f471b56aec7ea /src/backend/parser/gram.c | |
parent | a55376084507e8ae8b1051d259264b4c12778764 (diff) | |
download | postgresql-fd1afb74533d97357195983a2520a4bbac59a1aa.tar.gz postgresql-fd1afb74533d97357195983a2520a4bbac59a1aa.zip |
Fix silly typo causing SELECT INTO TABLE to sometimes be
treated as SELECT INTO TEMP TABLE.
Diffstat (limited to 'src/backend/parser/gram.c')
-rw-r--r-- | src/backend/parser/gram.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/backend/parser/gram.c b/src/backend/parser/gram.c index 2081b741f9e..6a033b2e9fe 100644 --- a/src/backend/parser/gram.c +++ b/src/backend/parser/gram.c @@ -240,7 +240,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/Attic/gram.c,v 2.67 1999/02/02 20:30:07 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/Attic/gram.c,v 2.68 1999/02/06 20:28:11 tgl Exp $ * * HISTORY * AUTHOR DATE MAJOR EVENT @@ -4801,7 +4801,7 @@ static const short yycheck[] = { 3, 215 }; /* -*-C-*- Note some compilers choke on comments on `#line' lines. */ -#line 3 "/usr/local/bison/bison.simple" +#line 3 "/usr/local/share/bison.simple" /* Skeleton output parser for bison, Copyright (C) 1984, 1989, 1990 Free Software Foundation, Inc. @@ -4994,7 +4994,7 @@ __yy_memcpy (char *to, char *from, int count) #endif #endif -#line 196 "/usr/local/bison/bison.simple" +#line 196 "/usr/local/share/bison.simple" /* The user can define YYPARSE_PARAM as the name of an argument to be passed into yyparse. The argument should have type void *. @@ -8017,8 +8017,8 @@ case 478: * feature. If it makes troubles we will have to add * a new rule and change this to prevent INTOs in * Subselects again */ - n->istemp = (bool)((A_Const *)lfirst(yyvsp[-4].list))->val.val.ival; - n->into = (char *)lnext(yyvsp[-4].list); + n->istemp = (bool) ((Value *) lfirst(yyvsp[-4].list))->val.ival; + n->into = (char *) lnext(yyvsp[-4].list); n->fromClause = yyvsp[-3].list; n->whereClause = yyvsp[-2].node; @@ -11109,7 +11109,7 @@ case 962: break;} } /* the action file gets copied in in place of this dollarsign */ -#line 498 "/usr/local/bison/bison.simple" +#line 498 "/usr/local/share/bison.simple" yyvsp -= yylen; yyssp -= yylen; |