aboutsummaryrefslogtreecommitdiff
path: root/sql
Commit message (Expand)AuthorAgeFilesLines
* [SPARK-7990][SQL] Add methods to facilitate equi-join on multiple joining keysLiang-Chi Hsieh2015-06-082-6/+43
* [SPARK-8148] Do not use FloatType in partition column inference.Reynold Xin2015-06-082-13/+15
* [SQL][minor] remove duplicated cases in `DecimalPrecision`Wenchen Fan2015-06-081-6/+0
* [SPARK-8121] [SQL] Fixes InsertIntoHadoopFsRelation job initialization for Ha...Cheng Lian2015-06-084-13/+65
* [SPARK-8158] [SQL] several fix for HiveShimDaoyuan Wang2015-06-081-10/+11
* [MINOR] change new Exception to IllegalArgumentExceptionDaoyuan Wang2015-06-081-3/+5
* [SPARK-7939] [SQL] Add conf to enable/disable partition column type inferenceLiang-Chi Hsieh2015-06-084-23/+114
* [SPARK-8154][SQL] Remove Term/Code type aliases in code generation.Reynold Xin2015-06-0715-66/+69
* [SPARK-8149][SQL] Break ExpressionEvaluationSuite down to multiple filesReynold Xin2015-06-0723-1958/+2340
* [SPARK-8117] [SQL] Push codegen implementation into each ExpressionDavies Liu2015-06-0723-718/+1036
* [SPARK-7952][SQL] use internal Decimal instead of java.math.BigDecimalWenchen Fan2015-06-072-21/+43
* [SPARK-8004][SQL] Quote identifier in JDBC data source.Reynold Xin2015-06-073-22/+22
* [SPARK-8118] [SQL] Mutes noisy Parquet log output reappeared after upgrading ...Cheng Lian2015-06-071-15/+20
* [SPARK-8141] [SQL] Precompute datatypes for partition columns and reuse itLiang-Chi Hsieh2015-06-071-1/+2
* [SPARK-8004][SQL] Enclose column names by JDBC DialectLiang-Chi Hsieh2015-06-063-1/+27
* [SPARK-8079] [SQL] Makes InsertIntoHadoopFsRelation job/task abortion more ro...Cheng Lian2015-06-062-32/+76
* [SPARK-8114][SQL] Remove some wildcard import on TestSQLContext._ round 3.Reynold Xin2015-06-0514-138/+156
* [SPARK-6964] [SQL] Support Cancellation in the Thrift ServerDong Wang2015-06-055-16/+208
* [SPARK-8114][SQL] Remove some wildcard import on TestSQLContext._ cont'd.Reynold Xin2015-06-0515-245/+234
* [SPARK-8085] [SPARKR] Support user-specified schema in read.dfShivaram Venkataraman2015-06-051-0/+15
* [SQL] Simplifies binary node pattern matchingCheng Lian2015-06-055-128/+119
* [SPARK-8114][SQL] Remove some wildcard import on TestSQLContext._Reynold Xin2015-06-0421-378/+373
* [SPARK-7440][SQL] Remove physical Distinct operator in favor of AggregateReynold Xin2015-06-046-34/+62
* Fixed style issues for [SPARK-6909][SQL] Remove Hive Shim code.Reynold Xin2015-06-042-8/+11
* [SPARK-6909][SQL] Remove Hive Shim codeCheolsoo Park2015-06-0423-716/+619
* [SPARK-7743] [SQL] Parquet 1.7Thomas Omans2015-06-0415-72/+72
* [SPARK-7969] [SQL] Added a DataFrame.drop function that accepts a Column refe...Mike Dusenberry2015-06-042-0/+61
* [SPARK-7956] [SQL] Use Janino to compile SQL expressions into bytecodeDavies Liu2015-06-0415-866/+1105
* Update documentation for [SPARK-7980] [SQL] Support SQLContext.range(end)Reynold Xin2015-06-031-10/+10
* [SPARK-8074] Parquet should throw AnalysisException during setup for data typ...Reynold Xin2015-06-032-17/+17
* [SPARK-7980] [SQL] Support SQLContext.range(end)animesh2015-06-032-0/+19
* [SPARK-7801] [BUILD] Updating versions to SPARK 1.5.0Patrick Wendell2015-06-034-4/+4
* [SPARK-7973] [SQL] Increase the timeout of two CliSuite tests.Yin Huai2015-06-031-2/+2
* [SPARK-7562][SPARK-6444][SQL] Improve error reporting for expression data typ...Wenchen Fan2015-06-0316-419/+581
* [SPARK-7691] [SQL] Refactor CatalystTypeConverter to use type-specific row ac...Josh Rosen2015-06-024-262/+379
* [SQL] [TEST] [MINOR] Follow-up of PR #6493, use Guava API to ensure Java 6 fr...Cheng Lian2015-06-021-4/+5
* [SPARK-8014] [SQL] Avoid premature metadata discovery when writing a HadoopFs...Cheng Lian2015-06-025-32/+67
* [SPARK-8037] [SQL] Ignores files whose name starts with dot in HadoopFsRelationCheng Lian2015-06-033-6/+26
* [SPARK-8023][SQL] Add "deterministic" attribute to Expression to avoid collap...Yin Huai2015-06-026-2/+137
* [SPARK-8020] [SQL] Spark SQL conf in spark-defaults.conf make metadataHive ge...Yin Huai2015-06-021-3/+22
* [SPARK-6917] [SQL] DecimalType is not read back when non-native type existsDavies Liu2015-06-012-1/+16
* Fixed typo in the previous commit.Reynold Xin2015-06-011-1/+1
* [SPARK-7965] [SPARK-7972] [SQL] Handle expressions containing multiple window...Yin Huai2015-06-013-32/+134
* Revert "[SPARK-8020] Spark SQL in spark-defaults.conf make metadataHive get c...Reynold Xin2015-06-012-66/+4
* [SPARK-8020] Spark SQL in spark-defaults.conf make metadataHive get construct...Yin Huai2015-06-012-4/+66
* [minor doc] Add exploratory data analysis warning for DataFrame.stat.freqItem...Reynold Xin2015-06-011-0/+12
* [SPARK-8026][SQL] Add Column.alias to Scala/Java DataFrame APIReynold Xin2015-06-012-0/+18
* [SPARK-7982][SQL] DataFrame.stat.crosstab should use 0 instead of null for pa...Reynold Xin2015-06-012-5/+8
* [SPARK-7952][SPARK-7984][SQL] equality check between boolean type and numeric...Wenchen Fan2015-05-315-47/+158
* [SPARK-3850] Turn style checker on for trailing whitespaces.Reynold Xin2015-05-312-2/+2