Package org.apache.flink.api.common.io.statistics

Examples of org.apache.flink.api.common.io.statistics.BaseStatistics


   * Tests the statistics of the given format.
   */
  @Test
  public void checkStatistics() {
    SerializedInputFormat<Record> input = this.createInputFormat();
    BaseStatistics statistics = input.getStatistics(null);
    Assert.assertEquals(this.numberOfTuples, statistics.getNumberOfRecords());
  }
View Full Code Here

TOP

Related Classes of org.apache.flink.api.common.io.statistics.BaseStatistics

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.