[jOOQ/jOOQ#18728] Settings.renderQuotedNames shouldn't affect xsi:nil attribute rending in MULTISET XML emulation

This commit is contained in:
Lukas Eder 2025-07-04 10:09:37 +02:00
parent f2ea77af9c
commit d09bf49206

View File

@ -495,8 +495,10 @@ final class Multiset<R extends Record> extends AbstractField<Result<R>> implemen
// [#18728] Always quote this name because of the : character
default:
return DSL.name("xsi:nil");
return DSL.quotedName("xsi:nil");
}
}