Skip to content

Commit

Permalink
feat: ability to query table and column stats; fix: missing bookmarks…
Browse files Browse the repository at this point in the history
… for native batch-based sync (#13)

* add devcontainer config

* feat: table profiling and incremental sync for batch

* Update tap_snowflake/client.py

Co-authored-by: Edgar R. M. <edgarrm358@gmail.com>

* seemingly working incremental with batch support

* linting

* more linting

---------

Co-authored-by: Edgar R. M. <edgarrm358@gmail.com>
Co-authored-by: Ken Payne <ken@meltano.com>
  • Loading branch information
3 people authored Mar 30, 2023
1 parent 1ace9ca commit d467ca2
Show file tree
Hide file tree
Showing 6 changed files with 560 additions and 98 deletions.
25 changes: 25 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/python
{
"name": "Python 3",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/python:0-3.10",
"features": {
"ghcr.io/devcontainers-contrib/features/black:2": {},
"ghcr.io/devcontainers-contrib/features/flake8:2": {},
"ghcr.io/devcontainers-contrib/features/isort:2": {},
"ghcr.io/devcontainers-contrib/features/meltano:2": {},
"ghcr.io/devcontainers-contrib/features/mypy:2": {},
"ghcr.io/devcontainers-contrib/features/poetry:2": {},
"ghcr.io/devcontainers-contrib/features/twine:2": {}
},

// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "poetry install"

// Configure tool-specific properties.
// "customizations": {},

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
151 changes: 71 additions & 80 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit d467ca2

Please sign in to comment.