mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-09 09:10:03 -04:00
12 lines
227 B
C++
12 lines
227 B
C++
#include <iostream>
|
|
|
|
int RunQueryBuilderSqlTests();
|
|
|
|
int main() {
|
|
const int result = RunQueryBuilderSqlTests();
|
|
if (result == 0) {
|
|
std::cout << "All query-builder SQL tests passed\n";
|
|
}
|
|
return result;
|
|
}
|