This is because we are trying to store a signed bigint (col_bigint_key) but are forcing it to unsigned:
result= field->store(orig_field_val, true);
(the 'true' bit)
This returns an error condition which in turn triggers the assert.
This is because we are trying to store a signed bigint (col_bigint_key) but are forcing it to unsigned:
result= field-> store(orig_ field_val, true);
(the 'true' bit)
This returns an error condition which in turn triggers the assert.