| 1909 | } |
| 1910 | |
| 1911 | ValueExprNode* ArithmeticNode::copy(thread_db* tdbb, NodeCopier& copier) const |
| 1912 | { |
| 1913 | ArithmeticNode* node = FB_NEW_POOL(*tdbb->getDefaultPool()) ArithmeticNode(*tdbb->getDefaultPool(), |
| 1914 | blrOp, dialect1); |
| 1915 | node->nodScale = nodScale; |
| 1916 | node->arg1 = copier.copy(tdbb, arg1); |
| 1917 | node->arg2 = copier.copy(tdbb, arg2); |
| 1918 | return node; |
| 1919 | } |
| 1920 | |
| 1921 | bool ArithmeticNode::dsqlMatch(DsqlCompilerScratch* dsqlScratch, const ExprNode* other, bool ignoreMapCast) const |
| 1922 | { |
no test coverage detected