Skip to content

Commit

Permalink
Removed workaround for bug that was fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
Omega359 committed Dec 29, 2024
1 parent c4650b9 commit ba62846
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -239,10 +239,6 @@ pub fn cell_to_string(col: &ArrayRef, row: usize) -> Result<String> {
let key = dict.normalized_keys()[row];
Ok(cell_to_string(dict.values(), key)?)
}
// only added because of a bug in v 1.0.4 (is) of lexical-write-integer
DataType::Int64 => {
Ok(format!("{}", get_row_value!(array::Int64Array, col, row)))
}
_ => {
let f = ArrayFormatter::try_new(col.as_ref(), &DEFAULT_FORMAT_OPTIONS);
Ok(f.unwrap().value(row).to_string())
Expand Down

0 comments on commit ba62846

Please sign in to comment.