Github user rxin commented on a diff in the pull request:
https://github.com/apache/spark/pull/7207#discussion_r33842348
--- Diff: sql/core/src/test/scala/org/apache/spark/sql/UDFSuite.scala ---
@@ -82,6 +83,48 @@ class UDFSuite extends QueryTest {
assert(ctx.sql("SELECT strLenScala('test', 1)").head().getInt(0) === 5)
}
+ test("UDF in a WHERE") {
+ testData.sqlContext.udf.register("oneArgFilter", (n:Int) => { n > 80 })
--- End diff --
we now prefer just having the dataset closer to the test case rather than
putting them in TestData.
You can do something like this easily in each test case itself
```
val df = Seq(("red", 1), ("red", 2), ("blue", 10), ("green", 100),
("green", 200)).toDF("g", "v")
df.registerTempTable("groupData")
```
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]