diff options
author | naumbi4 <naumbi4@yandex-team.com> | 2023-09-07 17:43:57 +0300 |
---|---|---|
committer | naumbi4 <naumbi4@yandex-team.com> | 2023-09-07 18:04:01 +0300 |
commit | f6aeb8c837f30eebe9d46504015f786e9fbfa1a0 (patch) | |
tree | dbde3f7ac23ab1c912b5894ec83e41f96d692f71 | |
parent | 8f4f9778b4ed5a25101a5f1daa99e7b0dd497305 (diff) | |
download | ydb-f6aeb8c837f30eebe9d46504015f786e9fbfa1a0.tar.gz |
Make error message a little bit more clear for
-rw-r--r-- | ydb/core/tx/datashard/check_data_tx_unit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/tx/datashard/check_data_tx_unit.cpp b/ydb/core/tx/datashard/check_data_tx_unit.cpp index 8f2c4518615..d068920f1f1 100644 --- a/ydb/core/tx/datashard/check_data_tx_unit.cpp +++ b/ydb/core/tx/datashard/check_data_tx_unit.cpp @@ -188,7 +188,7 @@ EExecutionStatus TCheckDataTxUnit::Execute(TOperation::TPtr op, { if (col.ImmediateUpdateSize > NLimits::MaxWriteValueSize) { TString err = TStringBuilder() - << "Transaction write value of " << col.ImmediateUpdateSize + << "Transaction write column value of " << col.ImmediateUpdateSize << " bytes is larger than the allowed threshold"; BuildResult(op, NKikimrTxDataShard::TEvProposeTransactionResult::EXEC_ERROR)->AddError(NKikimrTxDataShard::TError::BAD_ARGUMENT, err); |