| 381 | |
| 382 | |
| 383 | ASTPtr ASTSelectQuery::sampleOffset() const |
| 384 | { |
| 385 | const ASTTableExpression * table_expression = getFirstTableExpression(*this); |
| 386 | if (!table_expression) |
| 387 | return {}; |
| 388 | |
| 389 | return table_expression->sample_offset; |
| 390 | } |
| 391 | |
| 392 | |
| 393 | bool ASTSelectQuery::final() const |
no test coverage detected