Add files via upload

This commit is contained in:
wibyweb 2023-07-05 22:42:53 -04:00 committed by GitHub
parent d3dcb8a205
commit 9c193b63a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
c/cr.c
View file

@ -996,7 +996,7 @@ int main(int argc, char **argv)
MYSQL_RES *resultRandID;
if(idexistsalready == 0){//Insert new entry
//For search topics to be evenly discovered by all replication servers assigned to a specific shard table, new rows must be scattered randomly across the database insead of sequental:
//For search topics to be evenly discovered by all replicas or duplicate connections assigned to a specific search section, new rows must be scattered randomly across the database insead of sequental:
//Existing rows will be randomly selected and copied (inserted) into a new row at the bottom, and the new page will take the ID number of the old one through an update.
//select id from windex where enable = 1 order by rand() limit 1;
//insert into windex (url,title,tags,description,body,surprise,http,updatable,worksafe,enable,date,updated,approver,fault) select url,title,tags,description,body,surprise,http,updatable,worksafe,enable,date,updated,approver,fault from windex where id = 1338;