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
e8ec0b15
Commit
e8ec0b15
authored
Jun 21, 2009
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Message fixes
parent
82480e28
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
src/backend/libpq/hba.c
src/backend/libpq/hba.c
+2
-2
src/backend/utils/adt/arrayfuncs.c
src/backend/utils/adt/arrayfuncs.c
+3
-3
No files found.
src/backend/libpq/hba.c
View file @
e8ec0b15
...
...
@@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/libpq/hba.c,v 1.18
6 2009/06/11 14:48:58 momjian
Exp $
* $PostgreSQL: pgsql/src/backend/libpq/hba.c,v 1.18
7 2009/06/21 20:15:32 petere
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -705,7 +705,7 @@ parse_hba_line(List *line, int line_num, HbaLine *parsedline)
{
ereport
(
LOG
,
(
errcode
(
ERRCODE_CONFIG_FILE_ERROR
),
errmsg
(
"end-of-line before
ip
address specification"
),
errmsg
(
"end-of-line before
IP
address specification"
),
errcontext
(
"line %d of configuration file
\"
%s
\"
"
,
line_num
,
HbaFileName
)));
return
false
;
...
...
src/backend/utils/adt/arrayfuncs.c
View file @
e8ec0b15
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/adt/arrayfuncs.c,v 1.15
8 2009/06/20 18:45:28 tgl
Exp $
* $PostgreSQL: pgsql/src/backend/utils/adt/arrayfuncs.c,v 1.15
9 2009/06/21 20:15:32 petere
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -4396,7 +4396,7 @@ array_fill_with_lower_bounds(PG_FUNCTION_ARGS)
if
(
PG_ARGISNULL
(
1
)
||
PG_ARGISNULL
(
2
))
ereport
(
ERROR
,
(
errcode
(
ERRCODE_NULL_VALUE_NOT_ALLOWED
),
errmsg
(
"dimension array or low bound array
cannot be NULL
"
)));
errmsg
(
"dimension array or low bound array
must not be null
"
)));
dims
=
PG_GETARG_ARRAYTYPE_P
(
1
);
lbs
=
PG_GETARG_ARRAYTYPE_P
(
2
);
...
...
@@ -4436,7 +4436,7 @@ array_fill(PG_FUNCTION_ARGS)
if
(
PG_ARGISNULL
(
1
))
ereport
(
ERROR
,
(
errcode
(
ERRCODE_NULL_VALUE_NOT_ALLOWED
),
errmsg
(
"dimension array or low bound array
cannot be NULL
"
)));
errmsg
(
"dimension array or low bound array
must not be null
"
)));
dims
=
PG_GETARG_ARRAYTYPE_P
(
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