CodyPin commented on issue #3308:
URL: https://github.com/apache/paimon/issues/3308#issuecomment-2103821619

   I have notice another issue, it is with composite primary key, I am guessing 
Paimon doesn't know what to do when a table contains 2 or more pkeys, and 
resulting in the table being filtered out.
   You can test it out with:
   ```
   CREATE TABLE `test_composite_pk` (
      `id` bigint(20) NOT NULL,
      `id_2` bigint(20) NOT NULL,
      `school` varchar(50) DEFAULT NULL,
      PRIMARY KEY(`id`, `id_2`)
   ) ENGINE=InnoDB DEFAULT CHARSET=latin1
   ```


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