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
09f31753
Commit
09f31753
authored
Apr 19, 2004
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for BEGIN with ISOLATION/READONLY clauses.
Fix for code originally added for 7.5.
parent
31338352
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
10 deletions
+9
-10
src/backend/tcop/utility.c
src/backend/tcop/utility.c
+6
-9
src/backend/utils/misc/guc.c
src/backend/utils/misc/guc.c
+3
-1
No files found.
src/backend/tcop/utility.c
View file @
09f31753
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/tcop/utility.c,v 1.21
1 2004/03/23 19:35:17 tgl
Exp $
* $PostgreSQL: pgsql/src/backend/tcop/utility.c,v 1.21
2 2004/04/19 21:21:33 momjian
Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -302,15 +302,12 @@ ProcessUtility(Node *parsetree,
...
@@ -302,15 +302,12 @@ ProcessUtility(Node *parsetree,
switch
(
stmt
->
kind
)
switch
(
stmt
->
kind
)
{
{
/*
* START TRANSACTION, as defined by SQL99:
* Identical to BEGIN, except that it takes a few
* additional options. Same code for both.
*/
case
TRANS_STMT_BEGIN
:
case
TRANS_STMT_BEGIN
:
BeginTransactionBlock
();
break
;
/*
* START TRANSACTION, as defined by SQL99:
* Identical to BEGIN, except that it takes a few
* additional options.
*/
case
TRANS_STMT_START
:
case
TRANS_STMT_START
:
{
{
BeginTransactionBlock
();
BeginTransactionBlock
();
...
...
src/backend/utils/misc/guc.c
View file @
09f31753
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
* Written by Peter Eisentraut <peter_e@gmx.net>.
* Written by Peter Eisentraut <peter_e@gmx.net>.
*
*
* IDENTIFICATION
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.
199 2004/04/07 18:52:26
momjian Exp $
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.
200 2004/04/19 21:21:34
momjian Exp $
*
*
*--------------------------------------------------------------------
*--------------------------------------------------------------------
*/
*/
...
@@ -3394,6 +3394,8 @@ void
...
@@ -3394,6 +3394,8 @@ void
SetPGVariable
(
const
char
*
name
,
List
*
args
,
bool
is_local
)
SetPGVariable
(
const
char
*
name
,
List
*
args
,
bool
is_local
)
{
{
char
*
argstring
=
flatten_set_variable_args
(
name
,
args
);
char
*
argstring
=
flatten_set_variable_args
(
name
,
args
);
printf
(
"bjm: %s %s
\n
"
,
name
,
argstring
);
fflush
(
stdout
);
/* Note SET DEFAULT (argstring == NULL) is equivalent to RESET */
/* Note SET DEFAULT (argstring == NULL) is equivalent to RESET */
set_config_option
(
name
,
set_config_option
(
name
,
...
...
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