Uh oh!
There was an error while loading. Please reload this page.
[Fix](external catalog) where tables in the information_schema could not be displayed - #49607
Merged
Conversation
Thearas
commented
Mar 28, 2025
Contributor
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
zy-kkk
previously approved these changes
Mar 28, 2025
zy-kkk
commented
Mar 28, 2025
Member
run buildall |
Contributor
PR approved by at least one committer and no changes requested. |
Contributor
PR approved by anyone and no changes requested. |
doris-robot
commented
Mar 28, 2025
TPC-H: Total hot run time: 33904 ms |
doris-robot
commented
Mar 28, 2025
TPC-DS: Total hot run time: 193195 ms |
doris-robot
commented
Mar 28, 2025
ClickBench: Total hot run time: 31.21 s |
morningman
left a comment
Contributor
There was a problem hiding this comment.
Please add a test case for this issue
qzsee
commented
Mar 28, 2025
ContributorAuthor
done |
dqz123
commented
Mar 28, 2025
run buildall |
doris-robot
commented
Mar 28, 2025
TPC-H: Total hot run time: 34015 ms |
doris-robot
commented
Mar 28, 2025
TPC-DS: Total hot run time: 185352 ms |
doris-robot
commented
Mar 28, 2025
ClickBench: Total hot run time: 30.78 s |
added 2 commits
April 24, 2025 12:24
zy-kkk
commented
Apr 24, 2025
Member
run buildall |
doris-robot
commented
Apr 24, 2025
TPC-H: Total hot run time: 34892 ms |
doris-robot
commented
Apr 24, 2025
TPC-DS: Total hot run time: 186357 ms |
doris-robot
commented
Apr 24, 2025
ClickBench: Total hot run time: 30.05 s |
zy-kkk
approved these changes
May 14, 2025
github-actionsBot
pushed a commit
that referenced
this pull request
May 14, 2025
…not be displayed (#49607) Problem Summary: When FE case insensitivity is enabled, tables under the external catalog information_schema cannot be viewed ``` sql mysql> show catalogs; +-----------+-------------+----------+-----------+----------------------------+----------------+------------------------+ | CatalogId | CatalogName | Type | IsCurrent | CreateTime | LastUpdateTime | Comment | +-----------+-------------+----------+-----------+----------------------------+----------------+------------------------+ | 13007 | b | hms | No | 2025-03-27 16:37:10.188367 | NULL | | | 13015 | hive | hms | No | 2025-03-27 17:03:45.259390 | NULL | | | 0 | internal | internal | Yes | NULL | NULL | Doris internal catalog | +-----------+-------------+----------+-----------+----------------------------+----------------+------------------------+ 3 rows in set (0.03 sec) mysql> switch hive; Query OK, 0 rows affected (0.00 sec) mysql> show databases; +--------------------+ | Database | +--------------------+ | aaaaaaa | | icebergdb | | information_schema | | mysql | +--------------------+ 4 rows in set (0.85 sec) mysql> use information_schema Database changed MySQL [information_schema]> show tables; Empty set (0.00 sec) ``` tables in information_schema should not empty Co-authored-by: garenshi <garenshi@tencent.com>
github-actionsBot
pushed a commit
that referenced
this pull request
May 14, 2025
…not be displayed (#49607) Problem Summary: When FE case insensitivity is enabled, tables under the external catalog information_schema cannot be viewed ``` sql mysql> show catalogs; +-----------+-------------+----------+-----------+----------------------------+----------------+------------------------+ | CatalogId | CatalogName | Type | IsCurrent | CreateTime | LastUpdateTime | Comment | +-----------+-------------+----------+-----------+----------------------------+----------------+------------------------+ | 13007 | b | hms | No | 2025-03-27 16:37:10.188367 | NULL | | | 13015 | hive | hms | No | 2025-03-27 17:03:45.259390 | NULL | | | 0 | internal | internal | Yes | NULL | NULL | Doris internal catalog | +-----------+-------------+----------+-----------+----------------------------+----------------+------------------------+ 3 rows in set (0.03 sec) mysql> switch hive; Query OK, 0 rows affected (0.00 sec) mysql> show databases; +--------------------+ | Database | +--------------------+ | aaaaaaa | | icebergdb | | information_schema | | mysql | +--------------------+ 4 rows in set (0.85 sec) mysql> use information_schema Database changed MySQL [information_schema]> show tables; Empty set (0.00 sec) ``` tables in information_schema should not empty Co-authored-by: garenshi <garenshi@tencent.com>
koarz pushed a commit
to koarz/doris
that referenced
this pull request
Jun 4, 2025
…not be displayed (apache#49607) Problem Summary: When FE case insensitivity is enabled, tables under the external catalog information_schema cannot be viewed ``` sql mysql> show catalogs; +-----------+-------------+----------+-----------+----------------------------+----------------+------------------------+ | CatalogId | CatalogName | Type | IsCurrent | CreateTime | LastUpdateTime | Comment | +-----------+-------------+----------+-----------+----------------------------+----------------+------------------------+ | 13007 | b | hms | No | 2025-03-27 16:37:10.188367 | NULL | | | 13015 | hive | hms | No | 2025-03-27 17:03:45.259390 | NULL | | | 0 | internal | internal | Yes | NULL | NULL | Doris internal catalog | +-----------+-------------+----------+-----------+----------------------------+----------------+------------------------+ 3 rows in set (0.03 sec) mysql> switch hive; Query OK, 0 rows affected (0.00 sec) mysql> show databases; +--------------------+ | Database | +--------------------+ | aaaaaaa | | icebergdb | | information_schema | | mysql | +--------------------+ 4 rows in set (0.85 sec) mysql> use information_schema Database changed MySQL [information_schema]> show tables; Empty set (0.00 sec) ``` tables in information_schema should not empty Co-authored-by: garenshi <garenshi@tencent.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What problem does this PR solve?
Problem Summary:
When FE case insensitivity is enabled, tables under the external catalog information_schema cannot be viewed
tables in information_schema should not empty
Release note
None
Check List (For Author)
Test
Behavior changed:
Does this need documentation?
Check List (For Reviewer who merge this PR)