reload-ddl support for mapedit to able reload user DDL on fly

This commit is contained in:
Ondřej Novák 2025-06-15 17:13:37 +02:00
parent a4aa67ede9
commit c1197ed78e
3 changed files with 8 additions and 3 deletions

View file

@ -470,6 +470,10 @@ static int process_actions(const char *command) {
temp_storage_list(command_ls_callback,NULL);
return 1;
}
if (istrcmp(command, "reload-ddl") == 0) {
reload_ddls();
return 1;
}
return 0;