| 1675 | } // namespace |
| 1676 | |
| 1677 | TypePtr randType( |
| 1678 | FuzzerGenerator& rng, |
| 1679 | int maxDepth, |
| 1680 | bool withDecimal, |
| 1681 | bool withHugeint) { |
| 1682 | return randType(rng, defaultScalarTypes(withDecimal, withHugeint), maxDepth); |
| 1683 | } |
| 1684 | |
| 1685 | TypePtr randOrderableType(FuzzerGenerator& rng, int maxDepth) { |
| 1686 | // Should we generate a scalar type? |
no test coverage detected