Skip to content
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

Comparison of models and tableau SQLs #22

Open
esenilsson opened this issue Dec 11, 2023 · 0 comments
Open

Comparison of models and tableau SQLs #22

esenilsson opened this issue Dec 11, 2023 · 0 comments

Comments

@esenilsson
Copy link

Thanks for a great repo!

I have an issue where my model names are not in lower(), and don't get any matches between tableau and dbt.

When i change the following (in query_parsing.py)

for model in models.keys():
    if model in query:
        found[model] = models[model]

to

for model in models.keys():
    if model.lower() in query:
        found[model] = models[model]

it works fine. I was not able to do a pull request however.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant