print column size fix

This commit is contained in:
2021-08-09 09:32:29 +02:00
parent 19585dda8c
commit 474b789d12
5 changed files with 144 additions and 17 deletions

View File

@@ -1,6 +1,6 @@
#include "settings.h"
#include "exception.h"
#include "ml_date.h"
namespace usql {
@@ -25,6 +25,7 @@ std::basic_string<char> Settings::get_setting(const std::string &name) {
if (pair.first == name) return pair.second;
}
// TODO exception
throw Exception("unsupported setting name: " + name);
}
} // namespace