From 5d4614b6260a4a9e7a27f8565326d5c86bc72b21 Mon Sep 17 00:00:00 2001 From: Richard Berger Date: Fri, 19 Mar 2021 14:10:20 -0400 Subject: [PATCH] Correct vformat for bigint in dump_custom.cpp --- src/dump_custom.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dump_custom.cpp b/src/dump_custom.cpp index 53bc9449a0..6f4d7c50b0 100644 --- a/src/dump_custom.cpp +++ b/src/dump_custom.cpp @@ -285,7 +285,7 @@ void DumpCustom::init_style() else if (vtype[i] == Dump::DOUBLE && format_float_user) vformat[i] = utils::strdup(std::string(format_float_user) + " "); else if (vtype[i] == Dump::BIGINT && format_bigint_user) - vformat[i] = utils::strdup(std::string(format_int_user) + " "); + vformat[i] = utils::strdup(std::string(format_bigint_user) + " "); else vformat[i] = utils::strdup(word + " "); // remove trailing blank on last column's format