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 509a4ca commit b899f4cCopy full SHA for b899f4c
util/import_util.c
@@ -18,7 +18,7 @@ enum bulk_import_validation_rc validate_bulk_import_inputs(const char * const de
18
if (!str_is_alphanumeric(bulk_import_src_dbname, NON_ALPHANUM_CHARS_ALLOWED_IN_DBNAME)) {
19
logmsg(LOGMSG_WARN, "%s: Bulk import source db name '%s' has illegal characters\n",
20
__func__, bulk_import_src_dbname);
21
- rc = BULK_IMPORT_VALIDATION_WARN;
+ rc = BULK_IMPORT_VALIDATION_FATAL;
22
}
23
if (bulk_import_src_tablename && !str_is_alphanumeric(bulk_import_src_tablename, NON_ALPHANUM_CHARS_ALLOWED_IN_TABLENAME)) {
24
logmsg(LOGMSG_WARN, "%s: Bulk import source table name '%s' has illegal characters\n",
0 commit comments