Skip to content

Commit 531095c

Browse files
committed
Fix reader query.
1 parent b2de846 commit 531095c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

console/executor_test_reader.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -169,15 +169,15 @@ void executor::read_test(bool dump) const
169169
if (!points.empty())
170170
{
171171
pt_fk = points.front();
172-
table::point::record point{};
173-
if (!store_.point.get(pt_fk, point))
172+
table::ins::record ins{};
173+
if (!store_.ins.get(pt_fk, ins))
174174
{
175-
// fault, missing point.
175+
// fault, missing ins.
176176
return;
177177
}
178178

179-
in_fk = point.input_fk;
180-
pt_tx_fk = point.parent_fk;
179+
in_fk = ins.input_fk;
180+
pt_tx_fk = ins.parent_fk;
181181
}
182182

183183
////++found;

0 commit comments

Comments
 (0)