Created
March 8, 2019 10:49
-
-
Save alex-eri/8d20c685e19284e4bcf404e4aac7a33d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
postgres=# create function lala () returns numeric LANGUAGE plpgsql as $$ begin return 1; end;$$; | |
CREATE FUNCTION | |
postgres=# select lala(); | |
lala | |
------ | |
1 | |
(1 row) | |
postgres=# select "lala"(); | |
lala | |
------ | |
1 | |
(1 row) | |
postgres=# select public."lala"(); | |
lala | |
------ | |
1 | |
(1 row) | |
postgres=# create function "lala" () returns numeric LANGUAGE plpgsql as $$ begin return 1; end;$$; | |
ERROR: function "lala" already exists with same argument types |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment