| 91 | } |
| 92 | |
| 93 | void RadiusAssignFilter::prepared(PointTableRef table) |
| 94 | { |
| 95 | PointLayoutPtr layout(table.layout()); |
| 96 | this->preparedDomain(m_srcDomain, layout); |
| 97 | this->preparedDomain(m_referenceDomain, layout); |
| 98 | |
| 99 | |
| 100 | for (expr::AssignStatement& expr : m_updateExpr) |
| 101 | { |
| 102 | auto status = expr.prepare(layout); |
| 103 | if (!status) |
| 104 | throwError("Invalid assignment expression in 'update_expression' option: " + |
| 105 | status.what()); |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | void RadiusAssignFilter::ready(PointTableRef) |
| 110 | { |
nothing calls this directly
no test coverage detected