ibis icon indicating copy to clipboard operation
ibis copied to clipboard

the portable Python dataframe library

Results 658 ibis issues
Sort by recently updated
recently updated
newest added

This is a continuation of a discussion started [here](https://ibis-project.zulipchat.com/#narrow/stream/405263-general/topic/A.20case.20against.20NEP.2029) in Zulip. Ibis is currently following NEP 29 python version deprecation policy, which means ibis is dropping python version support sooner...

As turned up in #10020, we get variable answers back from backends regarding the length of strings, once those strings aren't just simple ASCII. This is due to the length...

feature

Right now, no matter what kind of selector is being used, the expanded columns are in the order of the table they are matched against. For selectors where no obvious...

### What happened? I ran this: ```python In [1]: import polars as pl; import ibis; import numpy as np In [2]: rng = np.random.default_rng(1) In [3]: arr = rng.integers(-100, 100,...

performance

Fixes #6195. This makes `table_expr.cache()` a no-op for physical tables and other expressions not worth caching (defined here as simple column subsets of physical tables). ```python t = con.table("my_table") t2...

This issue is here to have visibility over future changes in duckdb spatial regarding the behavior of coordinates. At the moment in Ibis we default to have `always_xy=True` to follow...

geospatial
duckdb

Our other SQL backends convert `Project`/`Filter`/`Sort`/`Distinct` into a single `Select` operation. This fusion both results in simpler SQL, and results in these operations being (with some exceptions) commutative. In #9923...

internals
polars

### Is your feature request related to a problem? Disclaimer: I am quite new to ibis, so perhaps I missed something. Let's say I have a table with a column...

bug
feature
trino

### What happened? The schema of my oracle table is: ``` SQL> DESCRIBE IBIS.ORDERS; Name Null? Type ----------------------------------------- -------- ---------------------------- O_ORDERKEY NUMBER(38) O_CUSTKEY NUMBER(38) O_ORDERSTATUS CLOB O_TOTALPRICE CLOB O_ORDERDATE DATE...

bug

### Is your feature request related to a problem? _No response_ ### What is the motivation behind your request? _No response_ ### Describe the solution you'd like If this option...

feature