Skip to content

Commit ce7b583

Browse files
committed
processor_sql: add missing handling of conditionals for unsigned values
Signed-off-by: Eduardo Silva <eduardo@calyptia.com>
1 parent f278982 commit ce7b583

File tree

1 file changed

+10
-0
lines changed
  • plugins/processor_sql

1 file changed

+10
-0
lines changed

plugins/processor_sql/sql.c

+10
Original file line numberDiff line numberDiff line change
@@ -433,6 +433,16 @@ static int sql_key_to_value(char *name, struct flb_mp_chunk_record *record, stru
433433
val->type = SQL_EXP_INT;
434434
val->val.i64 = kvpair->val->data.as_int64;
435435
}
436+
else if (var->type == CFL_VARIANT_UINT) {
437+
/*
438+
* Note on uint64 handling: our parsing rules in sql-parser.l handles the strings
439+
* that represents integers through an atol() conversion. If we get a case of a
440+
* long unsigned value, we can adjust it here by extending the sql_val union.
441+
*
442+
*/
443+
val->type = SQL_EXP_INT;
444+
val->val.i64 = kvpair->val->data.as_uint64;
445+
}
436446
else if (var->type == CFL_VARIANT_DOUBLE) {
437447
val->type = SQL_EXP_FLOAT;
438448
val->val.f64 = kvpair->val->data.as_double;

0 commit comments

Comments
 (0)