aboutsummaryrefslogtreecommitdiff
path: root/docs/sql-programming-guide.md
diff options
context:
space:
mode:
authorNicholas Chammas <nicholas.chammas@gmail.com>2014-09-13 12:34:20 -0700
committerMichael Armbrust <michael@databricks.com>2014-09-13 12:34:20 -0700
commita523ceaf159733dabcef84c7adc1463546679f65 (patch)
tree8dc0ff7b6ab6ae7e28dd64aa54b0dcdda46bdc80 /docs/sql-programming-guide.md
parentb4dded40fbecb485f1ddfd8316b44d42a1554d64 (diff)
downloadspark-a523ceaf159733dabcef84c7adc1463546679f65.tar.gz
spark-a523ceaf159733dabcef84c7adc1463546679f65.tar.bz2
spark-a523ceaf159733dabcef84c7adc1463546679f65.zip
[SQL] [Docs] typo fixes
* 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
Diffstat (limited to 'docs/sql-programming-guide.md')
-rw-r--r--docs/sql-programming-guide.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/sql-programming-guide.md b/docs/sql-programming-guide.md
index 3159d52787..8d41fdec69 100644
--- a/docs/sql-programming-guide.md
+++ b/docs/sql-programming-guide.md
@@ -918,7 +918,6 @@ options.
## Migration Guide for Shark User
### Scheduling
-s
To set a [Fair Scheduler](job-scheduling.html#fair-scheduler-pools) pool for a JDBC client session,
users can set the `spark.sql.thriftserver.scheduler.pool` variable:
@@ -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 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.
* String type
- `StringType`: Represents character string values.
* Binary type