Skip to content

Commit

Permalink
Update test files
Browse files Browse the repository at this point in the history
  • Loading branch information
basasairohan committed Jan 3, 2024
1 parent 1a05688 commit 1a59a9c
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 58 deletions.
6 changes: 0 additions & 6 deletions test/JDBC/expected/babel-4475-vu-cleanup.out
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,6 @@ go
drop function babel_4475_f2
go

drop function babel_4475_f3
go

drop function babel_4475_f4
go

drop procedure babel_4475_p1
go

Expand Down
12 changes: 0 additions & 12 deletions test/JDBC/expected/babel-4475-vu-prepare.out
Original file line number Diff line number Diff line change
Expand Up @@ -28,24 +28,12 @@ go
create view babel_4475_v3 as select cast(cast('ab' as rowversion) as varchar(2))
go

create function babel_4475_f3() returns table
as return (
select cast(cast('ab' as rowversion) as varchar(2))
)
go

create procedure babel_4475_p3 as select cast(cast('ab' as rowversion) as varchar(2))
go

create view babel_4475_v4 as select cast(cast('ab' as rowversion) as pg_catalog.varchar(2))
go

create function babel_4475_f4() returns table
as return (
select cast(cast('ab' as rowversion) as pg_catalog.varchar(2))
)
go

create procedure babel_4475_p4 as select cast(cast('ab' as rowversion) as pg_catalog.varchar(2))
go

Expand Down
16 changes: 0 additions & 16 deletions test/JDBC/expected/babel-4475-vu-verify.out
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,6 @@ ab
~~END~~


select babel_4475_f3()
go
~~START~~
varchar
ab
~~END~~


exec babel_4475_p3
go
~~START~~
Expand All @@ -81,14 +73,6 @@ ab
~~END~~


select babel_4475_f4()
go
~~START~~
varchar
ab
~~END~~


exec babel_4475_p4
go
~~START~~
Expand Down
6 changes: 0 additions & 6 deletions test/JDBC/input/babel-4475-vu-cleanup.sql
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,6 @@ go
drop function babel_4475_f2
go

drop function babel_4475_f3
go

drop function babel_4475_f4
go

drop procedure babel_4475_p1
go

Expand Down
12 changes: 0 additions & 12 deletions test/JDBC/input/babel-4475-vu-prepare.sql
Original file line number Diff line number Diff line change
Expand Up @@ -28,24 +28,12 @@ go
create view babel_4475_v3 as select cast(cast('ab' as rowversion) as varchar(2))
go

create function babel_4475_f3() returns table
as return (
select cast(cast('ab' as rowversion) as varchar(2))
)
go

create procedure babel_4475_p3 as select cast(cast('ab' as rowversion) as varchar(2))
go

create view babel_4475_v4 as select cast(cast('ab' as rowversion) as pg_catalog.varchar(2))
go

create function babel_4475_f4() returns table
as return (
select cast(cast('ab' as rowversion) as pg_catalog.varchar(2))
)
go

create procedure babel_4475_p4 as select cast(cast('ab' as rowversion) as pg_catalog.varchar(2))
go

Expand Down
6 changes: 0 additions & 6 deletions test/JDBC/input/babel-4475-vu-verify.sql
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,12 @@ go
select * from babel_4475_v3
go

select babel_4475_f3()
go

exec babel_4475_p3
go

select * from babel_4475_v4
go

select babel_4475_f4()
go

exec babel_4475_p4
go

Expand Down

0 comments on commit 1a59a9c

Please sign in to comment.