| 30 | namespace sql { |
| 31 | |
| 32 | JSONSQLWriter::JSONSQLWriter(bool pretty) |
| 33 | : pretty_(pretty), jsonPayload_(rapidjson::kArrayType) { |
| 34 | } |
| 35 | |
| 36 | JSONSQLWriter::~JSONSQLWriter() = default; |
| 37 |
nothing calls this directly
no outgoing calls
no test coverage detected