variable_set_stmt.go 229 B

12345678910111213141516
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type VariableSetStmt struct {
  6. Kind VariableSetKind
  7. Name *string
  8. Args *ast.List
  9. IsLocal bool
  10. }
  11. func (n *VariableSetStmt) Pos() int {
  12. return 0
  13. }