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 dbWriteTable call creates a table with the below CREATE statement. The table on the server does contain the values NULL, 0 and 1 on my MySQL instance (version 8).
This old thread has been automatically locked. If you think you have found something related to this, please open a new issue and link to this old issue if necessary.
It seems that with version 1.1.0
BIT(1)
columns that haveNULL
values returnTRUE
instead ofNA
. This might be a bug introduced in #192.The
dbWriteTable
call creates a table with the below CREATE statement. The table on the server does contain the valuesNULL
,0
and1
on my MySQL instance (version 8).The problem might be here, where
NA_INTEGER
is mapped to1
it seems.RMariaDB/src/MariaRow.cpp
Lines 216 to 218 in 5241355
Happy to contribute a fix and thanks for all your work!
The text was updated successfully, but these errors were encountered: