-
I have a simple Postgresql database application for managing attendance records of club members at events, with table for members, table for events and a many-to-many join table linking events and members. This query works correctly in pgadmin4.
Giving example result table (nb "✓" indicates attended, "x" indicates absent) However the same query used in SQLPage throws an error associated with the escaped unicode string U&'\2173'
The SQLPage definition is
If I change the U&'2713' to '2713' the query executes (although clearly does not display tick mark that I want) |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
This looks like a bug in our sql parser! I'll report it upstream and look into fixing it. In the meantime, maybe you can simply include the Unicode character directly in your query? SQLPage parses all your files as utf8. |
Beta Was this translation helpful? Give feedback.
-
I opened a pull request upstream with a fix: apache/datafusion-sqlparser-rs#1355 |
Beta Was this translation helpful? Give feedback.
-
The fix has now been merged, and is present in sqlpage v0.28, to be released soon. |
Beta Was this translation helpful? Give feedback.
The fix has now been merged, and is present in sqlpage v0.28, to be released soon.