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;
|
input recreate_db.ddl;
|
||||||
|
|
||||||
-- deploy the UDR library
|
-- 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
|
-- create db objects
|
||||||
input testudrkit.ddl;
|
input testudrkit.ddl;
|
||||||
|
|
||||||
-- declare the UDR library
|
|
||||||
input ../sql/MyFirstUDRKit.ddl
|
|
||||||
|
|
||||||
-- insert some test data
|
-- insert some test data
|
||||||
input testudrkit.dml;
|
input testudrkit-testdata.dml;
|
||||||
|
|
||||||
-- run some tests
|
-- run some tests
|
||||||
input testudrkit-tests.dml;
|
input testudrkit-tests.dml;
|
||||||
|
|
||||||
/* Successfully completed execution of testudrkit.sql */
|
/* Successfully completed execution of testudrkit.sql */
|
||||||
EXIT;
|
exit;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user