| 1148 | PyObject** out_values; |
| 1149 | |
| 1150 | Status Visit(const NullType& type) { |
| 1151 | for (int c = 0; c < data.num_chunks(); c++) { |
| 1152 | std::shared_ptr<Array> arr = data.chunk(c); |
| 1153 | |
| 1154 | for (int64_t i = 0; i < arr->length(); ++i) { |
| 1155 | // All values are null |
| 1156 | Py_INCREF(Py_None); |
| 1157 | *out_values = Py_None; |
| 1158 | ++out_values; |
| 1159 | } |
| 1160 | } |
| 1161 | return Status::OK(); |
| 1162 | } |
| 1163 | |
| 1164 | Status Visit(const BooleanType& type) { |
| 1165 | for (int c = 0; c < data.num_chunks(); c++) { |
nothing calls this directly
no test coverage detected