create_op_class_item.go 290 B

123456789101112131415161718
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type CreateOpClassItem struct {
  6. Itemtype int
  7. Name *ObjectWithArgs
  8. Number int
  9. OrderFamily *ast.List
  10. ClassArgs *ast.List
  11. Storedtype *TypeName
  12. }
  13. func (n *CreateOpClassItem) Pos() int {
  14. return 0
  15. }