We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bef689 commit 98fe670Copy full SHA for 98fe670
src/bin/initdb/initdb.sh
@@ -26,7 +26,7 @@
26
#
27
28
# IDENTIFICATION
29
-# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.99 2000/07/03 20:48:46 petere Exp $
+# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.100 2000/07/05 19:51:03 wieck Exp $
30
31
#-------------------------------------------------------------------------
32
@@ -534,6 +534,11 @@ if [ "$PwPrompt" ]; then
534
fi
535
536
537
+echo "Enabling unlimited storage for pg_rewrite"
538
+echo "ALTER TABLE pg_rewrite CREATE TOAST TABLE" \
539
+ | "$PGPATH"/postgres $PGSQL_OPT template1 > /dev/null || exit_nicely
540
+
541
542
echo "Creating view pg_user."
543
echo "CREATE VIEW pg_user AS \
544
SELECT \
0 commit comments