1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

New and improved search_fill.php, still has a weird memory exhaustion bug

git-svn-id: file:///svn/phpbb/trunk@1327 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Bart van Bragt
2001-11-15 22:07:29 +00:00
parent 2b8692875e
commit 3bb1d7070e
2 changed files with 246 additions and 199 deletions

View File

@@ -271,14 +271,14 @@ CREATE TABLE phpbb_search_results (
# Table structure for table `phpbb_search_wordlist`
#
DROP TABLE IF EXISTS phpbb_search_wordlist;
CREATE TABLE phpbb_search_wordlist (
word_id int(11) NOT NULL auto_increment,
word_text varchar(100) NOT NULL default '',
word_weight tinyint(4) NOT NULL default '0',
PRIMARY KEY (word_id),
KEY word_text (word_text)
);
CREATE TABLE `phpbb_search_wordlist` (
`word_text` varchar(50) binary NOT NULL default '',
`word_id` int(11) NOT NULL auto_increment,
`word_weight` tinyint(4) NOT NULL default '0',
`word_common` tinyint(1) unsigned NOT NULL default '0',
PRIMARY KEY (`word_text`),
KEY `word_id`(`word_id`)
)
# --------------------------------------------------------
#