Fantix King
Fantix King
This is probably because of a Cython limitation: https://github.com/cython/cython/blob/master/docs/src/userguide/limitations.rst#stack-frames
> fatal error: Killed signal terminated program cc1 It's likely that you're running out of memory.
Yes, the query cache is now stored also in the backend Postgres. All tenants sharing the same backend will be able to synchronize their in-memory query cache with the persistent...
Right, I think `set` cannot be used as a query parameter yet, you can use an array though: ```python c.query_single("select contains($0, 1)", [1, 2, 3]) ``` Or convert the array...
I'm a bit skeptical about adding a `__init__.py` file - it may bring unexpected results (like breaking implicit namespace packages as described in [PEP 420](https://peps.python.org/pep-0420/)). I think we tried our...
Another idea is to like just generate code into the standard output (when some non-default switch is turned on), and let the user decide where to put the file (and...
Oh sorry I mean after fixing this issue, we will be "trying our best to use the common prefix", and probably don't need to add the `__init__.py` file.
Sorry, I didn't mean to close this PR.
Yes, please! Let's retarget and rebase to the master branch, and get this merged 🙏
Thanks for the updates! I talked to the team and decided we don't want a pre-commit hook yet. However, I think the formatted code could stay (with a few nitpicking,...