Skip to content

Commit 37c2ac6

Browse files
authored
Merge pull request #1339 from fnc12/dbstat_table_reference
Provide a table reference for the "dbstat" eponymous virtual table
2 parents 8c15e4b + fcf86d1 commit 37c2ac6

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed

dev/eponymous_vtabs/dbstat.h

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
#include "../schema/column.h"
88
#include "../schema/table.h"
9+
#include "../column_pointer.h"
910

1011
namespace sqlite_orm {
1112
#ifdef SQLITE_ENABLE_DBSTAT_VTAB
@@ -35,5 +36,9 @@ namespace sqlite_orm {
3536
make_column("pgoffset", &dbstat::pgoffset),
3637
make_column("pgsize", &dbstat::pgsize));
3738
}
39+
40+
#ifdef SQLITE_ORM_WITH_CPP20_ALIASES
41+
inline constexpr orm_table_reference auto dbstat_table = c<dbstat>();
42+
#endif
3843
#endif // SQLITE_ENABLE_DBSTAT_VTAB
3944
}

include/sqlite_orm/sqlite_orm.h

+6
Original file line numberDiff line numberDiff line change
@@ -23768,6 +23768,8 @@ namespace sqlite_orm {
2376823768

2376923769
// #include "../schema/table.h"
2377023770

23771+
// #include "../column_pointer.h"
23772+
2377123773
namespace sqlite_orm {
2377223774
#ifdef SQLITE_ENABLE_DBSTAT_VTAB
2377323775
struct dbstat {
@@ -23796,6 +23798,10 @@ namespace sqlite_orm {
2379623798
make_column("pgoffset", &dbstat::pgoffset),
2379723799
make_column("pgsize", &dbstat::pgsize));
2379823800
}
23801+
23802+
#ifdef SQLITE_ORM_WITH_CPP20_ALIASES
23803+
inline constexpr orm_table_reference auto dbstat_table = c<dbstat>();
23804+
#endif
2379923805
#endif // SQLITE_ENABLE_DBSTAT_VTAB
2380023806
}
2380123807

tests/builtin_tables.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@ TEST_CASE("builtin tables") {
5050

5151
auto dbstatRows = storage.get_all<dbstat>();
5252
std::ignore = dbstatRows;
53+
54+
#ifdef SQLITE_ORM_WITH_CPP20_ALIASES
55+
dbstatRows = storage.get_all<dbstat_table>();
56+
#endif
5357
}
5458
#endif // SQLITE_ENABLE_DBSTAT_VTAB
5559
}

tests/prepared_statement_tests/get_all.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -217,8 +217,8 @@ TEST_CASE("Prepared get all") {
217217
}
218218
#ifdef SQLITE_ORM_WITH_CPP20_ALIASES
219219
SECTION("from table reference") {
220-
constexpr auto schema = c<sqlite_master>();
221-
auto statement = storage.prepare(get_all<schema>(where(schema->*&sqlite_master::type == "table")));
220+
auto statement =
221+
storage.prepare(get_all<sqlite_master_table>(where(sqlite_master_table->*&sqlite_master::type == "table")));
222222
auto str = storage.dump(statement);
223223
testSerializing(statement);
224224
}

0 commit comments

Comments
 (0)