From 014c07662ac0d5e2d4c806265404af7214c9f884 Mon Sep 17 00:00:00 2001 From: Ilija Kutle Date: Tue, 16 May 2023 14:26:20 +0200 Subject: [PATCH] bugfix/dbt-init-fix (#71) * added files that should fix behavior of dbt init * new line end of file --------- Co-authored-by: ilikutle Co-authored-by: Torsten Glunde --- dbt/adapters/exasol/__version__.py | 2 ++ dbt/include/exasol/profile_template.yml | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 dbt/adapters/exasol/__version__.py create mode 100644 dbt/include/exasol/profile_template.yml diff --git a/dbt/adapters/exasol/__version__.py b/dbt/adapters/exasol/__version__.py new file mode 100644 index 0000000..b2da95f --- /dev/null +++ b/dbt/adapters/exasol/__version__.py @@ -0,0 +1,2 @@ +version = "1.4.0" + diff --git a/dbt/include/exasol/profile_template.yml b/dbt/include/exasol/profile_template.yml new file mode 100644 index 0000000..872c308 --- /dev/null +++ b/dbt/include/exasol/profile_template.yml @@ -0,0 +1,18 @@ +fixed: + type: exasol +prompts: + dsn: + hint: 'hostname:port for the instance' + threads: + hint: '1 or more' + type: 'int' + default: 1 + user: + hint: 'dev username' + password: + hint: 'dev password' + hide_input: true + dbname: + hint: 'default database that dbt will build objects in' + schema: + hint: 'default schema that dbt will build objects in'