Re: Submitting multiple DELETE statements in Flink SQL

2025-03-26 Thread Kirill Lyashko
Just adding user@flink.apache.org On Fri, 21 Mar 2025 at 19:08, Kirill Lyashko wrote: > Ok, I'll ask them as well, thanks. > > On Fri, 21 Mar 2025 at 18:16, Alexey Novakov wrote: > >> This is really weird. >> >> I would recommend you also to ask on Flink Dev List. This can be an >> outdated Fli

Re: Submitting multiple DELETE statements in Flink SQL

2025-03-21 Thread Alexey Novakov via user
Hi Kirill, As far as I know, multiple statements cannot be run by calling an execute() method on each, so you are missing nothing. Try to look at the Statement Set which allows you to submit multiple SQL statements within one Flink app. For example: https://github.com/novakov-alexey/flink-ml-sand