alter_extension_contents_stmt.go 244 B

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