fiix bug, rowMapping werd niet gecleared

+ formatting
This commit is contained in:
eelke 2022-04-10 06:53:02 +02:00
parent aea49688d8
commit 04a4e3b374

View file

@ -181,7 +181,8 @@ QVariant CrudModel::data(const QModelIndex &index, int role) const
if (role == Qt::EditRole || role == Qt::DisplayRole)
{
auto value = getLatestData(index);
if (value) {
if (value)
{
if (role == Qt::EditRole)
return QString::fromUtf8(value->c_str());
else
@ -213,7 +214,7 @@ void CrudModel::loadData()
{
QString table_name = m_table->fullyQualifiedQuotedObjectName();
std::string q = "SELECT * FROM ";
q += std::string(table_name.toUtf8().data());
q += table_name.toStdString();
m_dbConn.send(q, [this] (Expected<std::shared_ptr<Pgsql::Result>> res, qint64)
{
if (res.valid())
@ -240,6 +241,7 @@ void CrudModel::loadIntoModel(std::shared_ptr<Pgsql::Result> data)
void CrudModel::initRowMapping()
{
size_t cnt = m_roData->rows();
m_rowMapping.clear();
m_rowMapping.reserve(cnt + 1);
for (int i = 0; i < cnt; ++i)
m_rowMapping.emplace_back(i);