We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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)
to
it works fine. I was not able to do a pull request however.
The text was updated successfully, but these errors were encountered: