【发布时间】:2015-01-09 03:58:13
【问题描述】:
即使我尝试了不同的变体并且搜索了互联网也找不到解决此问题的方法? 我的函数调用是
select get_byte( md5('key')::text , 0);
不起作用。
根据这个http://www.postgresql.org/docs/9.1/static/functions-string.htmlmd5接受字符串输入并产生文本,而get_byte期望字符串输入(http://www.postgresql.org/docs/8.0/static/functions-binarystring.html)。我在这里想念什么?错误是HINT: No function matches the given name and argument types. You might need to add explicit type casts.
【问题讨论】:
标签: postgresql