LadyForest commented on pull request #58:
URL: https://github.com/apache/flink-table-store/pull/58#issuecomment-1076279637
Currently, two failed cases need to be debugged.
The first case
```sql
--executionMode-STREAMING,
tableName-table_6fe1e20e-b871-49e6-98c6-cdc91157cbe2, enableLogStore-false
-- helper source ddl
CREATE TABLE `source_table_a1575cf0-feb9-427c-8c4b-0138eed2318e` (
currency STRING,
rate BIGINT,
dt STRING,
PRIMARY KEY (currency, dt) NOT ENFORCED
) PARTITIONED BY (dt)
WITH (
'connector' = 'values',
'bounded' = 'false',
'data-id' = '10',
'changelog-mode' = 'I,UA,D',
'disable-lookup' = 'true',
'partition-list' = 'dt:2022-01-01;dt:2022-01-02'
);
-- managed table ddl
CREATE TABLE IF NOT EXISTS
`catalog`.`database`.`table_6fe1e20e-b871-49e6-98c6-cdc91157cbe2`
LIKE `source_table_a1575cf0-feb9-427c-8c4b-0138eed2318e` (EXCLUDING OPTIONS)
-- insert query
INSERT INTO `table_6fe1e20e-b871-49e6-98c6-cdc91157cbe2`
SELECT * FROM `source_table_a1575cf0-feb9-427c-8c4b-0138eed2318e`
-- select query
SELECT * FROM `table_6fe1e20e-b871-49e6-98c6-cdc91157cbe2
```
The read task is blocked at stream collecting results when
`iterator.hasNext` is called, and finally timeout.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]