misc fixes to db build/test script
This commit is contained in:
parent
ec81b04b6e
commit
b76d47e14c
@ -5,23 +5,24 @@ set names UTF8;
|
||||
input recreate_db.ddl;
|
||||
|
||||
-- deploy the UDR library
|
||||
shell cp ../build/x86_64-linux/libMyFirstUDRKit.so /opt/firebird/plugins/udr/ ;
|
||||
shell cp -L ../build/x86_64-linux/libMyFirstUDRKit.so /opt/firebird/plugins/udr/ ;
|
||||
|
||||
-- declare the UDR library - must be done before we declare database objects!
|
||||
input ../sql/MyFirstUDRKit.ddl;
|
||||
|
||||
|
||||
-- create db objects
|
||||
input testudrkit.ddl;
|
||||
|
||||
-- declare the UDR library
|
||||
input ../sql/MyFirstUDRKit.ddl
|
||||
|
||||
-- insert some test data
|
||||
input testudrkit.dml;
|
||||
input testudrkit-testdata.dml;
|
||||
|
||||
-- run some tests
|
||||
input testudrkit-tests.dml;
|
||||
|
||||
/* Successfully completed execution of testudrkit.sql */
|
||||
EXIT;
|
||||
exit;
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user