MCPcopy
hub / github.com/alibaba/druid / hashLCase

Method hashLCase

core/src/main/java/com/alibaba/druid/sql/parser/Lexer.java:3110–3118  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

3108 }
3109
3110 public final long hashLCase() {
3111 if (this.hashLCase == 0) {
3112 if (stringVal == null) {
3113 stringVal = subString(mark, bufPos);
3114 }
3115 this.hashLCase = FnvHash.fnv1a_64_lower(stringVal);
3116 }
3117 return hashLCase;
3118 }
3119
3120 public final List<String> readAndResetComments() {
3121 List<String> comments = this.comments;

Callers 15

TDDLHintMethod · 0.95
parseWhereMethod · 0.80
parseTableSourceRestMethod · 0.80
parseCreateSequenceMethod · 0.80
parseValueClauseMethod · 0.80
alterSequenceMethod · 0.80
primaryIdentifierMethod · 0.80
nameMethod · 0.80
overMethod · 0.80
parseUpdateSetItemMethod · 0.80

Calls 2

subStringMethod · 0.95
fnv1a_64_lowerMethod · 0.95

Tested by

no test coverage detected