aboutsummaryrefslogtreecommitdiff
path: root/sql/core/src/main/java
Commit message (Expand)AuthorAgeFilesLines
* [SPARK-13109][BUILD] Fix SBT publishLocal issuejerryshao2016-02-172-0/+2
* [SPARK-12950] [SQL] Improve lookup of BytesToBytesMap in aggregateDavies Liu2016-02-092-18/+20
* [SPARK-12992] [SQL] Support vectorized decoding in UnsafeRowParquetRecordReader.Nong Li2016-02-088-44/+431
* [SPARK-12992] [SQL] Update parquet reader to support more types when decoding...Nong Li2016-02-025-21/+342
* Fix for [SPARK-12854][SQL] Implement complex types support in Columna…Jacek Laskowski2016-02-012-2/+2
* [SPARK-13043][SQL] Implement remaining catalyst types in ColumnarBatch.Nong Li2016-02-015-37/+415
* [SPARK-13045] [SQL] Remove ColumnVector.Struct in favor of ColumnarBatch.RowNong Li2016-01-272-116/+28
* [SPARK-12854][SQL] Implement complex types support in ColumnarBatchNong Li2016-01-265-54/+1098
* [SPARK-12879] [SQL] improve the unsafe row writing frameworkWenchen Fan2016-01-251-14/+3
* [SPARK-12644][SQL] Update parquet reader to be vectorized.Nong Li2016-01-158-22/+526
* [SPARK-12785][SQL] Add ColumnarBatch, an in memory columnar format for execut...Nong Li2016-01-124-0/+826
* [SPARK-12618][CORE][STREAMING][SQL] Clean up build warnings: 2.0.0 editionSean Owen2016-01-081-9/+10
* [SPARK-12636] [SQL] Update UnsafeRowParquetRecordReader to support reading fi...Nong2016-01-052-29/+104
* [SPARK-12589][SQL] Fix UnsafeRowParquetRecordReader to properly set the row l...Nong Li2016-01-041-0/+9
* [SPARK-12585] [SQL] move numFields to constructor of UnsafeRowDavies Liu2015-12-303-38/+28
* [SPARK-12084][CORE] Fix codes that uses ByteBuffer.array incorrectlyShixiong Zhu2015-12-041-3/+4
* [SPARK-6990][BUILD] Add Java linting script; fix minor warningsDmitry Erastov2015-12-041-1/+1
* [SPARK-11787][SPARK-11883][SQL][FOLLOW-UP] Cleanup for this patch.Nong Li2015-11-201-0/+14
* [SPARK-11787][SQL] Improve Parquet scan performance when using flat schemas.Nong Li2015-11-182-0/+833
* [SPARK-7542][SQL] Support off-heap index/sort bufferDavies Liu2015-11-051-1/+2
* [SPARK-11425] [SPARK-11486] Improve hybrid aggregationDavies Liu2015-11-042-14/+18
* [SPARK-11423] remove MapPartitionsWithPreparationRDDDavies Liu2015-10-301-8/+1
* [SPARK-10342] [SPARK-10309] [SPARK-10474] [SPARK-10929] [SQL] Cooperative mem...Davies Liu2015-10-292-11/+10
* [SPARK-10984] Simplify *MemoryManager class structureJosh Rosen2015-10-252-18/+16
* [SPARK-10474] [SQL] Aggregation fails to allocate memory for pointer array (r...Andrew Or2015-09-231-7/+2
* [SPARK-10474] [SQL] Aggregation fails to allocate memory for pointer arrayAndrew Or2015-09-181-1/+7
* [SPARK-9747] [SQL] Avoid starving an unsafe operator in aggregationAndrew Or2015-08-121-0/+7
* [SPARK-9815] Rename PlatformDependent.UNSAFE -> Platform.Reynold Xin2015-08-112-4/+4
* [SPARK-9753] [SQL] TungstenAggregate should also accept InternalRow instead o...Yin Huai2015-08-071-0/+4
* [SPARK-9674] Re-enable ignored test in SQLQuerySuiteAndrew Or2015-08-072-4/+10
* [SPARK-9548][SQL] Add a destructive iterator for BytesToBytesMapLiang-Chi Hsieh2015-08-062-3/+9
* [SPARK-9644] [SQL] Support update DecimalType with precision > 18 in UnsafeRowDavies Liu2015-08-061-3/+1
* [SPARK-9611] [SQL] Fixes a few corner cases when we spill a UnsafeFixedWidthA...Yin Huai2015-08-051-2/+4
* [SPARK-9452] [SQL] Support records larger than page size in UnsafeExternalSorterJosh Rosen2015-08-041-2/+9
* [SPARK-9577][SQL] Surface concrete iterator types in various sort classes.Reynold Xin2015-08-031-53/+59
* [SPARK-8735] [SQL] Expose memory usage for shuffles, joins and aggregationsAndrew Or2015-08-031-0/+8
* [SPARK-9531] [SQL] UnsafeFixedWidthAggregationMap.destructAndCreateExternalSo...Reynold Xin2015-08-022-92/+247
* [SPARK-9520] [SQL] Support in-place sort in UnsafeFixedWidthAggregationMapReynold Xin2015-08-011-2/+98
* [SPARK-9517][SQL] BytesToBytesMap should encode data the same way as UnsafeEx...Reynold Xin2015-07-311-37/+36
* [SPARK-9358][SQL] Code generation for UnsafeRow joiner.Reynold Xin2015-07-311-6/+1
* [SPARK-9451] [SQL] Support entries larger than default page size in BytesToBy...Josh Rosen2015-07-311-0/+234
* [SPARK-7588] Document all SQL/DataFrame public methods with @since tagReynold Xin2015-05-121-0/+10
* [SPARK-5166][SPARK-5247][SPARK-5258][SQL] API Cleanup / DocumentationMichael Armbrust2015-02-171-59/+0
* [SQL] Move SaveMode to SQL package.Yin Huai2015-02-121-1/+1
* [SPARK-5658][SQL] Finalize DDL and write support APIsYin Huai2015-02-101-0/+45
* [SPARK-5472][SQL] A JDBC data source for Spark SQL.Tor Myklebust2015-02-021-0/+59
* [SPARK-5123][SQL] Reconcile Java/Scala API for data types.Reynold Xin2015-01-1321-1019/+0
* SPARK-4297 [BUILD] Build warning fixes omnibusSean Owen2014-12-241-0/+1
* [SPARK-4676][SQL] JavaSchemaRDD.schema may throw NullType MatchError if sql h...YanTangZhai2014-12-022-0/+32
* [SPARK-3572] [SQL] Internal API for User-Defined TypesJoseph K. Bradley2014-11-021-0/+53