create_op_class_stmt.go 295 B

123456789101112131415161718
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type CreateOpClassStmt struct {
  6. Opclassname *ast.List
  7. Opfamilyname *ast.List
  8. Amname *string
  9. Datatype *TypeName
  10. Items *ast.List
  11. IsDefault bool
  12. }
  13. func (n *CreateOpClassStmt) Pos() int {
  14. return 0
  15. }