| 20 | namespace processor { |
| 21 | |
| 22 | static column_id_t getColumnID(const TableCatalogEntry& entry, |
| 23 | const PropertyExpression& propertyExpr) { |
| 24 | auto columnID = INVALID_COLUMN_ID; |
| 25 | if (propertyExpr.hasProperty(entry.getTableID())) { |
| 26 | columnID = entry.getColumnID(propertyExpr.getPropertyName()); |
| 27 | } |
| 28 | return columnID; |
| 29 | } |
| 30 | |
| 31 | static NodeTableSetInfo getNodeTableSetInfo(const TableCatalogEntry& entry, const Expression& expr, |
| 32 | StorageManager* storageManager) { |
no test coverage detected