-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[Enhancement](compatible) display dateV2/datetimeV2/decimalv3 as date/datetime/decimal when show column #32233
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
Conversation
|
Thank you for your contribution to Apache Doris. |
5edf475 to
7451f35
Compare
|
run buildall |
TPC-H: Total hot run time: 38313 ms |
…/datetime/decimal when show column
7451f35 to
63d928c
Compare
|
run buildall |
TPC-H: Total hot run time: 38014 ms |
|
If it is date/datetime, then where could we find its actual type? For example, the user create a table with date column in 1.1.4 and then upgrade to 2.0.3, its actual type is datev1, and the user create a table in 2.0.3 and its type is also date but its actual type is datev2. How do we find the difference between the two columns? |
|
We're closing this PR because it hasn't been updated in a while. |
Proposed changes
Issue Number: close #xxx
There is column with type
date/datetime/decimalwhen create table,but the column type returned fromSHOW FULL COLUMNS FROM xxxisdateV2/datetimeV2/decimalv3. For example:Create table:
Show columns:
It is necessary to display
dateV2/datetimeV2/decimalv3asdate/datetime/decimalinShowColumnStmt. As follows:Related PR:#18358