Exemple #1
0
 public void Visit(FloatType type)
 {
     ColumnDecoder = new FloatDecoder();
 }
Exemple #2
0
 public void Visit(Int32Type type)
 {
     ColumnDecoder = new Int32Decoder();
 }
Exemple #3
0
 public void Visit(UInt64Type type)
 {
     ColumnDecoder = new UInt64Decoder();
 }
Exemple #4
0
 public void Visit(BooleanType type)
 {
     ColumnDecoder = new BoolDecoder();
 }
Exemple #5
0
 public void Visit(Int16Type type)
 {
     ColumnDecoder = new Int16Decoder();
 }
Exemple #6
0
 public void Visit(StructType type)
 {
     ColumnDecoder = new StructDecoder(type);
 }
Exemple #7
0
 public void Visit(Decimal128Type type)
 {
     ColumnDecoder = new Decimal128Decoder();
 }
Exemple #8
0
 public void Visit(ListType type)
 {
     ColumnDecoder = new ListDecoder(type);
 }
Exemple #9
0
 public void Visit(TimestampType type)
 {
     ColumnDecoder = new TimestampDecoder();
 }
Exemple #10
0
 public void Visit(BinaryType type)
 {
     ColumnDecoder = new BinaryDecoder();
 }
Exemple #11
0
 public void Visit(StringType type)
 {
     ColumnDecoder = new StringDecoder();
 }
Exemple #12
0
 public void Visit(DoubleType type)
 {
     ColumnDecoder = new DoubleDecoder();
 }