Created
January 10, 2015 23:06
-
-
Save KWKdesign/4a758afbcd1737c041de to your computer and use it in GitHub Desktop.
Postgres ROT13
This file contains 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
create or replace function pg_temp.rot13( string text ) | |
returns text as $rot13$ | |
begin | |
return translate( string, 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz', 'NOPQRSTUVWXYZABCDEFGHIJKLMnopqrstuvwxyzabcdefghijklm' ); | |
end $rot13$ language plpgsql; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment