aboutsummaryrefslogtreecommitdiff
path: root/sql
Commit message (Expand)AuthorAgeFilesLines
* [SPARK-9759] [SQL] improve decimal.times() and cast(int, decimalType)Davies Liu2015-08-102-32/+22
* [SPARK-9620] [SQL] generated UnsafeProjection should support many columns or ...Davies Liu2015-08-106-142/+207
* [SPARK-9763][SQL] Minimize exposure of internal SQL classes.Reynold Xin2015-08-1075-963/+1093
* [SPARK-9784] [SQL] Exchange.isUnsafe should check whether codegen and unsafe ...Josh Rosen2015-08-101-1/+1
* [SPARK-9743] [SQL] Fixes JSONRelation refreshingCheng Lian2015-08-104-12/+21
* [SPARK-9777] [SQL] Window operator can accept UnsafeRowsYin Huai2015-08-091-0/+2
* [SPARK-9703] [SQL] Refactor EnsureRequirements to avoid certain unnecessary s...Josh Rosen2015-08-095-65/+328
* [SPARK-8930] [SQL] Throw a AnalysisException with meaningful messages if Data...Yijie Shen2015-08-093-2/+21
* [SPARK-9752][SQL] Support UnsafeRow in Sample operator.Reynold Xin2015-08-093-21/+49
* [SPARK-6212] [SQL] The EXPLAIN output of CTAS only shows the analyzed planYijie Shen2015-08-083-3/+38
* [MINOR] inaccurate comments for showString()CodingCat2015-08-081-1/+1
* [SPARK-9486][SQL] Add data source aliasing for external packagesJoseph Batchik2015-08-0810-30/+155
* [SPARK-9728][SQL]Support CalendarIntervalType in HiveQLYijie Shen2015-08-083-0/+62
* [SPARK-9738] [SQL] remove FromUnsafe and add its codegen version to GenerateSafeWenchen Fan2015-08-084-107/+95
* [SPARK-4176] [SQL] [MINOR] Should use unscaled Long to write decimals for pre...Cheng Lian2015-08-082-13/+18
* [SPARK-9753] [SQL] TungstenAggregate should also accept InternalRow instead o...Yin Huai2015-08-074-50/+39
* [SPARK-9754][SQL] Remove TypeCheck in debug package.Reynold Xin2015-08-072-104/+4
* [SPARK-8890] [SQL] Fallback on sorting when writing many dynamic partitionsMichael Armbrust2015-08-0710-623/+715
* [SPARK-9674] Re-enable ignored test in SQLQuerySuiteAndrew Or2015-08-074-15/+39
* [SPARK-9733][SQL] Improve physical plan explain for data sourcesReynold Xin2015-08-0710-24/+44
* [SPARK-9667][SQL] followup: Use GenerateUnsafeProjection.canSupport to test E...Reynold Xin2015-08-071-11/+4
* [SPARK-9736] [SQL] JoinedRow.anyNull should delegate to the underlying rows.Reynold Xin2015-08-074-129/+156
* [SPARK-8382] [SQL] Improve Analysis Unit test frameworkWenchen Fan2015-08-075-127/+79
* [SPARK-9674][SPARK-9667] Remove SparkSqlSerializer2Reynold Xin2015-08-074-677/+24
* [SPARK-9467][SQL]Add SQLMetric to specialize accumulators to avoid boxingzsxwing2015-08-077-31/+337
* [SPARK-9683] [SQL] copy UTF8String when convert unsafe array/map to safeWenchen Fan2015-08-072-1/+40
* [SPARK-9700] Pick default page size more intelligently.Reynold Xin2015-08-066-14/+11
* [SPARK-8862][SQL]Support multiple SQLContexts in Web UIzsxwing2015-08-062-3/+11
* [SPARK-7550] [SQL] [MINOR] Fixes logs when persisting DataFramesCheng Lian2015-08-061-4/+2
* [SPARK-9228] [SQL] use tungsten.enabled in public for both of codegen/unsafeDavies Liu2015-08-065-11/+25
* [SPARK-9709] [SQL] Avoid starving unsafe operators that use sortAndrew Or2015-08-062-6/+24
* [SPARK-9692] Remove SqlNewHadoopRDD's generated Tuple2 and InterruptibleItera...Reynold Xin2015-08-061-2/+1
* Revert "[SPARK-9228] [SQL] use tungsten.enabled in public for both of codegen...Davies Liu2015-08-065-25/+11
* [SPARK-9650][SQL] Fix quoting behavior on interpolated column namesMichael Armbrust2015-08-065-43/+128
* [SPARK-9228] [SQL] use tungsten.enabled in public for both of codegen/unsafeDavies Liu2015-08-065-11/+25
* [SPARK-9630] [SQL] Clean up new aggregate operators (SPARK-9240 follow up)Yin Huai2015-08-0612-663/+1192
* [SPARK-9548][SQL] Add a destructive iterator for BytesToBytesMapLiang-Chi Hsieh2015-08-062-3/+9
* [SPARK-9211] [SQL] [TEST] normalize line separators before generating MD5 hashChristian Kadner2015-08-062-5/+5
* [SPARK-9632][SQL] update InternalRow.toSeq to make it accept data type infoWenchen Fan2015-08-0615-217/+259
* [SPARK-9632] [SQL] [HOT-FIX] Fix build.Yin Huai2015-08-061-0/+1
* Revert "[SPARK-9632][SQL] update InternalRow.toSeq to make it accept data typ...Davies Liu2015-08-0615-259/+217
* [SPARK-9632][SQL] update InternalRow.toSeq to make it accept data type infoWenchen Fan2015-08-0615-217/+259
* [SPARK-9659][SQL] Rename inSet to isin to match Pandas function.Reynold Xin2015-08-062-8/+19
* [SPARK-9615] [SPARK-9616] [SQL] [MLLIB] Bugs related to FrequentItems when me...Burak Yavuz2015-08-062-14/+36
* [SPARK-9593] [SQL] [HOTFIX] Makes the Hadoop shims loading fix more robustCheng Lian2015-08-061-33/+55
* [SPARK-9482] [SQL] Fix thread-safey issue of using UnsafeProjection in joinDavies Liu2015-08-068-44/+44
* [SPARK-9644] [SQL] Support update DecimalType with precision > 18 in UnsafeRowDavies Liu2015-08-069-61/+157
* [SPARK-8266] [SQL] add function translatezhichao.li2015-08-066-8/+117
* [SPARK-9664] [SQL] Remove UDAFRegistration and add apply to UserDefinedAggreg...Yin Huai2015-08-058-46/+80
* [SPARK-9674][SQL] Remove GeneratedAggregate.Reynold Xin2015-08-054-437/+2