Taylor Beever
Taylor Beever
Defining your own primary key column used to prevent the generation of the `id` column. As of piccolo 0.74.x it appears to still generate the `id` column causing a `multiple...
This specifically showed up when adding an index on a column. ```python class MyTable(Table): # Column shares name with reserved name so we use `db_column_name` # Initial creation migration works...
python 3.10.1 piccolo: 0.66.0 db: Postgres When doing a select or otherwise and comparing a `JSONB` columns to `None` or `.is_null()` the query string adds in a python object causing...
### Discussed in https://github.com/piccolo-orm/piccolo/discussions/403 Originally posted by **theelderbeever** January 25, 2022 Version info: piccolo = "0.64.0" I am attempting to use some of the query building tools to generate custom...
### Name and Version bitnami/spark 6.3.1 ### What steps will reproduce the bug? Environment: AWS EKS 1.23 In the helm chart ```yaml service: ## @param service.type Kubernetes Service type ##...
**What happened?** I am installing a a helm release of the timescale-single on an EKS cluster with amd64 nodes. The values.yaml has `timescaledb_toolkit` in the autoload libraries which has been...
**What happened?** The service selector for the master node is not populated when replica count is set to 1. Seems to have something to do with not promoting a master?...
**Is your feature request related to a problem? Please describe.** I am working in a Databricks environment and developing workflows there. Unfortunately, it awkwardly requires external dependencies to be installed...
I am trying to create an extension in Rust but I am not sure how to get started with the example mentioned above. How do you build it or load...
In order to use something like rayon and do parallel iteration of data in a column the has to be loaded into a `Vec` with `.query_arrow`. This turns out to...