Encode a PK value as index bytes. Exposed for callers that need to probe the PK index (e.g. `ON CONFLICT DO UPDATE` routing).
(&self, values: &[Value])
| 254 | /// Encode a PK value as index bytes. Exposed for callers that need |
| 255 | /// to probe the PK index (e.g. `ON CONFLICT DO UPDATE` routing). |
| 256 | pub fn encode_pk_from_row(&self, values: &[Value]) -> Result<Vec<u8>, ColumnarError> { |
| 257 | self.extract_pk_bytes(values) |
| 258 | } |
| 259 | |
| 260 | // -- Internal helpers -- |
| 261 |
no test coverage detected