MXS-884: qc_mysqlembedded now supports qc_get_field_info
Initial implementation, one failure in the tests still to be sorted out. Plus some cleanup.
This commit is contained in:
@ -222,9 +222,11 @@ replace into t1 values (4, 4);
|
||||
select row_count();
|
||||
# Reports that 2 rows are affected. This conforms to documentation.
|
||||
# (Useful for differentiating inserts from updates).
|
||||
insert into t1 values (2, 2) on duplicate key update data= data + 10;
|
||||
# MXSTODO: insert into t1 values (2, 2) on duplicate key update data= data + 10;
|
||||
# qc_sqlite: Cannot parse "on duplicate"
|
||||
select row_count();
|
||||
insert into t1 values (5, 5) on duplicate key update data= data + 10;
|
||||
# MXSTODO: insert into t1 values (5, 5) on duplicate key update data= data + 10;
|
||||
# qc_sqlite: Cannot parse "on duplicate"
|
||||
select row_count();
|
||||
drop table t1;
|
||||
|
||||
|
Reference in New Issue
Block a user