mirror of
https://github.com/matrix-construct/construct
synced 2024-11-29 10:12:39 +01:00
modules/console: Use db::has() rather than db::fetch() for cache prefetching.
This commit is contained in:
parent
f38aadc35b
commit
8a0749b232
1 changed files with 1 additions and 1 deletions
|
@ -1590,7 +1590,7 @@ try
|
|||
database, colname
|
||||
};
|
||||
|
||||
db::fetch(cache(column), column, key);
|
||||
db::has(column, key);
|
||||
return true;
|
||||
}
|
||||
catch(const std::out_of_range &e)
|
||||
|
|
Loading…
Reference in a new issue