MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / moveWithinFrame

Method moveWithinFrame

src/jrd/recsrc/WindowedStream.cpp:1147–1155  ·  view source on GitHub ↗

Move in the window without pass frame boundaries.

Source from the content-addressed store, hash-verified

1145
1146// Move in the window without pass frame boundaries.
1147bool SlidingWindow::moveWithinFrame(SINT64 delta)
1148{
1149 const auto newPosition = savedPosition + delta;
1150
1151 if (newPosition < frameStart || newPosition > frameEnd)
1152 return false;
1153
1154 return moveWithinPartition(delta);
1155}

Callers 1

winPassMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected