From 5de94a57cf0652a2bb072981ada8de3e44f142ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Georges=20Dup=C3=A9ron?= Date: Mon, 23 May 2011 00:16:32 +0200 Subject: [PATCH] =?UTF-8?q?Modification=20du=20script=20de=20g=C3=A9n?= =?UTF-8?q?=C3=A9ration=20de=20la=20base=20pour=20avoir=20des=20mots=20cen?= =?UTF-8?q?traux=20plus=20courants.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/serveur/dump2sqlite.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/serveur/dump2sqlite.sh b/code/serveur/dump2sqlite.sh index c573ebe..7c2b7f6 100755 --- a/code/serveur/dump2sqlite.sh +++ b/code/serveur/dump2sqlite.sh @@ -83,6 +83,6 @@ insert into random_cloud_node(eid,nbneighbors) select eid,sum(nb) from ( group by end ) where type = 1 group by eid; create index i_random_cloud_node_nbneighbors on random_cloud_node(nbneighbors); -insert into random_center_node(eid) select eid from random_cloud_node where nbneighbors > 3; +insert into random_center_node(eid) select eid from random_cloud_node where nbneighbors > 6; commit; EOF