-
Notifications
You must be signed in to change notification settings - Fork 1.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
add sql level test for decimal data type #2200
Merged
Dandandan
merged 5 commits into
apache:master
from
liukun4515:decimal_test_in_sql_level
Apr 14, 2022
Merged
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
39293c2
add sql level test for decimal data type
liukun4515 39848f9
Merge remote-tracking branch 'upstream/master' into decimal_test_in_s…
liukun4515 4e0ac61
add decimal test
liukun4515 c6af4ee
add license for new file
liukun4515 7925799
address comments
liukun4515 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
c1,c2,c3,c4,c5 | ||
0.00001,0.000000000001,1,true,0.000014 | ||
0.00002,0.000000000002,2,true,0.000025 | ||
0.00002,0.000000000002,3,false,0.000019 | ||
0.00003,0.000000000003,4,true,0.000032 | ||
0.00003,0.000000000003,5,false,0.000035 | ||
0.00003,0.000000000003,5,true,0.000011 | ||
0.00004,0.000000000004,5,true,0.000044 | ||
0.00004,0.000000000004,12,false,0.000040 | ||
0.00004,0.000000000004,14,true,0.000040 | ||
0.00004,0.000000000004,8,false,0.000044 | ||
0.00005,0.000000000005,9,true,0.000052 | ||
0.00005,0.000000000005,4,true,0.000078 | ||
0.00005,0.000000000005,8,false,0.000033 | ||
0.00005,0.000000000005,100,true,0.000068 | ||
0.00005,0.000000000005,1,false,0.000100 | ||
Oops, something went wrong.
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.
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 often find there's not new line for PR because of neglection.
I think I can add a editor config for this.
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.
#2224