diff options
| author | chenzizhan <[email protected]> | 2024-10-24 17:09:27 +0800 |
|---|---|---|
| committer | chenzizhan <[email protected]> | 2024-10-24 17:09:27 +0800 |
| commit | 8110a85be1cde0f3a2d9ce9080e743791047efd6 (patch) | |
| tree | f06345ca3640b4336f9e631c980c47f902a34ef9 /include/fieldstat/fieldstat.h | |
| parent | ff2357bb1d2af70dda26029ae02f62ef42d96ac2 (diff) | |
Revert "Revert "uuid type field(dimension)""HEADv4.7.0develop-version4
This reverts commit 328afefa85448339bfecc3ad5b429957eb12566c.
Diffstat (limited to 'include/fieldstat/fieldstat.h')
| -rw-r--r-- | include/fieldstat/fieldstat.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/fieldstat/fieldstat.h b/include/fieldstat/fieldstat.h index 8bb5c8f..06fb0c3 100644 --- a/include/fieldstat/fieldstat.h +++ b/include/fieldstat/fieldstat.h @@ -7,6 +7,7 @@ extern "C" #include <stddef.h> #include <stdbool.h> +#include <uuid/uuid.h> #define FS_OK 0 #define FS_ERR_TOO_MANY_CELLS -1 @@ -36,6 +37,7 @@ enum field_type FIELD_VALUE_INTEGER, FIELD_VALUE_DOUBLE, FIELD_VALUE_CSTRING, + FIELD_VALUE_UUID, }; enum sampling_mode { @@ -51,6 +53,7 @@ struct field { long long value_longlong; double value_double; const char *value_str; + uuid_t value_uuid; }; }; |
