JNSimba edited a comment on issue #7387: URL: https://github.com/apache/incubator-doris/issues/7387#issuecomment-993183492
> @JNSimba yes. desc tablename, there is a field > > ```sql > | __DORIS_DELETE_SIGN__ | TINYINT | No | false | 0 | REPLACE | > ``` > > and, how to add a hidden column field when creating a table in flink? like this? > > ```sql > create table doris_sbo_t ( > `name` string, > `__DORIS_DELETE_SIGN__` tinyint > ) with ( > 'connector' = 'doris', > 'fenodes' = 'ip:host', > 'table.identifier' = 'db.table', > 'username' = 'root', > 'password' = '' > ); > ``` > > if so, i get the same error. It may be that your connector-jar version is too old, the old version does not support the String type, you can see this PR https://github.com/apache/incubator-doris/pull/7075. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
