diff options
| author | chenzizhan <[email protected]> | 2024-10-16 10:18:48 +0800 |
|---|---|---|
| committer | chenzizhan <[email protected]> | 2024-10-16 10:18:48 +0800 |
| commit | f56b8f44b91a07bcbcd08614aa4341c2c892b4a1 (patch) | |
| tree | ef644d96e063bd29f2e3d1ef3c74cee9e9ef2af6 /src | |
| parent | e5c869ccbb7e9357b987754dd605b96f660c133f (diff) | |
rename fieldstat_hll_add_field
Diffstat (limited to 'src')
| -rw-r--r-- | src/fieldstat.c | 4 | ||||
| -rw-r--r-- | src/version.map | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/fieldstat.c b/src/fieldstat.c index 431626d..86aa0b2 100644 --- a/src/fieldstat.c +++ b/src/fieldstat.c @@ -174,14 +174,14 @@ int fieldstat_hll_add(struct fieldstat *instance, int cube_id, int metric_id, co } // cppcheck-suppress [constParameterPointer, unmatchedSuppression] -int fieldstat_hll_add_field(struct fieldstat *instance, int cube_id, int metric_id, const struct field *cell_dimensions, size_t n_dimensions, const struct field *item, size_t item_len) +int fieldstat_hll_add_fields(struct fieldstat *instance, int cube_id, int metric_id, const struct field *cell_dimensions, size_t n_dimensions, const struct field *items, size_t n_items) { struct cube *cube = cube_manager_get_cube_by_id(instance->cube_manager, cube_id); if (cube == NULL) { return FS_ERR_INVALID_CUBE_ID; } - return cube_hll_add_field(cube, metric_id, cell_dimensions, n_dimensions, item, item_len); + return cube_hll_add_field(cube, metric_id, cell_dimensions, n_dimensions, items, n_items); } // cppcheck-suppress [constParameterPointer, unmatchedSuppression] diff --git a/src/version.map b/src/version.map index ede484f..5e22600 100644 --- a/src/version.map +++ b/src/version.map @@ -1,5 +1,5 @@ { - global: *fieldstat_*; + global: *fieldstat_*, *histogram*; GIT_VERSION*; local: *; };
\ No newline at end of file |
