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 234a3fd commit b20159bCopy full SHA for b20159b
google/cloud/bigquery/schema.py
@@ -389,9 +389,14 @@ def policy_tags(self):
389
390
@property
391
def timestamp_precision(self):
392
- """Optional[int]: Subfields contained in this field.
+ """Optional[int]: Precision (maximum number of total digits in base 10)
393
+ for seconds of TIMESTAMP type.
394
- Must be empty unset if ``field_type`` is not 'RECORD'.
395
+ Possible values include:
396
+
397
+ - 6 (Default, for TIMESTAMP type with microsecond precision)
398
399
+ - 12 (For TIMESTAMP type with picosecond precision)
400
"""
401
return _helpers._int_or_none(self._properties.get("timestampPrecision"))
402
0 commit comments