Block lucene special characters from new column
This commit is contained in:
parent
963fc738f4
commit
572e31fb29
|
@ -304,6 +304,8 @@
|
|||
const newError = {}
|
||||
if (!external && fieldInfo.name?.startsWith("_")) {
|
||||
newError.name = `Column name cannot start with an underscore.`
|
||||
} else if (fieldInfo.name?.match(/[\-!*+?^"{}()~\/[\]\\]/g)) {
|
||||
newError.name = `Illegal character; cannot be: + - ! ( ) { } [ ] ^ " ~ * ? : \\ /`
|
||||
} else if (PROHIBITED_COLUMN_NAMES.some(name => fieldInfo.name === name)) {
|
||||
newError.name = `${PROHIBITED_COLUMN_NAMES.join(
|
||||
", "
|
||||
|
|
Loading…
Reference in New Issue