fix(TDengine): 修复like条件语法错误 (#514)

This commit is contained in:
Zhang Ji 2024-05-30 10:02:59 +08:00 committed by GitHub
parent 3d722235c0
commit 76d1b07210
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ public enum TDengineTermType {
protected void doBuild(String column, Object value, StringJoiner sql) {
String val = String.valueOf(value);
sql.add(escapeColumn(column))
.add(" like ").add(val);
.add(" like ").add(createValue(val));
}
},
btw(true, "btw") {