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
daed6f4b
Commit
daed6f4b
authored
Sep 15, 2003
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve a couple of error messages per suggestions from Alvaro Herrera.
parent
7ce5f25b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
+6
-5
src/backend/parser/gram.y
src/backend/parser/gram.y
+3
-2
src/backend/utils/misc/guc.c
src/backend/utils/misc/guc.c
+3
-3
No files found.
src/backend/parser/gram.y
View file @
daed6f4b
...
...
@@ -11,7 +11,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.43
2 2003/09/09 23:22:20 petere
Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.43
3 2003/09/15 22:28:57 tgl
Exp $
*
* HISTORY
* AUTHOR DATE MAJOR EVENT
...
...
@@ -3244,7 +3244,8 @@ oper_argtypes:
{
ereport(ERROR,
(errcode(ERRCODE_SYNTAX_ERROR),
errmsg("argument type missing (use NONE for unary operators)")));
errmsg("missing argument"),
errhint("Use NONE to denote the missing argument of a unary operator.")));
}
| Typename ',' Typename
{ $$ = makeList2($1, $3); }
...
...
src/backend/utils/misc/guc.c
View file @
daed6f4b
...
...
@@ -10,7 +10,7 @@
* Written by Peter Eisentraut <peter_e@gmx.net>.
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.15
7 2003/09/11 18:30:39 momjian
Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.15
8 2003/09/15 22:28:58 tgl
Exp $
*
*--------------------------------------------------------------------
*/
...
...
@@ -1540,7 +1540,7 @@ static struct config_string ConfigureNamesString[] =
{
{
"unix_socket_group"
,
PGC_POSTMASTER
,
CONN_AUTH_SETTINGS
,
gettext_noop
(
"The
group owner of the Unix
domain socket"
),
gettext_noop
(
"The
owning group of the Unix-
domain socket"
),
gettext_noop
(
"(The owning user of the socket is always the user "
"that starts the server.)"
)
},
...
...
@@ -1550,7 +1550,7 @@ static struct config_string ConfigureNamesString[] =
{
{
"unix_socket_directory"
,
PGC_POSTMASTER
,
CONN_AUTH_SETTINGS
,
gettext_noop
(
"
The Unix-domain socket directory to listen to
"
),
gettext_noop
(
"
Directory where the Unix-domain socket will be created
"
),
NULL
},
&
UnixSocketDir
,
...
...
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