不支持的功能'从非恒定源表达式分配'
执行标准脚本时,我们收到以下错误:
错误: 不支持的功能“来自非常量源表达式的分配”。
脚本 设置 geo = (选择 st_makepoint(-79.3810586,43.6562331));
We are getting the below error when executing a standard script:
Error:
Unsupported feature 'assignment from non-constant source expression'.
Scriptset geo = (Select st_makepoint(-79.3810586,43.6562331));
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
所以你的 SQL 自己运行,这是一个很好的开始:
所以一个简单的块动态类型让:
因此提前声明类型会给出:
那不好。但这可能与它尚未进入正式版有关。
https://docs.snowflake。 com/en/developer-guide/snowflake-scripting/variables.html#declaring-a-variable
所以如果你打开了预览功能,上面的方法可能对你有用..
但是“标准程序”你指的是一个JavaScript程序:
我们可以称之为
这样就可以了..
So you SQL run by itself, that's a good start:
so a simple block with the dynamic type
let
:so declaring the type ahead of time give:
that not good. but it might be related to the fact it's not in GA yet.
https://docs.snowflake.com/en/developer-guide/snowflake-scripting/variables.html#declaring-a-variable
so if you have the preview feature turned on the above might work for you..
But by "standard procedure" you mean a JavaScript Procedure:
which we can call
so that works..