Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
control-plane: use btree index for log_lines
Replaces the current BRIN index on the `internal.log_lines` table with a btree index. The BRIN index would require queries to use the `logged_at` timestamp in the where clause in order for it to be effective. Neither the UI or flowctl do that currently. The btree index works well when only filtering on token, so this changes to just using that.
- Loading branch information