| 701 | |
| 702 | |
| 703 | int Arg_comparator::compare_e_row() |
| 704 | { |
| 705 | (*a)->bring_value(); |
| 706 | (*b)->bring_value(); |
| 707 | uint n= (*a)->cols(); |
| 708 | for (uint i= 0; i<n; i++) |
| 709 | { |
| 710 | if (!comparators[i].compare()) |
| 711 | return 0; |
| 712 | } |
| 713 | return 1; |
| 714 | } |
| 715 | |
| 716 | |
| 717 | void Item_func_truth::print(String *str, enum_query_type query_type) |
nothing calls this directly
no test coverage detected