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
7ecfaccf
Commit
7ecfaccf
authored
Oct 09, 2008
by
Alvaro Herrera
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix two flaws in comments I just introduced, pointed out by Tom.
parent
76e66024
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/include/utils/elog.h
src/include/utils/elog.h
+3
-3
No files found.
src/include/utils/elog.h
View file @
7ecfaccf
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* $PostgreSQL: pgsql/src/include/utils/elog.h,v 1.9
5 2008/10/09 17:24:05
alvherre Exp $
* $PostgreSQL: pgsql/src/include/utils/elog.h,v 1.9
6 2008/10/09 22:22:31
alvherre Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -97,7 +97,7 @@
...
@@ -97,7 +97,7 @@
* wish to use a different message catalog from the backend's. To avoid having
* wish to use a different message catalog from the backend's. To avoid having
* one copy of the default text domain per .o file, we define it as NULL here
* one copy of the default text domain per .o file, we define it as NULL here
* and have errstart insert the default text domain. Modules can either use
* and have errstart insert the default text domain. Modules can either use
* ereport_domain() directly, or prefer
r
ably they can override the TEXTDOMAIN
* ereport_domain() directly, or preferably they can override the TEXTDOMAIN
* macro.
* macro.
*----------
*----------
*/
*/
...
@@ -281,7 +281,7 @@ typedef struct ErrorData
...
@@ -281,7 +281,7 @@ typedef struct ErrorData
const
char
*
filename
;
/* __FILE__ of ereport() call */
const
char
*
filename
;
/* __FILE__ of ereport() call */
int
lineno
;
/* __LINE__ of ereport() call */
int
lineno
;
/* __LINE__ of ereport() call */
const
char
*
funcname
;
/* __func__ of ereport() call */
const
char
*
funcname
;
/* __func__ of ereport() call */
const
char
*
domain
;
/* message domain
, NULL if default
*/
const
char
*
domain
;
/* message domain */
int
sqlerrcode
;
/* encoded ERRSTATE */
int
sqlerrcode
;
/* encoded ERRSTATE */
char
*
message
;
/* primary error message */
char
*
message
;
/* primary error message */
char
*
detail
;
/* detail error message */
char
*
detail
;
/* detail error message */
...
...
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