| 210 | |
| 211 | template <typename Decimal> |
| 212 | gchar * |
| 213 | garrow_decimal_to_string(typename DecimalConverter<Decimal>::GArrowType *decimal) |
| 214 | { |
| 215 | DecimalConverter<Decimal> converter; |
| 216 | const auto arrow_decimal = converter.get_raw(decimal); |
| 217 | const auto string = arrow_decimal->ToIntegerString(); |
| 218 | return g_strdup(string.c_str()); |
| 219 | } |
| 220 | |
| 221 | template <typename Decimal> |
| 222 | GBytes * |
nothing calls this directly
no test coverage detected