You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Support [SETTINGS in SELECT Query](https://clickhouse.com/docs/en/sql-reference/statements/select/#settings-in-select-query).
31
31
- Support [PREWHERE clause](https://clickhouse.com/docs/en/sql-reference/statements/select/prewhere).
32
+
- Support query results returned in columns and [deserialized to `numpy` objects](https://clickhouse-driver.readthedocs.io/en/latest/features.html#numpy-pandas-support).
32
33
33
34
**Notes:**
34
35
@@ -381,6 +382,60 @@ and [distributed table engine](https://clickhouse.com/docs/en/engines/table-engi
381
382
The following example assumes that a cluster defined by [docker compose in this repository](https://github.com/jayvynl/django-clickhouse-backend/blob/main/compose.yaml) is used.
382
383
This cluster name is `cluster`, it has 2 shards, every shard has 2 replica.
383
384
385
+
Query results returned as columns and/or deserialized into `numpy` objects
386
+
---
387
+
388
+
`clickhouse-driver` allows results to be returned as columns and/or deserialized into
389
+
`numpy` objects. This backend supports both options by using the context manager,
0 commit comments