From fa983530f09e36b5a5ea9b5de930f5fd62d47521 Mon Sep 17 00:00:00 2001 From: Paul Reeves Date: Wed, 25 Jan 2023 15:57:57 +0100 Subject: [PATCH] Deploy UDR lib --- test/testudrkit.sql | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/test/testudrkit.sql b/test/testudrkit.sql index 2cb3994..83f6c67 100644 --- a/test/testudrkit.sql +++ b/test/testudrkit.sql @@ -4,9 +4,16 @@ set names UTF8; input recreate_db.ddl; +-- deploy the UDR library +shell cp ../build/x86_64-linux/libMyFirstUDRKit.so /opt/firebird/plugins/udr/ ; + + -- create db objects input testudrkit.ddl; +-- declare the UDR library +input ../sql/MyFirstUDRKit.ddl + -- insert some test data input testudrkit.dml;