Add CREATE TABLESPACE ... WITH ... Options

Stephen Frost <sfrost@snowman.net>

Commit: 5254958e924cd54f33d37026d85483fef986060d
Author: Stephen Frost <sfrost@snowman.net>
Date: 2014-01-19T01:59:31Z
Releases: 9.4.0
Add CREATE TABLESPACE ... WITH ... Options

Tablespaces have a few options which can be set on them to give PG hints
as to how the tablespace behaves (perhaps it's faster for sequential
scans, or better able to handle random access, etc).  These options were
only available through the ALTER TABLESPACE command.

This adds the ability to set these options at CREATE TABLESPACE time,
removing the need to do both a CREATE TABLESPACE and ALTER TABLESPACE to
get the correct options set on the tablespace.

Vik Fearing, reviewed by Michael Paquier.

Files