Переглянути джерело

- Added a bunch of important indexes when dealing with the log tables. Added upgrade_svn9050.sql for this purpose.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@9051 54d463be-8e91-2dee-dedb-b68131a5f0ec
skotlex 18 роки тому
батько
коміт
182e56b1d7
3 змінених файлів з 24 додано та 6 видалено
  1. 2 0
      Changelog-Trunk.txt
  2. 16 6
      sql-files/logs.sql
  3. 6 0
      sql-files/upgrade_svn9050.sql

+ 2 - 0
Changelog-Trunk.txt

@@ -4,6 +4,8 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK.  ALL UNTESTED BUGFIXES/FEATURES GO
 IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
 
 2006/10/23
+	* Added a bunch of important indexes when dealing with the log tables.
+	  Added upgrade_svn9050.sql which adds these indexes as well. [Skotlex]
 	* Expanded the family check to work as it should, exp-share-range is
 	  respected, and the child is not considered for it (thanks to TheUltraMage
 	  for the investigation) [Skotlex]

+ 16 - 6
sql-files/logs.sql

@@ -17,7 +17,8 @@ CREATE TABLE `picklog` (
   `card2` int(11) NOT NULL default '0',
   `card3` int(11) NOT NULL default '0',
   `map` varchar(20) NOT NULL default 'prontera.gat',
-  PRIMARY KEY  (`id`)
+  PRIMARY KEY  (`id`),
+  INDEX (`type`)
 ) TYPE=MyISAM AUTO_INCREMENT=1 ;
 
 #ZenyLog types (M)onsters,(T)rade,(V)ending Sell/Buy,(S)hop Sell/Buy,(N)PC Change amount,(A)dministrators
@@ -31,7 +32,8 @@ CREATE TABLE `zenylog` (
   `type` set('M','T','V','S','N','A') NOT NULL default 'S',
   `amount` int(11) NOT NULL default '0',
   `map` varchar(20) NOT NULL default 'prontera.gat',
-  PRIMARY KEY  (`id`)
+  PRIMARY KEY  (`id`),
+  INDEX (`type`)
 ) TYPE=MyISAM AUTO_INCREMENT=1 ;
 
 #Database: log
@@ -43,7 +45,9 @@ CREATE TABLE `branchlog` (
   `char_id` int(11) NOT NULL default '0',
   `char_name` varchar(30) NOT NULL default '',
   `map` varchar(20) NOT NULL default 'prontera.gat',
-  PRIMARY KEY  (`branch_id`)
+  PRIMARY KEY  (`branch_id`),
+  INDEX (`account_id`),
+  INDEX (`char_id`)
 ) TYPE=MyISAM AUTO_INCREMENT=1 ;
 
 #Database: log
@@ -69,7 +73,9 @@ CREATE TABLE `atcommandlog` (
   `char_name` varchar(30) NOT NULL default '',
   `map` varchar(20) NOT NULL default 'prontera.gat',
   `command` varchar(50) NOT NULL default '',
-  PRIMARY KEY  (`atcommand_id`)
+  PRIMARY KEY  (`atcommand_id`),
+  INDEX (`account_id`),
+  INDEX (`char_id`)
 ) TYPE=MyISAM AUTO_INCREMENT=1 ;
 
 #Database: log
@@ -82,7 +88,9 @@ CREATE TABLE `npclog` (
   `char_name` varchar(30) NOT NULL default '',
   `map` varchar(20) NOT NULL default 'prontera.gat',
   `mes` varchar(255) NOT NULL default '',
-  PRIMARY KEY  (`npc_id`)
+  PRIMARY KEY  (`npc_id`),
+  INDEX (`account_id`),
+  INDEX (`char_id`)
 ) TYPE=MyISAM AUTO_INCREMENT=1 ;
 
 #ChatLOG
@@ -98,5 +106,7 @@ CREATE TABLE `chatlog` (
   `src_map_y` smallint(4) NOT NULL default '0',
   `dst_charname` varchar(25) NOT NULL default '',
   `message` varchar(150) NOT NULL default '',
-  PRIMARY KEY  (`id`)
+  PRIMARY KEY  (`id`),
+  INDEX (`src_accountid`),
+  INDEX (`src_charid`)
 ) TYPE=MyISAM AUTO_INCREMENT=1 ;

+ 6 - 0
sql-files/upgrade_svn9050.sql

@@ -0,0 +1,6 @@
+ALTER TABLE `picklog` ADD INDEX (`type`);
+ALTER TABLE `zenylog` ADD INDEX (`type`);
+ALTER TABLE `branchlog` ADD INDEX (`account_id`), ADD INDEX (`char_id`);
+ALTER TABLE `atcommandlog` ADD INDEX (`account_id`), ADD INDEX (`char_id`);
+ALTER TABLE `npclog` ADD INDEX (`account_id`), ADD INDEX (`char_id`);
+ALTER TABLE `chatlog` ADD INDEX (`src_accountid`), ADD INDEX (`src_charid`);