Skip to content

Commit aa528be

Browse files
committed
doc fix for SQL DecimalType
Per @marmbrus’s instructions here: apache#2367 (comment)
1 parent 3247ac1 commit aa528be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/sql-programming-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1109,7 +1109,7 @@ evaluated by the SQL execution engine. A full list of the functions supported c
11091109
The range of numbers is from `-9223372036854775808` to `9223372036854775807`.
11101110
- `FloatType`: Represents 4-byte single-precision floating point numbers.
11111111
- `DoubleType`: Represents 8-byte double-precision floating point numbers.
1112-
- `DecimalType`: Represents 16-byte arbitrary-precision floating point numbers.
1112+
- `DecimalType`: 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.
11131113
* String type
11141114
- `StringType`: Represents character string values.
11151115
* Binary type

0 commit comments

Comments
 (0)