You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Tablespaces have a few options which can be set on them to give PG hintsas to how the tablespace behaves (perhaps it's faster for sequentialscans, or better able to handle random access, etc). These options wereonly 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 toget the correct options set on the tablespace.Vik Fearing, reviewed by Michael Paquier.