TDI-38412:Refactor the code of conversion functions. (#954)

This commit is contained in:
pyzhou
2017-04-17 16:10:29 +08:00
committed by wang wei
parent e1f0648cbb
commit 6b4f473ef3
4 changed files with 123 additions and 108 deletions

View File

@@ -52,7 +52,7 @@ public class Relational {
*
* {example} ISNULL(null)
*/
public int isNull(Object value) {
public static int isNull(Object value) {
if (value == null) {
return 1;
}