Danny Whalen
Danny Whalen
We'd love for Citus to include `pg_partman` in the official Docker image. We immediately ran into this blocker trying to run experiments locally.
Thanks for reporting the issue. This does appear to be a bug. I will take a closer look in the next week or so. > I'm not sure what would...
An intermediate step could be to detect this case and raise a descriptive error. @TheFrok what do you think about that as a next step?
@TheFrok I recommend using the workflow described here: https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork. You can fork this repo into your account, push a branch to your repo, and create a pull request into this...
I need to refresh my memory on some of the codebase. Let me take a closer look this week and make some recommendations. Thanks for your patience.
Testing some ideas on a new branch. It's a work in progress. https://github.com/remix/partridge/compare/dw/fix-pruning-dtype-mismatch
@TheFrok I prefer your approach because it doesn't interfere with filtering/pruning! Can you make a pull request? I will review and leave comments later this week.
Thanks for posting this issue @timhowgego. Can you help narrow down the problem by figuring out which file, column, and values in your particular GTFS file are failing to parse?...
> Maybe it is one of your dependencies? I think you are right. > the error triggers at the first column ~Possibly related to the `index_col` kwarg to `pandas.read_csv`?~ nope,...
It appears a bug was introduced in numpy when deprecating type aliases. The bug caused `np.unicode` to be aliased to `np.compat.long` which is an alias for `int`. This was quick...