aboutsummaryrefslogtreecommitdiff
path: root/sql
Commit message (Expand)AuthorAgeFilesLines
* [SPARK-15171][SQL] Remove the references to deprecated method dataset.registe...Sean Zhong2016-05-1858-334/+339
* [SPARK-14346][SQL] Native SHOW CREATE TABLE for Hive tables/viewsCheng Lian2016-05-174-58/+333
* [SPARK-11735][CORE][SQL] Add a check in the constructor of SQLContext/SparkSe...Shixiong Zhu2016-05-172-0/+3
* [MINOR][DOCS] Replace remaining 'sqlContext' in ScalaDoc/JavaDoc.Dongjoon Hyun2016-05-175-14/+14
* [SPARK-10216][SQL] Avoid creating empty files during overwriting with group b...hyukjinkwon2016-05-174-126/+182
* [SPARK-14346][SQL][FOLLOW-UP] add tests for CREAT TABLE USING with partition ...Wenchen Fan2016-05-173-2/+106
* [SPARK-15165] [SQL] Codegen can break because toCommentSafeString is not actu...Kousuke Saruta2016-05-173-1/+320
* [SPARK-15351][SQL] RowEncoder should support array as the external type for A...Wenchen Fan2016-05-175-55/+92
* [SPARK-15290][BUILD] Move annotations, like @Since / @DeveloperApi, into spar...Sean Owen2016-05-174-4/+4
* [SPARK-14942][SQL][STREAMING] Reduce delay between batch construction and exe...Liwei Lin2016-05-164-19/+99
* [SPARK-15253][SQL] Support old table schema config key "spark.sql.sources.sch...Sean Zhong2016-05-162-11/+21
* [MINOR] Fix TyposZheng RuiFeng2016-05-153-7/+5
* [SPARK-12972][CORE] Update org.apache.httpcomponents.httpclientSean Owen2016-05-151-6/+5
* [TRIVIAL] Add () to SparkSession's builder functionTejas Patil2016-05-131-1/+1
* [SPARK-15267][SQL] Refactor options for JDBC and ORC data sources and change ...hyukjinkwon2016-05-137-62/+134
* [SPARK-15310][SQL] Rename HiveTypeCoercion -> TypeCoercionReynold Xin2016-05-136-54/+50
* [SPARK-13866] [SQL] Handle decimal type in CSV inference at CSV data source.hyukjinkwon2016-05-124-4/+81
* [SPARK-14541][SQL] Support IFNULL, NULLIF, NVL and NVL2Reynold Xin2016-05-128-9/+194
* [SPARK-15306][SQL] Move object expressions into expressions.objects packageReynold Xin2016-05-1213-3/+16
* [SPARK-10605][SQL] Create native collect_list/collect_set aggregatesHerman van Hovell2016-05-126-37/+149
* [SPARK-14897][SQL] upgrade to jetty 9.2.16bomeng2016-05-121-9/+7
* [SPARK-14684][SPARK-15277][SQL] Partition Spec Validation in SessionCatalog a...gatorsmile2016-05-126-58/+248
* [SPARK-15094][SPARK-14803][SQL] Remove extra Project added in EliminateSerial...Liang-Chi Hsieh2016-05-122-10/+62
* [SPARK-15171][SQL] Deprecate registerTempTable and add dataset.createTempViewSean Zhong2016-05-1233-78/+123
* [SPARK-15160][SQL] support data source table in InMemoryCatalogWenchen Fan2016-05-118-67/+114
* [SPARK-14346] SHOW CREATE TABLE for data source tablesCheng Lian2016-05-1114-127/+458
* [SPARK-15080][CORE] Break copyAndReset into copy and resetSandeep Singh2016-05-121-4/+9
* [SPARK-15072][SQL][PYSPARK] FollowUp: Remove SparkSession.withHiveSupport in ...Sandeep Singh2016-05-111-1/+1
* [SPARK-15264][SPARK-15274][SQL] CSV Reader Error on Blank Column NamesBill Chambers2016-05-113-4/+21
* [SPARK-15276][SQL] CREATE TABLE with LOCATION should imply EXTERNALAndrew Or2016-05-114-14/+23
* [SPARK-15257][SQL] Require CREATE EXTERNAL TABLE to specify LOCATIONAndrew Or2016-05-117-14/+31
* [SPARK-15248][SQL] Make MetastoreFileCatalog consider directories from partit...Tathagata Das2016-05-113-11/+67
* [SPARK-15259] Sort time metric should not include spill and record insertion ...Eric Liang2016-05-112-7/+9
* [SPARK-15241] [SPARK-15242] [SQL] fix 2 decimal-related issues in RowEncoderWenchen Fan2016-05-114-10/+29
* [SPARK-14933][HOTFIX] Replace `sqlContext` with `spark`.Dongjoon Hyun2016-05-111-4/+4
* [SPARK-15268][SQL] Make JavaTypeInference work with UDTRegistrationLiang-Chi Hsieh2016-05-111-0/+5
* [SPARK-14933][SQL] Failed to create view out of a parquet or orc tablexin Wu2016-05-113-2/+62
* [SPARK-15231][SQL] Document the semantic of saveAsTable and insertInto and do...Shixiong Zhu2016-05-103-2/+82
* [SPARK-15255][SQL] limit the length of name for cached DataFrameDavies Liu2016-05-101-1/+5
* [SPARK-15265][SQL][MINOR] Fix Union query error message indentationDongjoon Hyun2016-05-101-6/+5
* [SPARK-15250][SQL] Remove deprecated json API in DataFrameReaderhyukjinkwon2016-05-101-32/+1
* [SPARK-15261][SQL] Remove experimental tag from DataFrameReader/WriterReynold Xin2016-05-102-8/+14
* [SPARK-14476][SQL] Improve the physical plan visualization by adding meta inf...Sean Zhong2016-05-105-27/+53
* [SPARK-14837][SQL][STREAMING] Added support in file stream source for reading...Tathagata Das2016-05-105-37/+114
* [SPARK-15249][SQL] Use FunctionResource instead of (String, String) in Create...Sandeep Singh2016-05-1010-27/+27
* [SPARK-14986][SQL] Return correct result for empty LATERAL VIEW OUTERHerman van Hovell2016-05-102-1/+9
* [SPARK-14642][SQL] import org.apache.spark.sql.expressions._ breaks udf under...Subhobrata Dey2016-05-107-9/+9
* [SPARK-15037][HOTFIX] Don't create 2 SparkSessions in constructorAndrew Or2016-05-101-11/+1
* [SPARK-15037][HOTFIX] Replace `sqlContext` and `sparkSession` with `spark`.Dongjoon Hyun2016-05-101-2/+2
* [HOTFIX] SQL test compilation error from merge conflictAndrew Or2016-05-101-4/+4