-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug] Snapshots and incremental models cannot add array columns #664
Comments
bump on this |
* Update pytest-xdist requirement from ~=3.3 to ~=3.4 Updates the requirements on [pytest-xdist](https://github.com/pytest-dev/pytest-xdist) to permit the latest version. - [Changelog](https://github.com/pytest-dev/pytest-xdist/blob/master/CHANGELOG.rst) - [Commits](pytest-dev/pytest-xdist@v3.3.0...v3.4.0) --- updated-dependencies: - dependency-name: pytest-xdist dependency-type: direct:development ... Signed-off-by: dependabot[bot] <[email protected]> * Add automated changelog yaml from template for bot PR --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Github Build Bot <[email protected]> Co-authored-by: Mike Alfare <[email protected]>
@tweavers could you help me better understand the required syntax? Given your sample model, should dbt not try to explicitly call out the data type ARRAY and that's where it's going wrong? |
AFAICT, the issue is that when there is an array type, the postgres=# SELECT column_name, data_type, udt_name::regtype
FROM information_schema.columns
WHERE table_schema = 'public'
AND table_name='example_model_snapshot';
column_name | data_type | udt_name
----------------+-----------------------------+-----------------------------
col_a | numeric | numeric
col_b | integer | integer
col_c | text | text
dbt_scd_id | text | text
dbt_updated_at | timestamp without time zone | timestamp without time zone
dbt_valid_from | timestamp without time zone | timestamp without time zone
dbt_valid_to | timestamp without time zone | timestamp without time zone
some_array | ARRAY | text[]
(8 rows)
-- This is the DDL the adapter currently generates
postgres=# alter table "postgres"."public"."example_model_snapshot" add column "some_array" ARRAY;
ERROR: syntax error at or near "ARRAY"
LINE 1: ...lic"."example_model_snapshot" add column "some_array" ARRAY;
-- This is the DDL the adapter should generate
postgres=# alter table "postgres"."public"."example_model_snapshot" add column "some_array" text[];
ALTER TABLE I can put up a PR after taking a more careful look into the implications of such a change, if no one else has picked this up yet. cc @mikealfare |
Is this a new bug?
Current Behavior
Adding an array-type column to an existing snapshot or incremental model will result in the following syntax error.
alter table "postgres"."dbt_teddy_snapshots"."test_model_snapshot" add column "some_array" ARRAY;
Postgres adapter: Postgres error: syntax error at or near "ARRAY"
Example
Expected Behavior
Alter table command should look like something like the following:
alter table "postgres"."dbt_snapshots"."example_model_snapshot" add column "some_array" text[];
Steps To Reproduce
example_model
with a downstream snapshot and incremental modelexample_model
example_model
and the downstream incremental models and snapshotsRelevant log output
Environment
Additional Context
No response
The text was updated successfully, but these errors were encountered: