| 66 | } |
| 67 | |
| 68 | OPENPGL_INLINE std::string FieldStatistics::ToString() const |
| 69 | { |
| 70 | OPENPGL_ASSERT(m_fieldStatisticsHandle); |
| 71 | PGLString pglString = pglFieldStatisticsToString(m_fieldStatisticsHandle); |
| 72 | std::string str = ""; |
| 73 | if (pglString.m_str) |
| 74 | str = std::string(pglString.m_str); |
| 75 | |
| 76 | pglReleaseString(pglString); |
| 77 | |
| 78 | return str; |
| 79 | } |
| 80 | |
| 81 | OPENPGL_INLINE std::string FieldStatistics::HeaderCSVString() const |
| 82 | { |
nothing calls this directly
no test coverage detected