| 165 | } |
| 166 | |
| 167 | type RevokePrivilege struct { |
| 168 | statement string |
| 169 | tableName QualifiedName |
| 170 | grantees []string |
| 171 | privileges []string |
| 172 | cascadeOption bool // CASCADE option for REVOKE |
| 173 | } |
| 174 | |
| 175 | // CreatePartitionOf represents a PostgreSQL CREATE TABLE ... PARTITION OF statement |
| 176 | type CreatePartitionOf struct { |
nothing calls this directly
no outgoing calls
no test coverage detected