Andrew Marks
Andrew Marks
I'm getting memory errors running backup-fetch on machines with very limited memory. The issue arises in [wal_e/blobstore/wabs/wabs_util.py::uri_get_file()](https://github.com/wal-e/wal-e/blob/master/wal_e/blobstore/wabs/wabs_util.py#L135) at [`data += part`](https://github.com/wal-e/wal-e/blob/master/wal_e/blobstore/wabs/wabs_util.py#L176). Granted I should almost certainly have more memory on...
Handle `ExternalStage`s as the `from_` element in `CopyIntoStorage` Fixes #213
Please answer these questions before submitting your issue. Thanks! 1. What version of Python are you using (`python --version`)? Python 3.8.5 2. What operating system and processor architecture are you...
Many of the ERD code values are represented by Enums, NamedTuples, or similar. Currently, translation between those occurs in a bunch of tiny functions in [erd_utils.py](https://github.com/ajmarks/gekitchen/blob/master/gekitchen/erd_utils.py). This is gross and...
### What happened? `ibis.now()` is typed as a `Timestamp` without timezone, but the BigQuery backend [renders](https://github.com/ibis-project/ibis/blob/d44186034851e0660af6342f319d00296cded660/ibis/backends/sql/compilers/bigquery/__init__.py#L203) it as `CURRENT_TIMESTAMP()`, which as its name indicates, returns a BigQuery `TIMESTAMP` (datetime with...