Last active
January 3, 2016 09:49
-
-
Save nicgrayson/8445089 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
| SELECT setting INTO version FROM pg_settings WHERE name='server_version_num'; | |
| IF version < 90000 THEN | |
| DROP LANGUAGE IF EXISTS plpgsql; | |
| CREATE LANGUAGE plpgsql; | |
| ELSE | |
| DROP EXTENSION IF EXISTS plpgsql; | |
| CREATE EXTENSION plpgsql; | |
| END IF; |
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
| [error] ERROR: syntax error at or near "IF" | |
| [error] Position: 3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment