File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ class FunctionTiDBNullEQ : public IFunction
109109 return ;
110110 }
111111
112- auto unwrapNullableColumn = [rows](const ColumnPtr & col, ColumnPtr & nested_col, const NullMap *& nullmap) {
112+ auto unwrap_nullable_column = [rows](const ColumnPtr & col, ColumnPtr & nested_col, const NullMap *& nullmap) {
113113 nested_col = col;
114114 nullmap = nullptr ;
115115
@@ -136,11 +136,11 @@ class FunctionTiDBNullEQ : public IFunction
136136
137137 ColumnPtr left_nested_col = left_col;
138138 const NullMap * left_nullmap = nullptr ;
139- unwrapNullableColumn (left_col, left_nested_col, left_nullmap);
139+ unwrap_nullable_column (left_col, left_nested_col, left_nullmap);
140140
141141 ColumnPtr right_nested_col = right_col;
142142 const NullMap * right_nullmap = nullptr ;
143- unwrapNullableColumn (right_col, right_nested_col, right_nullmap);
143+ unwrap_nullable_column (right_col, right_nested_col, right_nullmap);
144144
145145 // / Execute `equals` on nested columns.
146146 Block temp_block;
You can’t perform that action at this time.
0 commit comments