From b0ff9846199a8bee2b55a8f716c9b4f18e508620 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Sat, 20 Mar 2021 23:36:33 +0100 Subject: [PATCH] [jOOQ/jOOQ#11683] REPLACE should inline empty string parameter --- jOOQ/src/main/java/org/jooq/impl/Names.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jOOQ/src/main/java/org/jooq/impl/Names.java b/jOOQ/src/main/java/org/jooq/impl/Names.java index 2826344720..f2aac5e4c1 100644 --- a/jOOQ/src/main/java/org/jooq/impl/Names.java +++ b/jOOQ/src/main/java/org/jooq/impl/Names.java @@ -223,6 +223,7 @@ final class Names { static final Name N_OCTET_LENGTH = unquotedName("octet_length"); static final Name N_OPENJSON = unquotedName("openjson"); static final Name N_OPENXML = unquotedName("openxml"); + static final Name N_OREPLACE = unquotedName("oreplace"); static final Name N_OTRANSLATE = unquotedName("otranslate"); static final Name N_OVERLAY = unquotedName("overlay"); static final Name N_PI = unquotedName("pi"); @@ -297,6 +298,7 @@ final class Names { static final Name N_STRFTIME = unquotedName("strftime"); static final Name N_STRING_AGG = unquotedName("string_agg"); static final Name N_STRREVERSE = unquotedName("strreverse"); + static final Name N_STR_REPLACE = unquotedName("str_replace"); static final Name N_SUBSTR = unquotedName("substr"); static final Name N_SUBSTRING = unquotedName("substring"); static final Name N_SUBSTRING_INDEX = unquotedName("substring_index");