From 91dbfdf4f91eec4443a20c2313555e39f6855b86 Mon Sep 17 00:00:00 2001 From: "STATION\\MF" Date: Tue, 29 Sep 2020 16:32:12 -0400 Subject: [PATCH] feat: BASELINE for DB API integration test --- google/cloud/spanner_dbapi/connection.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/google/cloud/spanner_dbapi/connection.py b/google/cloud/spanner_dbapi/connection.py index 869586e363..af3afa7da1 100644 --- a/google/cloud/spanner_dbapi/connection.py +++ b/google/cloud/spanner_dbapi/connection.py @@ -38,9 +38,8 @@ def _raise_if_closed(self): raise InterfaceError("connection is already closed") def __handle_update_ddl(self, ddl_statements): - """ - Run the list of Data Definition Language (DDL) statements on the underlying - database. Each DDL statement MUST NOT contain a semicolon. + """Run the list of Data Definition Language (DDL) statements on the + underlying database. Each DDL statement MUST NOT contain a semicolon. Args: ddl_statements: a list of DDL statements, each without a semicolon. Returns: