We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5191ed1 + ef5f795 commit 5408f91Copy full SHA for 5408f91
1 file changed
src/output-flex.cpp
@@ -427,14 +427,14 @@ void output_flex_t::write_column(
427
int const ltype_key = lua_type(lua_state(), -2);
428
throw std::runtime_error{
429
"NULL key for hstore. Possibly this is due to"
430
- "an incorrect data type '{}' as key."_format(
+ " an incorrect data type '{}' as key."_format(
431
lua_typename(lua_state(), ltype_key))};
432
}
433
if (val == nullptr) {
434
int const ltype_value = lua_type(lua_state(), -1);
435
436
"NULL value for hstore. Possibly this is due to"
437
- "an incorrect data type '{}' for key '{}'."_format(
+ " an incorrect data type '{}' for key '{}'."_format(
438
lua_typename(lua_state(), ltype_value), key)};
439
440
copy_mgr->add_hash_elem(key, val);
0 commit comments