create_cast_stmt.go 210 B

12345678910111213
  1. package pg
  2. type CreateCastStmt struct {
  3. Sourcetype *TypeName
  4. Targettype *TypeName
  5. Func *ObjectWithArgs
  6. Context CoercionContext
  7. Inout bool
  8. }
  9. func (n *CreateCastStmt) Pos() int {
  10. return 0
  11. }