aboutsummaryrefslogtreecommitdiff
path: root/sql/catalyst/src/main/java
Commit message (Expand)AuthorAgeFilesLines
* [SPARK-9644] [SQL] Support update DecimalType with precision > 18 in UnsafeRowDavies Liu2015-08-062-29/+86
* [SPARK-9598][SQL] do not expose generic getter in internal rowWenchen Fan2015-08-041-5/+0
* [SPARK-9452] [SQL] Support records larger than page size in UnsafeExternalSorterJosh Rosen2015-08-041-1/+1
* [SPARK-8735] [SQL] Expose memory usage for shuffles, joins and aggregationsAndrew Or2015-08-031-0/+7
* [SQL][minor] Simplify UnsafeRow.calculateBitSetWidthInBytes.Reynold Xin2015-08-031-1/+1
* [SPARK-9551][SQL] add a cheap version of copy for UnsafeRow to reuse a copy b...Wenchen Fan2015-08-031-0/+32
* [SPARK-9404][SPARK-9542][SQL] unsafe array data and map dataWenchen Fan2015-08-026-6/+754
* [SPARK-9531] [SQL] UnsafeFixedWidthAggregationMap.destructAndCreateExternalSo...Reynold Xin2015-08-022-5/+7
* [SPARK-9459] [SQL] use generated FromUnsafeProjection to do deep copy for UTF...Davies Liu2015-08-011-2/+6
* [SPARK-9480][SQL] add MapData and cleanup internal row stuffWenchen Fan2015-08-012-6/+12
* [SPARK-9517][SQL] BytesToBytesMap should encode data the same way as UnsafeEx...Reynold Xin2015-07-311-0/+30
* [SPARK-9358][SQL] Code generation for UnsafeRow joiner.Reynold Xin2015-07-311-0/+19
* [SPARK-9451] [SQL] Support entries larger than default page size in BytesToBy...Josh Rosen2015-07-311-223/+0
* [SPARK-9425] [SQL] support DecimalType in UnsafeRowDavies Liu2015-07-304-32/+87
* [SPARK-9458][SPARK-9469][SQL] Code generate prefix computation in sorting & m...Reynold Xin2015-07-301-15/+12
* [SPARK-9390][SQL] create a wrapper for array typeWenchen Fan2015-07-301-0/+2
* Revert "[SPARK-9458] Avoid object allocation in prefix generation."Reynold Xin2015-07-301-1/+1
* [SPARK-9458] Avoid object allocation in prefix generation.Reynold Xin2015-07-291-1/+1
* [SPARK-9411] [SQL] Make Tungsten page sizes configurableJosh Rosen2015-07-291-1/+4
* [SPARK-9430][SQL] Rename IntervalType to CalendarIntervalType.Reynold Xin2015-07-294-11/+11
* [SPARK-9421] Fix null-handling bugs in UnsafeRow.getDouble, getFloat(), and g...Josh Rosen2015-07-281-11/+3
* [SPARK-9373][SQL] follow up for StructType support in Tungsten projection.Reynold Xin2015-07-281-3/+3
* [SPARK-9373][SQL] Support StructType in Tungsten projectionReynold Xin2015-07-272-1/+49
* [SPARK-9395][SQL] Create a SpecializedGetters interface to track all the spec...Reynold Xin2015-07-271-0/+53
* [SPARK-9369][SQL] Support IntervalType in UnsafeRowWenchen Fan2015-07-272-7/+35
* [SPARK-9364] Fix array out of bounds and use-after-free bugs in UnsafeExterna...Josh Rosen2015-07-271-3/+6
* [SPARK-9368][SQL] Support get(ordinal, dataType) generic getter in UnsafeRow.Reynold Xin2015-07-261-1/+51
* [SPARK-8867][SQL] Support list / describe function usageCheng Hao2015-07-262-0/+98
* [SPARK-9350][SQL] Introduce an InternalRow generic getter that requires a Dat...Reynold Xin2015-07-251-5/+0
* [SPARK-9348][SQL] Remove apply method on InternalRow.Reynold Xin2015-07-251-44/+44
* [SPARK-9334][SQL] Remove UnsafeRowConverter in favor of UnsafeProjection.Reynold Xin2015-07-252-41/+97
* [SPARK-9330][SQL] Create specialized getStruct getter in InternalRow.Reynold Xin2015-07-241-30/+57
* [SPARK-9285][SQL] Remove InternalRow's inheritance from Row.Reynold Xin2015-07-241-4/+5
* [SPARK-9069] [SPARK-9264] [SQL] remove unlimited precision support for Decima...Davies Liu2015-07-231-1/+7
* Revert "[SPARK-8579] [SQL] support arbitrary object in UnsafeRow"Reynold Xin2015-07-235-360/+172
* [SPARK-9024] Unsafe HashJoin/HashOuterJoin/HashSemiJoinDavies Liu2015-07-222-11/+49
* [SPARK-9023] [SQL] Followup for #7456 (Efficiency improvements for UnsafeRows...Josh Rosen2015-07-201-0/+33
* [SPARK-8797] [SPARK-9146] [SPARK-9145] [SPARK-9147] Support NaN ordering and ...Josh Rosen2015-07-201-0/+6
* [SPARK-9022] [SQL] Generated projections for UnsafeRowDavies Liu2015-07-171-18/+9
* [SPARK-8899] [SQL] remove duplicated equals method for RowWenchen Fan2015-07-161-5/+0
* [SPARK-7078] [SPARK-7079] Binary processing sort for Spark SQLJosh Rosen2015-07-102-3/+220
* [SPARK-8932] Support copy() for UnsafeRows that do not use ObjectPoolsJosh Rosen2015-07-082-5/+39
* [SPARK-8753][SQL] Create an IntervalType data typeWenchen Fan2015-07-081-0/+5
* [SPARK-7190] [SPARK-8804] [SPARK-7815] [SQL] unsafe UTF8StringDavies Liu2015-07-071-0/+1
* [SPARK-8579] [SQL] support arbitrary object in UnsafeRowDavies Liu2015-06-294-178/+321
* [SPARK-8610] [SQL] Separate Row and InternalRow (part 2)Davies Liu2015-06-283-280/+4
* [SPARK-8432] [SQL] fix hashCode() and equals() of BinaryType in RowDavies Liu2015-06-231-21/+0
* [SPARK-8492] [SQL] support binaryType in UnsafeRowDavies Liu2015-06-222-23/+19
* [SPARK-8301] [SQL] Improve UTF8String substring/startsWith/endsWith/contains ...Tarek Auel2015-06-201-3/+1
* [SPARK-7199] [SQL] Add date and timestamp support to UnsafeRowLiang-Chi Hsieh2015-06-171-3/+3