Subversion Repositories oidplus

Rev

Rev 433 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 433 Rev 502
Line 82... Line 82...
82
        }
82
        }
83
 
83
 
84
        public function isNullFunction($expr1, $expr2): string {
84
        public function isNullFunction($expr1, $expr2): string {
85
                return "coalesce($expr1, $expr2)";
85
                return "coalesce($expr1, $expr2)";
86
        }
86
        }
-
 
87
 
-
 
88
        public function filterQuery($sql): string {
-
 
89
                return $sql;
-
 
90
        }
-
 
91
 
-
 
92
        public function getSQLBool($bool): string {
-
 
93
                return $bool ? '1' : '0';
-
 
94
        }
87
}
95
}
88
96