CreatePartitionOf represents a PostgreSQL CREATE TABLE ... PARTITION OF statement
| 174 | |
| 175 | // CreatePartitionOf represents a PostgreSQL CREATE TABLE ... PARTITION OF statement |
| 176 | type CreatePartitionOf struct { |
| 177 | statement string |
| 178 | tableName QualifiedName |
| 179 | parentTable QualifiedName |
| 180 | boundSpec PartitionBound |
| 181 | } |
| 182 | |
| 183 | // PartitionBound represents the partition bound specification |
| 184 | type PartitionBound struct { |
nothing calls this directly
no outgoing calls
no test coverage detected