aboutsummaryrefslogtreecommitdiff
path: root/sql/core/src/main
Commit message (Expand)AuthorAgeFilesLines
...
* [SPARK-18745][SQL] Fix signed integer overflow due to toInt castKazuaki Ishizaki2016-12-091-4/+4
* [SPARK-17822][R] Make JVMObjectTracker a member variable of RBackendXiangrui Meng2016-12-091-6/+6
* [SPARK-18776][SS] Make Offset for FileStreamSource corrected formatted in jsonTathagata Das2016-12-083-18/+69
* [SPARK-18760][SQL] Consistent format specification for FileFormatsReynold Xin2016-12-082-1/+3
* [SPARK-18667][PYSPARK][SQL] Change the way to group row in BatchEvalPythonExe...Liang-Chi Hsieh2016-12-081-19/+16
* [SPARK-18774][CORE][SQL] Ignore non-existing files when ignoreCorruptFiles is...Shixiong Zhu2016-12-072-1/+5
* [SPARK-18758][SS] StreamingQueryListener events from a StreamingQuery should ...Tathagata Das2016-12-072-9/+49
* [SPARK-18754][SS] Rename recentProgresses to recentProgressMichael Armbrust2016-12-073-4/+4
* [SPARK-18764][CORE] Add a warning log when skipping a corrupted fileShixiong Zhu2016-12-071-0/+1
* [SPARK-18734][SS] Represent timestamp in StreamingQueryProgress as formatted ...Tathagata Das2016-12-062-5/+9
* [SPARK-18714][SQL] Add a simple time function to SparkSessionReynold Xin2016-12-061-0/+16
* [SPARK-18721][SS] Fix ForeachSink with watermark + appendShixiong Zhu2016-12-051-33/+12
* [SPARK-18572][SQL] Add a method `listPartitionNames` to `ExternalCatalog`Michael Allman2016-12-063-24/+23
* [SPARK-18722][SS] Move no data rate limit from StreamExecution to ProgressRep...Shixiong Zhu2016-12-052-24/+29
* [SPARK-18555][SQL] DataFrameNaFunctions.fill miss up original values in long ...root2016-12-051-27/+62
* [SPARK-18720][SQL][MINOR] Code Refactoring of withColumngatorsmile2016-12-061-15/+1
* [SPARK-18657][SPARK-18668] Make StreamingQuery.id persists across restart and...Tathagata Das2016-12-0510-80/+211
* [SPARK-18729][SS] Move DataFrame.collect out of synchronized block in MemorySinkShixiong Zhu2016-12-051-6/+13
* [SPARK-18634][PYSPARK][SQL] Corruption and Correctness issues with exploding ...Liang-Chi Hsieh2016-12-052-4/+14
* [SPARK-18694][SS] Add StreamingQuery.explain and exception to Python and fix ...Shixiong Zhu2016-12-053-18/+36
* [SPARK-18702][SQL] input_file_block_start and input_file_block_lengthReynold Xin2016-12-042-5/+6
* [SPARK-18661][SQL] Creating a partitioned datasource table should not scan al...Eric Liang2016-12-042-2/+10
* [SPARK-18362][SQL] Use TextFileFormat in implementation of CSVFileFormatJosh Rosen2016-12-022-36/+28
* [SPARK-18670][SS] Limit the number of StreamingQueryListener.StreamProgressEv...Shixiong Zhu2016-12-022-1/+27
* [SPARK-18659][SQL] Incorrect behaviors in overwrite table for datasource tablesEric Liang2016-12-023-6/+18
* [SPARK-18419][SQL] `JDBCRelation.insert` should not remove Spark optionsDongjoon Hyun2016-12-023-8/+18
* [SPARK-18679][SQL] Fix regression in file listing performance for non-catalog...Eric Liang2016-12-021-34/+45
* [SPARK-17213][SQL] Disable Parquet filter push-down for string and binary col...Cheng Lian2016-12-011-0/+24
* [SPARK-18658][SQL] Write text records directly to a FileOutputStreamNathan Howell2016-12-015-103/+106
* [SPARK-18141][SQL] Fix to quote column names in the predicate clause of the ...sureshthalamati2016-12-012-21/+27
* [SPARK-18674][SQL] improve the error message of using joinWenchen Fan2016-12-011-1/+1
* [SPARK-18538][SQL] Fix Concurrent Table Fetching Using DataFrameReader JDBC APIsgatorsmile2016-12-014-30/+29
* [SPARK-17932][SQL] Support SHOW TABLES EXTENDED LIKE 'identifier_with_wildcar...jiangxingbo2016-11-302-7/+31
* [SPARK-18516][STRUCTURED STREAMING] Follow up PR to add StreamingQuery.status...Tathagata Das2016-11-294-11/+45
* [SPARK-18632][SQL] AggregateFunction should not implement ImplicitCastInputTypesHerman van Hovell2016-11-292-3/+1
* [SPARK-18516][SQL] Split state and progress in streamingTathagata Das2016-11-2913-795/+616
* [SPARK-18631][SQL] Changed ExchangeCoordinator re-partitioning to avoid more ...Mark Hamstra2016-11-291-17/+15
* [SPARK-18498][SQL] Revise HDFSMetadataLog API for better testingTyson Condie2016-11-291-34/+66
* [SPARK-3359][DOCS] Make javadoc8 working for unidoc/genjavadoc compatibility ...hyukjinkwon2016-11-2918-198/+209
* [SPARK-18339][SPARK-18513][SQL] Don't push down current_timestamp for filters...Tyson Condie2016-11-284-16/+78
* [SPARK-18544][SQL] Append with df.saveAsTable writes data to wrong locationEric Liang2016-11-282-9/+15
* [SPARK-18058][SQL][TRIVIAL] Use dataType.sameResult(...) instead equality on ...Herman van Hovell2016-11-281-1/+1
* [SPARK-18403][SQL] Fix unsafe data false sharing issue in ObjectHashAggregate...Cheng Lian2016-11-291-2/+9
* [SQL][MINOR] DESC should use 'Catalog' as partition providerWenchen Fan2016-11-281-1/+1
* [SPARK-17732][SQL] Revert ALTER TABLE DROP PARTITION should support comparatorsWenchen Fan2016-11-283-48/+13
* [SPARK-17783][SQL] Hide Credentials in CREATE and DESC FORMATTED/EXTENDED a P...gatorsmile2016-11-282-2/+11
* [SPARK-18594][SQL] Name Validation of Databases/Tablesgatorsmile2016-11-271-22/+6
* [WIP][SQL][DOC] Fix incorrect `code` tagWeiqing Yang2016-11-261-1/+1
* [SPARK-18436][SQL] isin causing SQL syntax error with JDBCjiangxingbo2016-11-251-0/+2
* [SPARK-18413][SQL][FOLLOW-UP] Use `numPartitions` instead of `maxConnections`Dongjoon Hyun2016-11-253-18/+18