-
Notifications
You must be signed in to change notification settings - Fork 752
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
Tracking: Support DataType::Decimal #2931
Comments
Hi @sundy-li, I have a question about decimal data type which will be implemented in the feature. Does the community has the plan to implement it? |
How about making decimal's physical_type to Int128 ? |
do we need to/ able to support Decimal when check results column types in the sql logical test? |
Decimal will be formatted into string, so it's same as check string result. |
We also need a task: put the decimal-type column stats to segment to fast pruning. |
Summary
Description for this feature.
Now we have introduced Decimal128 and Decimal256 types, let's add more features on decimal types.
Below is old comments:
Decimal is Synonymous with Number type.
It represents a range up to 38 digits, with an optional precision and scale:
Precision:
Total number of digits allowed.
Scale:
Number of digits allowed to the right of the decimal point.
By default
Number
meansNUMBER(38,0)
orDecimal(38, 0)
The text was updated successfully, but these errors were encountered: