mirror of https://github.com/apache/iotdb
add sh
This commit is contained in:
parent
6355533668
commit
887a72f3ff
25
pom.xml
25
pom.xml
|
@ -79,11 +79,6 @@
|
|||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<version>2.6</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
|
@ -124,26 +119,6 @@
|
|||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<!-- <plugin>
|
||||
<groupId>org.antlr</groupId>
|
||||
<artifactId>antlr4-maven-plugin</artifactId>
|
||||
<version>4.3</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>antlr</id>
|
||||
<goals>
|
||||
<goal>antlr4</goal>
|
||||
</goals>
|
||||
<phase>none</phase>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<outputDirectory></outputDirectory>
|
||||
<listener>true</listener>
|
||||
<treatWarningsAsErrors>true</treatWarningsAsErrors>
|
||||
</configuration>
|
||||
</plugin> -->
|
||||
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
|
|
|
@ -750,8 +750,9 @@ public class OverflowValueReader extends ValueReader{
|
|||
int lastAvailable = bis.available();
|
||||
pageCount++;
|
||||
log.debug("read page {}, offset : {}", pageCount, res.pageOffset);
|
||||
|
||||
PageHeader pageHeader = pageReader.getNextPageHeader();
|
||||
|
||||
// System.out.println("===== Page: " + pageCount + ". Count: " + pageHeader.data_page_header.num_rows);
|
||||
// construct value and time digest for this page
|
||||
Digest pageDigest = pageHeader.data_page_header.getDigest();
|
||||
DigestForFilter valueDigestFF = new DigestForFilter(pageDigest.min, pageDigest.max, getDataType());
|
||||
|
@ -815,6 +816,7 @@ public class OverflowValueReader extends ValueReader{
|
|||
res = readOnePageWithOverflow(hasOverflowDataInThisPage, idx, timeValues, page,
|
||||
pageHeader, res, timeFilter, freqFilter, valueFilter, insertTrue, update);
|
||||
func.calculateFromDataInThisPage(res);
|
||||
res.clearData();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1026,9 +1028,6 @@ public class OverflowValueReader extends ValueReader{
|
|||
case INT64:
|
||||
while (decoder.hasNext(page)) {
|
||||
// put insert points
|
||||
// if(timeIdx == timeValues.length - 1){
|
||||
System.out.println(timeIdx);
|
||||
// }
|
||||
while (insertTrue.curIdx < insertTrue.length && timeIdx < timeValues.length
|
||||
&& insertTrue.getTime(insertTrue.curIdx) <= timeValues[timeIdx]) {
|
||||
res.putTime(insertTrue.getTime(insertTrue.curIdx));
|
||||
|
|
Loading…
Reference in New Issue