| 371 | |
| 372 | |
| 373 | ASTPtr ASTSelectQuery::sampleSize() const |
| 374 | { |
| 375 | const ASTTableExpression * table_expression = getFirstTableExpression(*this); |
| 376 | if (!table_expression) |
| 377 | return {}; |
| 378 | |
| 379 | return table_expression->sample_size; |
| 380 | } |
| 381 | |
| 382 | |
| 383 | ASTPtr ASTSelectQuery::sampleOffset() const |
no test coverage detected