lock_stmt.go 192 B

123456789101112131415
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type LockStmt struct {
  6. Relations *ast.List
  7. Mode int
  8. Nowait bool
  9. }
  10. func (n *LockStmt) Pos() int {
  11. return 0
  12. }