Creator of a range type must have permission to call support functions.
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 23 Nov 2011 17:45:49 +0000 (12:45 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 23 Nov 2011 17:45:49 +0000 (12:45 -0500)
commita912a2784be5d144aab89e447dfe8ca74b6ad079
tree12c4414427bcd644a9a4a3e5acf2b782afb171b6
parent74c1723fc8dca2d70576ef2f0a66f4a7c99c173a
Creator of a range type must have permission to call support functions.

Since range types can be created by non-superusers, we need to consider
their permissions.  Ideally we'd check this when the type is used, not
when it's created, but that seems like much more trouble than it's worth.
The existing restriction that the support functions be immutable already
prevents most cases where an unauthorized call to a function might be
thought a security issue, and the fact that the user has no access to
the results of the system's calls to subtype_diff closes off the other
plausible reason for concern.  So this check is basically pro-forma,
but let's make it anyway.
src/backend/commands/typecmds.c