Commit d76b4069 authored by Thomas G. Lockhart's avatar Thomas G. Lockhart

Update to track gram.y.

 Had removed PARSEDEBUG statements...
parent f8b6b5f1
...@@ -230,7 +230,7 @@ ...@@ -230,7 +230,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/Attic/gram.c,v 2.37 1998/09/18 03:02:47 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/parser/Attic/gram.c,v 2.38 1998/09/25 13:45:12 thomas Exp $
* *
* HISTORY * HISTORY
* AUTHOR DATE MAJOR EVENT * AUTHOR DATE MAJOR EVENT
...@@ -4361,7 +4361,7 @@ static const short yycheck[] = { 3, ...@@ -4361,7 +4361,7 @@ static const short yycheck[] = { 3,
205 205
}; };
/* -*-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/lib/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.
...@@ -4554,7 +4554,7 @@ __yy_memcpy (char *to, char *from, int count) ...@@ -4554,7 +4554,7 @@ __yy_memcpy (char *to, char *from, int count)
#endif #endif
#endif #endif
#line 196 "/usr/local/bison/bison.simple" #line 196 "/usr/lib/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 *.
...@@ -10140,7 +10140,7 @@ case 888: ...@@ -10140,7 +10140,7 @@ case 888:
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/lib/bison.simple"
yyvsp -= yylen; yyvsp -= yylen;
yyssp -= yylen; yyssp -= yylen;
...@@ -10629,10 +10629,6 @@ FlattenStringList(List *list) ...@@ -10629,10 +10629,6 @@ FlattenStringList(List *list)
}; };
*(s+len) = '\0'; *(s+len) = '\0';
#ifdef PARSEDEBUG
elog(DEBUG, "flattened string is \"%s\"\n", s);
#endif
return s; return s;
} /* FlattenStringList() */ } /* FlattenStringList() */
...@@ -10680,10 +10676,6 @@ makeConstantList( A_Const *n) ...@@ -10680,10 +10676,6 @@ makeConstantList( A_Const *n)
elog(ERROR,"Internal error in makeConstantList(): cannot encode node"); elog(ERROR,"Internal error in makeConstantList(): cannot encode node");
}; };
#ifdef PARSEDEBUG
elog(DEBUG, "AexprConst argument is \"%s\"\n", defval);
#endif
return result; return result;
} /* makeConstantList() */ } /* makeConstantList() */
...@@ -10709,11 +10701,6 @@ fmtId(char *rawid) ...@@ -10709,11 +10701,6 @@ fmtId(char *rawid)
cp = rawid; cp = rawid;
}; };
#ifdef PARSEDEBUG
elog(DEBUG, "fmtId- %sconvert %s to %s\n",
((cp == rawid)? "do not ": ""), rawid, cp);
#endif
return cp; return cp;
} }
......
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