into_clause.go 323 B

12345678910111213141516171819
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type IntoClause struct {
  6. Rel *RangeVar
  7. ColNames *ast.List
  8. Options *ast.List
  9. OnCommit OnCommitAction
  10. TableSpaceName *string
  11. ViewQuery ast.Node
  12. SkipData bool
  13. }
  14. func (n *IntoClause) Pos() int {
  15. return 0
  16. }