[Bug] when execute a simple datagen example got an error
Search before asking
- [X] I had searched in the issues and found no similar issues.
What happened
Update the latest dev branch code, create a simple flindsql example like this : CREATE TABLE Orders ( order_number BIGINT, price DECIMAL(32,2), buyer ROW<first_name STRING, last_name STRING>, ts TIMESTAMP(3) ) WITH ( 'connector' = 'datagen', 'rows-per-second' = '100000', 'fields.order_number.kind'='random' , 'fields.order_number.min'='1000000', 'fields.order_number.max'='9900000' );
select order_number,price,ts from Orders
env:

What you expected to happen
should be show the results of the table.
How to reproduce
1.create a flindsql type file with : CREATE TABLE Orders ( order_number BIGINT, price DECIMAL(32,2), buyer ROW<first_name STRING, last_name STRING>, ts TIMESTAMP(3) ) WITH ( 'connector' = 'datagen', 'rows-per-second' = '100000', 'fields.order_number.kind'='random' , 'fields.order_number.min'='1000000', 'fields.order_number.max'='9900000' );
select order_number,price,ts from Orders
2.config the env like this:
3. run the job:

Anything else
No response
Version
dev
Are you willing to submit PR?
- [ ] Yes I am willing to submit a PR!
Code of Conduct
- [X] I agree to follow this project's Code of Conduct
Please check whether there is any error in the log.
Thanks for quick reply! There is no error in server side, maybe it's frontside error.
I'm sorry, I can't to reproduce it, and please view the returned result of the request through F12.