| 36 | } |
| 37 | |
| 38 | static RelTableSetInfo getRelTableSetInfo(const RelGroupCatalogEntry& entry, table_id_t srcTableID, |
| 39 | table_id_t dstTableID, const Expression& expr, StorageManager* storageManager) { |
| 40 | auto relEntryInfo = entry.getRelEntryInfo(srcTableID, dstTableID); |
| 41 | auto table = storageManager->getTable(relEntryInfo->oid)->ptrCast<RelTable>(); |
| 42 | auto columnID = getColumnID(entry, expr.constCast<PropertyExpression>()); |
| 43 | return RelTableSetInfo(table, columnID); |
| 44 | } |
| 45 | |
| 46 | std::unique_ptr<NodeSetExecutor> PlanMapper::getNodeSetExecutor( |
| 47 | const BoundSetPropertyInfo& boundInfo, const Schema& schema) const { |
no test coverage detected