aboutsummaryrefslogtreecommitdiff
path: root/sql/catalyst
Commit message (Expand)AuthorAgeFilesLines
...
* [SPARK-9373][SQL] follow up for StructType support in Tungsten projection.Reynold Xin2015-07-282-25/+21
* [SPARK-9402][SQL] Remove CodegenFallback from Abs / FormatNumber.Reynold Xin2015-07-282-3/+2
* [SPARK-9394][SQL] Handle parentheses in CodeFormatter.Reynold Xin2015-07-282-4/+34
* [MINOR] [SQL] Support mutable expression unit test with codegen projectionCheng Hao2015-07-271-1/+0
* [SPARK-9373][SQL] Support StructType in Tungsten projectionReynold Xin2015-07-278-51/+312
* [SPARK-8828] [SQL] Revert SPARK-5680Yijie Shen2015-07-271-66/+4
* [SPARK-9395][SQL] Create a SpecializedGetters interface to track all the spec...Reynold Xin2015-07-272-14/+69
* [SPARK-8195] [SPARK-8196] [SQL] udf next_day last_dayDaoyuan Wang2015-07-274-1/+149
* [SPARK-9369][SQL] Support IntervalType in UnsafeRowWenchen Fan2015-07-278-14/+50
* [SPARK-9351] [SQL] remove literals from grouping expressions in AggregateWenchen Fan2015-07-273-6/+34
* [SPARK-9376] [SQL] use a seed in RandomDataGeneratorSuiteWenchen Fan2015-07-271-1/+1
* [SPARK-9364] Fix array out of bounds and use-after-free bugs in UnsafeExterna...Josh Rosen2015-07-271-3/+6
* [SPARK-7943] [SPARK-8105] [SPARK-8435] [SPARK-8714] [SPARK-8561] Fixes multi-...Cheng Lian2015-07-273-5/+49
* [SPARK-9368][SQL] Support get(ordinal, dataType) generic getter in UnsafeRow.Reynold Xin2015-07-266-8/+58
* [SPARK-9306] [SQL] Don't use SortMergeJoin when joining on unsortable columnsLiang-Chi Hsieh2015-07-261-1/+1
* [SPARK-8867][SQL] Support list / describe function usageCheng Hao2015-07-266-11/+180
* [SPARK-9095] [SQL] Removes the old Parquet supportCheng Lian2015-07-261-6/+0
* [SPARK-9356][SQL]Remove the internal use of DecimalType.UnlimitedYijie Shen2015-07-262-15/+9
* [SPARK-9350][SQL] Introduce an InternalRow generic getter that requires a Dat...Reynold Xin2015-07-2514-44/+61
* [SPARK-9348][SQL] Remove apply method on InternalRow.Reynold Xin2015-07-254-62/+62
* [SPARK-9192][SQL] add initialization phase for nondeterministic expressionWenchen Fan2015-07-2510-70/+239
* [SPARK-9334][SQL] Remove UnsafeRowConverter in favor of UnsafeProjection.Reynold Xin2015-07-257-426/+204
* [SPARK-9336][SQL] Remove extra JoinedRowsReynold Xin2015-07-251-492/+2
* [SPARK-9331][SQL] Add a code formatter to auto-format generated code.Reynold Xin2015-07-248-10/+148
* [SPARK-9330][SQL] Create specialized getStruct getter in InternalRow.Reynold Xin2015-07-245-40/+77
* [SPARK-9295] Analysis should detect sorting on unsupported column typesJosh Rosen2015-07-242-0/+15
* [SPARK-9292] Analysis should check that join conditions' data types are Boole...Josh Rosen2015-07-243-1/+14
* [SPARK-9305] Rename org.apache.spark.Row to Item.Reynold Xin2015-07-241-2/+1
* [SPARK-9285][SQL] Remove InternalRow's inheritance from Row.Reynold Xin2015-07-2413-179/+281
* [SPARK-9069] [SQL] follow upDavies Liu2015-07-245-26/+55
* [SPARK-9200][SQL] Don't implicitly cast non-atomic types to string type.Reynold Xin2015-07-242-1/+10
* [SPARK-9294][SQL] cleanup comments, code style, naming typo for the new aggre...Wenchen Fan2015-07-232-11/+9
* [SPARK-9069] [SPARK-9264] [SQL] remove unlimited precision support for Decima...Davies Liu2015-07-2330-352/+343
* [SPARK-9286] [SQL] Methods in Unevaluable should be final and AlgebraicAggreg...Josh Rosen2015-07-233-20/+10
* [Build][Minor] Fix building error & performanceCheng Hao2015-07-231-1/+1
* [SPARK-9082] [SQL] [FOLLOW-UP] use `partition` in `PushPredicateThroughProject`Wenchen Fan2015-07-231-14/+8
* Revert "[SPARK-8579] [SQL] support arbitrary object in UnsafeRow"Reynold Xin2015-07-2316-598/+322
* [SPARK-8935] [SQL] Implement code generation for all castsYijie Shen2015-07-222-51/+508
* [SPARK-9262][build] Treat Scala compiler warnings as errorsReynold Xin2015-07-221-1/+2
* [SPARK-4366] [SQL] [Follow-up] Fix SqlParser compiling warning.Yin Huai2015-07-221-2/+1
* [SPARK-9024] Unsafe HashJoin/HashOuterJoin/HashSemiJoinDavies Liu2015-07-224-14/+99
* [SPARK-9165] [SQL] codegen for CreateArray, CreateStruct and CreateNamedStructYijie Shen2015-07-222-5/+76
* [SPARK-9082] [SQL] Filter using non-deterministic expressions should not be p...Wenchen Fan2015-07-222-11/+84
* [SPARK-4233] [SPARK-4367] [SPARK-3947] [SPARK-3056] [SQL] Aggregation Improve...Yin Huai2015-07-2112-67/+595
* [SPARK-9154][SQL] Rename formatString to format_string.Reynold Xin2015-07-213-16/+14
* [SPARK-9154] [SQL] codegen StringFormatTarek Auel2015-07-212-11/+49
* Revert "[SPARK-9154] [SQL] codegen StringFormat"Michael Armbrust2015-07-212-49/+11
* [SPARK-9154] [SQL] codegen StringFormatTarek Auel2015-07-212-11/+49
* [SPARK-9081] [SPARK-9168] [SQL] nanvl & dropna/fillna supporting nan as wellYijie Shen2015-07-214-27/+122
* [SPARK-9173][SQL]UnionPushDown should also support Intersect and ExceptYijie Shen2015-07-213-70/+120