Skip to content

Commit 5408f91

Browse files
authored
Merge pull request #1231 from joto/fix-space-in-error-message
Add missing spaces in error messages
2 parents 5191ed1 + ef5f795 commit 5408f91

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
@@ -427,14 +427,14 @@ void output_flex_t::write_column(
427427
int const ltype_key = lua_type(lua_state(), -2);
428428
throw std::runtime_error{
429429
"NULL key for hstore. Possibly this is due to"
430-
"an incorrect data type '{}' as key."_format(
430+
" an incorrect data type '{}' as key."_format(
431431
lua_typename(lua_state(), ltype_key))};
432432
}
433433
if (val == nullptr) {
434434
int const ltype_value = lua_type(lua_state(), -1);
435435
throw std::runtime_error{
436436
"NULL value for hstore. Possibly this is due to"
437-
"an incorrect data type '{}' for key '{}'."_format(
437+
" an incorrect data type '{}' for key '{}'."_format(
438438
lua_typename(lua_state(), ltype_value), key)};
439439
}
440440
copy_mgr->add_hash_elem(key, val);

0 commit comments

Comments
 (0)