Support comparison operations for list
types
#18873
Labels
enhancement
New feature or an improvement of an existing feature
list
types
#18873
Description
Support comparison operations for list types. This feature would circumvent the subsequent use of
explode()
andagg()
, which is memory intensive.Trying to run
pl.col('x1') >= pl.col('x2')
orpl.col('x1').ge(pl.col('x2'))
throws aSchemaError
, referencing the difference in types forx1
andx2
.The text was updated successfully, but these errors were encountered: