feat: 添加 true_() false_() 常量构建方法。

This commit is contained in:
Suomm 2023-07-10 17:38:21 +08:00
parent 5b018d5147
commit 8f1a0f6601

View File

@ -2387,6 +2387,20 @@ public class QueryMethods {
// === 构建 column ===
/**
* 构建 TRUE 常量
*/
public static QueryColumn true_() {
return new StringQueryColumn("TRUE");
}
/**
* 构建 FALSE 常量
*/
public static QueryColumn false_() {
return new StringQueryColumn("FALSE");
}
/**
* 构建 NULL 常量
*/