当前位置:网站首页>怎么在opengauss中进行测试自己添加的新函数的性能(循环n次的运行时间)?
怎么在opengauss中进行测试自己添加的新函数的性能(循环n次的运行时间)?
2022-08-03 16:28:00 【DarkAthena】
怎么在opengauss中进行测试自己添加的新函数的性能(循环n次的运行时间)?
采纳答案1:
写个匿名块,循环执行你想要测试的函数
create function test_func return int isbeginreturn 1;end;declarei int;begini:=1;raise notice '%',sysdate;loop perform test_func ;i:=i+1;if i=1000 then exit;end if;end loop;raise notice '%',sysdate;end;
当然,如果对于同一个输入值,始终返回相同的输出值,加上IMMUTABLE效率会更高
其他答案1:
写个匿名块,循环执行你想要测试的函数
create function test_func return int isbeginreturn 1;end;declarei int;begini:=1;raise notice '%',sysdate;loop perform test_func ;i:=i+1;if i=1000 then exit;end if;end loop;raise notice '%',sysdate;end;
当然,如果对于同一个输入值,始终返回相同的输出值,加上IMMUTABLE效率会更高
边栏推荐
- protobuf 反射使用总结
- mysql delete execution error: You can't specify target table 'doctor_info' for update in FROM clause
- How much do you know about the intelligent operation and maintenance service of data warehouse based on DMS?
- #夏日挑战赛#【FFH】OpenHarmony设备开发基础(四)启动流程
- Selective Search学习笔记
- 实时渲染流程操作复杂吗,如何实现?
- How to start an NFT collection
- 视频人脸识别和图片人脸识别的关系
- CopyOnWriteArrayList details
- WordPress建站技术笔记
猜你喜欢
随机推荐
2年开发经验去面试,吊打面试官,即将面试的程序员这些笔记建议复习
不可忽略!户外LED显示屏的特点及优势
socket快速理解
Web3 安全风险令人生畏?应该如何应对?
How much do you know about the intelligent operation and maintenance service of data warehouse based on DMS?
Hannah荣获第六季完美童模全球总决赛全球人气总冠军
C专家编程 第1章 C:穿越时空的迷雾 1.11 轻松一下---由编译器定义的Pragmas效果
建造者模式/生成器模式
Some optional strategies and usage scenarios for PWA application Service Worker caching
MarkDown常用代码片段和工具
一文看懂推荐系统:召回02:Swing 模型,和itemCF很相似,区别在于计算相似度的方法不一样
【AppCube】零代码小课堂开课啦
WordPress 5.2.3 更新,升级出现请求超时的解决方法
83. Remove Duplicates from Sorted List
大佬们。使用flink-cdc-sqlserver 2.2.0 版本读取sqlserver2008R
C专家编程 第1章 C:穿越时空的迷雾 1.7 编译限制
To add digital wings to education, NetEase Yunxin released the overall solution of "Internet + Education"
Introduction to the advantages of the new generation mesh network protocol T-Mesh wireless communication technology
C专家编程 第3章 分析C语言的声明 3.9 轻松一下---驱动物理实体的软件
C语言02、语句、函数