Bug: PostgreSQL call functions v.5.0.5
See original GitHub issueI updated to dbeaver v. 5.0.5
Now I can’t perform request such as:
select uuid_generate_v1();
I always get the error:
SQL Error [42883]: ERROR: function uuid_generate_v1() does not exist Hint: No function matches the given name and argument types. You might need to add explicit type casts. Position: 8 SQL Error [42883]: ERROR: function uuid_generate_v1() does not exist Hint: No function matches the given name and argument types. You might need to add explicit type casts. Position: 8 SQL Error [42883]: ERROR: function uuid_generate_v1() does not exist Hint: No function matches the given name and argument types. You might need to add explicit type casts. Position: 8 SQL Error [42883]: ERROR: function uuid_generate_v1() does not exist Hint: No function matches the given name and argument types. You might need to add explicit type casts. Position: 8 ERROR: function uuid_generate_v1() does not exist Hint: No function matches the given name and argument types. You might need to add explicit type casts. Position: 8 ERROR: function uuid_generate_v1() does not exist Hint: No function matches the given name and argument types. You might need to add explicit type casts. Position: 8
If I perform the same request for the DB via PgAdmin - it works properly. P.S. [necessary extensions were enabled, and it worked for previous version of DBeaver]
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (3 by maintainers)
Top GitHub Comments
However. Recently we’ve changed the way how search_path is updated if you change active schema in DBeaver. Now
$user
is replaced with actual current session user name. Maybe it is reason why your extension is not accessible.I’ll keep $user as is. Please test it in EA version (https://dbeaver.io/files/ea/)
👍