-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathmysql.rs
615 lines (571 loc) · 26.4 KB
/
mysql.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
use crate::sql::arrow_sql_gen::arrow::map_data_type_to_array_builder_optional;
use bigdecimal::BigDecimal;
use bigdecimal::ToPrimitive;
use chrono::{NaiveDate, NaiveTime, Timelike};
use datafusion::arrow::{
array::{
ArrayBuilder, ArrayRef, BinaryBuilder, Date32Builder, Decimal128Builder, Decimal256Builder,
Float32Builder, Float64Builder, Int16Builder, Int32Builder, Int64Builder, Int8Builder,
LargeBinaryBuilder, LargeStringBuilder, NullBuilder, RecordBatch, RecordBatchOptions,
StringBuilder, StringDictionaryBuilder, Time64NanosecondBuilder,
TimestampMicrosecondBuilder, UInt64Builder,
},
datatypes::{i256, DataType, Date32Type, Field, Schema, SchemaRef, TimeUnit, UInt16Type},
};
use mysql_async::{consts::ColumnFlags, consts::ColumnType, FromValueError, Row, Value};
use snafu::{ResultExt, Snafu};
use std::{convert, sync::Arc};
use time::PrimitiveDateTime;
#[derive(Debug, Snafu)]
pub enum Error {
#[snafu(display("Failed to build record batch: {source}"))]
FailedToBuildRecordBatch {
source: datafusion::arrow::error::ArrowError,
},
#[snafu(display("No builder found for index {index}"))]
NoBuilderForIndex { index: usize },
#[snafu(display("Failed to downcast builder for {:?}", mysql_type))]
FailedToDowncastBuilder { mysql_type: String },
#[snafu(display("Integer overflow when converting u64 to i64: {source}"))]
FailedToConvertU64toI64 {
source: <u64 as convert::TryInto<i64>>::Error,
},
#[snafu(display("Integer overflow when converting u128 to i64: {source}"))]
FailedToConvertU128toI64 {
source: <u128 as convert::TryInto<i64>>::Error,
},
#[snafu(display("Failed to get a row value for {:?}: {}", mysql_type, source))]
FailedToGetRowValue {
mysql_type: ColumnType,
source: mysql_async::FromValueError,
},
#[snafu(display("Cannot represent BigDecimal as i128: {big_decimal}"))]
FailedToConvertBigDecimalToI128 { big_decimal: BigDecimal },
#[snafu(display("Failed to find field {column_name} in schema"))]
FailedToFindFieldInSchema { column_name: String },
#[snafu(display("No Arrow field found for index {index}"))]
NoArrowFieldForIndex { index: usize },
#[snafu(display("No column name for index: {index}"))]
NoColumnNameForIndex { index: usize },
}
pub type Result<T, E = Error> = std::result::Result<T, E>;
macro_rules! handle_primitive_type {
($builder:expr, $type:expr, $builder_ty:ty, $value_ty:ty, $row:expr, $index:expr) => {{
let Some(builder) = $builder else {
return NoBuilderForIndexSnafu { index: $index }.fail();
};
let Some(builder) = builder.as_any_mut().downcast_mut::<$builder_ty>() else {
return FailedToDowncastBuilderSnafu {
mysql_type: format!("{:?}", $type),
}
.fail();
};
let v = handle_null_error($row.get_opt::<$value_ty, usize>($index).transpose())
.context(FailedToGetRowValueSnafu { mysql_type: $type })?;
match v {
Some(v) => builder.append_value(v),
None => builder.append_null(),
}
}};
}
/// Converts `MySQL` `Row`s to an Arrow `RecordBatch`. Assumes that all rows have the same schema and
/// sets the schema based on the first row.
///
/// # Errors
///
/// Returns an error if there is a failure in converting the rows to a `RecordBatch`.
#[allow(clippy::too_many_lines)]
pub fn rows_to_arrow(rows: &[Row], projected_schema: &Option<SchemaRef>) -> Result<RecordBatch> {
let mut arrow_fields: Vec<Option<Field>> = Vec::new();
let mut arrow_columns_builders: Vec<Option<Box<dyn ArrayBuilder>>> = Vec::new();
let mut mysql_types: Vec<ColumnType> = Vec::new();
let mut column_names: Vec<String> = Vec::new();
let mut column_is_binary_stats: Vec<bool> = Vec::new();
let mut column_is_enum_stats: Vec<bool> = Vec::new();
let mut column_use_large_str_or_blob_stats: Vec<bool> = Vec::new();
if !rows.is_empty() {
let row = &rows[0];
for column in row.columns().iter() {
let column_name = column.name_str();
let column_type = column.column_type();
let column_is_binary = column.flags().contains(ColumnFlags::BINARY_FLAG);
let column_is_enum = column.flags().contains(ColumnFlags::ENUM_FLAG);
let column_use_large_str_or_blob = column.column_length() > 2_u32.pow(31) - 1;
let (decimal_precision, decimal_scale) = match column_type {
ColumnType::MYSQL_TYPE_DECIMAL | ColumnType::MYSQL_TYPE_NEWDECIMAL => {
// use 76 as default precision for decimal types if there is no way to get the precision from the column
match projected_schema {
Some(schema) => {
let precision =
get_decimal_column_precision(&column_name, schema).unwrap_or(76);
(Some(precision), Some(column.decimals() as i8))
}
None => (Some(76), Some(column.decimals() as i8)),
}
}
_ => (None, None),
};
let data_type = map_column_to_data_type(
column_type,
column_is_binary,
column_is_enum,
column_use_large_str_or_blob,
decimal_precision,
decimal_scale,
);
arrow_fields.push(
data_type
.clone()
.map(|data_type| Field::new(column_name.clone(), data_type.clone(), true)),
);
arrow_columns_builders
.push(map_data_type_to_array_builder_optional(data_type.as_ref()));
mysql_types.push(column_type);
column_names.push(column_name.to_string());
column_is_binary_stats.push(column_is_binary);
column_is_enum_stats.push(column_is_enum);
column_use_large_str_or_blob_stats.push(column_use_large_str_or_blob);
}
}
for row in rows {
for (i, mysql_type) in mysql_types.iter().enumerate() {
let Some(builder) = arrow_columns_builders.get_mut(i) else {
return NoBuilderForIndexSnafu { index: i }.fail();
};
match *mysql_type {
ColumnType::MYSQL_TYPE_NULL => {
let Some(builder) = builder else {
return NoBuilderForIndexSnafu { index: i }.fail();
};
let Some(builder) = builder.as_any_mut().downcast_mut::<NullBuilder>() else {
return FailedToDowncastBuilderSnafu {
mysql_type: format!("{mysql_type:?}"),
}
.fail();
};
builder.append_null();
}
ColumnType::MYSQL_TYPE_BIT => {
let Some(builder) = builder else {
return NoBuilderForIndexSnafu { index: i }.fail();
};
let Some(builder) = builder.as_any_mut().downcast_mut::<UInt64Builder>() else {
return FailedToDowncastBuilderSnafu {
mysql_type: format!("{mysql_type:?}"),
}
.fail();
};
let value = row.get_opt::<Value, usize>(i).transpose().context(
FailedToGetRowValueSnafu {
mysql_type: ColumnType::MYSQL_TYPE_BIT,
},
)?;
match value {
Some(Value::Bytes(mut bytes)) => {
while bytes.len() < 8 {
bytes.insert(0, 0);
}
let mut array = [0u8; 8];
array.copy_from_slice(&bytes);
builder.append_value(u64::from_be_bytes(array));
}
_ => builder.append_null(),
}
}
ColumnType::MYSQL_TYPE_TINY => {
handle_primitive_type!(
builder,
ColumnType::MYSQL_TYPE_TINY,
Int8Builder,
i8,
row,
i
);
}
column_type @ (ColumnType::MYSQL_TYPE_SHORT | ColumnType::MYSQL_TYPE_YEAR) => {
handle_primitive_type!(builder, column_type, Int16Builder, i16, row, i);
}
column_type @ (ColumnType::MYSQL_TYPE_INT24 | ColumnType::MYSQL_TYPE_LONG) => {
handle_primitive_type!(builder, column_type, Int32Builder, i32, row, i);
}
ColumnType::MYSQL_TYPE_LONGLONG => {
handle_primitive_type!(
builder,
ColumnType::MYSQL_TYPE_LONGLONG,
Int64Builder,
i64,
row,
i
);
}
ColumnType::MYSQL_TYPE_FLOAT => {
handle_primitive_type!(
builder,
ColumnType::MYSQL_TYPE_FLOAT,
Float32Builder,
f32,
row,
i
);
}
ColumnType::MYSQL_TYPE_DOUBLE => {
handle_primitive_type!(
builder,
ColumnType::MYSQL_TYPE_DOUBLE,
Float64Builder,
f64,
row,
i
);
}
ColumnType::MYSQL_TYPE_DECIMAL | ColumnType::MYSQL_TYPE_NEWDECIMAL => {
let Some(builder) = builder else {
return NoBuilderForIndexSnafu { index: i }.fail();
};
let arrow_field = match arrow_fields.get(i) {
Some(Some(field)) => field,
_ => return NoArrowFieldForIndexSnafu { index: i }.fail(),
};
match arrow_field.data_type() {
DataType::Decimal128(_, _) => {
let Some(builder) =
builder.as_any_mut().downcast_mut::<Decimal128Builder>()
else {
return FailedToDowncastBuilderSnafu {
mysql_type: format!("{mysql_type:?}"),
}
.fail();
};
let val =
handle_null_error(row.get_opt::<BigDecimal, usize>(i).transpose())
.context(FailedToGetRowValueSnafu {
mysql_type: ColumnType::MYSQL_TYPE_DECIMAL,
})?;
let scale = match &val {
Some(val) => val.fractional_digit_count(),
None => 0,
};
let Some(val) = val else {
builder.append_null();
continue;
};
let Some(val) = to_decimal_128(&val, scale) else {
return FailedToConvertBigDecimalToI128Snafu { big_decimal: val }
.fail();
};
builder.append_value(val);
}
DataType::Decimal256(_, _) => {
let Some(builder) =
builder.as_any_mut().downcast_mut::<Decimal256Builder>()
else {
return FailedToDowncastBuilderSnafu {
mysql_type: format!("{mysql_type:?}"),
}
.fail();
};
let val =
handle_null_error(row.get_opt::<BigDecimal, usize>(i).transpose())
.context(FailedToGetRowValueSnafu {
mysql_type: ColumnType::MYSQL_TYPE_DECIMAL,
})?;
let Some(val) = val else {
builder.append_null();
continue;
};
let val = to_decimal_256(&val);
builder.append_value(val);
}
// ColumnType::MYSQL_TYPE_DECIMAL & ColumnType::MYSQL_TYPE_NEWDECIMAL are only mapped to Decimal128/Decimal256 in `map_column_to_data_type` function
_ => unreachable!(),
}
}
column_type @ (ColumnType::MYSQL_TYPE_VARCHAR | ColumnType::MYSQL_TYPE_JSON) => {
handle_primitive_type!(
builder,
column_type,
LargeStringBuilder,
String,
row,
i
);
}
ColumnType::MYSQL_TYPE_BLOB => {
match (
column_use_large_str_or_blob_stats[i],
column_is_binary_stats[i],
) {
(true, true) => handle_primitive_type!(
builder,
ColumnType::MYSQL_TYPE_BLOB,
LargeBinaryBuilder,
Vec<u8>,
row,
i
),
(true, false) => handle_primitive_type!(
builder,
ColumnType::MYSQL_TYPE_BLOB,
LargeStringBuilder,
String,
row,
i
),
(false, true) => handle_primitive_type!(
builder,
ColumnType::MYSQL_TYPE_BLOB,
BinaryBuilder,
Vec<u8>,
row,
i
),
(false, false) => handle_primitive_type!(
builder,
ColumnType::MYSQL_TYPE_BLOB,
StringBuilder,
String,
row,
i
),
}
}
ColumnType::MYSQL_TYPE_ENUM => {
// ENUM and SET values are returned as strings. For these, check that the type value is MYSQL_TYPE_STRING and that the ENUM_FLAG or SET_FLAG flag is set in the flags value.
// https://dev.mysql.com/doc/c-api/9.0/en/c-api-data-structures.html
unreachable!()
}
column_type @ (ColumnType::MYSQL_TYPE_STRING
| ColumnType::MYSQL_TYPE_VAR_STRING) => {
// Handle MYSQL_TYPE_ENUM value
if column_is_enum_stats[i] {
let Some(builder) = builder else {
return NoBuilderForIndexSnafu { index: i }.fail();
};
let Some(builder) = builder
.as_any_mut()
.downcast_mut::<StringDictionaryBuilder<UInt16Type>>()
else {
return FailedToDowncastBuilderSnafu {
mysql_type: format!("{mysql_type:?}"),
}
.fail();
};
let v = handle_null_error(row.get_opt::<String, usize>(i).transpose())
.context(FailedToGetRowValueSnafu {
mysql_type: ColumnType::MYSQL_TYPE_ENUM,
})?;
match v {
Some(v) => {
builder.append_value(v);
}
None => builder.append_null(),
}
} else if column_is_binary_stats[i] {
handle_primitive_type!(
builder,
column_type,
BinaryBuilder,
Vec<u8>,
row,
i
);
} else {
handle_primitive_type!(builder, column_type, StringBuilder, String, row, i);
}
}
ColumnType::MYSQL_TYPE_DATE => {
let Some(builder) = builder else {
return NoBuilderForIndexSnafu { index: i }.fail();
};
let Some(builder) = builder.as_any_mut().downcast_mut::<Date32Builder>() else {
return FailedToDowncastBuilderSnafu {
mysql_type: format!("{mysql_type:?}"),
}
.fail();
};
let v = handle_null_error(row.get_opt::<NaiveDate, usize>(i).transpose())
.context(FailedToGetRowValueSnafu {
mysql_type: ColumnType::MYSQL_TYPE_DATE,
})?;
match v {
Some(v) => {
builder.append_value(Date32Type::from_naive_date(v));
}
None => builder.append_null(),
}
}
ColumnType::MYSQL_TYPE_TIME => {
let Some(builder) = builder else {
return NoBuilderForIndexSnafu { index: i }.fail();
};
let Some(builder) = builder
.as_any_mut()
.downcast_mut::<Time64NanosecondBuilder>()
else {
return FailedToDowncastBuilderSnafu {
mysql_type: format!("{mysql_type:?}"),
}
.fail();
};
let v = handle_null_error(row.get_opt::<NaiveTime, usize>(i).transpose())
.context(FailedToGetRowValueSnafu {
mysql_type: ColumnType::MYSQL_TYPE_TIME,
})?;
match v {
Some(value) => {
builder.append_value(
i64::from(value.num_seconds_from_midnight()) * 1_000_000_000
+ i64::from(value.nanosecond()),
);
}
None => builder.append_null(),
}
}
column_type @ (ColumnType::MYSQL_TYPE_TIMESTAMP
| ColumnType::MYSQL_TYPE_DATETIME) => {
let Some(builder) = builder else {
return NoBuilderForIndexSnafu { index: i }.fail();
};
let Some(builder) = builder
.as_any_mut()
.downcast_mut::<TimestampMicrosecondBuilder>()
else {
return FailedToDowncastBuilderSnafu {
mysql_type: format!("{mysql_type:?}"),
}
.fail();
};
let v =
handle_null_error(row.get_opt::<PrimitiveDateTime, usize>(i).transpose())
.context(FailedToGetRowValueSnafu {
mysql_type: column_type,
})?;
match v {
Some(v) => {
#[allow(clippy::cast_possible_truncation)]
let timestamp_micros =
(v.assume_utc().unix_timestamp_nanos() / 1_000) as i64;
builder.append_value(timestamp_micros);
}
None => builder.append_null(),
}
}
_ => unimplemented!("Unsupported column type {:?}", mysql_type),
}
}
}
let columns = arrow_columns_builders
.into_iter()
.filter_map(|builder| builder.map(|mut b| b.finish()))
.collect::<Vec<ArrayRef>>();
let arrow_fields = arrow_fields.into_iter().flatten().collect::<Vec<Field>>();
let options = &RecordBatchOptions::new().with_row_count(Some(rows.len()));
RecordBatch::try_new_with_options(Arc::new(Schema::new(arrow_fields)), columns, options)
.map_err(|err| Error::FailedToBuildRecordBatch { source: err })
}
#[allow(clippy::unnecessary_wraps)]
pub fn map_column_to_data_type(
column_type: ColumnType,
column_is_binary: bool,
column_is_enum: bool,
column_use_large_str_or_blob: bool,
column_decimal_precision: Option<u8>,
column_decimal_scale: Option<i8>,
) -> Option<DataType> {
match column_type {
ColumnType::MYSQL_TYPE_NULL => Some(DataType::Null),
ColumnType::MYSQL_TYPE_BIT => Some(DataType::UInt64),
ColumnType::MYSQL_TYPE_TINY => Some(DataType::Int8),
ColumnType::MYSQL_TYPE_YEAR | ColumnType::MYSQL_TYPE_SHORT => Some(DataType::Int16),
ColumnType::MYSQL_TYPE_INT24 | ColumnType::MYSQL_TYPE_LONG => Some(DataType::Int32),
ColumnType::MYSQL_TYPE_LONGLONG => Some(DataType::Int64),
ColumnType::MYSQL_TYPE_FLOAT => Some(DataType::Float32),
ColumnType::MYSQL_TYPE_DOUBLE => Some(DataType::Float64),
// Decimal precision must be a value between 0x00 - 0x51, so it's safe to unwrap_or_default here
ColumnType::MYSQL_TYPE_DECIMAL | ColumnType::MYSQL_TYPE_NEWDECIMAL => {
if column_decimal_precision.unwrap_or_default() > 38 {
return Some(DataType::Decimal256(column_decimal_precision.unwrap_or_default(), column_decimal_scale.unwrap_or_default()));
}
Some(DataType::Decimal128(column_decimal_precision.unwrap_or_default(), column_decimal_scale.unwrap_or_default()))
},
ColumnType::MYSQL_TYPE_TIMESTAMP | ColumnType::MYSQL_TYPE_DATETIME => {
Some(DataType::Timestamp(TimeUnit::Microsecond, None))
},
ColumnType::MYSQL_TYPE_DATE => Some(DataType::Date32),
ColumnType::MYSQL_TYPE_TIME => {
Some(DataType::Time64(TimeUnit::Nanosecond))
}
ColumnType::MYSQL_TYPE_VARCHAR
| ColumnType::MYSQL_TYPE_JSON => Some(DataType::LargeUtf8),
// MYSQL_TYPE_BLOB includes TINYBLOB, BLOB, MEDIUMBLOB, LONGBLOB, TINYTEXT, TEXT, MEDIUMTEXT, LONGTEXT https://dev.mysql.com/doc/c-api/8.0/en/c-api-data-structures.html
// MySQL String Type Storage requirement: https://dev.mysql.com/doc/refman/8.4/en/storage-requirements.html
// Binary / Utf8 stores up to 2^31 - 1 length binary / non-binary string
ColumnType::MYSQL_TYPE_BLOB => {
match (column_use_large_str_or_blob, column_is_binary) {
(true, true) => Some(DataType::LargeBinary),
(true, false) => Some(DataType::LargeUtf8),
(false, true) => Some(DataType::Binary),
(false, false) => Some(DataType::Utf8),
}
}
ColumnType::MYSQL_TYPE_ENUM | ColumnType::MYSQL_TYPE_SET => unreachable!(),
ColumnType::MYSQL_TYPE_STRING
| ColumnType::MYSQL_TYPE_VAR_STRING => {
if column_is_enum {
Some(DataType::Dictionary(Box::new(DataType::UInt16), Box::new(DataType::Utf8)))
} else if column_is_binary {
Some(DataType::Binary)
} else {
Some(DataType::Utf8)
}
},
// replication only
ColumnType::MYSQL_TYPE_TYPED_ARRAY
// internal
| ColumnType::MYSQL_TYPE_NEWDATE
// Unsupported yet
| ColumnType::MYSQL_TYPE_UNKNOWN
| ColumnType::MYSQL_TYPE_TIMESTAMP2
| ColumnType::MYSQL_TYPE_DATETIME2
| ColumnType::MYSQL_TYPE_TIME2
| ColumnType::MYSQL_TYPE_LONG_BLOB
| ColumnType::MYSQL_TYPE_TINY_BLOB
| ColumnType::MYSQL_TYPE_MEDIUM_BLOB
| ColumnType::MYSQL_TYPE_GEOMETRY => {
unimplemented!("Unsupported column type {:?}", column_type)
}
}
}
fn to_decimal_128(decimal: &BigDecimal, scale: i64) -> Option<i128> {
(decimal * 10i128.pow(scale.try_into().unwrap_or_default())).to_i128()
}
fn to_decimal_256(decimal: &BigDecimal) -> i256 {
let (bigint_value, _) = decimal.as_bigint_and_exponent();
let mut bigint_bytes = bigint_value.to_signed_bytes_le();
let is_negative = bigint_value.sign() == num_bigint::Sign::Minus;
let fill_byte = if is_negative { 0xFF } else { 0x00 };
if bigint_bytes.len() > 32 {
bigint_bytes.truncate(32);
} else {
bigint_bytes.resize(32, fill_byte);
};
let mut array = [0u8; 32];
array.copy_from_slice(&bigint_bytes);
i256::from_le_bytes(array)
}
fn get_decimal_column_precision(column_name: &str, projected_schema: &SchemaRef) -> Option<u8> {
let field = projected_schema.field_with_name(column_name).ok()?;
match field.data_type() {
DataType::Decimal256(precision, _) | DataType::Decimal128(precision, _) => Some(*precision),
_ => None,
}
}
fn handle_null_error<T>(
result: Result<Option<T>, FromValueError>,
) -> Result<Option<T>, FromValueError> {
match result {
Ok(val) => Ok(val),
Err(FromValueError(Value::NULL)) => Ok(None),
err => err,
}
}