aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Evaluate all actions in signal handlers (don't short-circuit)SPARK-10001-hotfixJakob Odersky2016-04-271-3/+5
* [SPARK-14940][SQL] Move ExternalCatalog to own fileAndrew Or2016-04-2712-188/+210
* [SPARK-14899][ML][PYSPARK] Remove spark.ml HashingTF hashingAlg optionYanbo Liang2016-04-275-91/+36
* [SPARK-14954] [SQL] Add PARTITION BY and BUCKET BY clause for data source CTA...Cheng Lian2016-04-273-3/+106
* [SPARK-14867][BUILD] Remove `--force` option in `build/mvn`Dongjoon Hyun2016-04-272-22/+23
* [SPARK-14664][SQL] Implement DecimalAggregates optimization for Window queriesDongjoon Hyun2016-04-273-12/+161
* [SPARK-14937][ML][DOCUMENT] spark.ml LogisticRegression sqlCtx in scala is in...wm624@hotmail.com2016-04-273-7/+7
* [SPARK-14930][SPARK-13693] Fix race condition in CheckpointWriter.stop()Josh Rosen2016-04-271-12/+5
* [SPARK-14729][SCHEDULER] Refactored YARN scheduler creation code to use newly...Hemant Bhanawat2016-04-274-67/+58
* [SPARK-9656][MLLIB][PYTHON] Add missing methods to PySpark's Distributed Line...Mike Dusenberry2016-04-273-4/+301
* [SPARK-14874][SQL][STREAMING] Remove the obsolete Batch representationLiwei Lin2016-04-275-30/+4
* [SPARK-14950][SQL] Fix BroadcastHashJoin's unique key Anti-JoinsHerman van Hovell2016-04-272-14/+67
* [SPARK-14949][SQL] Remove HiveConf dependency from InsertIntoHiveTableReynold Xin2016-04-271-16/+14
* Unintentional white spaces in kryo classes configuration parametersVictor Chima2016-04-272-3/+4
* [MINOR][BUILD] Enable RAT checking on `LZ4BlockInputStream.java`.Dongjoon Hyun2016-04-272-3/+1
* [SPARK-14130][SQL] Throw exceptions for ALTER TABLE ADD/REPLACE/CHANGE COLUMN...Yin Huai2016-04-27184-819/+194
* [SPARK-14944][SPARK-14943][SQL] Remove HiveConf from HiveTableScanExec, HiveT...Reynold Xin2016-04-266-46/+37
* [SPARK-14911] [CORE] Fix a potential data race in TaskMemoryManagerLiwei Lin2016-04-261-1/+1
* [SPARK-14913][SQL] Simplify configuration APIReynold Xin2016-04-2642-671/+368
* [SPARK-13477][SQL] Expose new user-facing Catalog interfaceAndrew Or2016-04-2631-325/+1090
* [SPARK-14445][SQL] Support native execution of SHOW COLUMNS and SHOW PARTITIONSDilip Biswal2016-04-2716-31/+401
* [SPARK-14732][ML] spark.ml GaussianMixture should use MultivariateGaussian in...Joseph K. Bradley2016-04-267-44/+353
* [SPARK-13734][SPARKR] Added histogram functionOscar D. Lara Yejas2016-04-264-0/+170
* [SPARK-14925][BUILD] Re-introduce 'unused' dependency so that published POMs ...Josh Rosen2016-04-263-0/+31
* [SPARK-14929] [SQL] Disable vectorized map for wide schemas & high-precision ...Sameer Agarwal2016-04-264-31/+55
* [SPARK-12301][ML] Made all tree and ensemble classes not finalJoseph K. Bradley2016-04-268-16/+16
* [SPARK-14514][DOC] Add python example for VectorSlicerZheng RuiFeng2016-04-262-0/+52
* [SPARK-14907][MLLIB] Use repartition in GLMRegressionModel.saveDongjoon Hyun2016-04-261-4/+1
* [SPARK-14853] [SQL] Support LeftSemi/LeftAnti in SortMergeJoinExecDavies Liu2016-04-2610-175/+194
* [SPARK-14903][SPARK-14071][ML][PYTHON] Revert : MLWritable.write propertyJoseph K. Bradley2016-04-262-8/+1
* [SPARK-11559][MLLIB] Make `runs` no effect in mllib.KMeansYanbo Liang2016-04-264-41/+16
* [MINOR] Follow-up to #12625Andrew Or2016-04-263-6/+6
* [SPARK-14912][SQL] Propagate data source options to Hadoop configurationReynold Xin2016-04-2612-57/+99
* [SPARK-14313][ML][SPARKR] AFTSurvivalRegression model persistence in SparkRYanbo Liang2016-04-264-3/+91
* [SPARK-14910][SQL] Native DDL Command Support for Describe Function in Non-id...gatorsmile2016-04-264-3/+79
* [MINOR][DOCS] Minor typo fixesJacek Laskowski2016-04-2610-15/+14
* [SPARK-14756][CORE] Use parseLong instead of valueOfAzeem Jiva2016-04-265-13/+13
* [SPARK-14889][SPARK CORE] scala.MatchError: NONE (of class scala.Enumeration)...Subhobrata Dey2016-04-262-0/+4
* Fix dynamic allocation docs to address cached data.Michael Gummelt2016-04-261-2/+3
* [SPARK-13962][ML] spark.ml Evaluators should support other numeric types for ...BenFradet2016-04-268-51/+88
* [HOTFIX] Fix the problem for real this time.Reynold Xin2016-04-251-5/+5
* [HOTFIX] Fix compilationReynold Xin2016-04-251-4/+4
* [SPARK-14861][SQL] Replace internal usages of SQLContext with SparkSessionAndrew Or2016-04-25101-715/+785
* [SPARK-14904][SQL] Put removed HiveContext in compatibility moduleAndrew Or2016-04-253-0/+170
* [SPARK-14870][SQL][FOLLOW-UP] Move decimalDataWithNulls in DataFrameAggregate...Sameer Agarwal2016-04-252-15/+9
* [SPARK-14902][SQL] Expose RuntimeConfig in SparkSessionAndrew Or2016-04-2538-81/+131
* [SPARK-14888][SQL] UnresolvedFunction should use FunctionIdentifierReynold Xin2016-04-2513-92/+117
* [SPARK-14828][SQL] Start SparkSession in REPL instead of SQLContextAndrew Or2016-04-256-50/+65
* [SPARK-14312][ML][SPARKR] NaiveBayes model persistence in SparkRYanbo Liang2016-04-256-5/+162
* [SPARK-13739][SQL] Push Predicate Through Windowgatorsmile2016-04-255-33/+294