Skip to content

What's New in Version 1.19.1

July 1, 2026 4:49 PM UTC

Version 1.19.1 of the relationalai Python package is now available!

To upgrade, activate your virtual environment and run the following command:

Terminal window
pip install --upgrade relationalai
  • Fixed queries against Snowflake tables declared with Table when the table name or stored column spelling requires quoting, including case-sensitive names and names that contain spaces, punctuation, and Unicode characters. For example, the following query now resolves both the quoted table name and the quoted column name correctly:

    from relationalai.semantics import Model
    m = Model("demo")
    orders = m.Table('"table with spaces"')
    m.select(orders["id"], orders["column one"]).to_df()

    Previously, this could raise a RAIException such as [Unknown Table] Failed to fetch schema for table '"table with spaces"'.