MCPcopy
hub / github.com/sqldef/sqldef / SetRowLevelSecurity

Struct SetRowLevelSecurity

schema/ast.go:153–158  ·  view source on GitHub ↗

SetRowLevelSecurity represents PostgreSQL ALTER TABLE ... {ENABLE|DISABLE|FORCE|NO FORCE} ROW LEVEL SECURITY

Source from the content-addressed store, hash-verified

151// SetRowLevelSecurity represents PostgreSQL
152// ALTER TABLE ... {ENABLE|DISABLE|FORCE|NO FORCE} ROW LEVEL SECURITY
153type SetRowLevelSecurity struct {
154 statement string
155 tableName QualifiedName
156 force bool // true: FORCE/NO FORCE, false: ENABLE/DISABLE
157 value bool
158}
159
160type GrantPrivilege struct {
161 statement string

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected