Skip to content

Commit

Permalink
Fix: Add DATA_TYPE back to GET_AGGREGATES/AGGREGATE
Browse files Browse the repository at this point in the history
  • Loading branch information
mattmundell authored and timopollmeier committed Oct 10, 2024
1 parent 2361f46 commit 13d9083
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/gmp.c
Original file line number Diff line number Diff line change
Expand Up @@ -10192,6 +10192,10 @@ buffer_aggregate_wc_xml (GString *xml, iterator_t* aggregate,

g_string_append_printf (xml, "<aggregate>");

g_string_append_printf (xml,
"<data_type>%s</data_type>",
type);

g_string_append_printf (xml,
"<group_column>%s</group_column>",
group_column);
Expand Down Expand Up @@ -10509,6 +10513,10 @@ buffer_aggregate_xml (GString *xml, iterator_t* aggregate, const gchar* type,

g_string_append_printf (xml, "<aggregate>");

g_string_append_printf (xml,
"<data_type>%s</data_type>",
type);

for (index = 0; index < data_columns->len ;index ++)
{
gchar *column_name = g_array_index (data_columns, gchar*, index);
Expand Down

0 comments on commit 13d9083

Please sign in to comment.