Skip to content
This repository was archived by the owner on May 10, 2024. It is now read-only.

Commit f87bda6

Browse files
author
Deepak Majeti
committed
Avoid UTF-8 file encoding mismatch between windows and linux
1 parent 3cb8a3e commit f87bda6

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

src/parquet/util/comparison-test.cc

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@
2525
#include "parquet/types.h"
2626
#include "parquet/util/comparison.h"
2727

28-
#if defined(_MSC_VER)
29-
#pragma execution_character_set("utf-8")
30-
#endif
31-
3228
namespace parquet {
3329

3430
namespace test {
@@ -94,12 +90,6 @@ TEST(Comparison, UnsignedByteArray) {
9490
s1ba = ByteArrayFromString(s1);
9591
s2ba = ByteArrayFromString(s2);
9692
ASSERT_TRUE(uless(s1ba, s2ba));
97-
98-
s1 = u8"Ănk123456"; // Ă = 258
99-
s2 = u8"ănk123456"; // ă = 259
100-
s1ba = ByteArrayFromString(s1);
101-
s2ba = ByteArrayFromString(s2);
102-
ASSERT_TRUE(uless(s1ba, s2ba));
10393
}
10494

10595
TEST(Comparison, SignedFLBA) {

0 commit comments

Comments
 (0)