From 8d5eea45a3b3a644e24320ceb3ad546063279cad Mon Sep 17 00:00:00 2001 From: VaclavT Date: Sun, 15 Aug 2021 11:16:06 +0200 Subject: [PATCH] double string representation is a bit shorter --- row.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/row.cpp b/row.cpp index 45fec71..5d71991 100644 --- a/row.cpp +++ b/row.cpp @@ -183,7 +183,7 @@ void Row::print(const std::vector &col_defs) { int Row::print_get_column_size(const ColDefNode &col_def) { int col_size = col_def.type == ColumnType::varchar_type ? col_def.length : - col_def.type == ColumnType::float_type ? 20 : 10; + col_def.type == ColumnType::float_type ? 16 : 10; return col_size; }