Created
September 16, 2014 11:54
-
-
Save ringerc/d1163c0ff76b9a5e28b0 to your computer and use it in GitHub Desktop.
Test case for http://stackoverflow.com/q/25865861/398670
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 SCHEMA myschema; | |
CREATE TABLE myschema.zzafter(id integer); | |
CREATE OR REPLACE FUNCTION myschema.aabefore() | |
RETURNS void | |
LANGUAGE plpgsql | |
AS $$ | |
DECLARE | |
somefield myschema.zzafter.id%TYPE; | |
BEGIN | |
RETURN; | |
END; | |
$$; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment