Skip to content

Commit 7e42ce8

Browse files
RONDB-768: Fix use of wrong assembler instruction
1 parent 220d868 commit 7e42ce8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pink/rondis/string/interpreted_code.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ int initNdbCodeIncr(std::string *response,
4343
code->add_const_reg(REG5, REG4, INCREMENT_VALUE);
4444
code->int64_to_str(REG3, REG1, REG5); // Convert number to string
4545
code->add_const_reg(REG2, REG3, NUM_LEN_BYTES); // New value_start length
46-
code->convert_size(REG3, REG0); // Write back length bytes in memory
46+
code->write_size_mem(REG3, REG0); // Write back length bytes in memory
4747

4848
code->write_interpreter_output(REG5, OUTPUT_INDEX); // Write into output index 0
4949
code->write_from_mem(value_start_col, REG6, REG2); // Write to column

0 commit comments

Comments
 (0)