aboutsummaryrefslogtreecommitdiff
path: root/sql
Commit message (Expand)AuthorAgeFilesLines
* [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-053-10/+20
* [SPARK-18711][SQL] should disable subexpression elimination for LambdaVariableWenchen Fan2016-12-052-5/+9
* [SPARK-18694][SS] Add StreamingQuery.explain and exception to Python and fix ...Shixiong Zhu2016-12-055-24/+42
* [SPARK-18702][SQL] input_file_block_start and input_file_block_lengthReynold Xin2016-12-046-67/+150
* [SPARK-18661][SQL] Creating a partitioned datasource table should not scan al...Eric Liang2016-12-044-8/+66
* [SPARK-18091][SQL] Deep if expressions cause Generated SpecificUnsafeProjecti...Kapil Singh2016-12-042-13/+90
* [SPARK-18582][SQL] Whitelist LogicalPlan operators allowed in correlated subq...Nattavut Sutyanyong2016-12-034-53/+129
* [SPARK-18362][SQL] Use TextFileFormat in implementation of CSVFileFormatJosh Rosen2016-12-022-36/+28
* [SPARK-18695] Bump master branch version to 2.2.0-SNAPSHOTReynold Xin2016-12-024-4/+4
* [SPARK-18670][SS] Limit the number of StreamingQueryListener.StreamProgressEv...Shixiong Zhu2016-12-023-1/+71
* [SPARK-18677] Fix parsing ['key'] in JSON path expressions.Ryan Blue2016-12-022-1/+25
* [SPARK-18674][SQL][FOLLOW-UP] improve the error message of using joingatorsmile2016-12-022-7/+17
* [SPARK-18659][SQL] Incorrect behaviors in overwrite table for datasource tablesEric Liang2016-12-0214-37/+110
* [SPARK-18419][SQL] `JDBCRelation.insert` should not remove Spark optionsDongjoon Hyun2016-12-024-8/+28
* [SPARK-18679][SQL] Fix regression in file listing performance for non-catalog...Eric Liang2016-12-022-34/+98
* [SPARK-18629][SQL] Fix numPartition of JDBCSuite TestcaseWeiqing Yang2016-12-021-1/+1
* [SPARK-17213][SQL] Disable Parquet filter push-down for string and binary col...Cheng Lian2016-12-012-3/+47
* [SPARK-18658][SQL] Write text records directly to a FileOutputStreamNathan Howell2016-12-017-124/+116
* [SPARK-18663][SQL] Simplify CountMinSketch aggregate implementationReynold Xin2016-12-015-391/+121
* [SPARK-18647][SQL] do not put provider in table properties for Hive serde tableWenchen Fan2016-12-023-41/+59
* [SPARK-18284][SQL] Make ExpressionEncoder.serializer.nullable preciseKazuaki Ishizaki2016-12-028-21/+96
* [SPARK-18141][SQL] Fix to quote column names in the predicate clause of the ...sureshthalamati2016-12-013-39/+82
* [SPARK-18674][SQL] improve the error message of using joinWenchen Fan2016-12-017-58/+34
* [SPARK-18635][SQL] Partition name/values not escaped correctly in some casesEric Liang2016-12-014-4/+64
* [SPARK-18538][SQL] Fix Concurrent Table Fetching Using DataFrameReader JDBC APIsgatorsmile2016-12-016-50/+81
* [SPARK-18655][SS] Ignore Structured Streaming 2.0.2 logs in history serverShixiong Zhu2016-11-302-0/+13
* [SPARK-18251][SQL] the type of Dataset can't be Option of non-flat typeWenchen Fan2016-11-304-5/+37
* [SPARK-18220][SQL] read Hive orc table with varchar column should not failWenchen Fan2016-11-305-6/+40
* [SPARK-17932][SQL] Support SHOW TABLES EXTENDED LIKE 'identifier_with_wildcar...jiangxingbo2016-11-306-25/+257
* [SPARK-17897][SQL] Fixed IsNotNull Constraint Inference Rulegatorsmile2016-11-303-7/+35
* [SPARK-18622][SQL] Fix the datatype of the Sum aggregate functionHerman van Hovell2016-11-303-3/+110
* [SPARK-17680][SQL][TEST] Added a Testcase for Verifying Unicode Character Sup...gatorsmile2016-11-301-0/+45
* [SPARK-18516][STRUCTURED STREAMING] Follow up PR to add StreamingQuery.status...Tathagata Das2016-11-297-54/+114
* [SPARK-18632][SQL] AggregateFunction should not implement ImplicitCastInputTypesHerman van Hovell2016-11-2924-63/+67
* [SPARK-18516][SQL] Split state and progress in streamingTathagata Das2016-11-2922-1445/+1028
* [SPARK-18614][SQL] Incorrect predicate pushdown from ExistenceJoinNattavut Sutyanyong2016-11-294-4/+37
* [SPARK-18631][SQL] Changed ExchangeCoordinator re-partitioning to avoid more ...Mark Hamstra2016-11-292-37/+35
* [SPARK-18429][SQL] implement a new Aggregate for CountMinSketchwangzhenhua2016-11-295-0/+661
* [SPARK-18498][SQL] Revise HDFSMetadataLog API for better testingTyson Condie2016-11-291-34/+66
* [SPARK-18615][DOCS] Switch to multi-line doc to avoid a genjavadoc bug for ba...hyukjinkwon2016-11-292-2/+6
* [SPARK-3359][DOCS] Make javadoc8 working for unidoc/genjavadoc compatibility ...hyukjinkwon2016-11-2924-206/+226
* [SPARK-18339][SPARK-18513][SQL] Don't push down current_timestamp for filters...Tyson Condie2016-11-289-33/+273
* [SPARK-18544][SQL] Append with df.saveAsTable writes data to wrong locationEric Liang2016-11-283-9/+34
* [SPARK-18058][SQL][TRIVIAL] Use dataType.sameResult(...) instead equality on ...Herman van Hovell2016-11-284-6/+6
* [SPARK-16282][SQL] Follow-up: remove "percentile" from temp function detectio...Shuai Lin2016-11-282-5/+1
* [SPARK-18403][SQL] Fix unsafe data false sharing issue in ObjectHashAggregate...Cheng Lian2016-11-292-74/+101
* [SPARK-17680][SQL][TEST] Added test cases for InMemoryRelationKazuaki Ishizaki2016-11-281-2/+146
* [SPARK-16282][SQL] Implement percentile SQL function.jiangxingbo2016-11-285-2/+518
* [SQL][MINOR] DESC should use 'Catalog' as partition providerWenchen Fan2016-11-281-1/+1