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