[jOOQ/jOOQ#15239] Hint at settings from INFO message

This commit is contained in:
Lukas Eder 2023-06-16 13:53:20 +02:00
parent 312f82c30c
commit b60b5c524b
2 changed files with 2 additions and 2 deletions

View File

@ -187,7 +187,7 @@ final class DDL {
}
}
catch (ParserException e) {
log.info("Cannot parse view source: " + options.source(), e);
log.info("Cannot parse view source (to skip parsing, use Settings.parseMetaViewSources): " + options.source(), e);
}
return applyAsPlainSQL(q, options);

View File

@ -1156,7 +1156,7 @@ final class MetaImpl extends AbstractMeta {
);
}
catch (ParserException e) {
log.info("Cannot parse default expression: " + defaultValue, e);
log.info("Cannot parse default expression (to skip parsing, use Settings.parseMetaViewDefaultExpressions): " + defaultValue, e);
type = type.defaultValue(DSL.field(defaultValue, type));
}
}