MyFirstUDRKit/test/testudrkit.sql

26 lines
283 B
MySQL
Raw Normal View History

2023-01-25 14:54:48 +01:00
set echo on;
set sql dialect 3;
set names UTF8;
input recreate_db.ddl;
-- create db objects
input testudrkit.ddl;
-- insert some test data
input testudrkit.dml;
-- run some tests
input testudrkit-tests.dml;
/* Successfully completed execution of testudrkit.sql */
EXIT;