| 119 | } |
| 120 | |
| 121 | BoolExprNode* BinaryBoolNode::dsqlPass(DsqlCompilerScratch* dsqlScratch) |
| 122 | { |
| 123 | return FB_NEW_POOL(dsqlScratch->getPool()) BinaryBoolNode(dsqlScratch->getPool(), blrOp, |
| 124 | doDsqlPass(dsqlScratch, arg1), doDsqlPass(dsqlScratch, arg2)); |
| 125 | } |
| 126 | |
| 127 | void BinaryBoolNode::genBlr(DsqlCompilerScratch* dsqlScratch) |
| 128 | { |
no test coverage detected