Skip to content

Commit be003a1

Browse files
committed
refactor: rename util files from *_utils to *_util for consistency
1 parent c9d7867 commit be003a1

File tree

6 files changed

+4
-4
lines changed

6 files changed

+4
-4
lines changed

src/iceberg/file_format.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
#include "iceberg/iceberg_export.h"
2929
#include "iceberg/result.h"
30-
#include "iceberg/util/string_utils.h"
30+
#include "iceberg/util/string_util.h"
3131

3232
namespace iceberg {
3333

src/iceberg/transform_function.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#include "iceberg/expression/literal.h"
2929
#include "iceberg/type.h"
3030
#include "iceberg/util/murmurhash3_internal.h"
31-
#include "iceberg/util/truncate_utils.h"
31+
#include "iceberg/util/truncate_util.h"
3232

3333
namespace iceberg {
3434

File renamed without changes.
File renamed without changes.

test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ add_iceberg_test(util_test
8989
formatter_test.cc
9090
config_test.cc
9191
visit_type_test.cc
92-
string_utils_test.cc)
92+
string_util_test.cc)
9393

9494
if(ICEBERG_BUILD_BUNDLE)
9595
add_iceberg_test(avro_test

test/string_utils_test.cc renamed to test/string_util_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* under the License.
1818
*/
1919

20-
#include "iceberg/util/string_utils.h"
20+
#include "iceberg/util/string_util.h"
2121

2222
#include <gtest/gtest.h>
2323

0 commit comments

Comments
 (0)