Skip to content

Commit 240c523

Browse files
committed
0.2.16
1 parent b91fa6d commit 240c523

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

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

src/databases/odbc/mutable.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ fn into_buffer(values: Vec<Value>, column_def: Column) -> AnyColumnBuffer {
8585
.collect(),
8686
),
8787
Str => {
88-
let mut col = TextColumn::new(255, values.len() * 255);
88+
let mut col = TextColumn::new(100, values.len() * 255);
8989
values.into_iter().enumerate().for_each(|(index, value)| {
9090
let text: String = value.cast().unwrap();
9191
col.append(index, Some(text.as_bytes()))

0 commit comments

Comments
 (0)