aboutsummaryrefslogtreecommitdiff
path: root/sql/core/src/main
Commit message (Expand)AuthorAgeFilesLines
* [SPARK-16691][SQL] move BucketSpec to catalyst module and use it in CatalogTableWenchen Fan2016-07-2511-44/+24
* [SPARK-16660][SQL] CreateViewCommand should not take CatalogTableWenchen Fan2016-07-253-90/+99
* [SPARK-16674][SQL] Avoid per-record type dispatch in JDBC when readinghyukjinkwon2016-07-251-116/+129
* [SPARK-16699][SQL] Fix performance bug in hash aggregate on long string keysQifan Pu2016-07-241-2/+4
* [SPARK-16645][SQL] rename CatalogStorageFormat.serdeProperties to propertiesWenchen Fan2016-07-255-16/+16
* [SPARK-16463][SQL] Support `truncate` option in Overwrite mode for JDBC DataF...Dongjoon Hyun2016-07-248-2/+49
* [SPARK-16556][SPARK-16559][SQL] Fix Two Bugs in Bucket Specificationgatorsmile2016-07-222-1/+12
* [SPARK-16334] Maintain single dictionary per row-batch in vectorized parquet ...Sameer Agarwal2016-07-211-8/+13
* [SPARK-16632][SQL] Revert PR #14272: Respect Hive schema when merging parquet...Cheng Lian2016-07-211-18/+0
* [SPARK-16632][SQL] Use Spark requested schema to guide vectorized Parquet rea...Cheng Lian2016-07-211-1/+4
* [SPARK-16226][SQL] Weaken JDBC isolation level to avoid locking when writing ...Sean Owen2016-07-212-14/+46
* [SPARK-16272][CORE] Allow config values to reference conf, env, system props.Marcelo Vanzin2016-07-201-6/+3
* [SPARK-16344][SQL] Decoding Parquet array of struct with a single field named...Cheng Lian2016-07-204-44/+52
* [SPARK-16632][SQL] Respect Hive schema when merging parquet schema.Marcelo Vanzin2016-07-201-0/+18
* [SPARK-16615][SQL] Expose sqlContext in SparkSessionReynold Xin2016-07-181-1/+3
* [SPARK-16515][SQL] set default record reader and writer for script transforma...Daoyuan Wang2016-07-181-5/+11
* [SPARK-16351][SQL] Avoid per-record type dispatch in JSON when writinghyukjinkwon2016-07-183-64/+163
* [SPARK-16588][SQL] Deprecate monotonicallyIncreasingId in Scala/JavaReynold Xin2016-07-171-0/+1
* [SPARK-16543][SQL] Rename the columns of `SHOW PARTITION/COLUMNS` commandsDongjoon Hyun2016-07-141-4/+2
* [SPARK-16503] SparkSession should provide Spark versionLiwei Lin2016-07-131-1/+8
* [SPARK-16482][SQL] Describe Table Command for Tables Requiring Runtime Inferr...gatorsmile2016-07-131-15/+13
* [SPARK-16439] Fix number formatting in SQL UIMaciej Brynski2016-07-131-1/+3
* [MINOR] Fix Java style errors and remove unused importsXin Ren2016-07-131-2/+1
* [SPARK-16119][SQL] Support PURGE option to drop table / partition.Marcelo Vanzin2016-07-123-13/+11
* [SPARK-15752][SQL] Optimize metadata only query that has an aggregate whose c...Lianhui Wang2016-07-123-0/+163
* [SPARK-16189][SQL] Add ExternalRDD logical plan for input with RDD to have a ...Takuya UESHIN2016-07-124-19/+74
* [SPARK-16199][SQL] Add a method to list the referenced columns in data source...petermaxlee2016-07-111-15/+56
* [SPARK-12639][SQL] Mark Filters Fully Handled By Sources with *Russell Spitzer2016-07-111-8/+18
* [SPARK-16430][SQL][STREAMING] Fixed bug in the maxFilesPerTrigger in FileStre...Tathagata Das2016-07-111-3/+3
* [SPARK-16433][SQL] Improve StreamingQuery.explain when no data arrivesShixiong Zhu2016-07-111-1/+1
* [SPARK-16114][SQL] structured streaming event time window exampleJames Thomas2016-07-111-9/+38
* [SPARK-16458][SQL] SessionCatalog should support `listColumns` for temporary ...Dongjoon Hyun2016-07-112-3/+8
* [SPARK-16401][SQL] Data Source API: Enable Extending RelationProvider and Cre...gatorsmile2016-07-091-3/+2
* [SPARK-16387][SQL] JDBC Writer should use dialect to quote field names.Dongjoon Hyun2016-07-081-4/+5
* [SPARK-16429][SQL] Include `StringType` columns in `describe()`Dongjoon Hyun2016-07-081-3/+13
* [SPARK-13638][SQL] Add quoteAll option to CSV DataFrameWriterJurriaan Pruis2016-07-083-1/+5
* [SPARK-16430][SQL][STREAMING] Add option maxFilesPerTriggerTathagata Das2016-07-072-14/+36
* [SPARK-16350][SQL] Fix support for incremental planning in wirteStream.foreach()Liwei Lin2016-07-072-4/+40
* [SPARK-16400][SQL] Remove InSet filter pushdown from ParquetReynold Xin2016-07-071-45/+12
* [SPARK-16368][SQL] Fix Strange Errors When Creating View With Unmatched Colum...gatorsmile2016-07-071-1/+5
* [SPARK-14839][SQL] Support for other types for `tableProperty` rule in SQL sy...hyukjinkwon2016-07-061-4/+18
* [SPARK-16371][SQL] Do not push down filters incorrectly when inner name and o...hyukjinkwon2016-07-062-2/+5
* [SPARK-15979][SQL] Renames CatalystWriteSupport to ParquetWriteSupportCheng Lian2016-07-062-10/+10
* [SPARK-16388][SQL] Remove spark.sql.nativeView and spark.sql.nativeView.canon...Reynold Xin2016-07-062-52/+10
* [SPARK-16340][SQL] Support column arguments for `regexp_replace` Dataset oper...Dongjoon Hyun2016-07-051-0/+10
* [SPARK-16383][SQL] Remove `SessionState.executeSql`Dongjoon Hyun2016-07-051-3/+1
* [SPARK-16311][SQL] Metadata refresh should work on temporary viewsReynold Xin2016-07-054-5/+10
* [SPARK-9876][SQL][FOLLOWUP] Enable string and binary tests for Parquet predic...hyukjinkwon2016-07-053-14/+7
* [SPARK-16360][SQL] Speed up SQL query performance by removing redundant `exec...Dongjoon Hyun2016-07-051-1/+1
* [SPARK-15204][SQL] improve nullability inference for AggregatorKoert Kuipers2016-07-041-4/+4