Skip to content

Commit 5b5df17

Browse files
committed
0.2.23
(sameas 0.2.20)
1 parent 2d58a95 commit 5b5df17

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.22"
3+
version = "0.2.23"
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
@@ -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, 255*255);
95+
let mut col = TextColumn::new(255, values.len() * 1000);
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)