| 270 | |
| 271 | |
| 272 | void PgReader::CursorTeardown() |
| 273 | { |
| 274 | pg_execute(m_session, "CLOSE cur"); |
| 275 | pg_commit(m_session); |
| 276 | log()->get(LogLevel::Debug) << "SQL cursor closed." << std::endl; |
| 277 | } |
| 278 | |
| 279 | |
| 280 | point_count_t PgReader::readPgPatch(PointViewPtr view, point_count_t numPts) |
nothing calls this directly
no test coverage detected