Skip to content

Commit

Permalink
Update test file
Browse files Browse the repository at this point in the history
Signed-off-by: Shameem Ahmed <[email protected]>
  • Loading branch information
ahmed-shameem committed Sep 25, 2024
1 parent bd0412d commit f4ff773
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/JDBC/expected/BABEL-4046-vu-verify.out
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ varchar
~~END~~


select * from babel4046 ORDER BY (a + b);
select * from babel4046 ORDER BY a, b;
GO
~~START~~
varchar#!#varchar
Expand All @@ -20,7 +20,7 @@ AAA#!#A%
~~END~~


select * from babel4046_2 ORDER BY (a + b);
select * from babel4046_2 ORDER BY a, b;
GO
~~START~~
varchar#!#varchar
Expand Down
4 changes: 2 additions & 2 deletions test/JDBC/input/BABEL-4046-vu-verify.sql
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ select options_t.name
on options_t.name like 'UM\_%' + svc_defs.svc_name escape '\'
go

select * from babel4046 ORDER BY (a + b);
select * from babel4046 ORDER BY a, b;
GO

select * from babel4046_2 ORDER BY (a + b);
select * from babel4046_2 ORDER BY a, b;
GO

;with EMP_T AS (
Expand Down

0 comments on commit f4ff773

Please sign in to comment.