My table like this:
±------±-------±--------------------+
| Field | Type | Properties |
±------±-------±--------------------+
| id | bigint | columnar fast_fetch |
| title | text | indexed |
| n | uint | columnar fast_fetch |
±------±-------±--------------------+
insert into test1(title, n) values(‘test’, 1);
when I run replace into sql:replace into test1 set n=2 where id=6055692226070052891;
then show error:
ERROR 1064 (42000): Field title doesn’t have stored property. Replace query can’t be performed
why that ?