8000
We read every piece of feedback, and take your input very seriously.
T 8000 o see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
DatabaseClient.runshell()
1 parent 14e4cac commit 05a1640Copy full SHA for 05a1640
django_spanner/client.py
@@ -5,8 +5,9 @@
5
# https://developers.google.com/open-source/licenses/bsd
6
7
from django.db.backends.base.client import BaseDatabaseClient
8
+from google.cloud.spanner_dbapi.exceptions import NotSupportedError
9
10
11
class DatabaseClient(BaseDatabaseClient):
- def runshell(self):
12
- raise NotImplementedError("dbshell is not implemented.")
+ def runshell(self, parameters):
13
+ raise NotSupportedError("This method is not supported.")
0 commit comments