sqlglot==26.14.0 Dialect: ```python sqlglot.transpile(sql, read='postgres', write="postgres", identify=True, pretty=True, comments=True) ``` Input SQL: ```sql SELECT POWER(64, 1/2) LIMIT 1000 ``` Expected: ```sql SELECT 64 ^ (1 / 2) LIMIT 1000 -- result = 8.0 ``` Result: ```sql SELECT 64 ^ 1 / 2 LIMIT 1000 -- result = 32.0 ``` Official Document: https://www.postgresql.org/docs/15/functions-math.html