added relevant yaml files and testcases for basic check for oracle#37816
added relevant yaml files and testcases for basic check for oracle#37816manasagar wants to merge 3 commits intoapache:masterfrom
Conversation
…d to add connecter dependency in infra)
|
@terrymanu PTAL |
terrymanu
left a comment
There was a problem hiding this comment.
No one can review this many changes.
And there are so many attributes may impact performance; it's necessary to test first or consider alternative solutions.
I understand than the solution for this problem will require that sharding sphere itself recognises these tables in a db instead off us defining it any advice in this direction would be appreciated because if we only add partial number of tables on our own it will give error when it cant find a different table or please propose what type of test is required for the current implementation |
Fixes #37766.
Changes proposed in this pull request:
SELECT view_name
FROM all_views
WHERE owner = 'SYS'
AND (view_name LIKE 'ALL\%' ESCAPE '\'
OR view_name LIKE 'DBA\%' ESCAPE '\'
OR view_name LIKE 'USER\_%' ESCAPE '\')
AND view_name NOT LIKE '%\AW\%' ESCAPE '\'
ORDER BY view_name
Before committing this PR, I'm sure that I have checked the following options:
./mvnw clean install -B -T1C -Dmaven.javadoc.skip -Dmaven.jacoco.skip -e.