六, 2023年 1 月 21日 上午 3:13:12
主题: Re: Custom catalog implementation - getting table schema for computed
columns
Ok,
so now I see that runtime type of "table" parameter is ResolvedCatalogTable
that has method getResolvedSchema.
So I guess my question is, can I assume that ResolvedCa
wse/FLINK-21396 ]
Best regards,
Yuxia
发件人: "Krzysztof Chmielewski"
收件人: "User"
发送时间: 星期六, 2023年 1 月 21日 上午 2:27:25
主题: Custom catalog implementation - getting table schema for computed columns
Hi,
I'm implementing a custom Catalog where for "create table" I
Ok,
so now I see that runtime type of "table" parameter is ResolvedCatalogTable
that has method getResolvedSchema.
So I guess my question is, can I assume that ResolvedCatalogTable will be
always a runtime type?
pt., 20 sty 2023 o 19:27 Krzysztof Chmielewski <
krzysiek.chmielew...@gmail.com> napi
Hi,
I'm implementing a custom Catalog where for "create table" I need to get
tables schema, both column names and types from DDL.
Now the Catalog's createTable method has "CatalogBaseTable table" argument.
The CatalogBaseTable has a deprecated "getSchema" and suggest to
use getUnresolvedSchema in