当前位置:网站首页>Gbase 8C function / stored procedure parameters (II)
Gbase 8C function / stored procedure parameters (II)
2022-07-03 02:22:00 【Dazhuang twelve】
- RETURNS NULL ON NULL INPUT | STRICT:RETURNS NULL ON NULL INPUT or STRICT Used to specify if a parameter of the function is NULL, This function always returns NULL. If this parameter is declared , When there is NULL Value parameter, the function will not be executed ; It just returns one automatically NULL result ;
- [EXTERNAL] SECURITY INVOKER: Indicates that the function will execute with the permission of the user who calls it , This parameter can be omitted ,EXTERNAL Is an optional parameter ;
- [EXTERNAL] SECURITY DEFINER: Declare that the function will execute with the privileges of the user who created it EXTERNAL Is an optional parameter ;
- PARALLEL: Indicates whether the function can be pushed down to DN On the implementation .PARALLEL UNSAFE Indicates that the function cannot be pushed down to DN Execute on and enforce the use of sequential execution plans , For default options ;PARALLEL RESTRICTED Indicates that the function can be pushed down to DN On the implementation , But the requirement must be in DN Leader On the implementation ;PARALLEL SAFE Indicates that the function can be pushed down to DN On the implementation , Safe and unrestricted ;
- execution_cost: Used to estimate the execution cost of the function ,execution_cost With cpu_operator_cost In units of , The value range is positive ;
- result_rows: Estimate the number of rows returned by the function , What is used for function return is a set , The value range is positive , The default value is 1000 That's ok ;
- configuration_parameter: Set the specified database session parameter value to the given value , If value yes DEFAULT perhaps RESET, The default settings of the system are used in the new session .OFF Turn off settings , The value range is string ;
- definition: Define the string constant of this function , It can be an internal function name 、 The path of the object file 、SQL Commands or text written in procedural language ;
- obj_file, link_symbol: Apply to C Language functions , character string obj_file Specifies the absolute path of the dynamic library ;link_symbol Specifies the link symbol of the function , That is, the function is in C The name of the function in the code ;
- attribute: Function optional information , Value range :isStrict( Equivalent to STRICT perhaps RETURNS NULL ON NULL INPUT)、isCachable( Equivalent to IMMUTABLE).
边栏推荐
- Job object of collaboration in kotlin
- [advanced ROS] Lesson 6 recording and playback in ROS (rosbag)
- Comment communiquer avec Huawei Cloud IOT via le Protocole mqtt
- 创建+注册 子应用_定义路由,全局路由与子路由
- GBase 8c系统表pg_cast
- Thread safe singleton mode
- Iptables layer 4 forwarding
- Socket programming
- [shutter] top navigation bar implementation (scaffold | defaulttabcontroller | tabbar | tab | tabbarview)
- Machine learning notes (constantly updating...)
猜你喜欢

Machine learning notes (constantly updating...)

stm32F407-------ADC
![[fluent] fluent debugging (debug debugging window | viewing mobile phone log information | setting normal breakpoints | setting expression breakpoints)](/img/ac/bf83f319ea787c5abd7ac3fabc9ede.jpg)
[fluent] fluent debugging (debug debugging window | viewing mobile phone log information | setting normal breakpoints | setting expression breakpoints)
![[Flutter] dart: class; abstract class; factory; Class, abstract class, factory constructor](/img/06/ab333a4752de27eae2dd937cf579e2.png)
[Flutter] dart: class; abstract class; factory; Class, abstract class, factory constructor

线程安全的单例模式

stm32F407-------ADC

stm32F407-------IIC通讯协议

Deep learning notes (constantly updating...)

How do it students find short-term internships? Which is better, short-term internship or long-term internship?

Comment communiquer avec Huawei Cloud IOT via le Protocole mqtt
随机推荐
SPI机制
GBase 8c触发器(二)
Monitoring and management of JVM
[codeforces] cf1338a - Powered addition [binary]
easyExcel
Javescript 0.1 + 0.2 = = 0.3 problem
Wechat applet Development Tool Post net:: Err Proxy Connexion Problèmes d'agent défectueux
Awk from entry to burial (1) awk first meeting
require.context
GBase 8c系统表-pg_conversion
Y54. Chapter III kubernetes from introduction to mastery -- ingress (27)
[Flutter] dart: class;abstract class;factory;类、抽象类、工厂构造函数
GBase 8c 函数/存储过程参数(二)
Return a tree structure data
Unrecognized SSL message, plaintext connection?
Codeforces Round #418 (Div. 2) D. An overnight dance in discotheque
Detailed introduction to the deployment and usage of the Nacos registry
stm32F407-------DMA
返回一个树形结构数据
GBase 8c系统表-pg_auth_members