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
6bdbe4ca
Commit
6bdbe4ca
authored
Jul 30, 2002
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move alarm timers to proper location.
parent
c2d0ebce
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
src/backend/tcop/postgres.c
src/backend/tcop/postgres.c
+7
-7
No files found.
src/backend/tcop/postgres.c
View file @
6bdbe4ca
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.27
4 2002/07/30 05:13:06
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.27
5 2002/07/30 05:35:53
momjian Exp $
*
*
* NOTES
* NOTES
* this is the "main" module of the postgres backend and
* this is the "main" module of the postgres backend and
...
@@ -577,6 +577,9 @@ pg_exec_query_string(StringInfo query_string, /* string to execute */
...
@@ -577,6 +577,9 @@ pg_exec_query_string(StringInfo query_string, /* string to execute */
start_xact_command
();
start_xact_command
();
xact_started
=
true
;
xact_started
=
true
;
if
(
StatementTimeout
)
enable_sig_alarm
(
StatementTimeout
,
true
);
/*
/*
* parse_context *must* be different from the execution memory
* parse_context *must* be different from the execution memory
* context, else the context reset at the bottom of the loop will
* context, else the context reset at the bottom of the loop will
...
@@ -704,9 +707,6 @@ pg_exec_query_string(StringInfo query_string, /* string to execute */
...
@@ -704,9 +707,6 @@ pg_exec_query_string(StringInfo query_string, /* string to execute */
*/
*/
MemoryContextSwitchTo
(
oldcontext
);
MemoryContextSwitchTo
(
oldcontext
);
if
(
StatementTimeout
)
enable_sig_alarm
(
StatementTimeout
,
true
);
/*
/*
* Inner loop handles the individual queries generated from a
* Inner loop handles the individual queries generated from a
* single parsetree by analysis and rewrite.
* single parsetree by analysis and rewrite.
...
@@ -828,8 +828,6 @@ pg_exec_query_string(StringInfo query_string, /* string to execute */
...
@@ -828,8 +828,6 @@ pg_exec_query_string(StringInfo query_string, /* string to execute */
}
}
}
/* end loop over queries generated from a parsetree */
}
/* end loop over queries generated from a parsetree */
disable_sig_alarm
(
true
);
/*
/*
* If this is the last parsetree of the query string, close down
* If this is the last parsetree of the query string, close down
* transaction statement before reporting command-complete. This is
* transaction statement before reporting command-complete. This is
...
@@ -871,6 +869,8 @@ pg_exec_query_string(StringInfo query_string, /* string to execute */
...
@@ -871,6 +869,8 @@ pg_exec_query_string(StringInfo query_string, /* string to execute */
EndCommand
(
commandTag
,
dest
);
EndCommand
(
commandTag
,
dest
);
}
/* end loop over parsetrees */
}
/* end loop over parsetrees */
disable_sig_alarm
(
true
);
/*
/*
* Close down transaction statement, if one is open.
* Close down transaction statement, if one is open.
* (Note that this will only happen if the querystring was empty.)
* (Note that this will only happen if the querystring was empty.)
...
@@ -1693,7 +1693,7 @@ PostgresMain(int argc, char *argv[], const char *username)
...
@@ -1693,7 +1693,7 @@ PostgresMain(int argc, char *argv[], const char *username)
if
(
!
IsUnderPostmaster
)
if
(
!
IsUnderPostmaster
)
{
{
puts
(
"
\n
POSTGRES backend interactive interface "
);
puts
(
"
\n
POSTGRES backend interactive interface "
);
puts
(
"$Revision: 1.27
4 $ $Date: 2002/07/30 05:13:06
$
\n
"
);
puts
(
"$Revision: 1.27
5 $ $Date: 2002/07/30 05:35:53
$
\n
"
);
}
}
/*
/*
...
...
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