Oscar Perez
10/02/2023, 1:22 PMsepaCTDataStreamProvider.get().union(sepaICTDataStreamProvider.get())
I would expect to be able to set a uid after the union but does not seem to be the case. Also for this bit of code:
val joinedStream = tableEnv.sqlQuery(
"""
SELECT *
FROM payments AS p
JOIN devices AS d ON p.userId = d.userId
""".trimIndent(),
)
return tableEnv.toDataStream(joinedStream)
I would want to set a uid for this datastream based on the sql query but I dont seem to find a way for that either.
Thanks for the help!