FilterOptions defines the parameters for a column filter.
| 785 | |
| 786 | // FilterOptions defines the parameters for a column filter. |
| 787 | type FilterOptions struct { |
| 788 | Query string |
| 789 | Operator string |
| 790 | CaseSensitive bool |
| 791 | } |
| 792 | |
| 793 | // filterByColumn filters rows based on column value using the provided options. |
| 794 | // It returns a new buffer containing the filtered rows. |
nothing calls this directly
no outgoing calls
no test coverage detected