copy_stmt.go 274 B

12345678910111213141516171819
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type CopyStmt struct {
  6. Relation *RangeVar
  7. Query ast.Node
  8. Attlist *ast.List
  9. IsFrom bool
  10. IsProgram bool
  11. Filename *string
  12. Options *ast.List
  13. }
  14. func (n *CopyStmt) Pos() int {
  15. return 0
  16. }