Generate assignment to EOF parameter.
| 9864 | |
| 9865 | // Generate assignment to EOF parameter. |
| 9866 | static void dsqlGenEofAssignment(DsqlCompilerScratch* dsqlScratch, SSHORT value) |
| 9867 | { |
| 9868 | dsc valueDesc; |
| 9869 | valueDesc.makeShort(0, &value); |
| 9870 | |
| 9871 | dsqlScratch->appendUChar(blr_assignment); |
| 9872 | LiteralNode::genConstant(dsqlScratch, &valueDesc, false); |
| 9873 | GEN_parameter(dsqlScratch, dsqlScratch->getDsqlStatement()->getEof()); |
| 9874 | } |
| 9875 | |
| 9876 | static void dsqlGenReturning(DsqlCompilerScratch* dsqlScratch, ReturningClause* returning, |
| 9877 | Nullable<USHORT> localTableNumber) |
no test coverage detected