File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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);
You can’t perform that action at this time.
0 commit comments