| 361 | |
| 362 | |
| 363 | ASTPtr ASTSelectQuery::sampleSize() const |
| 364 | { |
| 365 | const ASTTableExpression * table_expression = getFirstTableExpression(*this); |
| 366 | if (!table_expression) |
| 367 | return {}; |
| 368 | |
| 369 | return table_expression->sample_size; |
| 370 | } |
| 371 | |
| 372 | |
| 373 | ASTPtr ASTSelectQuery::sampleOffset() const |
no test coverage detected