macdoor opened a new issue, #1491:
URL: https://github.com/apache/incubator-paimon/issues/1491

   ### Search before asking
   
   - [X] I searched in the 
[issues](https://github.com/apache/incubator-paimon/issues) and found nothing 
similar.
   
   
   ### Paimon version
   
   paimon-trino-393-0.5-20230704.000507-57.jar
   
   ### Compute Engine
   
   trino
   
   ### Minimal reproduce step
   
   create 3 tables
   
   ```
   drop table if exists svc1_paimon_prod.dxx.with_row;
   CREATE TABLE svc1_paimon_prod.dxx.with_row (
     id                    string,
     order_attrs           row<
       ordernum            string,
       paymentmode         string
     >,
     skuNum                string,
     PRIMARY KEY (id,skuNum) NOT ENFORCED
   ) 
     PARTITIONED BY (skuNum);
     
     
   drop table if exists svc1_paimon_prod.dxx.without_row;
   CREATE TABLE svc1_paimon_prod.dxx.without_row (
     id                    string,
     skuNum                string,
     PRIMARY KEY (id,skuNum) NOT ENFORCED
   ) 
     PARTITIONED BY (skuNum);
   
   drop table if exists svc1_paimon_prod.dxx.with_row_append;
   CREATE TABLE svc1_paimon_prod.dxx.with_row_append (
     id                    string,
     order_attrs           row<
       ordernum            string,
       paymentmode         string
     >,
     skuNum                string
   ) 
     PARTITIONED BY (skuNum);
   ```
   
   
   ### What doesn't meet your expectations?
   
   execute
   
   `SELECT t.* FROM with_row t
   `
   throw exception 
   
   ```
   [2023-07-04 12:25:42] [65536] Query failed (#20230704_042542_00381_hzk4t): 
org.apache.paimon.codegen.GeneratedClass
   [2023-07-04 12:25:42] java.lang.ClassNotFoundException: 
org.apache.paimon.codegen.GeneratedClass
   
   ```
   
   There is no error in querying table without_row, with_row_append
   
   ### 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