You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To demonstrate the problem I use the following two packages.
CREATE OR REPLACE PACKAGE ut_abc
IS
-- %suite
-- %suitepath(main.abc)
-- %test
PROCEDURE ut_test_01;
END ut_abc;
/
CREATE OR REPLACE PACKAGE BODY ut_abc
IS
PROCEDURE ut_test_01
AS
BEGIN
ut.expect(TRUE).to_be_true;
END;
END ut_abc;
/
CREATE OR REPLACE PACKAGE ut_abc_def
IS
-- %suite
-- %suitepath(main.abc_def)
-- %test
PROCEDURE ut_test_01;
END ut_abc_def;
/
CREATE OR REPLACE PACKAGE BODY ut_abc_def
IS
PROCEDURE ut_test_01
AS
BEGIN
ut.expect(TRUE).to_be_true;
END;
END ut_abc_def;
/
To demonstrate the problem I use the following two packages.
The result would correctly look like this:
But if you set
NLS_SORT
toGERMAN
you will get:BR
Dirk
The text was updated successfully, but these errors were encountered: