| 136 | } |
| 137 | |
| 138 | void putGenerators(const GeneratorCache& generators) |
| 139 | { |
| 140 | for (const auto& generator : generators) |
| 141 | { |
| 142 | fb_assert(generator.name.hasData()); |
| 143 | |
| 144 | const auto atom = defineAtom(generator.name); |
| 145 | |
| 146 | putTag(opSetSequence); |
| 147 | putInt32(atom); |
| 148 | putInt64(generator.value); |
| 149 | } |
| 150 | } |
| 151 | }; |
| 152 | |
| 153 | class Transaction : |
no test coverage detected