congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
FloatStatistics.getMax
Code IndexAdd Tabnine to your IDE (free)

How to use
getMax
method
in
org.apache.parquet.column.statistics.FloatStatistics

Best Java code snippets using org.apache.parquet.column.statistics.FloatStatistics.getMax (Showing top 5 results out of 315)

origin: org.apache.parquet/parquet-column

@Override
public void mergeStatisticsMinMax(Statistics stats) {
 FloatStatistics floatStats = (FloatStatistics)stats;
 if (!this.hasNonNullValue()) {
  initializeStats(floatStats.getMin(), floatStats.getMax());
 } else {
  updateStats(floatStats.getMin(), floatStats.getMax());
 }
}
origin: org.lasersonlab.apache.parquet/parquet-column

@Override
public void mergeStatisticsMinMax(Statistics stats) {
 FloatStatistics floatStats = (FloatStatistics)stats;
 if (!this.hasNonNullValue()) {
  initializeStats(floatStats.getMin(), floatStats.getMax());
 } else {
  updateStats(floatStats.getMin(), floatStats.getMax());
 }
}
origin: prestosql/presto

(long) floatToRawIntBits(floatStatistics.getMax()));
origin: io.prestosql/presto-parquet

(long) floatToRawIntBits(floatStatistics.getMax()));
origin: org.apache.drill.exec/drill-java-exec

case FLOAT4:
 minHolder = ValueHolderHelper.getFloat4Holder(((FloatStatistics)input).getMin());
 maxHolder = ValueHolderHelper.getFloat4Holder(((FloatStatistics)input).getMax());
 break;
case FLOAT8:
org.apache.parquet.column.statisticsFloatStatisticsgetMax

Popular methods of FloatStatistics

  • getMin
  • setMinMax
  • <init>
  • genericGetMax
  • genericGetMin
  • comparator
  • getNumNulls
  • hasNonNullValue
  • initializeStats
  • markAsNotEmpty
  • setNumNulls
  • type
  • setNumNulls,
  • type,
  • updateStats

Popular in Java

  • Creating JSON documents from java classes using gson
  • notifyDataSetChanged (ArrayAdapter)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getSystemService (Context)
  • Menu (java.awt)
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • JTextField (javax.swing)
  • Join (org.hibernate.mapping)
  • Top 17 PhpStorm Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now