Skip to content

Commit 9f13bac

Browse files
authored
refactor: rename util files from *_utils to *_util for consistency (apache#197)
1 parent c9d7867 commit 9f13bac

File tree

7 files changed

+5
-5
lines changed

7 files changed

+5
-5
lines changed

.github/workflows/cpp-linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
mkdir build && cd build
4040
cmake .. -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
4141
cmake --build .
42-
- uses: cpp-linter/cpp-linter-action@d7155ea6699028b6b09b0457e26b3c5d73f0ed46
42+
- uses: cpp-linter/cpp-linter-action@f91c446a32ae3eb9f98fef8c9ed4c7cb613a4f8a
4343
id: linter
4444
continue-on-error: true
4545
env:

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)