Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
jedelbo committed May 21, 2024
1 parent c6cb1ef commit f67565d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/realm/parser/driver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,12 @@ inline const char* get_type_name<double>()
return "floating point number";
}

template <>
inline const char* get_type_name<Decimal128>()
{
return "decimal number";
}

template <typename T>
inline T string_to(const std::string& s)
{
Expand Down

0 comments on commit f67565d

Please sign in to comment.