-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
[fix](Nereids) fix insert into table with null literal default value #39122
Conversation
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
run buildall |
TPC-H: Total hot run time: 39850 ms
|
PR approved by at least one committer and no changes requested. |
PR approved by anyone and no changes requested. |
@@ -1,8 +1,15 @@ | |||
-- This file is automatically generated. You should know what you did if you want to edit this | |||
-- !select1 -- | |||
10 10000 10000000 92233720368547758 19223372036854775807 10.3 10.3 | |||
10 10000 10000000 92233720368547758 19223372036854775807 10.3 10.3 | |||
10 10000 10000000 92233720368547758 19223372036854775807 10.30 10.3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why this pr will change 10.3
to 10.30
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think it is not this pr changed the result scale. the regression framework do not check precision and scale, so the test could pass even if scale has been changed
run buildall |
TPC-H: Total hot run time: 39688 ms
|
TPC-DS: Total hot run time: 201202 ms
|
ClickBench: Total hot run time: 30.68 s
|
run p0 |
…pache#39122) Problem: when use insert with default value null, it can not be insert successfully Solved: when column is allow to be null, it can be null in create table with null default value
…39122) Problem: when use insert with default value null, it can not be insert successfully Solved: when column is allow to be null, it can be null in create table with null default value
…pache#39122) Problem: when use insert with default value null, it can not be insert successfully Solved: when column is allow to be null, it can be null in create table with null default value
…pache#39122) Problem: when use insert with default value null, it can not be insert successfully Solved: when column is allow to be null, it can be null in create table with null default value
…pache#39122) Problem: when use insert with default value null, it can not be insert successfully Solved: when column is allow to be null, it can be null in create table with null default value
…pache#39122) Problem: when use insert with default value null, it can not be insert successfully Solved: when column is allow to be null, it can be null in create table with null default value
…pache#39122) (apache#39673) cherry-pick from master apache#39122 Problem: when use insert with default value null, it can not be insert successfully Solved: when column is allow to be null, it can be null in create table with null default value
Problem:
when use insert with default value null, it can not be insert successfully
Solved:
when column is allow to be null, it can be null in create table with null default value