aboutsummaryrefslogtreecommitdiff
path: root/sql/catalyst
Commit message (Expand)AuthorAgeFilesLines
* [SPARK-16826][SQL] Switch to java.net.URI for parse_url()Sylvain Zimmer2016-08-051-14/+33
* [SPARK-16879][SQL] unify logical plans for CREATE TABLE and CTASWenchen Fan2016-08-052-14/+11
* [SPARK-16853][SQL] fixes encoder error in DataSet typed selectSean Zhong2016-08-041-0/+4
* [SPARK-16867][SQL] createTable and alterTable in ExternalCatalog should not t...Wenchen Fan2016-08-044-18/+22
* [SPARK-16888][SQL] Implements eval method for expression AssertNotNullSean Zhong2016-08-042-7/+21
* [SPARK-16596] [SQL] Refactor DataSourceScanExec to do partition discovery at ...Eric Liang2016-08-031-1/+1
* [SPARK-16714][SPARK-16735][SPARK-16646] array, map, greatest, least's type co...Wenchen Fan2016-08-033-18/+97
* [SPARK-16855][SQL] move Greatest and Least from conditionalExpressions.scala ...Wenchen Fan2016-08-024-229/+228
* [SPARK-16836][SQL] Add support for CURRENT_DATE/CURRENT_TIMESTAMP literalsHerman van Hovell2016-08-023-1/+22
* [SPARK-16062] [SPARK-15989] [SQL] Fix two bugs of Python-only UDTsLiang-Chi Hsieh2016-08-022-3/+23
* [SPARK-16837][SQL] TimeWindow incorrectly drops slideDuration in constructorsTom Magrino2016-08-022-2/+14
* [SPARK-16850][SQL] Improve type checking error message for greatest/leastpetermaxlee2016-08-022-2/+15
* [SPARK-16828][SQL] remove MaxOf and MinOfWenchen Fan2016-08-014-175/+0
* [SPARK-16774][SQL] Fix use of deprecated timestamp constructor & improve time...Holden Karau2016-08-012-7/+10
* [SPARK-16791][SQL] cast struct with timestamp field failseyal farago2016-08-012-1/+11
* [SPARK-16726][SQL] Improve `Union/Intersect/Except` error messages on incompa...Dongjoon Hyun2016-08-012-13/+46
* [SPARK-16731][SQL] use StructType in CatalogTable and remove CatalogColumnWenchen Fan2016-07-313-57/+27
* [SPARK-16813][SQL] Remove private[sql] and private[spark] from catalyst packageReynold Xin2016-07-3118-32/+32
* [SPARK-16694][CORE] Use for/foreach rather than map for Unit expressions whos...Sean Owen2016-07-301-2/+2
* [SPARK-16748][SQL] SparkExceptions during planning should not wrapped in Tree...Tathagata Das2016-07-291-1/+7
* [SPARK-16639][SQL] The query with having condition that contains grouping by ...Liang-Chi Hsieh2016-07-281-1/+14
* [SPARK-16730][SQL] Implement function aliases for type castspetermaxlee2016-07-282-7/+47
* [SPARK-16729][SQL] Throw analysis exception for invalid date castspetermaxlee2016-07-272-9/+16
* [SPARK-16524][SQL] Add RowBatch and RowBasedHashMapGeneratorQifan Pu2016-07-264-0/+966
* [SPARK-16706][SQL] support java map in encoderWenchen Fan2016-07-264-28/+182
* [SPARK-16686][SQL] Remove PushProjectThroughSample since it is handled by Col...Liang-Chi Hsieh2016-07-263-29/+15
* [SPARK-16633][SPARK-16642][SPARK-16721][SQL] Fixes three issues related to le...Yin Huai2016-07-252-22/+26
* [SPARK-16724] Expose DefinedByConstructorParamsMichael Armbrust2016-07-251-1/+1
* [SPARK-16678][SPARK-16677][SQL] Fix two View-related bugsgatorsmile2016-07-261-3/+3
* [SPARK-16715][TESTS] Fix a potential ExprId conflict for SubexpressionElimina...Shixiong Zhu2016-07-251-1/+5
* [SPARK-16703][SQL] Remove extra whitespace in SQL generation for window funct...Cheng Lian2016-07-251-3/+3
* [SPARK-16698][SQL] Field names having dots should be allowed for datasources ...hyukjinkwon2016-07-251-1/+1
* [SPARK-16691][SQL] move BucketSpec to catalyst module and use it in CatalogTableWenchen Fan2016-07-252-13/+38
* [SPARK-16660][SQL] CreateViewCommand should not take CatalogTableWenchen Fan2016-07-251-3/+3
* [SPARK-16648][SQL] Make ignoreNullsExpr a child expression of First and LastCheng Lian2016-07-252-4/+4
* [SPARK-16645][SQL] rename CatalogStorageFormat.serdeProperties to propertiesWenchen Fan2016-07-252-8/+8
* [SPARK-16622][SQL] Fix NullPointerException when the returned value of the ca...Liang-Chi Hsieh2016-07-232-17/+65
* [SPARK-16287][HOTFIX][BUILD][SQL] Fix annotation argument needs to be a constantJacek Laskowski2016-07-221-3/+3
* [SPARK-16287][SQL] Implement str_to_map SQL functionSandeep Singh2016-07-223-1/+88
* [SPARK-16640][SQL] Add codegen for Elt functionLiang-Chi Hsieh2016-07-211-1/+24
* [SPARK-16644][SQL] Aggregate should not propagate constraints containing aggr...Wenchen Fan2016-07-202-4/+8
* [SPARK-16634][SQL] Workaround JVM bug by moving some code out of ctor.Marcelo Vanzin2016-07-201-4/+11
* [SPARK-16602][SQL] `Nvl` function should support numeric-string casesDongjoon Hyun2016-07-193-2/+17
* [SPARK-16535][BUILD] In pom.xml, remove groupId which is redundant definition...Xin Ren2016-07-191-1/+0
* [SPARK-16584][SQL] Move regexp unit tests to RegexpExpressionsSuiteReynold Xin2016-07-162-164/+194
* [SPARK-16582][SQL] Explicitly define isNull = false for non-nullable expressionsSameer Agarwal2016-07-161-0/+3
* [SPARK-16530][SQL][TRIVIAL] Wrong Parser Keyword in ALTER TABLE CHANGE COLUMNgatorsmile2016-07-141-1/+1
* [SPARK-16448] RemoveAliasOnlyProject should not remove alias with metadataWenchen Fan2016-07-142-18/+108
* [SPARK-16343][SQL] Improve the PushDownPredicate rule to pushdown predicates ...蒋星博2016-07-142-19/+33
* [SPARK-16514][SQL] Fix various regex codegen bugsEric Liang2016-07-122-15/+39