aboutsummaryrefslogtreecommitdiff
path: root/sql
Commit message (Expand)AuthorAgeFilesLines
...
* [SPARK-19397][SQL] Make option names of LIBSVM and TEXT case insensitivegatorsmile2017-02-083-4/+63
* [SPARK-18609][SPARK-18841][SQL] Fix redundant Alias removal in the optimizerHerman van Hovell2017-02-079-115/+302
* [SPARK-19495][SQL] Make SQLConf slightly more extensibleReynold Xin2017-02-075-137/+139
* [SPARK-16609] Add to_date/to_timestamp with format functionsanabranch2017-02-075-8/+161
* [SPARK-19447] Fixing input metrics for range operator.Ala Luszczak2017-02-076-75/+350
* [SPARK-19118][SQL] Percentile support for frequency distribution tablegagan taneja2017-02-072-55/+141
* [SPARK-16101][SQL] Refactoring CSV schema inference path to be consistent wit...hyukjinkwon2017-02-0711-246/+271
* [SPARK-18601][SQL] Simplify Create/Get complex expression pairs in optimizerEyal Farago2017-02-077-4/+427
* [SPARK-19407][SS] defaultFS is used FileSystem.get instead of getting it from...uncleGen2017-02-061-2/+2
* [SPARK-19441][SQL] Remove IN type coercion from PromoteStringsgatorsmile2017-02-071-9/+0
* [SPARK-19472][SQL] Parser should not mistake CASE WHEN(...) for a function callHerman van Hovell2017-02-062-1/+3
* [SPARK-19080][SQL] simplify data source analysisWenchen Fan2017-02-0720-199/+126
* [SPARK-17213][SQL][FOLLOWUP] Re-enable Parquet filter tests for binary and st...hyukjinkwon2017-02-061-4/+2
* [SPARK-19409][SPARK-17213] Cleanup Parquet workarounds/hacks due to bugs of o...Cheng Lian2017-02-062-33/+2
* [SPARK-19279][SQL] Infer Schema for Hive Serde Tables and Block Creating a Hi...gatorsmile2017-02-0610-194/+304
* [SPARK-19425][SQL] Make ExtractEquiJoinKeys support UDT columnsLiang-Chi Hsieh2017-02-043-0/+13
* [SPARK-19446][SQL] Remove unused findTightestCommonType in TypeCoercionhyukjinkwon2017-02-033-23/+12
* [SPARK-18909][SQL] The error messages in `ExpressionEncoder.toRow/fromRow` ar...Dongjoon Hyun2017-02-031-2/+2
* [SPARK-19411][SQL] Remove the metadata used to mark optional columns in merge...Liang-Chi Hsieh2017-02-036-137/+22
* [SPARK-14352][SQL] approxQuantile should support multi columnsZheng RuiFeng2017-02-012-3/+49
* [SPARK-19296][SQL] Deduplicate url and table in JdbcUtilshyukjinkwon2017-02-012-32/+28
* [SPARK-19402][DOCS] Support LaTex inline formula correctly and fix warnings i...hyukjinkwon2017-02-0116-42/+42
* [SPARK-19378][SS] Ensure continuity of stateOperator and eventTime metrics ev...Burak Yavuz2017-01-312-13/+64
* [SPARK-19406][SQL] Fix function to_json to respect user-provided optionsgatorsmile2017-01-302-2/+24
* [SPARK-19385][SQL] During canonicalization, `NOT(...(l, r))` should not expec...Liwei Lin2017-01-292-9/+43
* [SPARK-18872][SQL][TESTS] New test cases for EXISTS subqueryDilip Biswal2017-01-294-0/+589
* [SPARK-19152][SQL][FOLLOWUP] simplify CreateHiveTableAsSelectCommandWenchen Fan2017-01-284-42/+49
* [SPARK-19359][SQL] Revert Clear useless path after rename a partition with up...gatorsmile2017-01-282-71/+0
* [SPARK-19359][SQL] clear useless path after rename a partition with upper-cas...windpiger2017-01-272-0/+71
* [SPARK-12970][DOCS] Fix the example in SturctType APIs for Scala and Javahyukjinkwon2017-01-272-16/+18
* [SPARK-19338][SQL] Add UDF names in explainTakeshi YAMAMURO2017-01-264-27/+44
* [SPARK-18936][SQL] Infrastructure for session local timezone support.Takuya UESHIN2017-01-2632-674/+1182
* [TESTS][SQL] Setup testdata at the beginning for tests to run independentlyDilip Biswal2017-01-254-13/+10
* [SPARK-19311][SQL] fix UDT hierarchy issuegmoehler2017-01-252-3/+110
* [SPARK-18863][SQL] Output non-aggregate expressions without GROUP BY in a sub...Nattavut Sutyanyong2017-01-254-51/+168
* [SPARK-19334][SQL] Fix the code injection vulnerability related to Generator ...Kousuke Saruta2017-01-242-2/+25
* [SPARK-19017][SQL] NOT IN subquery with more than one column may return incor...Nattavut Sutyanyong2017-01-245-6/+131
* [SPARK-17913][SQL] compare atomic and string type column may return confusing...Wenchen Fan2017-01-247-7/+38
* [SPARK-19246][SQL] CataLogTable's partitionSchema order and exist checkwindpiger2017-01-241-4/+9
* [SPARK-19152][SQL] DataFrameWriter.saveAsTable support hive appendwindpiger2017-01-249-38/+83
* [SPARK-16101][HOTFIX] Fix the build with Scala 2.10 by explicit typed argumenthyukjinkwon2017-01-231-1/+1
* [SPARK-19268][SS] Disallow adaptive query execution for streaming queriesShixiong Zhu2017-01-232-1/+17
* [SPARK-9435][SQL] Reuse function in Java UDF to correctly support expressions...hyukjinkwon2017-01-232-23/+68
* [SPARK-19272][SQL] Remove the param `viewOriginalText` from `CatalogTable`jiangxingbo2017-01-249-45/+39
* [SPARK-19290][SQL] add a new extending interface in Analyzer for post-hoc res...Wenchen Fan2017-01-236-55/+30
* [SPARK-19284][SQL] append to partitioned datasource table should without cust...windpiger2017-01-233-5/+36
* [SPARK-19218][SQL] Fix SET command to show a result correctly and in a sorted...Dongjoon Hyun2017-01-233-3/+36
* [SPARK-19309][SQL] disable common subexpression elimination for conditional e...Wenchen Fan2017-01-237-171/+84
* [SPARK-19229][SQL] Disallow Creating Hive Source Tables when Hive Support is ...gatorsmile2017-01-2217-89/+68
* [SPARK-16101][SQL] Refactoring CSV read path to be consistent with JSON data ...hyukjinkwon2017-01-237-316/+293