We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6475428 commit 340be1fCopy full SHA for 340be1f
google/cloud/bigquery/routine/routine.py
@@ -872,7 +872,7 @@ def max_batching_rows(self) -> Optional[int]:
872
def max_batching_rows(self, value: Optional[int]):
873
if value is not None and not isinstance(value, int):
874
raise ValueError("max_batching_rows must be an integer or None.")
875
- self._properties["maxBatchingRows"] = value
+ self._properties["maxBatchingRows"] = _helpers._str_or_none(value)
876
877
@property
878
def runtime_version(self) -> Optional[str]:
0 commit comments