]> andersk Git - moira.git/commitdiff
don't update table stats on sshi & ssif
authormar <mar>
Sun, 31 Jul 1988 01:09:22 +0000 (01:09 +0000)
committermar <mar>
Sun, 31 Jul 1988 01:09:22 +0000 (01:09 +0000)
server/qrtn.qc

index 319b1b117199a63189cd5cef5b9778c83655c2d4..8012b9b0fd77046b320cda51dbc8a06e5943d213 100644 (file)
@@ -215,9 +215,11 @@ sms_process_query(cl, name, argc, argv_ro, action, actarg)
            status = do_update(q, &Argv[q->argc], qual, action, actarg);
            if (status != SMS_SUCCESS) break;
            table = q->rtable;
-##         repeat replace tblstats (updates = tblstats.updates + 1,
-##                                  modtime = "now")
-##             where tblstats.#table = @table
+           if (strcmp(q->shortname, "sshi") && strcmp(q->shortname, "ssif")) {
+##             repeat replace tblstats (updates = tblstats.updates + 1,
+##                                      modtime = "now")
+##                 where tblstats.#table = @table
+           }
        }
 
        /* execute followup routine (if any) */
This page took 0.072479 seconds and 5 git commands to generate.