.copier-answers.yml
.envrc
.gitattributes
.gitignore
.pre-commit-config.yaml
.prettierignore
.prettierrc
.readthedocs.yaml
LICENSE
README.md
docker-compose.yml
pixi.lock
pixi.toml
pyproject.toml
.github/CODEOWNERS
.github/PULL_REQUEST_TEMPLATE.md
.github/dependabot.yml
.github/release-drafter.yml
.github/workflows/build.yml
.github/workflows/chore.yml
.github/workflows/ci.yml
docs/Makefile
docs/conf.py
docs/index.rst
docs/make.bat
docs/_static/favicon.ico
docs/_templates/class_extended.rst
docs/_templates/autosummary/base.rst
docs/_templates/autosummary/class.rst
docs/_templates/autosummary/function.rst
docs/_templates/autosummary/module.rst
docs/_templates/sites/formatters.rst
docs/_templates/sites/writers.rst
docs/sites/development.rst
docs/sites/getting_started.rst
docs/sites/installation.rst
docs/sites/example/example.ipynb
sqlcompyre/__init__.py
sqlcompyre/api.py
sqlcompyre/py.typed
sqlcompyre.egg-info/PKG-INFO
sqlcompyre.egg-info/SOURCES.txt
sqlcompyre.egg-info/dependency_links.txt
sqlcompyre.egg-info/entry_points.txt
sqlcompyre.egg-info/requires.txt
sqlcompyre.egg-info/top_level.txt
sqlcompyre/analysis/__init__.py
sqlcompyre/analysis/query_inspection.py
sqlcompyre/analysis/schema_comparison.py
sqlcompyre/analysis/table_comparison.py
sqlcompyre/analysis/dialects/__init__.py
sqlcompyre/analysis/dialects/_base.py
sqlcompyre/analysis/dialects/duckdb.py
sqlcompyre/analysis/dialects/mssql.py
sqlcompyre/analysis/dialects/sqlite.py
sqlcompyre/cli/__init__.py
sqlcompyre/cli/__main__.py
sqlcompyre/config/__init__.py
sqlcompyre/config/model.py
sqlcompyre/config/validation.py
sqlcompyre/report/__init__.py
sqlcompyre/report/report.py
sqlcompyre/report/formatters/__init__.py
sqlcompyre/report/formatters/_base.py
sqlcompyre/report/formatters/_factory.py
sqlcompyre/report/formatters/terminal.py
sqlcompyre/report/formatters/text.py
sqlcompyre/report/schema/__init__.py
sqlcompyre/report/schema/schema.py
sqlcompyre/report/writers/__init__.py
sqlcompyre/report/writers/_base.py
sqlcompyre/report/writers/_factory.py
sqlcompyre/report/writers/file.py
sqlcompyre/report/writers/markdown.py
sqlcompyre/report/writers/stdout.py
sqlcompyre/results/__init__.py
sqlcompyre/results/column_matches.py
sqlcompyre/results/counts.py
sqlcompyre/results/names.py
sqlcompyre/results/row_matches.py
tests/__init__.py
tests/conftest.py
tests/_shared/__init__.py
tests/_shared/dialects.py
tests/_shared/schema.py
tests/_shared/tables.py
tests/analysis/__init__.py
tests/analysis/dialects/__init__.py
tests/analysis/dialects/test_mssql.py
tests/analysis/query_inspection/__init__.py
tests/analysis/query_inspection/conftest.py
tests/analysis/query_inspection/test_column_stats.py
tests/analysis/query_inspection/test_row_counts.py
tests/analysis/schema_comparison/__init__.py
tests/analysis/schema_comparison/conftest.py
tests/analysis/schema_comparison/test_comparison.py
tests/analysis/schema_comparison/test_reports.py
tests/analysis/schema_comparison/test_table_comparison.py
tests/analysis/table_comparison/__init__.py
tests/analysis/table_comparison/conftest.py
tests/analysis/table_comparison/test_by_column.py
tests/analysis/table_comparison/test_column_matching.py
tests/analysis/table_comparison/test_column_names.py
tests/analysis/table_comparison/test_comparison.py
tests/analysis/table_comparison/test_equal.py
tests/analysis/table_comparison/test_ignore_columns.py
tests/analysis/table_comparison/test_no_primary_key.py
tests/analysis/table_comparison/test_null_values.py
tests/analysis/table_comparison/test_only_primary_key.py
tests/analysis/table_comparison/test_queries.py
tests/analysis/table_comparison/test_report.py
tests/analysis/table_comparison/test_row_counts.py
tests/analysis/table_comparison/test_row_matches.py
tests/analysis/table_comparison/test_string_collation.py
tests/analysis/table_comparison/test_top_changes.py
tests/cli/conftest.py
tests/cli/test_main_schemas.py
tests/cli/test_main_tables.py
tests/config/test_config.py
tests/config/resources/config_columns.yaml
tests/config/resources/config_empty.yaml
tests/config/resources/config_tables.yaml
tests/report/__init__.py
tests/report/formatters/__init__.py
tests/report/formatters/conftest.py
tests/report/formatters/test_factory.py
tests/report/formatters/test_terminal.py
tests/report/formatters/test_text.py
tests/report/writers/__init__.py
tests/report/writers/conftest.py
tests/report/writers/test_factory.py
tests/report/writers/test_file.py
tests/report/writers/test_markdown.py
tests/report/writers/test_stdout.py
tests/results/__init__.py
tests/results/test_counts.py