danhuawang commented on issue #4147: URL: https://github.com/apache/gravitino/issues/4147#issuecomment-2268703958
> I have figured it out, this isn't about Gravitino. > > It is caused by the MySQL charSet of HMS you are using. you can try to alter the charSet in MySQL by: > > ```sql > alter table COLUMNS_V2 modify column COMMENT varchar(256) character set utf8; > alter table TABLE_PARAMS modify column PARAM_VALUE varchar(4000) character set utf8; > alter table PARTITION_PARAMS modify column PARAM_VALUE varchar(4000) character set utf8 ; > alter table PARTITION_KEYS modify column PKEY_COMMENT varchar(4000) character set utf8; > alter table INDEX_PARAMS modify column PARAM_VALUE varchar(4000) character set utf8; > ``` But this environment is using Postgres of HMS, do I need to alter the charSet in PG by the same command ? -- 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]
