Skip to content

Commit 21d1828

Browse files
committed
0.2.21
1 parent a9e1b92 commit 21d1828

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "multisql"
3-
version = "0.2.20"
3+
version = "0.2.21"
44
authors = ["Kyran Gostelow <kyran@gostelow.me>", "Taehoon Moon <taehoon.moon@outlook.com>"]
55
edition = "2021"
66
description = "MultiSQL"

src/databases/odbc/mutable.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ fn into_buffer(values: Vec<Value>, column_def: Column) -> AnyColumnBuffer {
9292
.collect(),
9393
),
9494
Str => {
95-
let mut col = TextColumn::new(50, values.len());
95+
let mut col = TextColumn::new(50, values.len()*2);
9696
values.into_iter().enumerate().for_each(|(index, value)| {
9797
let text: String = value.cast().unwrap();
9898
col.append(index, Some(text.as_bytes()))

0 commit comments

Comments
 (0)