Re: Flink Table API/SQL debugging, testability

2020-08-25 Thread Dawid Wysakowicz
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

2020-08-25 Thread narasimha
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