Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Duplicate
-
10.3.32, 10.6.7
-
None
Description
When querying a table that has virtual generated columns using full text search, these columns are not generated and are always NULL in the results.
It can be seen here: https://dbfiddle.uk/?rdbms=mariadb_10.6&rdbms2=mysql_8.0&fiddle=524b4b7e77d159f0ce8740b639aaa9fd
Attachments
Issue Links
- duplicates
-
MDEV-29169 Using MATCH returns NULL for Virtual Column
-
- Closed
-
Nice use of dbfiddle's comparison.
Copying here for preservation's sake:
);
actual results
id field1 field2 gen_aux1 gen_aux2 gen
2 hello l.. hello ip. 1 1 NULL
1 hello world 0 1 NULL
expected results (MySQL 5.7.35, 8.0.27)
id field1 field2 gen_aux1 gen_aux2 gen
2 hello l. hello ip.. 1 1 1
1 hello world 0 1 0