create_op_family_stmt.go 206 B

1234567891011121314
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type CreateOpFamilyStmt struct {
  6. Opfamilyname *ast.List
  7. Amname *string
  8. }
  9. func (n *CreateOpFamilyStmt) Pos() int {
  10. return 0
  11. }