comment_on_column_stmt.go 161 B

1234567891011
  1. package ast
  2. type CommentOnColumnStmt struct {
  3. Table *TableName
  4. Col *ColumnRef
  5. Comment *string
  6. }
  7. func (n *CommentOnColumnStmt) Pos() int {
  8. return 0
  9. }