column_ref.go 97 B

123456789
  1. package ast
  2. type ColumnRef struct {
  3. Name string
  4. }
  5. func (n *ColumnRef) Pos() int {
  6. return 0
  7. }