spark git commit: [SPARK-5588] [SQL] support select/filter by SQL expression

2015-02-04 Thread rxin
Repository: spark Updated Branches: refs/heads/branch-1.3 84c627336 -> 950a0d3a2 [SPARK-5588] [SQL] support select/filter by SQL expression ``` df.selectExpr('a + 1', 'abs(age)') df.filter('age > 3') df[ df.age > 3 ] df[ ['age', 'name'] ] ``` Author: Davies Liu Closes #4359 from davies/sele

spark git commit: [SPARK-5588] [SQL] support select/filter by SQL expression

2015-02-04 Thread rxin
Repository: spark Updated Branches: refs/heads/master 38a416f03 -> ac0b2b788 [SPARK-5588] [SQL] support select/filter by SQL expression ``` df.selectExpr('a + 1', 'abs(age)') df.filter('age > 3') df[ df.age > 3 ] df[ ['age', 'name'] ] ``` Author: Davies Liu Closes #4359 from davies/select_e