[
https://issues.apache.org/jira/browse/FLINK-34302?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17814892#comment-17814892
]
Dawid Wysakowicz commented on FLINK-34302:
------------------------------------------
Test suggestions:
1. Write a few Table API programs.
2. Call {{Table.getQueryOperation#asSerializableString}}, manually verify the
produced SQL query
3. Check the produced SQL query is runnable and produces the same results as
the Table API program:
{code}
Table table = tEnv.from("a") ...
String sqlQuery = table.getQueryOperation().asSerializableString();
//verify the sqlQuery is runnable
tEnv.sqlQuery(sqlQuery).execute().collect()
{code}
> Release Testing Instructions: Verify FLINK-33644 Make QueryOperations SQL
> serializable
> --------------------------------------------------------------------------------------
>
> Key: FLINK-34302
> URL: https://issues.apache.org/jira/browse/FLINK-34302
> Project: Flink
> Issue Type: Sub-task
> Components: Table SQL / API
> Affects Versions: 1.19.0
> Reporter: lincoln lee
> Assignee: Dawid Wysakowicz
> Priority: Blocker
> Fix For: 1.19.0
>
> Attachments: screenshot-1.png
>
>
--
This message was sent by Atlassian Jira
(v8.20.10#820010)