File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -1265,11 +1265,7 @@ This command builds a new assembly jar that includes Hive. Note that this Hive a
1265
1265
on all of the worker nodes, as they will need access to the Hive serialization and deserialization libraries
1266
1266
(SerDes) in order to access data stored in Hive.
1267
1267
1268
- Configuration of Hive is done by placing your ` hive-site.xml ` file in ` conf/ ` . Please note when running
1269
- the query on YARN cluster (` yarn-cluster ` mode),the ` datanucleus ` jars under ` lib_managed/jars ` directory
1270
- and ` hive-site.xml ` under ` conf/ ` directory need to be available on driver and all executors launched by
1271
- YARN cluster. The convenient way to do this is adding them through ` --jars ` option and ` --file ` option of
1272
- spark-submit command.
1268
+ Configuration of Hive is done by placing your ` hive-site.xml ` file in ` conf/ ` .
1273
1269
1274
1270
1275
1271
<div class =" codetabs " >
Original file line number Diff line number Diff line change @@ -293,7 +293,7 @@ class SqlParser extends AbstractSparkSQLParser with DataTypeParser {
293
293
| AVG ~ " (" ~> expression <~ " )" ^^ { case exp => Average (exp) }
294
294
| MIN ~ " (" ~> expression <~ " )" ^^ { case exp => Min (exp) }
295
295
| MAX ~ " (" ~> expression <~ " )" ^^ { case exp => Max (exp) }
296
- | STDDEV ~ " (" ~> expression <~ " (" ^^ {case exp => Stddev (exp)}
296
+ | STDDEV ~ " (" ~> expression <~ " (" ^^ {case exp => Stddev (exp)}
297
297
| UPPER ~ " (" ~> expression <~ " )" ^^ { case exp => Upper (exp) }
298
298
| LOWER ~ " (" ~> expression <~ " )" ^^ { case exp => Lower (exp) }
299
299
| IF ~ " (" ~> expression ~ (" ," ~> expression) ~ (" ," ~> expression) <~ " )" ^^
You can’t perform that action at this time.
0 commit comments