-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add @Description to UDFs registered in Apache Hive #66
Add @Description to UDFs registered in Apache Hive #66
Conversation
ed1f875
to
53d0249
Compare
value = "_FUNC_(firstSketch, secondSketch[, lgK[, seed]]) - Compute the union of the given " | ||
+ "sketches with the given size and seed", | ||
extended = "The return value is a binary blob that can be operated on by other sketch related functions." | ||
+ " The lgK parameter controls the sketch size and rlative error expected from the sketch." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo "rlative"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. I fixed all typos. Please let me know if you prefer to have separate PRs.
e3bafbe
$ git grep rlative
src/main/java/org/apache/datasketches/hive/cpc/DataToSketchUDAF.java: + " The lgK parameter controls the sketch size and rlative error expected from the sketch."
src/main/java/org/apache/datasketches/hive/cpc/UnionSketchUDAF.java: + " The lgK parameter controls the sketch size and rlative error expected from the sketch."
src/main/java/org/apache/datasketches/hive/cpc/UnionSketchUDF.java: + " The lgK parameter controls the sketch size and rlative error expected from the sketch."
src/main/java/org/apache/datasketches/hive/hll/DataToSketchUDAF.java: + " The lgK parameter controls the sketch size and rlative error expected from the sketch."
src/main/java/org/apache/datasketches/hive/hll/UnionSketchUDAF.java: + " The lgK parameter controls the sketch size and rlative error expected from the sketch."
src/main/java/org/apache/datasketches/hive/hll/UnionSketchUDF.java: + " The lgK parameter controls the sketch size and rlative error expected from the sketch."
value = "_FUNC_(firstSketch, secondSketch[, lgK[, type]]) - Compute the union of the given " | ||
+ "sketches with the given size and seed", | ||
extended = "The return value is a binary blob that can be operated on by other sketch related functions." | ||
+ " The lgK parameter controls the sketch size and rlative error expected from the sketch." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same typo
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The build seems to be broken, but I am inclined to ignore that for now since there are no code changes in this request
Thanks for your review! |
I observe many WARN logs when using Hive 4. Please feel free to ask me to update if my description doesn't make sense.