Re: Flink Table API/SQL debugging, testability
Hi, What exactly are you looking for? I think the simplest stub for a test could be sth like: final TableEnvironment env = TableEnvironment.create(...); TableResult result = env.fromValues(...) .select(...) .execute(); try (Clo
Flink Table API/SQL debugging, testability
I was looking for testability, debugging practices on Flink Table API/SQL. Really difficult to find them when compared to Streaming API. Can someone please share their experiences on debugging, testability. -- A.Narasimha Swamy