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
ea8adfc4
Commit
ea8adfc4
authored
Sep 19, 1996
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added querylimit patch...
Submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
parent
aceac3a9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletion
+13
-1
src/backend/executor/execMain.c
src/backend/executor/execMain.c
+13
-1
No files found.
src/backend/executor/execMain.c
View file @
ea8adfc4
...
...
@@ -26,7 +26,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.
3 1996/09/10 06:48:01
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.
4 1996/09/19 19:57:18
scrappy Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -62,6 +62,18 @@ static void ExecReplace(TupleTableSlot *slot, ItemPointer tupleid,
/* end of local decls */
#ifdef QUERY_LIMIT
static
int
queryLimit
=
ALL_TUPLES
;
#undef ALL_TUPLES
#define ALL_TUPLES queryLimit
int
ExecutorLimit
(
int
limit
)
{
return
queryLimit
=
limit
;
}
#endif
/* ----------------------------------------------------------------
* ExecutorStart
*
...
...
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