请教一下, 1.flink1.9.0的table API/sql是不是还没有支持Create view? 2.BlinkPlanner和flink的planner有什么区别?*来自志愿者整理的flink邮件归档
from the official documentation of flink 1.9:
Views can also be created within a CLI session using the CREATE VIEW statement:
CREATE VIEW MyNewView AS SELECT MyField2 FROM MyTableSource;
Views created within a CLI session can also be removed again using the DROP VIEW statement:
DROP VIEW MyNewView;
Attention The definition of views in the CLI is limited to the mentioned syntax above. Defining a schema for views or escaping whitespaces in table names will be supported in future versions.
So create view is supported but has the limits.*来自志愿者整理的flink邮件归档
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。