zhangjun0x01 commented on issue #1494:
URL:
https://github.com/apache/incubator-paimon/issues/1494#issuecomment-1621062869
I test it in my computer,it is ok, could you provide more information?
```
Flink SQL> create table t6(id int , name string) with
('file.format'='parquet','file.compression'='ZSTD');
[INFO] Execute statement succeed.
Flink SQL> insert into t6 select 6,'bbb';
[INFO] Submitting SQL update statement to the cluster...
[INFO] SQL update statement has been successfully submitted to the cluster:
Job ID: 4a4712de0ecf72630ba801aad35702cf
Flink SQL> select * from t6;
+----+------+
| id | name |
+----+------+
| 6 | bbb |
+----+------+
1 row in set
Flink SQL>
```
--
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]