1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

Split vacuum and analyze into separate files

This commit is contained in:
Bruce Momjian
2000-05-29 17:40:45 +00:00
parent 3d669b50ed
commit 35096b568e
6 changed files with 12 additions and 603 deletions

View File

@@ -1,4 +1,6 @@
:
# 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

View File

@@ -1,4 +1,6 @@
:
# 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

View File

@@ -1,4 +1,6 @@
:
# 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' |