We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Describe the bug Current implementation of ut_runner.get_suites_info doesn't always return suites.
ut_runner.get_suites_info
This is visible when trying to find one of our test suites:
SELECT * FROM TABLE(ut_runner.get_suites_info(upper('UT3$USER#'), upper('EXPECTATIONS')));
The query should return data but it isn't
Provide version info 3.1.8-develop
The text was updated successfully, but these errors were encountered:
This query however provides valid output:
SELECT * FROM TABLE(ut_runner.get_suites_info(upper('UT3$USER#'))) WHERE item_type = 'UT_SUITE' and object_name = 'EXPECTATIONS';
This form is however not recommended as it's much slower to process.
Sorry, something went wrong.
This was introduced in 3.1.8-develop
Fixed issue with get_Cached_suite_rows syntax.
11b5f84
Resolves #974
Successfully merging a pull request may close this issue.
Describe the bug
Current implementation of
ut_runner.get_suites_info
doesn't always return suites.This is visible when trying to find one of our test suites:
The query should return data but it isn't
Provide version info
3.1.8-develop
The text was updated successfully, but these errors were encountered: