Skip to content

Commit a37c41a

Browse files
authored
Remove invalid chunk validation
Fixes #2980
1 parent 4d2a7d1 commit a37c41a

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

bigtable/google/cloud/bigtable/row_data.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -366,8 +366,6 @@ def _validate_chunk_row_in_progress(self, chunk):
366366
"""Helper for :meth:`_validate_chunk`"""
367367
assert self.state == self.ROW_IN_PROGRESS
368368
self._validate_chunk_status(chunk)
369-
if not chunk.HasField('commit_row') and not chunk.reset_row:
370-
_raise_if(not chunk.timestamp_micros or not chunk.value)
371369
_raise_if(chunk.row_key and
372370
chunk.row_key != self._row.row_key)
373371
_raise_if(chunk.HasField('family_name') and

0 commit comments

Comments
 (0)