collection_resolver progress

This commit is contained in:
Sascha Kühl
2026-02-02 13:40:53 +01:00
parent f9333158e2
commit 621c3703fd
7 changed files with 38 additions and 54 deletions
+7 -4
View File
@@ -188,10 +188,6 @@ int main() {
.where( query::is_null("lastSuccessfulLogin") && LOGIN_HISTORY.login_time < "ll.lastSuccessfulLogin" )
.str( conn->dialect() );
std::cout << stmt1 << std::endl;
std::cout << stmt2 << std::endl;
std::cout << stmt3 << std::endl;
// const QString subQuery = QString( "SELECT MAX(%1) AS lastSuccessfulLogin, %3 FROM %2 "
// "WHERE(%4 = ? OR %4 = ? OR %4 = ?) AND %3 = ? GROUP BY %3 " );
//
@@ -316,6 +312,13 @@ int main() {
.where(JOB.id > _ && JOB.name == _)
.str(conn->dialect());
std::cout << stmt1 << std::endl;
std::cout << stmt2 << std::endl;
std::cout << stmt3 << std::endl;
std::cout << stmt4 << std::endl;
std::cout << stmt5 << std::endl;
return 0;
}