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

### What happened? I am trying to create a RisingWave source from Minio and so I can build a transform pipeline to a RisingWave materialized view but the `struct` columns...

bug

### Is your feature request related to a problem? Ibis support in Narwhals https://github.com/narwhals-dev/narwhals/pull/2000 ### What is the motivation behind your request? _No response_ ### Describe the solution you'd like...

feature

### What happened? This is not really a bug in Ibis, but in DuckDB that is supposed to be fixed with v1.2.2 and affects Ibis. I just tested with new...

bug

### Is your feature request related to a problem? Looks like Ibis has support for milliseconds / microseconds, but not nanoseconds Could nanoseconds be added too please? this would be...

feature

### Is your feature request related to a problem? Related to https://github.com/ibis-project/ibis/issues/8079. In that issue, we settled on a defined behavior. Unfortunately, I think we settled on an unintuitive one,...

feature

Remove the internally-used `DataType.name` property. BREAKING CHANGE: `DataType.name` is removed. Use `DataType.__class__.__name__` instead.

breaking change
datatypes
sql

I have been getting sick of typing `some_table_or_struct.field_that_doesnt_exist_or_has_a_small_typo` and then getting a useless error message. It also is annoying to do `some_table.select(doesnt_exist, also_doesnt_exist)`, and you only get an error for...

tests
breaking change

I have this util function: ```python def is_happy( x: ibis.Table | ir.StructValue | None = None, ) -> ir.BooleanValue: if x is None: x = _ return ibis.or_( x.mood ==...

feature
tests
breaking change

### What happened? Hi ibis support team and thank you for this wonderful package ❤ I was looking for an alternative to R's dplyr + dbplyr for python and the...

bug

### What happened? When converting an Ibis schema containing a timezone-less Timestamp column (i.e. `dt.Timestamp` with `timezone` set to `None`) via a Databricks backend, the column is mapped to the...

bug
datatypes
timestamps
databricks