utilities/feature_store_helper.py [1563:1573]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if feature_names is None:
            feature_name_string = '*'
        else:
            feature_name_string = ','.join(feature_names)

        if record_ids is None:
            where_clause = ''
        else:
            id_list_string = self._id_list_as_string(fg_name, record_ids)
    #         id_list_string = ','.join(str(x) for x in record_ids)
            where_clause = f' WHERE {id_feature_name} IN ({id_list_string})'
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



utilities/feature_store_helper.py [1613:1622]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if feature_names is None:
            feature_name_string = '*'
        else:
            feature_name_string = ','.join(feature_names)

        if record_ids is None:
            where_clause = ''
        else:
            id_list_string = self._id_list_as_string(fg_name, record_ids)
            where_clause = f' WHERE {id_feature_name} IN ({id_list_string})'
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



