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
The proposed feature would allow a table containing BOOLEAN columns to be represented as bool fields within a user's row structure. For example, if you have this table with the BOOLEAN column bool_value:
The proposed feature would allow a table containing
BOOLEAN
columns to be represented asbool
fields within a user's row structure. For example, if you have this table with theBOOLEAN
columnbool_value
:You could then represent the row as:
The following query would then work as expected:
Currently, the above query will result in a runtime error due to the inability to coerce the native 0/1 integer value to
bool
:The text was updated successfully, but these errors were encountered: