提交 421b54e4 authored 作者: Noel Grandin's avatar Noel Grandin 提交者: GitHub

Merge pull request #639 from h2database/issue_637

issue#637: Oracle REPLACE(X,Y,NULL)
......@@ -314,6 +314,10 @@ public class Mode {
return getInstance("MySQL");
}
public static Mode getOracle() {
return getInstance("Oracle");
}
public String getName() {
return name;
}
......
......@@ -279,7 +279,7 @@ public class Function extends Expression implements FunctionCall {
addFunction("OCTET_LENGTH", OCTET_LENGTH, 1, Value.LONG);
addFunction("RAWTOHEX", RAWTOHEX, 1, Value.STRING);
addFunction("REPEAT", REPEAT, 2, Value.STRING);
addFunction("REPLACE", REPLACE, VAR_ARGS, Value.STRING);
addFunction("REPLACE", REPLACE, VAR_ARGS, Value.STRING, false, true,true);
addFunction("RIGHT", RIGHT, 2, Value.STRING);
addFunction("RTRIM", RTRIM, VAR_ARGS, Value.STRING);
addFunction("SOUNDEX", SOUNDEX, 1, Value.STRING);
......@@ -1342,11 +1342,19 @@ public class Function extends Expression implements FunctionCall {
break;
}
case REPLACE: {
String s0 = v0.getString();
String s1 = v1.getString();
String s2 = (v2 == null) ? "" : v2.getString();
result = ValueString.get(replace(s0, s1, s2),
database.getMode().treatEmptyStringsAsNull);
if (v0 == ValueNull.INSTANCE || v1 == ValueNull.INSTANCE
|| v2 == ValueNull.INSTANCE && database.getMode() != Mode.getOracle()) {
result = ValueNull.INSTANCE;
} else {
String s0 = v0.getString();
String s1 = v1.getString();
String s2 = (v2 == null) ? "" : v2.getString();
if (s2 == null) {
s2 = "";
}
result = ValueString.get(replace(s0, s1, s2),
database.getMode().treatEmptyStringsAsNull);
}
break;
}
case RIGHT:
......
......@@ -15,3 +15,12 @@ select replace('abchihihi', 'i', 'o') abcehohoho, replace('that is tom', 'i') ab
> ---------- ----------
> abchohoho that s tom
> rows: 1
set mode oracle;
> ok
select replace('white space', ' ', '') x, replace('white space', ' ', null) y from dual;
> X Y
> ---------- ----------
> whitespace whitespace
> rows: 1
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论