Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ydb/core/tx/datashard/datashard__engine_host.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ class TEngineBay : TNonCopyable {

const NMiniKQL::IEngineFlat * GetEngine() const { return Engine.Get(); }
NMiniKQL::IEngineFlat * GetEngine();
NMiniKQL::TEngineHost * GetEngineHost() { return EngineHost.Get(); }
void SetLockTxId(ui64 lockTxId, ui32 lockNodeId);
void SetUseLlvmRuntime(bool llvmRuntime) { EngineSettings->LlvmRuntime = llvmRuntime; }

Expand Down
2 changes: 1 addition & 1 deletion ydb/core/tx/datashard/datashard_pipeline.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1580,7 +1580,7 @@ TOperation::TPtr TPipeline::BuildOperation(NEvents::TDataEvents::TEvWrite::TPtr&
return writeOp;
}

writeOp->ExtractKeys();
writeTx->ExtractKeys(true);

switch (rec.txmode()) {
case NKikimrDataEvents::TEvWrite::MODE_PREPARE:
Expand Down
Loading