ExprStringNameSpace.to_uppercase Same as polars.Expr.str.to_uppercase Source code in pyquokka/expression.py 192 193 194 195 196 197 198def to_uppercase(self): """ Same as polars.Expr.str.to_uppercase """ return Expression(F.upper(self.expr.sqlglot_expr))