aboutsummaryrefslogtreecommitdiff
path: root/sql/core/src/main
Commit message (Expand)AuthorAgeFilesLines
* [SPARK-18123][SQL] Use db column names instead of RDD column ones during JDBC...Dongjoon Hyun2016-12-302-20/+65
* [SPARK-19012][SQL] Fix `createTempViewCommand` to throw AnalysisException ins...Dongjoon Hyun2016-12-291-3/+10
* [SPARK-18567][SQL] Simplify CreateDataSourceTableAsSelectCommandWenchen Fan2016-12-283-197/+212
* [SPARK-16213][SQL] Reduce runtime overhead of a program that creates an primi...Kazuaki Ishizaki2016-12-291-0/+6
* [MINOR][DOC] Fix doc of ForeachWriter to use writeStreamCarson Wang2016-12-281-2/+2
* [SPARK-18960][SQL][SS] Avoid double reading file which is being copied.uncleGen2016-12-281-3/+8
* [SPARK-18992][SQL] Move spark.sql.hive.thriftServer.singleSession to SQLConfgatorsmile2016-12-281-0/+10
* [SPARK-18980][SQL] implement Aggregator with TypedImperativeAggregateWenchen Fan2016-12-262-29/+164
* [SPARK-18943][SQL] Avoid per-record type dispatch in CSV when readinghyukjinkwon2016-12-242-82/+113
* [SPARK-18800][SQL] Correct the assert in UnsafeKVExternalSorter which ensures...Liang-Chi Hsieh2016-12-241-1/+3
* [SPARK-18911][SQL] Define CatalogStatistics to interact with metastore and co...wangzhenhua2016-12-243-8/+8
* [SPARK-18985][SS] Add missing @InterfaceStability.Evolving for Structured Str...Shixiong Zhu2016-12-229-9/+28
* [SPARK-18973][SQL] Remove SortPartitions and RedistributeDataReynold Xin2016-12-221-4/+0
* [SPARK-16975][SQL][FOLLOWUP] Do not duplicately check file paths in data sour...hyukjinkwon2016-12-223-15/+4
* [DOC] bucketing is applicable to all file-based data sourcesReynold Xin2016-12-211-3/+3
* [SQL] Minor readability improvement for partition handling codeReynold Xin2016-12-224-44/+49
* [SPARK-18908][SS] Creating StreamingQueryException should check if logicalPla...Shixiong Zhu2016-12-212-71/+98
* [SPARK-18528][SQL] Fix a bug to initialise an iterator of aggregation bufferTakeshi YAMAMURO2016-12-223-4/+14
* [SPARK-18234][SS] Made update mode publicTathagata Das2016-12-214-29/+56
* [SPARK-18775][SQL] Limit the max number of records written per fileReynold Xin2016-12-212-39/+96
* [SPARK-18894][SS] Fix event time watermark delay threshold specified in month...Tathagata Das2016-12-213-4/+12
* [SPARK-18947][SQL] SQLContext.tableNames should not call Catalog.listTablesWenchen Fan2016-12-212-6/+7
* [SPARK-18949][SQL] Add recoverPartitions API to Cataloggatorsmile2016-12-202-0/+21
* [SPARK-18927][SS] MemorySink for StructuredStreaming can't recover from check...Burak Yavuz2016-12-201-1/+1
* Tiny style improvement.Reynold Xin2016-12-191-2/+3
* [SPARK-18899][SPARK-18912][SPARK-18913][SQL] refactor the error checking when...Wenchen Fan2016-12-192-72/+91
* [SPARK-18928] Check TaskContext.isInterrupted() in FileScanRDD, JDBCRDD & Uns...Josh Rosen2016-12-202-4/+13
* [MINOR][BUILD] Fix lint-check failures and javadoc8 breakhyukjinkwon2016-12-161-2/+2
* [SPARK-18108][SQL] Fix a schema inconsistent bug that makes a parquet reader ...Takeshi YAMAMURO2016-12-161-5/+13
* [SPARK-18850][SS] Make StreamExecution and progress classes serializableShixiong Zhu2016-12-165-11/+122
* [SPARK-18826][SS] Add 'latestFirst' option to FileStreamSourceShixiong Zhu2016-12-152-1/+24
* [SPARK-17910][SQL] Allow users to update the comment of a columnjiangxingbo2016-12-152-1/+99
* [SPARK-18856][SQL] non-empty partitioned table should not report zero sizeWenchen Fan2016-12-141-1/+2
* [SPARK-18854][SQL] numberedTreeString and apply(i) inconsistent for subqueriesReynold Xin2016-12-141-2/+1
* [SPARK-18852][SS] StreamingQuery.lastProgress should be null when recentProgr...Shixiong Zhu2016-12-141-2/+2
* [SPARK-18753][SQL] Keep pushed-down null literal as a filter in Spark-side po...hyukjinkwon2016-12-141-1/+1
* [SPARK-18566][SQL] remove OverwriteOptionsWenchen Fan2016-12-145-74/+81
* [SPARK-18746][SQL] Add implicit encoder for BigDecimal, timestamp and dateWeiqing Yang2016-12-141-1/+14
* [SPARK-18834][SS] Expose event time stats through StreamingQueryProgressTathagata Das2016-12-134-53/+104
* [SPARK-17932][SQL][FOLLOWUP] Change statement `SHOW TABLES EXTENDED` to `SHOW...jiangxingbo2016-12-132-11/+22
* [SPARK-18835][SQL] Don't expose Guava types in the JavaTypeInference API.Marcelo Vanzin2016-12-131-3/+1
* [SPARK-13747][CORE] Fix potential ThreadLocal leaks in RPC when using ForkJoi...Shixiong Zhu2016-12-132-3/+2
* [MINOR][CORE][SQL] Remove explicit RDD and Partition overridesJacek Laskowski2016-12-131-4/+0
* [SPARK-18796][SS] StreamingQueryManager should not block when starting a queryShixiong Zhu2016-12-123-58/+102
* [SPARK-18752][HIVE] isSrcLocal" value should be set from user query.Marcelo Vanzin2016-12-121-3/+5
* [SPARK-16297][SQL] Fix mapping Microsoft SQLServer dialectmeknio2016-12-121-0/+2
* [SPARK-18790][SS] Keep a general offset history of stream batchesTyson Condie2016-12-115-39/+62
* [SPARK-18766][SQL] Push Down Filter Through BatchEvalPython (Python UDF)gatorsmile2016-12-101-5/+24
* [SPARK-17460][SQL] Make sure sizeInBytes in Statistics will not overflowHuaxin Gao2016-12-102-3/+4
* [SPARK-18811] StreamSource resolution should happen in stream execution threadBurak Yavuz2016-12-092-16/+22