Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
75596775
Commit
75596775
authored
Sep 20, 1999
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Define plpgsql_yylineno as non-extern somewhere for bsdi.
parent
fe2ab18e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
doc/TODO
doc/TODO
+2
-2
src/pl/plpgsql/src/pl_comp.c
src/pl/plpgsql/src/pl_comp.c
+4
-2
No files found.
doc/TODO
View file @
75596775
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)
...
...
@@ -180,7 +180,7 @@ MISC
* Do autocommit so always in a transaction block
* Show location of syntax error in query
* 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
re
create pg_pwd
* Missing optimizer selectivities for date, r-tree, etc.
* Overhaul mdmgr/smgr to fix double unlinking and double opens, cleanup
* Overhaul bufmgr/lockmgr/transaction manager
...
...
src/pl/plpgsql/src/pl_comp.c
View file @
75596775
...
...
@@ -3,7 +3,7 @@
* procedural language
*
* 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.
*
...
...
@@ -67,9 +67,11 @@
* ----------
*/
extern
PLPGSQL_YYSTYPE
plpgsql_yylval
;
extern
int
plpgsql_yylineno
;
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
);
/* ----------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment