flink-cdc icon indicating copy to clipboard operation
flink-cdc copied to clipboard

fix case insensitive in mysql but case senstiive in program

Open choucmei opened this issue 2 years ago • 0 comments

In mysql use utf8_general_ci will case,eaxmple : 'a' = ‘A' , use utf8_bin will sort by asscii ,example: 'A' < 'a'. But will sort by asscii in java.

Use binary function like select * from table order by binary id is not good, because it result to filesort is not index

choucmei avatar May 06 '22 08:05 choucmei