From e1916c355f33d860e9bb43309476c9f54103f4f1 Mon Sep 17 00:00:00 2001 From: Deepakshi Mittal Date: Fri, 20 Oct 2023 20:46:57 +0000 Subject: [PATCH] Fix for failing jdbc tests with parallel querey Increased SLA restriction of failing test due to timeout Added order by failing test for sys.all_columns Task: BABEL-4214 Signed-off-by: Deepakshi Mittal --- test/JDBC/expected/sys-all_columns-dep-vu-prepare.out | 4 ++-- test/JDBC/input/functions/objectpropertyex-vu-verify.sql | 2 +- test/JDBC/input/views/sys-all_columns-dep-vu-prepare.sql | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/test/JDBC/expected/sys-all_columns-dep-vu-prepare.out b/test/JDBC/expected/sys-all_columns-dep-vu-prepare.out index 1b9966af3cb..eddd22f144e 100644 --- a/test/JDBC/expected/sys-all_columns-dep-vu-prepare.out +++ b/test/JDBC/expected/sys-all_columns-dep-vu-prepare.out @@ -11,7 +11,7 @@ CREATE PROCEDURE sys_all_columns_dep_vu_prepare_proc1 AS SELECT name, is_nullable, column_id FROM sys.all_columns - WHERE name in ('sac_int_col1', 'sac_text_col_not_null1'); + WHERE name in ('sac_int_col1', 'sac_text_col_not_null1') ORDER BY name; GO CREATE FUNCTION sys_all_columns_dep_vu_prepare_func1() @@ -25,5 +25,5 @@ CREATE VIEW sys_all_columns_dep_vu_prepare_view1 AS SELECT name, max_length, precision FROM sys.all_columns - WHERE name in ('sac_int_col1', 'sac_text_col_not_null1'); + WHERE name in ('sac_int_col1', 'sac_text_col_not_null1') ORDER BY name; GO diff --git a/test/JDBC/input/functions/objectpropertyex-vu-verify.sql b/test/JDBC/input/functions/objectpropertyex-vu-verify.sql index 8424adf09d5..932ae82b21d 100644 --- a/test/JDBC/input/functions/objectpropertyex-vu-verify.sql +++ b/test/JDBC/input/functions/objectpropertyex-vu-verify.sql @@ -1,4 +1,4 @@ --- sla 65000 +-- sla 650000 -- Check for correct case SELECT CASE WHEN OBJECTPROPERTY(OBJECT_ID('objectpropertyex_ownerid_schema.objectpropertyex_ownerid_table'), 'OwnerId') = (SELECT principal_id diff --git a/test/JDBC/input/views/sys-all_columns-dep-vu-prepare.sql b/test/JDBC/input/views/sys-all_columns-dep-vu-prepare.sql index 1b9966af3cb..eddd22f144e 100644 --- a/test/JDBC/input/views/sys-all_columns-dep-vu-prepare.sql +++ b/test/JDBC/input/views/sys-all_columns-dep-vu-prepare.sql @@ -11,7 +11,7 @@ CREATE PROCEDURE sys_all_columns_dep_vu_prepare_proc1 AS SELECT name, is_nullable, column_id FROM sys.all_columns - WHERE name in ('sac_int_col1', 'sac_text_col_not_null1'); + WHERE name in ('sac_int_col1', 'sac_text_col_not_null1') ORDER BY name; GO CREATE FUNCTION sys_all_columns_dep_vu_prepare_func1() @@ -25,5 +25,5 @@ CREATE VIEW sys_all_columns_dep_vu_prepare_view1 AS SELECT name, max_length, precision FROM sys.all_columns - WHERE name in ('sac_int_col1', 'sac_text_col_not_null1'); + WHERE name in ('sac_int_col1', 'sac_text_col_not_null1') ORDER BY name; GO