-
Notifications
You must be signed in to change notification settings - Fork 28.5k
[SQL] [Docs] typo fixes #2367
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
[SQL] [Docs] typo fixes #2367
Conversation
nchammas
commented
Sep 12, 2014
- Fixed random typo
- Added in missing description for DecimalType
* Fixed random typo * Added in description for BigDecimal
@@ -1110,7 +1109,7 @@ evaluated by the SQL execution engine. A full list of the functions supported c | |||
The range of numbers is from `-9223372036854775808` to `9223372036854775807`. | |||
- `FloatType`: Represents 4-byte single-precision floating point numbers. | |||
- `DoubleType`: Represents 8-byte double-precision floating point numbers. | |||
- `DecimalType`: | |||
- `DecimalType`: Represents 16-byte arbitrary-precision floating point numbers. |
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'm not 100% sure about this, actually, but the description is obviously missing.
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.
Represents arbitrary-precision signed decimal numbers. A BigDecimal consists of an arbitrary precision integer unscaled value and a 32-bit integer scale. Backed internally by java.math.BigDecimal.
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.
Did you mean "A DecimalType consists of..."?
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.
Or perhaps a reordering of the sentences as such?
Represents arbitrary-precision signed decimal numbers. Backed internally by java.math.BigDecimal. A BigDecimal consists of an arbitrary precision integer unscaled value and a 32-bit integer scale.
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.
Sure, either way.
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.
Okie doke. Done. (the latter way)
@marmbrus - These things should probably also be fixed in the just-released 1.1.0 docs: |
QA tests have started for PR 2367 at commit
|
QA tests have finished for PR 2367 at commit
|
Per @marmbrus’s instructions here: apache#2367 (comment)
QA tests have started for PR 2367 at commit
|
QA tests have finished for PR 2367 at commit
|
@marmbrus Is this PR good to go? I'd be happy to update it or close it as required. |
Thanks! Merged. |
* Fixed random typo * Added in missing description for DecimalType Author: Nicholas Chammas <nicholas.chammas@gmail.com> Closes #2367 from nchammas/patch-1 and squashes the following commits: aa528be [Nicholas Chammas] doc fix for SQL DecimalType 3247ac1 [Nicholas Chammas] [SQL] [Docs] typo fixes (cherry picked from commit a523cea) Signed-off-by: Michael Armbrust <michael@databricks.com>