alter_policy_stmt.go 260 B

1234567891011121314151617
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type AlterPolicyStmt struct {
  6. PolicyName *string
  7. Table *RangeVar
  8. Roles *ast.List
  9. Qual ast.Node
  10. WithCheck ast.Node
  11. }
  12. func (n *AlterPolicyStmt) Pos() int {
  13. return 0
  14. }