Skip to content

Commit ef5f795

Browse files
committed
Add missing spaces in error messages
1 parent 858bebd commit ef5f795

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/output-flex.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -428,14 +428,14 @@ void output_flex_t::write_column(
428428
int const ltype_key = lua_type(lua_state(), -2);
429429
throw std::runtime_error{
430430
"NULL key for hstore. Possibly this is due to"
431-
"an incorrect data type '{}' as key."_format(
431+
" an incorrect data type '{}' as key."_format(
432432
lua_typename(lua_state(), ltype_key))};
433433
}
434434
if (val == nullptr) {
435435
int const ltype_value = lua_type(lua_state(), -1);
436436
throw std::runtime_error{
437437
"NULL value for hstore. Possibly this is due to"
438-
"an incorrect data type '{}' for key '{}'."_format(
438+
" an incorrect data type '{}' for key '{}'."_format(
439439
lua_typename(lua_state(), ltype_value), key)};
440440
}
441441
copy_mgr->add_hash_elem(key, val);

0 commit comments

Comments
 (0)