-
Notifications
You must be signed in to change notification settings - Fork 99
Closed
Labels
api: spannerIssues related to the googleapis/python-spanner API.Issues related to the googleapis/python-spanner API.priority: p2Moderately-important priority. Fix may not be included in next release.Moderately-important priority. Fix may not be included in next release.type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.Error or flaw in code with unintended results or allowing sub-optimal usage patterns.
Description
Actual and correct method call:
python-spanner/google/cloud/spanner_dbapi/cursor.py
Lines 265 to 266 in 1f80a39
| except Aborted: | |
| self.connection.retry_transaction() |
While in few methods object tried to call a wrong attribute which doesn't exist:
python-spanner/google/cloud/spanner_dbapi/cursor.py
Lines 282 to 283 in 1f80a39
| self._connection.retry_transaction() | |
| return self.fetchall() |
python-spanner/google/cloud/spanner_dbapi/cursor.py
Lines 313 to 314 in 1f80a39
| self._connection.retry_transaction() | |
| return self.fetchmany(size) |
Metadata
Metadata
Assignees
Labels
api: spannerIssues related to the googleapis/python-spanner API.Issues related to the googleapis/python-spanner API.priority: p2Moderately-important priority. Fix may not be included in next release.Moderately-important priority. Fix may not be included in next release.type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.Error or flaw in code with unintended results or allowing sub-optimal usage patterns.