mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
ft-bugfix (UPDATE something -> NULL)
This commit is contained in:
@ -149,3 +149,4 @@ update t1 set title='this test once revealed a bug' where id=1;
|
||||
select * from t1;
|
||||
id title
|
||||
1 this test once revealed a bug
|
||||
update t1 set title=NULL where id=1;
|
||||
|
@ -128,4 +128,4 @@ update t1 set title='this is A test' where id=1;
|
||||
check table t1;
|
||||
update t1 set title='this test once revealed a bug' where id=1;
|
||||
select * from t1;
|
||||
|
||||
update t1 set title=NULL where id=1;
|
||||
|
Reference in New Issue
Block a user