Skip to content

Commit 07eaab3

Browse files
Genesis929tswast
andauthored
Update google/cloud/bigquery/job/query.py
Co-authored-by: Tim Sweña (Swast) <[email protected]>
1 parent 74ab765 commit 07eaab3

File tree

1 file changed

+0
-24
lines changed

1 file changed

+0
-24
lines changed

google/cloud/bigquery/job/query.py

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -856,30 +856,6 @@ def configuration(self) -> QueryJobConfig:
856856
"""The configuration for this query job."""
857857
return typing.cast(QueryJobConfig, super().configuration)
858858

859-
@property
860-
def created(self):
861-
"""Datetime at which the job was created."""
862-
millis = _helpers._int_or_none(self._job_statistics().get("creationTime"))
863-
if millis is not None:
864-
return _helpers._datetime_from_microseconds(millis * 1000)
865-
return super().created
866-
867-
@property
868-
def started(self):
869-
"""Datetime at which the job was started."""
870-
millis = _helpers._int_or_none(self._job_statistics().get("startTime"))
871-
if millis is not None:
872-
return _helpers._datetime_from_microseconds(millis * 1000)
873-
return super().started
874-
875-
@property
876-
def ended(self):
877-
"""Datetime at which the job finished."""
878-
millis = _helpers._int_or_none(self._job_statistics().get("endTime"))
879-
if millis is not None:
880-
return _helpers._datetime_from_microseconds(millis * 1000)
881-
return super().ended
882-
883859
@property
884860
def connection_properties(self) -> List[ConnectionProperty]:
885861
"""See

0 commit comments

Comments
 (0)