What's New in Version 1.19.1
Version 1.19.1 of the relationalai Python package is now available!
To upgrade, activate your virtual environment and run the following command:
pip install --upgrade relationalaiBug Fixes
Section titled “Bug Fixes”-
Fixed queries against Snowflake tables declared with
Tablewhen 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 Modelm = Model("demo")orders = m.Table('"table with spaces"')m.select(orders["id"], orders["column one"]).to_df()Previously, this could raise a
RAIExceptionsuch as[Unknown Table] Failed to fetch schema for table '"table with spaces"'.