Skip to content

Commit

Permalink
Fix for failing jdbc tests with parallel querey
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
deepakshi-mittal committed Oct 20, 2023
1 parent 4ce5bb1 commit e1916c3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions test/JDBC/expected/sys-all_columns-dep-vu-prepare.out
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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
2 changes: 1 addition & 1 deletion test/JDBC/input/functions/objectpropertyex-vu-verify.sql
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions test/JDBC/input/views/sys-all_columns-dep-vu-prepare.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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

0 comments on commit e1916c3

Please sign in to comment.