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.
2 parents d84d0f1 + b17c26c commit c00173cCopy full SHA for c00173c
ydb_sqlalchemy/dbapi/cursor.py
@@ -3,7 +3,6 @@
3
import functools
4
import hashlib
5
import itertools
6
-import logging
7
import posixpath
8
from collections.abc import AsyncIterator
9
from typing import (
@@ -31,8 +30,6 @@
31
30
ProgrammingError,
32
)
33
34
-logger = logging.getLogger(__name__)
35
-
36
37
def get_column_type(type_obj: Any) -> str:
38
return str(ydb.convert.type_to_native(type_obj))
@@ -131,7 +128,6 @@ def get_table_names(self, abs_dir_path: str) -> List[str]:
131
128
def execute(self, operation: YdbQuery, parameters: Optional[Mapping[str, Any]] = None):
132
129
query = self._get_ydb_query(operation)
133
130
134
- logger.info("execute sql: %s, params: %s", query, parameters)
135
if operation.is_ddl:
136
chunks = self._execute_ddl(query)
137
elif self.use_scan_query:
0 commit comments