| 68 | bool operator!() const { return !(is_mysql || src_null_map); } |
| 69 | |
| 70 | void initSource(const UInt8 * src_null_map_, bool is_mysql_) |
| 71 | { |
| 72 | src_null_map = src_null_map_; |
| 73 | is_mysql = is_mysql_; |
| 74 | } |
| 75 | |
| 76 | /// pass the index null map to check if the index is 0 or null. |
| 77 | /// if the index is null, the result is null |