Skip to content

Commit 0c72dc3

Browse files
committed
Fix error message
1 parent c6cb1ef commit 0c72dc3

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/realm/parser/driver.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,12 @@ inline const char* get_type_name<double>()
147147
return "floating point number";
148148
}
149149

150+
template <>
151+
inline const char* get_type_name<Decimal128>()
152+
{
153+
return "decimal number";
154+
}
155+
150156
template <typename T>
151157
inline T string_to(const std::string& s)
152158
{

0 commit comments

Comments
 (0)