(&mut self, _table_id: TableId, reader: &mut R)
| 689 | } |
| 690 | |
| 691 | fn skip_row<'a, R: BufReader<'a>>(&mut self, _table_id: TableId, reader: &mut R) -> Result<(), Self::Error> { |
| 692 | ProductValue::decode(&SOME_PV_TY, reader)?; |
| 693 | Ok(()) |
| 694 | } |
| 695 | } |
| 696 | |
| 697 | proptest! { |