diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2024-04-25 19:49:33 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2024-05-03 14:33:32 +0300 |
commit | 68ff3d1fa1c8eb86bf89b7b9cbad78a45f362672 (patch) | |
tree | cdaaf84ceeb7f5c4ee7e06f84fed383a18d40350 /odb-tests/common/schema | |
parent | 6fad72ea59dca2f2cc9e431bcc5a026bda17fdf2 (diff) |
Add support for testing of libodb-mssql to odb-tests
Diffstat (limited to 'odb-tests/common/schema')
-rw-r--r-- | odb-tests/common/schema/embedded/basics/testscript | 9 | ||||
-rw-r--r-- | odb-tests/common/schema/embedded/order/testscript | 9 | ||||
-rw-r--r-- | odb-tests/common/schema/namespace/testscript | 10 |
3 files changed, 28 insertions, 0 deletions
diff --git a/odb-tests/common/schema/embedded/basics/testscript b/odb-tests/common/schema/embedded/basics/testscript index 24448c0..ef58fc0 100644 --- a/odb-tests/common/schema/embedded/basics/testscript +++ b/odb-tests/common/schema/embedded/basics/testscript @@ -29,3 +29,12 @@ if $pgsql $* } + +: mssql +: +if $mssql +{ + .include ../../../../mssql.testscript + + $* +} diff --git a/odb-tests/common/schema/embedded/order/testscript b/odb-tests/common/schema/embedded/order/testscript index 6dfe58c..5257d87 100644 --- a/odb-tests/common/schema/embedded/order/testscript +++ b/odb-tests/common/schema/embedded/order/testscript @@ -29,3 +29,12 @@ if $pgsql $* } + +: mssql +: +if $mssql +{ + .include ../../../../mssql.testscript + + $* +} diff --git a/odb-tests/common/schema/namespace/testscript b/odb-tests/common/schema/namespace/testscript index 0fabe6e..9e4cd78 100644 --- a/odb-tests/common/schema/namespace/testscript +++ b/odb-tests/common/schema/namespace/testscript @@ -31,3 +31,13 @@ if $pgsql $create_schema; $* } + +: mssql +: +if $mssql +{ + .include ../../../mssql.testscript + + $create_schema; + $* +} |