You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ALTER TABLE test MODIFY COLUMN message SET FULLTEXT WITH(analyzer = 'Chinese', case_sensitive = 'no');
134
121
135
122
Error: 1002(Unexpected), Invalid fulltext option: no, expected: 'true' | 'false'
136
123
137
-
SHOW CREATE TABLE test;
138
-
139
-
+-------+-------------------------------------+
140
-
| Table | Create Table |
141
-
+-------+-------------------------------------+
142
-
| test | CREATE TABLE IF NOT EXISTS "test" ( |
143
-
| | "message" STRING NULL, |
144
-
| | "time" TIMESTAMP(3) NOT NULL, |
145
-
| | TIME INDEX ("time") |
146
-
| | ) |
147
-
| | |
148
-
| | ENGINE=mito |
149
-
| | WITH( |
150
-
| | append_mode = 'true' |
151
-
| | ) |
152
-
+-------+-------------------------------------+
153
-
154
124
ALTER TABLE test MODIFY COLUMN time SET FULLTEXT WITH(analyzer = 'Chinese', case_sensitive = 'false');
155
125
156
126
Error: 1004(InvalidArguments), Failed to set fulltext options for column time, reason: column time is not a string type, but Timestamp(Millisecond(TimestampMillisecondType))
0 commit comments