quillsql 2.1.5__tar.gz → 2.1.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {quillsql-2.1.5 → quillsql-2.1.6}/PKG-INFO +1 -1
- {quillsql-2.1.5 → quillsql-2.1.6}/quillsql/core.py +2 -0
- {quillsql-2.1.5 → quillsql-2.1.6}/quillsql.egg-info/PKG-INFO +1 -1
- {quillsql-2.1.5 → quillsql-2.1.6}/setup.py +1 -1
- {quillsql-2.1.5 → quillsql-2.1.6}/README.md +0 -0
- {quillsql-2.1.5 → quillsql-2.1.6}/quillsql/__init__.py +0 -0
- {quillsql-2.1.5 → quillsql-2.1.6}/quillsql/assets/__init__.py +0 -0
- {quillsql-2.1.5 → quillsql-2.1.6}/quillsql/assets/pgtypes.py +0 -0
- {quillsql-2.1.5 → quillsql-2.1.6}/quillsql/db/__init__.py +0 -0
- {quillsql-2.1.5 → quillsql-2.1.6}/quillsql/db/bigquery.py +0 -0
- {quillsql-2.1.5 → quillsql-2.1.6}/quillsql/db/cached_connection.py +0 -0
- {quillsql-2.1.5 → quillsql-2.1.6}/quillsql/db/db_helper.py +0 -0
- {quillsql-2.1.5 → quillsql-2.1.6}/quillsql/db/postgres.py +0 -0
- {quillsql-2.1.5 → quillsql-2.1.6}/quillsql/error.py +0 -0
- {quillsql-2.1.5 → quillsql-2.1.6}/quillsql/utils/__init__.py +0 -0
- {quillsql-2.1.5 → quillsql-2.1.6}/quillsql/utils/run_query_processes.py +0 -0
- {quillsql-2.1.5 → quillsql-2.1.6}/quillsql/utils/schema_conversion.py +0 -0
- {quillsql-2.1.5 → quillsql-2.1.6}/quillsql.egg-info/SOURCES.txt +0 -0
- {quillsql-2.1.5 → quillsql-2.1.6}/quillsql.egg-info/dependency_links.txt +0 -0
- {quillsql-2.1.5 → quillsql-2.1.6}/quillsql.egg-info/requires.txt +0 -0
- {quillsql-2.1.5 → quillsql-2.1.6}/quillsql.egg-info/top_level.txt +0 -0
- {quillsql-2.1.5 → quillsql-2.1.6}/setup.cfg +0 -0
|
@@ -113,6 +113,8 @@ class Quill:
|
|
|
113
113
|
return {"queryResults": []}
|
|
114
114
|
if databaseType and databaseType.lower() != pkDatabaseType.lower():
|
|
115
115
|
return {"dbMismatched": True, "backendDatabaseType": pkDatabaseType}
|
|
116
|
+
if runQueryConfig and runQueryConfig.get("getColumnsForSchema"):
|
|
117
|
+
return {"queryResults": []}
|
|
116
118
|
if runQueryConfig and runQueryConfig.get("arrayToMap"):
|
|
117
119
|
array_to_map(
|
|
118
120
|
queries, runQueryConfig.get("arrayToMap"), metadata, self.target_connection
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|