I was wondering what is the difference and implications of executing sql statements in pyflink with and without wait() command:
t_env.execute_sql(query)
t_env.execute_sql(query).wait()
I experimented with both, and see no difference in execution.