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
5d429f8d
Commit
5d429f8d
authored
Jun 02, 2007
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minimal message corrections found by spell checker.
parent
376ee150
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
src/backend/commands/operatorcmds.c
src/backend/commands/operatorcmds.c
+3
-3
src/backend/utils/misc/guc.c
src/backend/utils/misc/guc.c
+2
-2
src/backend/utils/misc/tzparser.c
src/backend/utils/misc/tzparser.c
+2
-2
No files found.
src/backend/commands/operatorcmds.c
View file @
5d429f8d
...
...
@@ -9,7 +9,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/commands/operatorcmds.c,v 1.3
5 2007/01/05 22:19:26 momjian
Exp $
* $PostgreSQL: pgsql/src/backend/commands/operatorcmds.c,v 1.3
6 2007/06/02 23:36:35 petere
Exp $
*
* DESCRIPTION
* The "DefineFoo" routines take the parse tree and pick out the
...
...
@@ -99,7 +99,7 @@ DefineOperator(List *names, List *parameters)
if
(
typeName1
->
setof
)
ereport
(
ERROR
,
(
errcode
(
ERRCODE_INVALID_FUNCTION_DEFINITION
),
errmsg
(
"
setof
type not allowed for operator argument"
)));
errmsg
(
"
SETOF
type not allowed for operator argument"
)));
}
else
if
(
pg_strcasecmp
(
defel
->
defname
,
"rightarg"
)
==
0
)
{
...
...
@@ -107,7 +107,7 @@ DefineOperator(List *names, List *parameters)
if
(
typeName2
->
setof
)
ereport
(
ERROR
,
(
errcode
(
ERRCODE_INVALID_FUNCTION_DEFINITION
),
errmsg
(
"
setof
type not allowed for operator argument"
)));
errmsg
(
"
SETOF
type not allowed for operator argument"
)));
}
else
if
(
pg_strcasecmp
(
defel
->
defname
,
"procedure"
)
==
0
)
functionName
=
defGetQualifiedName
(
defel
);
...
...
src/backend/utils/misc/guc.c
View file @
5d429f8d
...
...
@@ -10,7 +10,7 @@
* Written by Peter Eisentraut <peter_e@gmx.net>.
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.39
1 2007/05/08 16:33:51
petere Exp $
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.39
2 2007/06/02 23:36:35
petere Exp $
*
*--------------------------------------------------------------------
*/
...
...
@@ -1979,7 +1979,7 @@ static struct config_string ConfigureNamesString[] =
{
{
"session_replication_role"
,
PGC_SUSET
,
CLIENT_CONN_STATEMENT
,
gettext_noop
(
"Sets the sessions behavio
u
r for triggers and rewrite rules."
),
gettext_noop
(
"Sets the sessions behavior for triggers and rewrite rules."
),
gettext_noop
(
"Each session can be either"
"
\"
origin
\"
,
\"
replica
\"
or
\"
local
\"
."
)
},
...
...
src/backend/utils/misc/tzparser.c
View file @
5d429f8d
...
...
@@ -13,7 +13,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/misc/tzparser.c,v 1.
4 2007/01/05 22:19:46 momjian
Exp $
* $PostgreSQL: pgsql/src/backend/utils/misc/tzparser.c,v 1.
5 2007/06/02 23:36:35 petere
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -381,7 +381,7 @@ ParseTzFile(const char *filename, int depth,
{
ereport
(
tz_elevel
,
(
errcode
(
ERRCODE_INVALID_PARAMETER_VALUE
),
errmsg
(
"@INCLUDE without filename in time zone file
\"
%s
\"
, line %d"
,
errmsg
(
"@INCLUDE without file
name in time zone file
\"
%s
\"
, line %d"
,
filename
,
lineno
)));
return
-
1
;
}
...
...
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