| 391 | |
| 392 | |
| 393 | bool ASTSelectQuery::final() const |
| 394 | { |
| 395 | const ASTTableExpression * table_expression = getFirstTableExpression(*this); |
| 396 | if (!table_expression) |
| 397 | return {}; |
| 398 | |
| 399 | return table_expression->final; |
| 400 | } |
| 401 | |
| 402 | bool ASTSelectQuery::withFill() const |
| 403 | { |
no test coverage detected