| 667 | } |
| 668 | |
| 669 | bool LocalTableSourceNode::dsqlMatch(DsqlCompilerScratch* /*dsqlScratch*/, const ExprNode* other, |
| 670 | bool /*ignoreMapCast*/) const |
| 671 | { |
| 672 | const auto o = nodeAs<LocalTableSourceNode>(other); |
| 673 | return o && dsqlContext == o->dsqlContext; |
| 674 | } |
| 675 | |
| 676 | void LocalTableSourceNode::genBlr(DsqlCompilerScratch* dsqlScratch) |
| 677 | { |
nothing calls this directly
no test coverage detected