boneanxs commented on issue #5861:
URL: https://github.com/apache/hudi/issues/5861#issuecomment-1162607127
The `primarykey` must be specified when you creating hudi table, by default
it is uuid, this error means the table has no column names `uuid`, you can
change the sql to
```sql
create table if not exists an_hudi_table5(
id int,
name string,
price double
) using hudi
options (
primaryKey = 'id',
type = 'cow'
);
```
--
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]