alter_collation_stmt.go 180 B

12345678910111213
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type AlterCollationStmt struct {
  6. Collname *ast.List
  7. }
  8. func (n *AlterCollationStmt) Pos() int {
  9. return 0
  10. }