Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
3.1.15
-
None
-
Windows server 2012 R2
Description
ODBC connector returns wrong value of BIT column when it is selected by subselect like:
CREATE TABLE aaa (x bit);
INSERT INTO aaa VALUES(0);
SELECT X, (SELECT x FROM aaa LIMIT 1) FROM aaa;
result:
false, true //should be false, false
Tested via ADODB... Simple test attached...
Attachments
Issue Links
- relates to
-
MDEV-31392 Server returns string inerpretation of BIT(n) field value in a subquery
- Open