Class Int64DecimalParquetValueWriter
java.lang.Object
org.apache.drill.exec.store.parquet.decimal.DecimalValueWriter
org.apache.drill.exec.store.parquet.decimal.Int64DecimalParquetValueWriter
Parquet value writer for passing decimal values
 into 
RecordConsumer to be stored as INT32 type.- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidwriteValue(org.apache.parquet.io.api.RecordConsumer consumer, DrillBuf buffer, int start, int end, int precision) Takes value from specifiedDrillBuf buffer, converts it into required format if needed and passes the value into specifiedRecordConsumer consumer.Methods inherited from class org.apache.drill.exec.store.parquet.decimal.DecimalValueWritergetDecimalValueWriterForType
- 
Constructor Details- 
Int64DecimalParquetValueWriterpublic Int64DecimalParquetValueWriter()
 
- 
- 
Method Details- 
writeValuepublic void writeValue(org.apache.parquet.io.api.RecordConsumer consumer, DrillBuf buffer, int start, int end, int precision) Description copied from class:DecimalValueWriterTakes value from specifiedDrillBuf buffer, converts it into required format if needed and passes the value into specifiedRecordConsumer consumer.- Specified by:
- writeValuein class- DecimalValueWriter
- Parameters:
- consumer- abstraction for writing records
- buffer- the source of data that should be written
- start- start position of data in buffer
- end- end position of data in buffer
- precision- precision of the value that should be stored
 
 
-