MCPcopy Create free account
hub / github.com/questdb/questdb / backTo

Method backTo

core/src/main/java/io/questdb/std/GenericLexer.java:124–131  ·  view source on GitHub ↗
(int position, CharSequence lastSeen)

Source from the content-addressed store, hash-verified

122 }
123
124 public void backTo(int position, CharSequence lastSeen) {
125 if (position < 0 || position > _len) {
126 throw new IndexOutOfBoundsException();
127 }
128 _pos = position;
129 last = lastSeen;
130 next = null;
131 }
132
133 @Override
134 public void clear() {

Callers 8

compileBatchMethod · 0.80
validateIsKeywordMethod · 0.80
parseExprMethod · 0.80
parseWindowSpecMethod · 0.80
parseExplainOptionsMethod · 0.80
parseFromClauseMethod · 0.80
fetchNextMethod · 0.80
fetchNextHintTokenMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected