sec_label_stmt.go 224 B

12345678910111213141516
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type SecLabelStmt struct {
  6. Objtype ObjectType
  7. Object ast.Node
  8. Provider *string
  9. Label *string
  10. }
  11. func (n *SecLabelStmt) Pos() int {
  12. return 0
  13. }