Hi, I have a use-case where I need to validate hundreds of Flink SQL queries. Ideally, I'd like to run these validations in parallel. But, given that there's an issue with Calcite and the use of thread-local storage, I can only interact with the table runtime via a single thread.
Ideally, I don't really care about the overall registration process of sources, transformations and sinks, I just want to make sure the syntax is correct from Flinks perspective. Is there any straightforward way of doing this? -- Best Regards, Yuval Itzchakov.