Re: Schema version management

Started by Kevin Grittnerover 13 years ago1 messages
#1Kevin Grittner
Kevin.Grittner@wicourts.gov

Joel Jacobson wrote:

hm, is it even possible to have function names with slashes?

test=# create function "is/""it""\even
possible?"() returns void language plpgsql as $$begin end;$$;
CREATE FUNCTION
test=# select "is/""it""\even
possible?"();
is/"it"\even+
possible?
--------------

(1 row)

-Kevin