aboutsummaryrefslogtreecommitdiff
path: root/docs/sql-programming-guide.md
diff options
context:
space:
mode:
authorMatt Wise <mwise@quixey.com>2015-05-27 22:39:19 -0700
committerReynold Xin <rxin@databricks.com>2015-05-27 22:39:19 -0700
commit35410614deb7feea1c9d5cca00a6fa7970404f21 (patch)
tree808dd49245309d2ca440877a7b3e20134998fa89 /docs/sql-programming-guide.md
parentbd11b01ebaf62df8b0d8c0b63b51b66e58f50960 (diff)
downloadspark-35410614deb7feea1c9d5cca00a6fa7970404f21.tar.gz
spark-35410614deb7feea1c9d5cca00a6fa7970404f21.tar.bz2
spark-35410614deb7feea1c9d5cca00a6fa7970404f21.zip
[DOCS] Fix typo in documentation for Java UDF registration
This contribution is my original work and I license the work to the project under the project's open source license Author: Matt Wise <mwise@quixey.com> Closes #6447 from wisematthew/fix-typo-in-java-udf-registration-doc and squashes the following commits: e7ef5f7 [Matt Wise] Fix typo in documentation for Java UDF registration
Diffstat (limited to 'docs/sql-programming-guide.md')
-rw-r--r--docs/sql-programming-guide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/sql-programming-guide.md b/docs/sql-programming-guide.md
index 5b41c0ee6e..ab646f65bb 100644
--- a/docs/sql-programming-guide.md
+++ b/docs/sql-programming-guide.md
@@ -1939,7 +1939,7 @@ sqlContext.udf.register("strLen", (s: String) => s.length())
<div data-lang="java" markdown="1">
{% highlight java %}
-sqlContext.udf().register("strLen", (String s) -> { s.length(); });
+sqlContext.udf().register("strLen", (String s) -> s.length(), DataTypes.IntegerType);
{% endhighlight %}
</div>