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

Test sp_columns_100 alone #3376

Open
wants to merge 2 commits into
base: BABEL_4_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
4 changes: 4 additions & 0 deletions test/JDBC/input/sp_columns_100.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
-- sla_for_parallel_query_enforced 200000
-- create tables with most of the datatypes

select relname, (select nspname from pg_namespace where oid = relnamespace) from pg_class where relnamespace in (select oid from pg_namespace where nspname in (select nspname from sys.babelfish_namespace_ext))
go

create table var(a char(10), b nchar(9), c nvarchar(8), d varchar(7), e text, f ntext, g varbinary(10), h binary(9), i image, j xml)
go

Expand Down
20 changes: 14 additions & 6 deletions test/JDBC/jdbc_schedule
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@
# 6. If you want the framework to not run certain files, use: ignore#!#<test name>

all
# sp_columns_100

ignore#!#BABEL-1435
ignore#!#BABEL-1446
ignore#!#babelfish_migration_mode-vu-prepare
ignore#!#babelfish_migration_mode-vu-verify
ignore#!#babelfish_migration_mode-vu-cleanup

# BABEL-SP_FKEYS test is very slow and causing github action timeout.

Expand Down Expand Up @@ -73,6 +80,9 @@ ignore#!#host_id-before-16_5-or-15_9-vu-cleanup
ignore#!#objectpropertyex-before-16_5-or-15_9-vu-prepare
ignore#!#objectpropertyex-before-16_5-or-15_9-vu-verify
ignore#!#objectpropertyex-before-16_5-or-15_9-vu-cleanup
ignore#!#test_like_for_AI-before-16_5-or-15_9-vu-prepare
ignore#!#test_like_for_AI-before-16_5-or-15_9-vu-verify
ignore#!#test_like_for_AI-before-16_5-or-15_9-vu-cleanup
ignore#!#BABEL-CASE_EXPR-before-16_5-or-15_9-vu-prepare
ignore#!#BABEL-CASE_EXPR-before-16_5-or-15_9-vu-verify
ignore#!#BABEL-CASE_EXPR-before-16_5-or-15_9-vu-cleanup
Expand All @@ -85,9 +95,6 @@ ignore#!#BABEL-2736-before-15_3-vu-cleanup
ignore#!#smalldatetime_date_cmp-before-15_5-16_1-vu-prepare
ignore#!#smalldatetime_date_cmp-before-15_5-16_1-vu-verify
ignore#!#smalldatetime_date_cmp-before-15_5-16_1-vu-cleanup
ignore#!#restricted_procedures-vu-prepare
ignore#!#restricted_procedures-vu-verify
ignore#!#restricted_procedures-vu-cleanup

# These tests are meant for upgrade scenario prior to (potential) 14_5 release
ignore#!#BABEL-3147-before-14_5-vu-prepare
Expand Down Expand Up @@ -479,13 +486,14 @@ ignore#!#BABEL-5119_before_16_5-vu-cleanup
ignore#!#BABEL-5059_before_16_5-vu-prepare
ignore#!#BABEL-5059_before_16_5-vu-verify
ignore#!#BABEL-5059_before_16_5-vu-cleanup
ignore#!#cast_nvarchar_test_before_16_5-vu-prepare
ignore#!#cast_nvarchar_test_before_16_5-vu-verify
ignore#!#cast_nvarchar_test_before_16_5-vu-cleanup
ignore#!#declare_atatglobalvars_upgrade-before-16_5-vu-cleanup
ignore#!#declare_atatglobalvars_upgrade-before-16_5-vu-prepare
ignore#!#declare_atatglobalvars_upgrade-before-16_5-vu-verify

ignore#!#trim-before-15_11-or-16_7-vu-prepare
ignore#!#trim-before-15_11-or-16_7-vu-verify
ignore#!#trim-before-15_11-or-16_7-vu-cleanup

# getting timed out (TODO: BABEL-5353)
ignore#!#BABEL-SP_TABLE_PRIVILEGES

Loading