| 78 | } |
| 79 | |
| 80 | void nullify() |
| 81 | { |
| 82 | // Zero the record buffer and initialize all fields to NULLs |
| 83 | const size_t null_bytes = (m_format->fmt_count + 7) >> 3; |
| 84 | memset(getData(), 0xFF, null_bytes); |
| 85 | memset(getData() + null_bytes, 0, getLength() - null_bytes); |
| 86 | |
| 87 | // Record has real NULLs now, so clear the "fake-nulls" flag |
| 88 | m_fake_nulls = false; |
| 89 | } |
| 90 | |
| 91 | PageStack& getPrecedence() |
| 92 | { |
no outgoing calls
no test coverage detected