Allow CREATE TABLE IF EXIST so succeed if the schema is nonexistent

Bruce Momjian <bruce@momjian.us>

Commit: 7e2322dff30c04d90c0602d2b5ae24b4881db88b
Author: Bruce Momjian <bruce@momjian.us>
Date: 2013-01-26T18:24:50Z
Releases: 9.3.0
Allow CREATE TABLE IF EXIST so succeed if the schema is nonexistent

Previously, CREATE TABLE IF EXIST threw an error if the schema was
nonexistent.  This was done by passing 'missing_ok' to the function that
looks up the schema oid.

Files