Skip to content

Commit 70f93d5

Browse files
nchammasmarmbrus
authored andcommitted
[SQL] [Docs] typo fixes
* Fixed random typo * Added in missing description for DecimalType Author: Nicholas Chammas <[email protected]> Closes apache#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 <[email protected]>
1 parent 44e534e commit 70f93d5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

docs/sql-programming-guide.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -918,7 +918,6 @@ options.
918918
## Migration Guide for Shark User
919919

920920
### Scheduling
921-
s
922921
To set a [Fair Scheduler](job-scheduling.html#fair-scheduler-pools) pool for a JDBC client session,
923922
users can set the `spark.sql.thriftserver.scheduler.pool` variable:
924923

@@ -1110,7 +1109,7 @@ evaluated by the SQL execution engine. A full list of the functions supported c
11101109
The range of numbers is from `-9223372036854775808` to `9223372036854775807`.
11111110
- `FloatType`: Represents 4-byte single-precision floating point numbers.
11121111
- `DoubleType`: Represents 8-byte double-precision floating point numbers.
1113-
- `DecimalType`:
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.
11141113
* String type
11151114
- `StringType`: Represents character string values.
11161115
* Binary type

0 commit comments

Comments
 (0)