aboutsummaryrefslogtreecommitdiff
path: root/sql/README.md
diff options
context:
space:
mode:
authorSasaki Toru <sasakitoa@nttdata.co.jp>2016-02-11 09:30:36 +0000
committerSean Owen <sowen@cloudera.com>2016-02-11 09:30:36 +0000
commitc2f21d88981789fe3366f2c4040445aeff5bf083 (patch)
tree6a6db0982a98443ef5a4fd9642e3fefffcf40064 /sql/README.md
parent18bcbbdd84e80222d1d29530831c6d68d02e7593 (diff)
downloadspark-c2f21d88981789fe3366f2c4040445aeff5bf083.tar.gz
spark-c2f21d88981789fe3366f2c4040445aeff5bf083.tar.bz2
spark-c2f21d88981789fe3366f2c4040445aeff5bf083.zip
[SPARK-13264][DOC] Removed multi-byte characters in spark-env.sh.template
In spark-env.sh.template, there are multi-byte characters, this PR will remove it. Author: Sasaki Toru <sasakitoa@nttdata.co.jp> Closes #11149 from sasakitoa/remove_multibyte_in_sparkenv.
Diffstat (limited to 'sql/README.md')
-rw-r--r--sql/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/README.md b/sql/README.md
index a13bdab6d4..9ea271d33d 100644
--- a/sql/README.md
+++ b/sql/README.md
@@ -5,7 +5,7 @@ This module provides support for executing relational queries expressed in eithe
Spark SQL is broken up into four subprojects:
- Catalyst (sql/catalyst) - An implementation-agnostic framework for manipulating trees of relational operators and expressions.
- - Execution (sql/core) - A query planner / execution engine for translating Catalyst’s logical query plans into Spark RDDs. This component also includes a new public interface, SQLContext, that allows users to execute SQL or LINQ statements against existing RDDs and Parquet files.
+ - Execution (sql/core) - A query planner / execution engine for translating Catalyst's logical query plans into Spark RDDs. This component also includes a new public interface, SQLContext, that allows users to execute SQL or LINQ statements against existing RDDs and Parquet files.
- Hive Support (sql/hive) - Includes an extension of SQLContext called HiveContext that allows users to write queries using a subset of HiveQL and access data from a Hive Metastore using Hive SerDes. There are also wrappers that allows users to run queries that include Hive UDFs, UDAFs, and UDTFs.
- HiveServer and CLI support (sql/hive-thriftserver) - Includes support for the SQL CLI (bin/spark-sql) and a HiveServer2 (for JDBC/ODBC) compatible server.