Skip to content

Commit

Permalink
Removed commented out lines
Browse files Browse the repository at this point in the history
  • Loading branch information
ckunki committed Nov 7, 2024
1 parent b5c243d commit cc7cc67
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions exasol/analytics/deployment/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,12 @@

BASE_PACKAGE = "exasol.analytics"
BASE_DIR = BASE_PACKAGE.replace(".", "/")
# BASE_DIR = "exasol/analytics"
# BASE_PACKAGE = BASE_DIR.replace("/", ".")
TEMPLATES_DIR = pathlib.Path("resources", "templates")
OUTPUTS_DIR = pathlib.Path("resources", "outputs")
# SOURCE_DIR = files(f"{BASE_PACKAGE}.query_handler.udf")
SOURCE_DIR = files(f"{BASE_PACKAGE}.query_handler.udf.runner")

UDF_CALL_TEMPLATES = {
# "query_handler_runner_udf_call.py": "create_query_handler.jinja.sql"
"call_udf.py": "create_query_handler.jinja.sql"
}
LUA_SCRIPT_TEMPLATE = "create_query_loop.jinja.sql"
LUA_SCRIPT_OUTPUT = pathlib.Path(BASE_DIR, OUTPUTS_DIR, "create_query_loop.sql")


# if __name__ == "__main__":
# print(f'{SOURCE_DIR}')
# for udf_call_src, template_src in UDF_CALL_TEMPLATES.items():
# f = SOURCE_DIR / udf_call_src
# print(f'{f} {template_src}')

0 comments on commit cc7cc67

Please sign in to comment.