raminqaf commented on code in PR #29154:
URL: https://github.com/apache/flink/pull/29154#discussion_r3980359041
##########
flink-table/flink-table-api-scala/src/main/scala/org/apache/flink/table/api/ImplicitExpressionConversions.scala:
##########
@@ -738,6 +738,19 @@ trait ImplicitExpressionConversions {
Expressions.uuid()
}
+ /** Returns a random RFC 9562 version 4 (pseudo randomly generated) UUID
value. */
+ def uuidV4(): Expression = {
+ Expressions.uuidV4()
+ }
+
+ /**
+ * Returns a time-ordered RFC 9562 version 7 UUID value, generated from the
current timestamp and
+ * a random component.
+ */
+ def uuidV7(): Expression = {
+ Expressions.uuidV7()
+ }
+
Review Comment:
This is deprecated. Please remove:
>
> * @deprecated
> * All Flink Scala APIs are deprecated and will be removed in a future
Flink major version. You
> * can still build your application in Scala, but you should move to the
Java version of either
> * the DataStream and/or Table API.
> * @see
> * <a href="https://s.apache.org/flip-265">FLIP-265 Deprecate and remove
Scala API support</a>
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]