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
9ffeab55
Commit
9ffeab55
authored
Sep 13, 2004
by
Neil Conway
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix two typos in comments.
parent
409de6be
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
src/backend/utils/fmgr/fmgr.c
src/backend/utils/fmgr/fmgr.c
+2
-2
src/pl/plpgsql/src/scan.l
src/pl/plpgsql/src/scan.l
+2
-2
No files found.
src/backend/utils/fmgr/fmgr.c
View file @
9ffeab55
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/fmgr/fmgr.c,v 1.8
3 2004/08/30 02:54:39 momjian
Exp $
* $PostgreSQL: pgsql/src/backend/utils/fmgr/fmgr.c,v 1.8
4 2004/09/13 01:44:46 neilc
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -34,7 +34,7 @@
* %d0. So if a function pointer is declared to return a pointer, the
* compiler may look only into %a0, but if the called function was declared
* to return an integer type, it puts its value only into %d0. So the
* caller doesn't pi
n
k up the correct return value. The solution is to
* caller doesn't pi
c
k up the correct return value. The solution is to
* declare the function pointer to return int, so the compiler picks up the
* return value from %d0. (Functions returning pointers put their value
* *additionally* into %d0 for compatibility.) The price is that there are
...
...
src/pl/plpgsql/src/scan.l
View file @
9ffeab55
...
...
@@ -4,7 +4,7 @@
* procedural language
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/pl/plpgsql/src/scan.l,v 1.3
6 2004/07/31 23:04:56 tgl
Exp $
* $PostgreSQL: pgsql/src/pl/plpgsql/src/scan.l,v 1.3
7 2004/09/13 01:45:32 neilc
Exp $
*
* This software is copyrighted by Jan Wieck - Hamburg.
*
...
...
@@ -118,7 +118,7 @@ dolqinside [^$]+
/* ----------
* On the first call to a new source report the
* functions type (T_FUNCTION or T_TRIGGER)
* function
'
s type (T_FUNCTION or T_TRIGGER)
* ----------
*/
if (!scanner_typereported)
...
...
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