We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08b6ed6 commit d28dc52Copy full SHA for d28dc52
test/integration/datatype/_generate_test_datatype_tables.py
@@ -9,9 +9,8 @@
9
from redshift_connector import Connection
10
11
SCHEMA_NAME: str = "datatype_integration"
12
-root_path: str = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
13
-CREATE_FILE_PATH: str = "{root}/datatype/datatype_test_stmts.sql".format(root=root_path)
14
-TEARDOWN_FILE_PATH: str = "{root}/datatype/datatype_teardown_stmts.sql".format(root=root_path)
+CREATE_FILE_PATH: str = "datatype_test_stmts.sql"
+TEARDOWN_FILE_PATH: str = "datatype_teardown_stmts.sql"
15
"""
16
This file generates a sql file that creates db resources used for testing datatype support.
17
The file generated is run directly with psql to bypass redshift_connector.
0 commit comments