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

[CBRD-25411] Modify PL/CSQL test cases to exclude Korean verification #1949

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ null


!cubrid
큐브�
큐�
===================================================
0

Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ null

cubrid!!!!
cubr
큐브리�
�
===================================================
0

Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,6 @@ bbb-ccc-ddd-eee
aaa-bbb-ccc-ddd-eee
aaa-bbb-ccc-ddd-eee
[ ]
[]
いイ基
いイ基盤
いイ基盤
===================================================
0

Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ begin
dbms_output.put_line(LPAD('cubrid', NULL));
dbms_output.put_line(LPAD('cubrid', 7, '!' ));
dbms_output.put_line(LPAD('cubrid', -1, '!' ));
dbms_output.put_line(LPAD('큐브리드', 7, '!'));
dbms_output.put_line(LPAD('큐브리드', 4, '!'));
dbms_output.put_line(LPAD('cubrid', 7, NULL));
end;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ begin
dbms_output.put_line(RPAD('cubrid', NULL));
dbms_output.put_line(RPAD('cubrid', 10, '!' ));
dbms_output.put_line(RPAD('cubrid', 4, '!' ));
dbms_output.put_line(RPAD('큐브리드', 10, '!')); -- multibyte korean dbms_output unrecognizable
dbms_output.put_line(RPAD('큐브리드', 2, '!')); -- multibyte korean dbms_output unrecognizable
dbms_output.put_line(RPAD('cubrid', 10, NULL));
end;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,6 @@ begin
dbms_output.put_line(SUBSTRING_INDEX('aaa-bbb-ccc-ddd-eee', '-', -200));
dbms_output.put_line('[' || SUBSTRING_INDEX(' ', ' ', 2) || ']');

dbms_output.put_line('[' || SUBSTRING_INDEX('いイ基盤','い',1) || ']');
dbms_output.put_line(SUBSTRING_INDEX('いイ基盤','盤',1));
dbms_output.put_line(SUBSTRING_INDEX('いイ基盤','詳l',2));
dbms_output.put_line(SUBSTRING_INDEX('いイ基盤','詳',-1));
end;

select count(*) from db_stored_procedure where sp_name = 't';
Expand Down