diff --git a/repertory/librepertory/include/database/db_common.hpp b/repertory/librepertory/include/database/db_common.hpp index 8d0a1fdb..50b2270e 100644 --- a/repertory/librepertory/include/database/db_common.hpp +++ b/repertory/librepertory/include/database/db_common.hpp @@ -234,8 +234,8 @@ struct db_next_t final { using group_func_t = std::function; - [[nodiscard]] auto column(std::string column_name) -> cn_t { - return next.column(column_name); + [[nodiscard]] auto where(std::string column_name) -> cn_t { + return next.where(column_name); } [[nodiscard]] auto dump(std::int64_t &idx) const -> std::string { @@ -257,8 +257,8 @@ struct db_next_limit_t final { using group_func_t = std::function; - [[nodiscard]] auto column(std::string column_name) -> cn_t { - return next.column(column_name); + [[nodiscard]] auto where(std::string column_name) -> cn_t { + return next.where(column_name); } [[nodiscard]] auto dump(std::int64_t &idx) const -> std::string {