| 548 | |
| 549 | template <typename Formatter> |
| 550 | void SQLEncoder<Formatter>::dumpSQLWhere(bool stripArgs) const { |
| 551 | if (query_.Entries().Empty()) { |
| 552 | return; |
| 553 | } |
| 554 | formatter_.Next(); |
| 555 | formatter_.Serializer() << "WHERE"; |
| 556 | { |
| 557 | const auto whereGuard = formatter_.StartBlock(); |
| 558 | dumpWhereEntries(query_.Entries().cbegin(), query_.Entries().cend(), stripArgs); |
| 559 | dumpEqualPositions(query_.Entries().equalPositions); |
| 560 | } |
| 561 | } |
| 562 | |
| 563 | template class SQLEncoder<SingleLineSqlFormatter>; |
| 564 | template class SQLEncoder<PrettySqlFormatter>; |
nothing calls this directly
no test coverage detected