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
9d775d88
Commit
9d775d88
authored
Aug 07, 2013
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Message style improvements
parent
91c3613d
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
8 deletions
+8
-8
src/backend/parser/parse_utilcmd.c
src/backend/parser/parse_utilcmd.c
+1
-1
src/backend/port/sysv_shmem.c
src/backend/port/sysv_shmem.c
+1
-1
src/backend/postmaster/bgworker.c
src/backend/postmaster/bgworker.c
+3
-3
src/backend/postmaster/postmaster.c
src/backend/postmaster/postmaster.c
+1
-1
src/backend/utils/adt/jsonfuncs.c
src/backend/utils/adt/jsonfuncs.c
+1
-1
src/backend/utils/misc/guc.c
src/backend/utils/misc/guc.c
+1
-1
No files found.
src/backend/parser/parse_utilcmd.c
View file @
9d775d88
...
...
@@ -672,7 +672,7 @@ transformTableLikeClause(CreateStmtContext *cxt, TableLikeClause *table_like_cla
if
(
cxt
->
isforeign
)
ereport
(
ERROR
,
(
errcode
(
ERRCODE_FEATURE_NOT_SUPPORTED
),
errmsg
(
"LIKE is not supported for foreign tables"
)));
errmsg
(
"LIKE is not supported for
creating
foreign tables"
)));
relation
=
relation_openrv
(
table_like_clause
->
relation
,
AccessShareLock
);
...
...
src/backend/port/sysv_shmem.c
View file @
9d775d88
...
...
@@ -174,7 +174,7 @@ InternalIpcMemoryCreate(IpcMemoryKey memKey, Size size)
"memory configuration."
)
:
0
,
(
errno
==
ENOMEM
)
?
errhint
(
"This error usually means that PostgreSQL's request for a shared "
"memory segment exceeded your kernel's SHMALL parameter. You m
ay
need "
"memory segment exceeded your kernel's SHMALL parameter. You m
ight
need "
"to reconfigure the kernel with larger SHMALL.
\n
"
"The PostgreSQL documentation contains more information about shared "
"memory configuration."
)
:
0
,
...
...
src/backend/postmaster/bgworker.c
View file @
9d775d88
...
...
@@ -255,7 +255,7 @@ BackgroundWorkerStateChange(void)
/* Log it! */
ereport
(
LOG
,
(
errmsg
(
"registering background worker
: %s
"
,
(
errmsg
(
"registering background worker
\"
%s
\"
"
,
rw
->
rw_worker
.
bgw_name
)));
slist_push_head
(
&
BackgroundWorkerList
,
&
rw
->
rw_lnode
);
...
...
@@ -284,7 +284,7 @@ ForgetBackgroundWorker(slist_mutable_iter *cur)
slot
->
in_use
=
false
;
ereport
(
LOG
,
(
errmsg
(
"unregistering background worker
: %s
"
,
(
errmsg
(
"unregistering background worker
\"
%s
\"
"
,
rw
->
rw_worker
.
bgw_name
)));
slist_delete_current
(
cur
);
...
...
@@ -368,7 +368,7 @@ RegisterBackgroundWorker(BackgroundWorker *worker)
if
(
!
IsUnderPostmaster
)
ereport
(
LOG
,
(
errmsg
(
"registering background worker
: %s
"
,
worker
->
bgw_name
)));
(
errmsg
(
"registering background worker
\"
%s
\"
"
,
worker
->
bgw_name
)));
if
(
!
process_shared_preload_libraries_in_progress
)
{
...
...
src/backend/postmaster/postmaster.c
View file @
9d775d88
...
...
@@ -5224,7 +5224,7 @@ BackgroundWorkerInitializeConnection(char *dbname, char *username)
/* it had better not gotten out of "init" mode yet */
if
(
!
IsInitProcessingMode
())
ereport
(
ERROR
,
(
errmsg
(
"invalid processing mode in b
g
worker"
)));
(
errmsg
(
"invalid processing mode in b
ackground
worker"
)));
SetProcessingMode
(
NormalProcessing
);
}
...
...
src/backend/utils/adt/jsonfuncs.c
View file @
9d775d88
...
...
@@ -1836,7 +1836,7 @@ populate_recordset_array_element_start(void *state, bool isnull)
_state
->
lex
->
token_type
!=
JSON_TOKEN_OBJECT_START
)
ereport
(
ERROR
,
(
errcode
(
ERRCODE_INVALID_PARAMETER_VALUE
),
errmsg
(
"must call populate_recordset on an array of objects"
)));
errmsg
(
"must call
json_
populate_recordset on an array of objects"
)));
}
static
void
...
...
src/backend/utils/misc/guc.c
View file @
9d775d88
...
...
@@ -1607,7 +1607,7 @@ static struct config_int ConfigureNamesInt[] =
{
{
"wal_receiver_timeout"
,
PGC_SIGHUP
,
REPLICATION_STANDBY
,
gettext_noop
(
"Sets the maximum wait time to receive data from
master
."
),
gettext_noop
(
"Sets the maximum wait time to receive data from
the primary
."
),
NULL
,
GUC_UNIT_MS
},
...
...
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