| 163 | } |
| 164 | |
| 165 | type JoinTableExpr struct { |
| 166 | Table *TableExpr |
| 167 | StatementEnd Pos |
| 168 | SampleRatio *SampleClause |
| 169 | HasFinal bool |
| 170 | } |
| 171 | |
| 172 | func (j *JoinTableExpr) Accept(visitor ASTVisitor) error { |
| 173 | visitor.Enter(j) |
nothing calls this directly
no outgoing calls
no test coverage detected