sj-ganwh opened a new issue, #4369:
URL: https://github.com/apache/paimon/issues/4369

   ### Search before asking
   
   - [X] I searched in the [issues](https://github.com/apache/paimon/issues) 
and found nothing similar.
   
   
   ### Paimon version
   
   paimon-trino-427-0.8-20241024.000602-178-plugin.tar.gz
   
   ### Compute Engine
   
   trino-server-462
   
   ### Minimal reproduce step
   
   1. trino paimo catalog
   ```
   connector.name=paimon
   warehouse=file:/opt/sr/current/local_wh
   ```
   
   2. create table by following 
https://paimon.apache.org/docs/0.8/engines/trino/
   ```
   CREATE SCHEMA paimon.test_db;
   
   CREATE TABLE paimon.test_db.orders (
       order_key bigint,
       orders_tatus varchar,
       total_price decimal(18,4),
       order_date date
   )
   WITH (
       file_format = 'ORC',
       primary_key = ARRAY['order_key','order_date'],
       partitioned_by = ARRAY['order_date'],
       bucket = '2',
       bucket_key = 'order_key',
       changelog_producer = 'input'
   );
   ```
   
   3. error 
   ```
   Query failed (#20241024_030059_00002_t4536): This connector does not support 
creating tables io.trino.spi.TrinoException: This connector does not support 
creating tables
   ```
   
   
   
   ### What doesn't meet your expectations?
   
   Paimon docs https://paimon.apache.org/docs/0.8/engines/trino/ says could use 
Trino to create table, but is doesn't. 
   
   ### Anything else?
   
   _No response_
   
   ### Are you willing to submit a PR?
   
   - [ ] I'm willing to submit a PR!


-- 
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]

Reply via email to