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
272b914a
Commit
272b914a
authored
Sep 20, 2001
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove some dead code and obsolete, misleading comments.
parent
14ac0471
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
59 deletions
+1
-59
src/include/executor/execdebug.h
src/include/executor/execdebug.h
+1
-59
No files found.
src/include/executor/execdebug.h
View file @
272b914a
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* $Id: execdebug.h,v 1.1
5 2001/01/24 19:43:23 momjian
Exp $
* $Id: execdebug.h,v 1.1
6 2001/09/20 21:07:57 tgl
Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -27,14 +27,6 @@
...
@@ -27,14 +27,6 @@
* ----------------------------------------------------------------
* ----------------------------------------------------------------
*/
*/
/* ----------------
* EXEC_DEBUGSTORETUP is for tuple table debugging - this
* will print a message every time we call ExecStoreTuple.
* -cim 3/20/91
* ----------------
#undef EXEC_DEBUGSTORETUP
*/
/* ----------------
/* ----------------
* EXEC_TUPLECOUNT is a #define which causes the
* EXEC_TUPLECOUNT is a #define which causes the
* executor keep track of tuple counts. This might be
* executor keep track of tuple counts. This might be
...
@@ -45,13 +37,6 @@
...
@@ -45,13 +37,6 @@
#undef EXEC_TUPLECOUNT
#undef EXEC_TUPLECOUNT
*/
*/
/* ----------------
* EXEC_SHOWBUFSTATS controls whether or not buffer statistics
* are shown for each query. -cim 2/9/89
* ----------------
#undef EXEC_SHOWBUFSTATS
*/
/* ----------------
/* ----------------
* EXEC_CONTEXTDEBUG turns on the printing of debugging information
* EXEC_CONTEXTDEBUG turns on the printing of debugging information
* by CXT_printf() calls regarding which memory context is the
* by CXT_printf() calls regarding which memory context is the
...
@@ -60,25 +45,6 @@
...
@@ -60,25 +45,6 @@
#undef EXEC_CONTEXTDEBUG
#undef EXEC_CONTEXTDEBUG
*/
*/
/* ----------------
* EXEC_RETURNSIZE is a compile flag governing the
* behaviour of lispFmgr.. See ExecMakeFunctionResult().
* Undefining this avoids a problem in the system cache.
*
* Note: undefining this means that there is incorrect
* information in the const nodes corresponding
* to function (or operator) results. The thing is,
* 99% of the time this is fine because when you do
* something like x = emp.sal + 1, you already know
* the type and size of x so the fact that + didn't
* return the correct size doesn't matter.
* With variable length stuff the size is stored in
* the first few bytes of the data so again, it's
* not likely to matter.
* ----------------
#undef EXEC_RETURNSIZE
*/
/* ----------------
/* ----------------
* EXEC_UTILSDEBUG is a flag which turns on debugging of the
* EXEC_UTILSDEBUG is a flag which turns on debugging of the
* executor utilities by EU_printf() in eutils.c
* executor utilities by EU_printf() in eutils.c
...
@@ -128,30 +94,6 @@
...
@@ -128,30 +94,6 @@
#undef EXEC_MERGEJOINDEBUG
#undef EXEC_MERGEJOINDEBUG
*/
*/
/* ----------------
* EXEC_DEBUGINTERACTIVE is a flag which enables the
* user to issue "DEBUG" commands from an interactive
* backend.
* ----------------
#undef EXEC_DEBUGINTERACTIVE
*/
/* ----------------
* EXEC_DEBUGVARIABLEFILE is string, which if defined will
* be loaded when the executor is initialized. If this
* string is not defined then nothing will be loaded..
*
* Example:
*
* #define EXEC_DEBUGVARIABLEFILE "/a/postgres/cimarron/.pg_debugvars"
#
* Note: since these variables are read at execution time,
* they can't affect the first query.. this hack should be
* replaced by something better sometime. -cim 11/2/89
* ----------------
#undef EXEC_DEBUGVARIABLEFILE
*/
/* ----------------------------------------------------------------
/* ----------------------------------------------------------------
* #defines controlled by above definitions
* #defines controlled by above definitions
*
*
...
...
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