| 10 | { |
| 11 | |
| 12 | String StatementGenerator::nextComment(RandomGenerator & rg) const |
| 13 | { |
| 14 | return rg.nextSmallNumber() < 4 ? "''" : rg.nextString("'", true, rg.nextStrlen()); |
| 15 | } |
| 16 | |
| 17 | static void collectNullable(SQLType * tp, const uint32_t flags, ColumnPathChain & next, std::vector<ColumnPathChain> & paths) |
| 18 | { |
nothing calls this directly
no test coverage detected