We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f10541 commit 13f805dCopy full SHA for 13f805d
bigframes/core/compile/ibis_types.py
@@ -388,7 +388,8 @@ def literal_to_ibis_scalar(
388
# Ibis has bug for casting nulltype to geospatial, so we perform intermediate cast first
389
geotype = ibis_dtypes.GeoSpatial(geotype="geography", srid=4326, nullable=True)
390
return bigframes_vendored.ibis.literal(None, geotype)
391
- ibis_dtype = BIGFRAMES_TO_IBIS[force_dtype] if force_dtype else None
+
392
+ ibis_dtype = bigframes_dtype_to_ibis_dtype(force_dtype) if force_dtype else None
393
394
if pd.api.types.is_list_like(literal):
395
if validate:
0 commit comments