Skip to content

Commit 7559677

Browse files
committed
Define plpgsql_yylineno as non-extern somewhere for bsdi.
1 parent fe2ab18 commit 7559677

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

doc/TODO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
TODO list for PostgreSQL
22
========================
3-
Last updated: Fri Sep 17 21:33:48 EDT 1999
3+
Last updated: Sat Sep 18 16:37:37 EDT 1999
44

55
Current maintainer: Bruce Momjian (maillist@candle.pha.pa.us)
66

@@ -180,7 +180,7 @@ MISC
180180
* Do autocommit so always in a transaction block
181181
* Show location of syntax error in query
182182
* Redesign the function call interface to handle NULLs better(Jan)
183-
* Document/trigger/rule so changes to pg_shadow create pg_pwd
183+
* Document/trigger/rule so changes to pg_shadow recreate pg_pwd
184184
* Missing optimizer selectivities for date, r-tree, etc.
185185
* Overhaul mdmgr/smgr to fix double unlinking and double opens, cleanup
186186
* Overhaul bufmgr/lockmgr/transaction manager

src/pl/plpgsql/src/pl_comp.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* procedural language
44
*
55
* IDENTIFICATION
6-
* $Header: /cvsroot/pgsql/src/pl/plpgsql/src/pl_comp.c,v 1.8 1999/07/15 15:21:46 momjian Exp $
6+
* $Header: /cvsroot/pgsql/src/pl/plpgsql/src/pl_comp.c,v 1.9 1999/09/20 02:12:31 momjian Exp $
77
*
88
* This software is copyrighted by Jan Wieck - Hamburg.
99
*
@@ -67,9 +67,11 @@
6767
* ----------
6868
*/
6969
extern PLPGSQL_YYSTYPE plpgsql_yylval;
70-
extern int plpgsql_yylineno;
7170
extern char plpgsql_yytext[];
7271

72+
/* We have to define this as non-extern somewhere for bsdi bjm 1999/09/19 */
73+
int plpgsql_yylineno;
74+
7375
void plpgsql_yyerror(const char *s);
7476

7577
/* ----------

0 commit comments

Comments
 (0)