aws-samples / dbt-glue

This repository contains de dbt-glue adapter
Apache License 2.0
91 stars 59 forks source link

Fix Column class bug #310

Closed sanga8 closed 5 months ago

sanga8 commented 6 months ago

resolves #307

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

sanga8 commented 6 months ago

@brianhtn

sanga8 commented 6 months ago

@armaseg How could we resolve this bug asap ? It's a breaking change for incremental models. @menuetb

moomindani commented 5 months ago

Currently there is some issue in integ tests (not due to this PR). While we are working on the fix, could you please verify that your PR works fine with integ test? Here's the command.

% python3 -m pytest -s tests/functional/adapter/
sanga8 commented 5 months ago

Currently there is some issue in integ tests (not due to this PR). While we are working on the fix, could you please verify that your PR works fine with integ test? Here's the command.

% python3 -m pytest -s tests/functional/adapter/

Ran the tests, 1 failed, 13 passed, 1 skipped in 989.12s

FAILED tests/functional/adapter/test_snapshot.py::TestSnapshotCheckColsGlue::test_snapshot_check_cols - AssertionError: dbt exit state did not match expected

ParseException: Syntax error at or near '"id"'(line 64, pos 34)

from insertions_source_data as source_data left outer join snapshotted_data on snapshotted_data.dbt_unique_key = source_data.dbt_unique_key where snapshotted_data.dbt_unique_key is null or ( snapshotted_data.dbt_unique_key is not null and ( (snapshotted_data."id" != source_data."id" ----------------------------------^^^

I don't understand yet

moomindani commented 5 months ago

Apologizes for delay. We needed to fix CI/CD pipeline first.

Regarding the original issue this PR was going to solve, I merged the other PR using your commit. https://github.com/aws-samples/dbt-glue/pull/322

For double-quote issue, let me create a separate PR. It will require some fix in test case side.

If you do not have further questions, I am going to close this PR.

moomindani commented 5 months ago

Regarding double-quote issue, https://github.com/aws-samples/dbt-glue/pull/327 is available. Closing this PR.