1
0
mirror of https://github.com/postgres/postgres.git synced 2025-12-18 05:01:01 +03:00

Removed the automatic installation of built procedural languages

from initdb again.

Added two new commands, createlang and destroylang to bin. These
hopefully end this damned mklang.sql discussion.

Jan
This commit is contained in:
Jan Wieck
1999-05-20 16:50:08 +00:00
parent 33773af95b
commit 3de11d6526
8 changed files with 382 additions and 26 deletions

View File

@@ -1,5 +1,5 @@
#!/bin/sh
# $Header: /cvsroot/pgsql/src/test/regress/Attic/regress.sh,v 1.27 1999/05/07 02:31:43 momjian Exp $
# $Header: /cvsroot/pgsql/src/test/regress/Attic/regress.sh,v 1.28 1999/05/20 16:50:08 wieck Exp $
#
if [ $# -eq 0 ]
then
@@ -63,6 +63,13 @@ if [ $? -ne 0 ]; then
exit 1
fi
echo "=============== installing PL/pgSQL... ================="
createlang $HOST plpgsql regression
if [ $? -ne 0 ]; then
echo createlang failed
exit 1
fi
echo "=============== running regression queries... ================="
echo "" > regression.diffs
for i in `cat sql/tests` $mbtests