Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
75596775
Commit
75596775
authored
25 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Define plpgsql_yylineno as non-extern somewhere for bsdi.
parent
fe2ab18e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/TODO
+2
-2
2 additions, 2 deletions
doc/TODO
src/pl/plpgsql/src/pl_comp.c
+4
-2
4 additions, 2 deletions
src/pl/plpgsql/src/pl_comp.c
with
6 additions
and
4 deletions
doc/TODO
+
2
−
2
View file @
75596775
TODO list for PostgreSQL
========================
Last updated:
Fri
Sep 1
7 21:33:48
EDT 1999
Last updated:
Sat
Sep 1
8 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
...
...
This diff is collapsed.
Click to expand it.
src/pl/plpgsql/src/pl_comp.c
+
4
−
2
View file @
75596775
...
...
@@ -3,7 +3,7 @@
* procedural language
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/pl/plpgsql/src/pl_comp.c,v 1.
8
1999/0
7/15 15:21:46
momjian Exp $
* $Header: /cvsroot/pgsql/src/pl/plpgsql/src/pl_comp.c,v 1.
9
1999/0
9/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
);
/* ----------
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment