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.
1 parent 858bebd commit ef5f795Copy full SHA for ef5f795
1 file changed
src/output-flex.cpp
@@ -428,14 +428,14 @@ void output_flex_t::write_column(
428
int const ltype_key = lua_type(lua_state(), -2);
429
throw std::runtime_error{
430
"NULL key for hstore. Possibly this is due to"
431
- "an incorrect data type '{}' as key."_format(
+ " an incorrect data type '{}' as key."_format(
432
lua_typename(lua_state(), ltype_key))};
433
}
434
if (val == nullptr) {
435
int const ltype_value = lua_type(lua_state(), -1);
436
437
"NULL value for hstore. Possibly this is due to"
438
- "an incorrect data type '{}' for key '{}'."_format(
+ " an incorrect data type '{}' for key '{}'."_format(
439
lua_typename(lua_state(), ltype_value), key)};
440
441
copy_mgr->add_hash_elem(key, val);
0 commit comments