|
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) |
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. |
|
I opened a pull request upstream with a fix: apache/datafusion-sqlparser-rs#1355 |
|
The fix has now been merged, and is present in sqlpage v0.28, to be released soon. |
The fix has now been merged, and is present in sqlpage v0.28, to be released soon.