The compatibility section states “Does not support FULLTEXT, HASH, and SPATIAL indexes.” However, in the syntax diagram of the CREATE INDEX code, branches for SPATIAL and FULLTEXT syntax are included.
I think this should be fine. It doesn’t support fulltext, but it supports this syntax:
(root@127.1) [test] 08:56:57> create fulltext index idx on t1 (name);
ERROR 8200 (HY000): FULLTEXT and SPATIAL index is not supported
(root@127.1) [test] 08:57:27> create fulltext2 index idx on t1 (name);
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your TiDB version for the right syntax to use line 1 column 16 near "fulltext2 index idx on t1 (name)"
The documentation should match the product version. This makes it easier for users to refer to. At least, I’ve never seen Oracle 12c using Oracle 19c documentation.