| 123 | } |
| 124 | |
| 125 | static bool scanSingleRelTable(const RelExpression& rel, const NodeExpression& boundNode, |
| 126 | ExtendDirection extendDirection) { |
| 127 | return !rel.isMultiLabeled() && !boundNode.isMultiLabeled() && |
| 128 | extendDirection != ExtendDirection::BOTH; |
| 129 | } |
| 130 | |
| 131 | static ScanNodeTableInfo getNodeTableScanInfo(const LogicalScanNodeTable& scan, |
| 132 | storage::NodeTable* table, const catalog::TableCatalogEntry* tableEntry, |
no test coverage detected