Commit 75596775 authored by Bruce Momjian's avatar Bruce Momjian

Define plpgsql_yylineno as non-extern somewhere for bsdi.

parent fe2ab18e
TODO list for PostgreSQL TODO list for PostgreSQL
======================== ========================
Last updated: Fri Sep 17 21:33:48 EDT 1999 Last updated: Sat Sep 18 16:37:37 EDT 1999
Current maintainer: Bruce Momjian (maillist@candle.pha.pa.us) Current maintainer: Bruce Momjian (maillist@candle.pha.pa.us)
...@@ -180,7 +180,7 @@ MISC ...@@ -180,7 +180,7 @@ MISC
* Do autocommit so always in a transaction block * Do autocommit so always in a transaction block
* Show location of syntax error in query * Show location of syntax error in query
* Redesign the function call interface to handle NULLs better(Jan) * Redesign the function call interface to handle NULLs better(Jan)
* Document/trigger/rule so changes to pg_shadow create pg_pwd * Document/trigger/rule so changes to pg_shadow recreate pg_pwd
* Missing optimizer selectivities for date, r-tree, etc. * Missing optimizer selectivities for date, r-tree, etc.
* Overhaul mdmgr/smgr to fix double unlinking and double opens, cleanup * Overhaul mdmgr/smgr to fix double unlinking and double opens, cleanup
* Overhaul bufmgr/lockmgr/transaction manager * Overhaul bufmgr/lockmgr/transaction manager
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* procedural language * procedural language
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/pl/plpgsql/src/pl_comp.c,v 1.8 1999/07/15 15:21:46 momjian Exp $ * $Header: /cvsroot/pgsql/src/pl/plpgsql/src/pl_comp.c,v 1.9 1999/09/20 02:12:31 momjian Exp $
* *
* This software is copyrighted by Jan Wieck - Hamburg. * This software is copyrighted by Jan Wieck - Hamburg.
* *
...@@ -67,9 +67,11 @@ ...@@ -67,9 +67,11 @@
* ---------- * ----------
*/ */
extern PLPGSQL_YYSTYPE plpgsql_yylval; extern PLPGSQL_YYSTYPE plpgsql_yylval;
extern int plpgsql_yylineno;
extern char plpgsql_yytext[]; extern char plpgsql_yytext[];
/* We have to define this as non-extern somewhere for bsdi bjm 1999/09/19 */
int plpgsql_yylineno;
void plpgsql_yyerror(const char *s); void plpgsql_yyerror(const char *s);
/* ---------- /* ----------
......
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