2013-08-14 04:43:10 +08:00
|
|
|
/*
|
2016-03-18 00:28:59 +08:00
|
|
|
* Copyright (c) 2013-2016, Roland Bock
|
2013-08-14 04:43:10 +08:00
|
|
|
* All rights reserved.
|
2015-08-05 20:43:21 +08:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without modification,
|
2013-08-14 04:43:10 +08:00
|
|
|
* are permitted provided that the following conditions are met:
|
2015-08-05 20:43:21 +08:00
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright notice,
|
2013-08-14 04:43:10 +08:00
|
|
|
* this list of conditions and the following disclaimer.
|
2015-08-05 20:43:21 +08:00
|
|
|
* * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
2013-08-14 04:43:10 +08:00
|
|
|
* and/or other materials provided with the distribution.
|
2015-08-05 20:43:21 +08:00
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
|
|
|
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
|
|
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
|
|
|
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
2013-08-14 04:43:10 +08:00
|
|
|
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2013-11-11 01:03:39 +08:00
|
|
|
#include "MockDb.h"
|
2016-08-17 15:51:24 +08:00
|
|
|
#include "Sample.h"
|
2013-11-11 01:03:39 +08:00
|
|
|
#include "is_regular.h"
|
2017-03-02 02:09:21 +08:00
|
|
|
#include <algorithm>
|
2016-08-17 15:51:24 +08:00
|
|
|
#include <iostream>
|
2014-01-19 03:58:51 +08:00
|
|
|
#include <sqlpp11/alias_provider.h>
|
2013-10-09 16:36:38 +08:00
|
|
|
#include <sqlpp11/connection.h>
|
2016-08-17 15:51:24 +08:00
|
|
|
#include <sqlpp11/functions.h>
|
|
|
|
#include <sqlpp11/select.h>
|
2016-03-18 00:28:59 +08:00
|
|
|
#include <sqlpp11/without_table_check.h>
|
2024-04-13 18:04:41 +08:00
|
|
|
#include "../../include/test_helpers.h"
|
2013-08-14 04:43:10 +08:00
|
|
|
|
2016-08-17 15:51:24 +08:00
|
|
|
struct to_cerr
|
|
|
|
{
|
|
|
|
template <typename Field>
|
|
|
|
auto operator()(const Field& field) const -> void
|
|
|
|
{
|
2024-04-13 18:04:41 +08:00
|
|
|
std::cerr << field << std::endl;
|
2016-08-17 15:51:24 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-03-02 02:09:21 +08:00
|
|
|
template <typename Row>
|
|
|
|
void print_row(Row const& row)
|
|
|
|
{
|
2024-06-15 02:04:08 +08:00
|
|
|
const sqlpp::compat::optional<int64_t> a = row.id;
|
|
|
|
const sqlpp::compat::optional<sqlpp::compat::string_view> b = row.textN;
|
2017-03-02 02:09:21 +08:00
|
|
|
std::cout << a << ", " << b << std::endl;
|
|
|
|
}
|
|
|
|
|
2023-11-19 19:57:54 +08:00
|
|
|
SQLPP_ALIAS_PROVIDER(cheese)
|
|
|
|
|
2019-08-28 15:42:48 +08:00
|
|
|
int Select(int, char*[])
|
2013-08-14 04:43:10 +08:00
|
|
|
{
|
2015-09-14 03:33:19 +08:00
|
|
|
MockDb db = {};
|
2015-12-28 05:25:05 +08:00
|
|
|
MockDb::_serializer_context_t printer = {};
|
2015-09-14 03:33:19 +08:00
|
|
|
|
2015-12-28 05:25:05 +08:00
|
|
|
const auto f = test::TabFoo{};
|
|
|
|
const auto t = test::TabBar{};
|
2015-09-14 03:33:19 +08:00
|
|
|
const auto tab_a = f.as(sqlpp::alias::a);
|
|
|
|
|
2024-06-15 02:04:08 +08:00
|
|
|
select(count(t.id));
|
2024-06-17 00:45:26 +08:00
|
|
|
select(sqlpp::count(1));
|
|
|
|
select(count(sqlpp::value(1)));
|
2015-09-14 03:33:19 +08:00
|
|
|
|
2021-08-01 16:01:32 +08:00
|
|
|
std::cerr << serialize(select(sqlpp::value(false).as(sqlpp::alias::a)), printer).str() << std::endl;
|
2015-09-14 03:33:19 +08:00
|
|
|
for (const auto& row : db(select(sqlpp::value(false).as(sqlpp::alias::a))))
|
|
|
|
{
|
|
|
|
std::cout << row.a << std::endl;
|
|
|
|
}
|
|
|
|
|
2017-03-02 02:09:21 +08:00
|
|
|
{
|
|
|
|
// using stl algorithms
|
|
|
|
auto rows = db(select(all_of(t)).from(t).unconditionally());
|
|
|
|
// nicer in C++14
|
|
|
|
std::for_each(rows.begin(), rows.end(), &print_row<decltype(*rows.begin())>);
|
|
|
|
}
|
|
|
|
|
2016-02-25 14:57:28 +08:00
|
|
|
for (const auto& row : db(select(all_of(t)).from(t).unconditionally()))
|
2015-09-14 03:33:19 +08:00
|
|
|
{
|
2024-06-15 02:04:08 +08:00
|
|
|
const sqlpp::compat::optional<int64_t> a = row.id;
|
|
|
|
const sqlpp::compat::optional<sqlpp::compat::string_view> b = row.textN;
|
2015-09-14 03:33:19 +08:00
|
|
|
std::cout << a << ", " << b << std::endl;
|
|
|
|
}
|
|
|
|
|
2019-08-28 15:42:48 +08:00
|
|
|
for (const auto& row :
|
2024-06-15 02:04:08 +08:00
|
|
|
db(select(all_of(t), t.boolNn.as(t)).from(t).where(t.id > 7 and trim(t.textN) == "test").for_update()))
|
2017-04-09 17:17:55 +08:00
|
|
|
{
|
2024-06-15 02:04:08 +08:00
|
|
|
const sqlpp::compat::optional<int64_t> a = row.id;
|
|
|
|
const sqlpp::compat::optional<sqlpp::compat::string_view> b = row.textN;
|
2019-08-28 15:42:48 +08:00
|
|
|
const bool g = row.tabBar;
|
2017-04-09 17:17:55 +08:00
|
|
|
std::cout << a << ", " << b << ", " << g << std::endl;
|
|
|
|
}
|
|
|
|
|
2015-09-14 03:33:19 +08:00
|
|
|
for (const auto& row :
|
2024-06-15 02:04:08 +08:00
|
|
|
db(select(all_of(t), f.textNnD).from(t.join(f).on(t.id > f.doubleN and not t.boolNn)).unconditionally()))
|
2015-09-14 03:33:19 +08:00
|
|
|
{
|
2024-06-15 02:04:08 +08:00
|
|
|
std::cout << row.id << std::endl;
|
2015-09-14 03:33:19 +08:00
|
|
|
}
|
|
|
|
|
2024-06-15 02:04:08 +08:00
|
|
|
for (const auto& row : db(select(all_of(t), f.textNnD)
|
|
|
|
.from(t.join(f).on(t.id > f.doubleN).join(tab_a).on(t.id == tab_a.doubleN))
|
2016-02-25 14:57:28 +08:00
|
|
|
.unconditionally()))
|
2015-09-14 03:33:19 +08:00
|
|
|
{
|
2024-06-15 02:04:08 +08:00
|
|
|
std::cout << row.id << std::endl;
|
2015-09-14 03:33:19 +08:00
|
|
|
}
|
|
|
|
|
2024-06-17 00:45:26 +08:00
|
|
|
for (const auto& row : db(select(sqlpp::count(1), avg(t.id)).from(t).unconditionally()))
|
2015-09-14 03:33:19 +08:00
|
|
|
{
|
|
|
|
std::cout << row.count << std::endl;
|
|
|
|
}
|
|
|
|
|
2024-06-15 02:04:08 +08:00
|
|
|
for (const auto& row : db(select(count(t.id), avg(t.id)).from(t).where(t.id == 0)))
|
2015-09-14 03:33:19 +08:00
|
|
|
{
|
|
|
|
std::cout << row.count << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto stat = sqlpp::select()
|
|
|
|
.columns(all_of(t))
|
|
|
|
.flags(sqlpp::all)
|
|
|
|
.from(t)
|
2024-06-15 02:04:08 +08:00
|
|
|
.where(t.id > 0)
|
|
|
|
.group_by(t.id)
|
|
|
|
.order_by(t.boolNn.asc())
|
|
|
|
.having(t.boolNn)
|
2016-09-07 04:34:59 +08:00
|
|
|
.offset(19u)
|
|
|
|
.limit(7u);
|
2015-12-11 21:42:28 +08:00
|
|
|
printer.reset();
|
|
|
|
std::cerr << serialize(stat, printer).str() << std::endl;
|
|
|
|
|
2024-06-08 17:35:54 +08:00
|
|
|
auto s = sqlpp::select()
|
2024-06-15 02:04:08 +08:00
|
|
|
.columns(t.id)
|
2024-06-08 17:35:54 +08:00
|
|
|
.flags(sqlpp::distinct)
|
|
|
|
.from(t)
|
2024-06-15 02:04:08 +08:00
|
|
|
.where(t.id > 3)
|
|
|
|
.group_by(t.id)
|
|
|
|
.order_by(t.textN.asc())
|
|
|
|
.having(sum(t.id) > parameter(t.intN))
|
2024-06-08 17:35:54 +08:00
|
|
|
.limit(32u)
|
|
|
|
.offset(7u);
|
|
|
|
#warning add tests for optional everything
|
2022-05-22 19:50:53 +08:00
|
|
|
for (const auto& row : db(db.prepare(s)))
|
2015-09-14 03:33:19 +08:00
|
|
|
{
|
2024-06-15 02:04:08 +08:00
|
|
|
const sqlpp::compat::optional<int64_t> a = row.id;
|
2015-09-14 03:33:19 +08:00
|
|
|
std::cout << a << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
printer.reset();
|
|
|
|
std::cerr << serialize(s, printer).str() << std::endl;
|
|
|
|
|
2024-06-15 02:04:08 +08:00
|
|
|
select(sqlpp::value(7).as(t.id));
|
2015-09-14 03:33:19 +08:00
|
|
|
|
2015-12-23 23:01:45 +08:00
|
|
|
for (const auto& row :
|
2024-06-15 02:04:08 +08:00
|
|
|
db(select(sqlpp::case_when(true).then(t.textN).else_(sqlpp::null).as(t.textN)).from(t).unconditionally()))
|
2015-12-23 23:01:45 +08:00
|
|
|
{
|
2024-06-15 02:04:08 +08:00
|
|
|
std::cerr << row.textN << std::endl;
|
2015-12-23 23:01:45 +08:00
|
|
|
}
|
|
|
|
|
2016-08-17 15:51:24 +08:00
|
|
|
for (const auto& row : db(select(all_of(t)).from(t).unconditionally()))
|
|
|
|
{
|
|
|
|
for_each_field(row, to_cerr{});
|
|
|
|
}
|
|
|
|
|
2017-06-04 19:57:41 +08:00
|
|
|
{
|
2019-08-28 15:42:48 +08:00
|
|
|
auto transaction = start_transaction(db, sqlpp::isolation_level::read_committed);
|
|
|
|
if (db._mock_data._last_isolation_level != sqlpp::isolation_level::read_committed)
|
|
|
|
{
|
|
|
|
std::cout << "Error: transaction isolation level does not match expected level" << std::endl;
|
|
|
|
}
|
2017-06-04 19:57:41 +08:00
|
|
|
}
|
|
|
|
db.set_default_isolation_level(sqlpp::isolation_level::read_uncommitted);
|
|
|
|
{
|
2019-08-28 15:42:48 +08:00
|
|
|
auto transaction = start_transaction(db);
|
|
|
|
if (db._mock_data._last_isolation_level != sqlpp::isolation_level::read_uncommitted)
|
|
|
|
{
|
|
|
|
std::cout << "Error: transaction isolation level does not match default level" << std::endl;
|
|
|
|
}
|
2017-06-04 19:57:41 +08:00
|
|
|
}
|
|
|
|
|
2023-11-19 19:57:54 +08:00
|
|
|
for (const auto& row :
|
2024-06-15 02:04:08 +08:00
|
|
|
db(select(f.doubleN, select(count(t.id)).from(t).unconditionally().as(cheese)).from(f).unconditionally()))
|
2023-11-19 19:57:54 +08:00
|
|
|
{
|
2024-06-15 02:04:08 +08:00
|
|
|
std::cout << row.doubleN << " " << row.cheese << std::endl;
|
2023-11-19 19:57:54 +08:00
|
|
|
}
|
|
|
|
|
2015-09-14 03:33:19 +08:00
|
|
|
return 0;
|
2013-08-14 04:43:10 +08:00
|
|
|
}
|