~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/r/fulltext_update.result

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
drop table if exists test;
 
2
CREATE TABLE test (
 
3
gnr INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
 
4
url VARCHAR(80) DEFAULT '' NOT NULL,
 
5
shortdesc VARCHAR(200) DEFAULT '' NOT NULL,
 
6
longdesc text DEFAULT '' NOT NULL,
 
7
description VARCHAR(80) DEFAULT '' NOT NULL,
 
8
name VARCHAR(80) DEFAULT '' NOT NULL,
 
9
FULLTEXT(url,description,shortdesc,longdesc),
 
10
PRIMARY KEY(gnr)
 
11
);
 
12
Warnings:
 
13
Warning 1101    BLOB/TEXT column 'longdesc' can't have a default value
 
14
insert into test (url,shortdesc,longdesc,description,name) VALUES 
 
15
("http:/test.at", "kurz", "lang","desc", "name");
 
16
insert into test (url,shortdesc,longdesc,description,name) VALUES 
 
17
("http:/test.at", "kurz", "","desc", "name");
 
18
update test set url='test', description='ddd', name='nam' where gnr=2;
 
19
update test set url='test', shortdesc='ggg', longdesc='mmm', 
 
20
description='ddd', name='nam' where gnr=2;
 
21
check table test;
 
22
Table   Op      Msg_type        Msg_text
 
23
test.test       check   status  OK
 
24
drop table test;