mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 02:36:00 +00:00
full refresh model can be called from command
This commit is contained in:
@@ -271,9 +271,9 @@ module.exports = {
|
||||
},
|
||||
|
||||
syncModel_meta: true,
|
||||
async syncModel({ conid, database }) {
|
||||
async syncModel({ conid, database, isFullRefresh }) {
|
||||
const conn = await this.ensureOpened(conid, database);
|
||||
conn.subprocess.send({ msgtype: 'syncModel' });
|
||||
conn.subprocess.send({ msgtype: 'syncModel', isFullRefresh });
|
||||
return { status: 'ok' };
|
||||
},
|
||||
|
||||
|
||||
@@ -79,9 +79,10 @@ async function handleIncrementalRefresh(forceSend) {
|
||||
resolveAnalysedPromises();
|
||||
}
|
||||
|
||||
function handleSyncModel() {
|
||||
function handleSyncModel({ isFullRefresh }) {
|
||||
if (loadingModel) return;
|
||||
handleIncrementalRefresh();
|
||||
if (isFullRefresh) handleFullRefresh();
|
||||
else handleIncrementalRefresh();
|
||||
}
|
||||
|
||||
function setStatus(status) {
|
||||
|
||||
Reference in New Issue
Block a user