auto_sizing/targets.py [174:186]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            )
            Segment_list.append(
                Segment(
                    name="clients_last_seen_filter",
                    data_source=baseline_clients_last_seen,
                    select_expr="""COALESCE(MIN(first_seen_date) <= '{first_day}', TRUE)
                    AND COALESCE(MIN(days_since_seen) = 0)""".format(
                        first_day=add_days(start_date, -28)
                    ),
                )
            )

        return Segment_list
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



auto_sizing/targets.py [219:231]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            )
            Segment_list.append(
                Segment(
                    name="clients_last_seen_filter",
                    data_source=baseline_clients_last_seen,
                    select_expr="""COALESCE(MIN(first_seen_date) <= '{first_day}', TRUE)
                    AND COALESCE(MIN(days_since_seen) = 0)""".format(
                        first_day=add_days(start_date, -28)
                    ),
                )
            )

        return Segment_list
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



