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
35096b56
Commit
35096b56
authored
May 29, 2000
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Split vacuum and analyze into separate files
parent
3d669b50
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
603 deletions
+12
-603
src/backend/commands/Makefile
src/backend/commands/Makefile
+2
-2
src/backend/commands/vacuum.c
src/backend/commands/vacuum.c
+2
-600
src/include/commands/vacuum.h
src/include/commands/vacuum.h
+2
-1
src/tools/pginclude/pgfixinclude
src/tools/pginclude/pgfixinclude
+2
-0
src/tools/pginclude/pginclude
src/tools/pginclude/pginclude
+2
-0
src/tools/pginclude/pgnoinclude
src/tools/pginclude/pgnoinclude
+2
-0
No files found.
src/backend/commands/Makefile
View file @
35096b56
...
...
@@ -4,7 +4,7 @@
# Makefile for commands
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/commands/Makefile,v 1.2
4 2000/05/29 05:44:44 tgl
Exp $
# $Header: /cvsroot/pgsql/src/backend/commands/Makefile,v 1.2
5 2000/05/29 17:40:43 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -12,7 +12,7 @@ SRCDIR = ../..
include
$(SRCDIR)/Makefile.global
OBJS
=
async.o creatinh.o command.o comment.o copy.o indexcmds.o define.o
\
remove.o rename.o vacuum.o view.o cluster.o
\
remove.o rename.o vacuum.o
analyze.o
view.o cluster.o
\
explain.o sequence.o trigger.o user.o proclang.o
\
dbcommands.o variable.o
...
...
src/backend/commands/vacuum.c
View file @
35096b56
This diff is collapsed.
Click to expand it.
src/include/commands/vacuum.h
View file @
35096b56
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: vacuum.h,v 1.3
0 2000/05/29 17:06:15
momjian Exp $
* $Id: vacuum.h,v 1.3
1 2000/05/29 17:40:44
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -133,6 +133,7 @@ extern bool VacuumRunning;
extern
void
vc_abort
(
void
);
extern
void
vacuum
(
char
*
vacrel
,
bool
verbose
,
bool
analyze
,
List
*
anal_cols
);
extern
void
analyze_rel
(
Oid
relid
,
List
*
anal_cols2
,
int
MESSAGE_LEVEL
);
#define ATTNVALS_SCALE 1000000000
/* XXX so it can act as a float4 */
...
...
src/tools/pginclude/pgfixinclude
View file @
35096b56
:
# mark includes as <> or ""
trap "rm -f /tmp/$$.c /tmp/$$.o /tmp/$$ /tmp/$$a /tmp/$$b" 0 1 2 3 15
find . \( -name CVS -a -prune \) -o -type f -print |
while read FILE
...
...
src/tools/pginclude/pginclude
View file @
35096b56
:
# report which include files can not compile on their own
trap "rm -f /tmp/$$.c /tmp/$$.o /tmp/$$ /tmp/$$a" 0 1 2 3 15
find . \( -name CVS -a -prune \) -o -name '*.[ch]' -type f -print | while read FILE
do
...
...
src/tools/pginclude/pgnoinclude
View file @
35096b56
:
# report which files have extra includes
trap "rm -f /tmp/$$.c /tmp/$$.o /tmp/$$ /tmp/$$a /tmp/$$b" 0 1 2 3 15
find . \( -name CVS -a -prune \) -o -type f -print |
grep -v '\./postgres.h' |
...
...
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