Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

clean up left over objects properly #3325

Open
wants to merge 1 commit into
base: BABEL_5_X_DEV
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion test/JDBC/input/BABEL-3952-vu-verify.sql
Original file line number Diff line number Diff line change
Expand Up @@ -261,4 +261,7 @@ Create table dbucket(a time)
insert into dbucket (a) values(date_bucket(minute,12, CAST('12:32:23.23' as time)))
Select * from dbucket
Select date_bucket(second,10, a) from dbucket
GO
GO

DROP TABLE IF EXISTS dbucket
GO
3 changes: 3 additions & 0 deletions test/JDBC/input/Test-Identity-vu-cleanup.sql
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ GO
DROP PROCEDURE test_identity_vu_prepare_p5
GO

DROP VIEW scope_identity_view
GO

DROP TABLE test_identity_vu_prepare_t1
GO

Expand Down
4 changes: 3 additions & 1 deletion test/JDBC/input/babel_ddl.sql
Original file line number Diff line number Diff line change
Expand Up @@ -253,4 +253,6 @@ GO
drop table computed_column_t1;
GO
drop table computed_column_t2;
GO
GO
drop table computed_column_error;
GO
2 changes: 2 additions & 0 deletions test/JDBC/input/babel_unicode_charset.sql
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,5 @@ select "你好世界" from unicode_test with(nolock);
go
select 中文列名 from unicode_test with(nolock);
go
drop table if exists unicode_test;
go
3 changes: 3 additions & 0 deletions test/JDBC/input/functions/BABEL-3953-datetrunc-vu-verify.sql
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,9 @@ Select * from dtrunc
Select datetrunc(second, a) from dtrunc
GO

DROP TABLE IF EXISTS dtrunc
GO

SET DATEFIRST 1
SELECT DATETRUNC(ISO_WEEK, CAST('2020-09-13 21:32:32.23' as datetime2))
SELECT DATETRUNC(WEEK, CAST('2020-09-13 21:32:32.23' as datetime2))
Expand Down
3 changes: 3 additions & 0 deletions test/JDBC/input/functions/sys-eomonth-vu-cleanup.sql
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@ GO

DROP PROCEDURE IF EXISTS GetEndOfNextMonthDate_EOMONTH;
GO

DROP Table eomonth_datestable
GO
Original file line number Diff line number Diff line change
Expand Up @@ -484,6 +484,9 @@ GO
EXECUTE myproc2
GO

DROP TABLE mytab
GO

DROP PROCEDURE myproc
GO

Expand Down
2 changes: 2 additions & 0 deletions test/JDBC/input/todatetimeoffset.sql
Original file line number Diff line number Diff line change
Expand Up @@ -241,3 +241,5 @@ GO
Select todatetimeoffset('10000-12-31 23:12:00.123 +00:00',743)
GO

drop table tem
GO
3 changes: 3 additions & 0 deletions test/JDBC/input/views/sys-index_columns-vu-cleanup.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ GO
USE master
GO

DROP table sys_index_columns_vu_prepare_t1
GO

DROP TABLE sys_index_columns_vu_prepare_t3;
GO

Expand Down
2 changes: 0 additions & 2 deletions test/JDBC/parallel_query_jdbc_schedule
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,4 @@ ignore#!#BABEL-3013
ignore#!#BABEL-SP_TABLE_PRIVILEGES
ignore#!#ISC-Columns-vu-verify
ignore#!#four-part-names-vu-verify
#TODO: BABEL-5472
ignore#!#sp_columns_100

Loading