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 3b4a225 + 86765cd commit 5d9c535Copy full SHA for 5d9c535
ydb_dbapi/connections.py
@@ -263,7 +263,7 @@ def callee() -> ydb.Directory:
263
if child.is_table():
264
result.append(child_abs_path)
265
elif child.is_directory() and not child.name.startswith("."):
266
- result.extend(self.get_table_names(child_abs_path))
+ result.extend(self._get_table_names(child_abs_path))
267
return result
268
269
@@ -392,7 +392,7 @@ async def callee() -> ydb.Directory:
392
393
394
395
- result.extend(await self.get_table_names(child_abs_path))
+ result.extend(await self._get_table_names(child_abs_path))
396
397
398
0 commit comments