提交 139f19c3 编写于 作者: T Tom Lane

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

seems to be busted though ...
上级 a2c6bf5a
......@@ -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
......
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';
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册