comment_on_schema_stmt.go 138 B

12345678910
  1. package ast
  2. type CommentOnSchemaStmt struct {
  3. Schema *String
  4. Comment *string
  5. }
  6. func (n *CommentOnSchemaStmt) Pos() int {
  7. return 0
  8. }