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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: quillsql
3
- Version: 2.1.5
3
+ Version: 2.1.6
4
4
  Summary: Quill SDK for Python.
5
5
  Home-page: https://github.com/quill-sql/quill-python
6
6
  Author: Quill
@@ -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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: quillsql
3
- Version: 2.1.5
3
+ Version: 2.1.6
4
4
  Summary: Quill SDK for Python.
5
5
  Home-page: https://github.com/quill-sql/quill-python
6
6
  Author: Quill
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="quillsql",
5
- version="2.1.5",
5
+ version="2.1.6",
6
6
  packages=find_packages(),
7
7
  install_requires=[
8
8
  "psycopg2-binary",
File without changes
File without changes
File without changes
File without changes