We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8284952 commit 6ecd607Copy full SHA for 6ecd607
1 file changed
src/Database/Validator/Index.php
@@ -108,9 +108,6 @@ public function isValid($value): bool
108
if (!$this->checkMultipleFulltextIndexes($value)) {
109
return false;
110
}
111
- if (!$this->checkIdenticalIndexes($value)) {
112
- return false;
113
- }
114
if (!$this->checkFulltextIndexNonString($value)) {
115
116
@@ -132,6 +129,9 @@ public function isValid($value): bool
132
129
if (!$this->checkVectorIndexes($value)) {
133
130
134
131
+ if (!$this->checkIdenticalIndexes($value)) {
+ return false;
+ }
135
return true;
136
137
0 commit comments