We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48217e0 commit b8f93a2Copy full SHA for b8f93a2
java/tsfile/src/main/codegen/templates/FilterTemplate.ftl
@@ -59,6 +59,13 @@ public abstract class ${className} extends ValueFilter {
59
return valueSatisfy(value);
60
}
61
62
+ <#if filter.dataType == "long">
63
+ @Override
64
+ public boolean satisfyInteger(long time, int value){
65
+ return satisfyLong(time, value);
66
+ }
67
+ </#if>
68
+
69
@Override
70
public ClassSerializeId getClassSerializeId() {
71
return ${filter.classSerializeName};
0 commit comments