mirror of
https://github.com/dbt-labs/dbt-snowflake
synced 2025-12-17 19:31:31 +00:00
* Allow enabling/disabling stats collection on catalog table using env var * Implement get_relation_metadata macro * Discard changes to dbt/include/snowflake/macros/catalog.sql * Import artifacts from dbt_common * fix dbt_common import * Use get_relation_metadata from dbt-common * Update Fixes-20240516-224134.yaml * use snowflakerelation * add broken test * wip * add test for get_catalog_for_single_relation * wip * hardcode macro name * fix docs_generate test * address pr comments * update changie, add type sigs * Use enum values for comparison * remove mv * Discard changes to dev-requirements.txt * Discard changes to setup.py * Bump pins on dbt-common and dbt-adapters --------- Co-authored-by: Colin Rogers <111200756+colin-rogers-dbt@users.noreply.github.com> Co-authored-by: Mike Alfare <13974384+mikealfare@users.noreply.github.com>
98 lines
1010 B
Plaintext
98 lines
1010 B
Plaintext
# Byte-compiled / optimized / DLL files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# C extensions
|
|
*.so
|
|
|
|
# Distribution / packaging
|
|
.Python
|
|
env*/
|
|
dbt_env/
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
*.mypy_cache/
|
|
logs/
|
|
|
|
# PyInstaller
|
|
# Usually these files are written by a python script from a template
|
|
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# Unit test / coverage reports
|
|
htmlcov/
|
|
.tox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
.env
|
|
nosetests.xml
|
|
coverage.xml
|
|
*,cover
|
|
.hypothesis/
|
|
test.env
|
|
*.pytest_cache/
|
|
|
|
# Translations
|
|
*.mo
|
|
*.pot
|
|
|
|
# Django stuff:
|
|
*.log
|
|
|
|
# Sphinx documentation
|
|
docs/_build/
|
|
|
|
# PyBuilder
|
|
target/
|
|
|
|
# Ipython Notebook
|
|
.ipynb_checkpoints
|
|
|
|
# Emacs
|
|
*~
|
|
|
|
# Sublime Text
|
|
*.sublime-*
|
|
|
|
# Vim
|
|
*.sw*
|
|
|
|
# Pyenv
|
|
.python-version
|
|
|
|
# Vim
|
|
*.sw*
|
|
|
|
# pycharm
|
|
.idea/
|
|
venv/
|
|
|
|
# AWS credentials
|
|
.aws/
|
|
|
|
# MacOS
|
|
.DS_Store
|
|
|
|
# vscode
|
|
.vscode/
|
|
.venv/
|