We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fc44d5 commit 811c030Copy full SHA for 811c030
src/components/InfoViewer/schemaInfo/utils.ts
@@ -154,6 +154,8 @@ export function buildFulltextIndexSettingsInfo(
154
},
155
});
156
157
+ const analyzers = fulltextSettings.columns?.filter((col) => col.analyzers !== undefined)[0]
158
+ ?.analyzers;
159
const {
160
tokenizer,
161
language,
@@ -166,7 +168,7 @@ export function buildFulltextIndexSettingsInfo(
166
168
use_filter_length,
167
169
filter_length_min,
170
filter_length_max,
- } = fulltextSettings.columns?.at(0)?.analyzers ?? {};
171
+ } = analyzers ?? {};
172
if (tokenizer !== undefined) {
173
info.push(fulltextIndexAnalyzersFormatter('tokenizer', tokenizer));
174
}
0 commit comments