File tree 2 files changed +10
-7
lines changed
2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 26
26
#
27
27
#
28
28
# IDENTIFICATION
29
- # $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.26 1997/11/14 21:37:35 momjian Exp $
29
+ # $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.27 1997/11/15 17:15:34 momjian Exp $
30
30
#
31
31
# -------------------------------------------------------------------------
32
32
346
346
347
347
echo
348
348
349
+ echo " vacuuming template1"
350
+ echo " vacuum analyze" | postgres -F -Q -D$PGDATA template1 2>&1 > /dev/null | \
351
+ grep -v " ^DEBUG:"
352
+
349
353
echo " loading pg_description"
350
354
echo " copy pg_description from '$TEMPLATE_DESCR '" | postgres -F -Q -D$PGDATA template1 > /dev/null
351
355
echo " copy pg_description from '$GLOBAL_DESCR '" | postgres -F -Q -D$PGDATA template1 > /dev/null
352
-
353
- echo " vacuuming template1"
354
- echo " vacuum" | postgres -F -Q -D$PGDATA template1 2>&1 > /dev/null | \
356
+ echo " vacuum analyze pg_description" | postgres -F -Q -D$PGDATA template1 2>&1 > /dev/null | \
355
357
grep -v " ^DEBUG:"
356
358
357
359
360
+
Original file line number Diff line number Diff line change 7
7
*
8
8
* Copyright (c) 1994, Regents of the University of California
9
9
*
10
- * $Id: indexing.h,v 1.9 1997/11/14 05:57:42 momjian Exp $
10
+ * $Id: indexing.h,v 1.10 1997/11/15 17:15:35 momjian Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
46
46
#define AttrDefaultIndex "pg_attrdefind"
47
47
#define RelCheckIndex "pg_relcheckind"
48
48
#define TriggerRelidIndex "pg_trigrelidind"
49
- #define DescriptionObjOidIndex "pg_descrobjoidind "
49
+ #define DescriptionObjIndex "pg_descrobjind "
50
50
51
51
extern char * Name_pg_attr_indices [];
52
52
extern char * Name_pg_proc_indices [];
@@ -119,7 +119,7 @@ DECLARE_INDEX(pg_relcheckind on pg_relcheck using btree(rcrelid oid_ops));
119
119
120
120
DECLARE_INDEX (pg_trigrelidind on pg_trigger using btree (tgrelid oid_ops ));
121
121
122
- DECLARE_INDEX (pg_descrobjoidind on pg_description using btree (objoid oid_ops ));
122
+ DECLARE_INDEX (pg_descrobjind on pg_description using btree (objoid oid_ops ));
123
123
124
124
/* now build indices in the initialization scripts */
125
125
BUILD_INDICES
You can’t perform that action at this time.
0 commit comments