搜索“类似 grep”通过 PostgreSql 函数
当重构 PostgreSql 函数时(更具体地说:在搜索“未使用的”函数时),拥有一个可用于在函数定义中搜索特定字符串的函数会很方便。
有谁知道这是否是最好的方法(尝试“grep”搜索函数定义)或者是否有可用的替代方法?
如何实现这一功能?
When refactoring PostgreSql functions (and more specific: while searching for 'unused' functions) it would be handy to have a function available to search for a specific string within the function definitions.
Does anyone know if this is the best approach (trying to 'grep'-search the function definitions) or are there alternative methods available?
How would one implement this functionality?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有关如何在 PostgreSQL 中使用正则表达式的详细信息,可以在 手册。
Details about how to use a regex in PostgreSQL, can be found in the manual.
弗兰克的回答很棒。使用此增强版本可以额外列出有助于查找函数的架构:
Frank's answer is great. Use this enhanced version to additionally list the schema which helps to locate the function: