1
0

column_def.go 172 B

12345678910111213
  1. package ast
  2. type ColumnDef struct {
  3. Colname string
  4. TypeName *TypeName
  5. IsNotNull bool
  6. IsArray bool
  7. Vals *List
  8. }
  9. func (n *ColumnDef) Pos() int {
  10. return 0
  11. }