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 @@ -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);
You can’t perform that action at this time.
0 commit comments