You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I encountered an issue where Carbunql is not correctly parsing queries that contain array type casting in PostgreSQL. Specifically, the following query:
select'{1,2,3}'::int[] as array
is incorrectly parsed as:
SELECT'{1,2,3}'::intAS []
Instead of recognizing the int[] array type, Carbunql appears to parse the cast as int, followed by an empty array symbol [].
The text was updated successfully, but these errors were encountered:
I encountered an issue where Carbunql is not correctly parsing queries that contain array type casting in PostgreSQL. Specifically, the following query:
is incorrectly parsed as:
Instead of recognizing the
int[]
array type, Carbunql appears to parse the cast asint
, followed by an empty array symbol[]
.The text was updated successfully, but these errors were encountered: