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
{{ message }}
This repository was archived by the owner on Nov 7, 2025. It is now read-only.
Disallow schemaOverrides in * configuration (#953)
Disallow `schemaOverrides` in configuration of `*` index, since that
functionality does not work correctly right now. Note that in the future
we might lift this restriction (if we fix the implementation).
Documentation of this limitation will be included in #950.
errAcc=multierror.Append(errAcc, fmt.Errorf("schema overrides of default index ('%s') are not currently supported (only supported in configuration of a specific index)", DefaultWildcardIndexName))
579
+
}
577
580
iflen(defaultConfig.QueryTarget) >1 {
578
581
errAcc=multierror.Append(errAcc, fmt.Errorf("the target configuration of default index ('%s') of query processor is not currently supported", DefaultWildcardIndexName))
errAcc=multierror.Append(errAcc, fmt.Errorf("schema overrides of default index ('%s') are not currently supported (only supported in configuration of a specific index)", DefaultWildcardIndexName))
667
+
}
662
668
ifdefaultConfig.UseCommonTable {
663
669
// We set both flags to true here
664
670
// as creating common table depends on the first one
errAcc=multierror.Append(errAcc, fmt.Errorf("schema overrides of default index ('%s') are not currently supported (only supported in configuration of a specific index)", DefaultWildcardIndexName))
0 commit comments