diff options
Diffstat (limited to 'lib/odbc/test')
-rw-r--r-- | lib/odbc/test/odbc_test_lib.erl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/odbc/test/odbc_test_lib.erl b/lib/odbc/test/odbc_test_lib.erl index e814cd2aca..cf1f523657 100644 --- a/lib/odbc/test/odbc_test_lib.erl +++ b/lib/odbc/test/odbc_test_lib.erl @@ -79,7 +79,12 @@ strict(_,_) -> ok. platform_options() -> - []. + case ?RDBMS of + oracle -> + [{scrollable_cursors, off}]; + _ -> + [] + end. skip() -> case os:type() of |