Repository: spark
Updated Branches:
refs/heads/branch-1.3 7fa0d5f5c -> e477e91e3
[SQL][DataFrame] Fix column computability bug.
Do not recursively strip out projects. Only strip the first level project.
```scala
df("colA") + df("colB").as("colC")
```
Previously, the above would construct an
Repository: spark
Updated Branches:
refs/heads/master 45df77b84 -> 7e24249af
[SQL][DataFrame] Fix column computability bug.
Do not recursively strip out projects. Only strip the first level project.
```scala
df("colA") + df("colB").as("colC")
```
Previously, the above would construct an inva