update pltcl test to have at least some chance of running ... still

seems to be busted though ...
REL7_1_STABLE
Tom Lane 26 years ago
parent a2c6bf5a59
commit 139f19c302
  1. 4
      src/pl/tcl/test/runtest
  2. 9
      src/pl/tcl/test/test_mklang.sql

@ -4,13 +4,13 @@ DBNAME=pltcl_test
export DBNAME
echo "**** Destroy old database $DBNAME ****"
destroydb $DBNAME
dropdb $DBNAME
echo "**** Create test database $DBNAME ****"
createdb $DBNAME
echo "**** Create procedural language pltcl ****"
psql -q -n $DBNAME <test_mklang.sql
createlang pltcl $DBNAME
echo "**** Create tables, functions and triggers ****"
psql -q -n $DBNAME <test_setup.sql

@ -1,9 +0,0 @@
create function pltcl_call_handler() returns opaque
as '/usr/local/pgsql/lib/pltcl.so'
language 'C';
create trusted procedural language 'pltcl'
handler pltcl_call_handler
lancompiler 'PL/Tcl';
Loading…
Cancel
Save