update.test
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:8k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # test of updating of keys
  3. #
  4. --disable_warnings
  5. drop table if exists t1,t2;
  6. --enable_warnings
  7. create table t1 (a int auto_increment , primary key (a));
  8. insert into t1 values (NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL); 
  9. update t1 set a=a+10 where a > 34;
  10. update t1 set a=a+100 where a > 0;
  11. # Some strange updates to test some otherwise unused code
  12. update t1 set a=a+100 where a=1 and a=2;
  13. --error 1054
  14. update t1 set a=b+100 where a=1 and a=2; 
  15. --error 1054
  16. update t1 set a=b+100 where c=1 and a=2; 
  17. --error 1054
  18. update t1 set d=a+100 where a=1;
  19. select * from t1;
  20. drop table t1;
  21. CREATE TABLE t1
  22.  (
  23.  place_id int (10) unsigned NOT NULL,
  24.  shows int(10) unsigned DEFAULT '0' NOT NULL,
  25.  ishows int(10) unsigned DEFAULT '0' NOT NULL,
  26.  ushows int(10) unsigned DEFAULT '0' NOT NULL,
  27.  clicks int(10) unsigned DEFAULT '0' NOT NULL,
  28.  iclicks int(10) unsigned DEFAULT '0' NOT NULL,
  29.  uclicks int(10) unsigned DEFAULT '0' NOT NULL,
  30.  ts timestamp(14),
  31.  PRIMARY KEY (place_id,ts)
  32.  );
  33. INSERT INTO t1 (place_id,shows,ishows,ushows,clicks,iclicks,uclicks,ts)
  34. VALUES (1,0,0,0,0,0,0,20000928174434);
  35. UPDATE t1 SET shows=shows+1,ishows=ishows+1,ushows=ushows+1,clicks=clicks+1,iclicks=iclicks+1,uclicks=uclicks+1 WHERE place_id=1 AND ts>="2000-09-28 00:00:00";
  36. select place_id,shows from t1;
  37. drop table t1;
  38. #
  39. # Test bug with update reported by Jan Legenhausen
  40. #
  41. CREATE TABLE t1 (
  42.   lfdnr int(10) unsigned NOT NULL default '0',
  43.   ticket int(10) unsigned NOT NULL default '0',
  44.   client varchar(255) NOT NULL default '',
  45.   replyto varchar(255) NOT NULL default '',
  46.   subject varchar(100) NOT NULL default '',
  47.   timestamp int(10) unsigned NOT NULL default '0',
  48.   tstamp timestamp(14) NOT NULL,
  49.   status int(3) NOT NULL default '0',
  50.   type varchar(15) NOT NULL default '',
  51.   assignment int(10) unsigned NOT NULL default '0',
  52.   fupcount int(4) unsigned NOT NULL default '0',
  53.   parent int(10) unsigned NOT NULL default '0',
  54.   activity int(10) unsigned NOT NULL default '0',
  55.   priority tinyint(1) unsigned NOT NULL default '1',
  56.   cc varchar(255) NOT NULL default '',
  57.   bcc varchar(255) NOT NULL default '',
  58.   body text NOT NULL,
  59.   comment text,
  60.   header text,
  61.   PRIMARY KEY  (lfdnr),
  62.   KEY k1 (timestamp),
  63.   KEY k2 (type),
  64.   KEY k3 (parent),
  65.   KEY k4 (assignment),
  66.   KEY ticket (ticket)
  67. ) ENGINE=MyISAM;
  68. INSERT INTO t1 VALUES (773,773,'','','',980257344,20010318180652,0,'Open',10,0,0,0,1,'','','','','');
  69. alter table t1 change lfdnr lfdnr int(10) unsigned not null auto_increment;
  70. update t1 set status=1 where type='Open';
  71. select status from t1;
  72. drop table t1;
  73. #
  74. # Test of ORDER BY
  75. #
  76. create table t1 (a int not null, b int not null, key (a));
  77. insert into t1 values (1,1),(1,2),(1,3),(3,1),(3,2),(3,3),(3,1),(3,2),(3,3),(2,1),(2,2),(2,3);
  78. SET @tmp=0;
  79. update t1 set b=(@tmp:=@tmp+1) order by a;
  80. update t1 set b=99 where a=1 order by b asc limit 1;
  81. select * from t1 order by a,b;
  82. update t1 set b=100 where a=1 order by b desc limit 2;
  83. update t1 set a=a+10+b where a=1 order by b;
  84. select * from t1 order by a,b;
  85. create table t2 (a int not null, b int not null);
  86. insert into t2 values (1,1),(1,2),(1,3);
  87. update t1 set b=(select distinct 1 from (select * from t2) a);
  88. drop table t1,t2;
  89. #
  90. # Test with limit (Bug #393)
  91. #
  92. CREATE TABLE t1 (
  93.    `id_param` smallint(3) unsigned NOT NULL default '0',
  94.    `nom_option` char(40) NOT NULL default '',
  95.    `valid` tinyint(1) NOT NULL default '0',
  96.    KEY `id_param` (`id_param`,`nom_option`)
  97.  ) ENGINE=MyISAM;
  98. INSERT INTO t1 (id_param,nom_option,valid) VALUES (185,'600x1200',1);
  99. UPDATE t1 SET nom_option='test' WHERE id_param=185 AND nom_option='600x1200' AND valid=1 LIMIT 1;
  100. select * from t1;
  101. drop table t1;
  102. #
  103. # Multi table update test from bugs
  104. #
  105. create table t1 (F1 VARCHAR(30), F2 VARCHAR(30), F3 VARCHAR(30), cnt int, groupid int, KEY groupid_index (groupid));
  106. insert into t1 (F1,F2,F3,cnt,groupid) values ('0','0','0',1,6),
  107. ('0','1','2',1,5), ('0','2','0',1,3), ('1','0','1',1,2),
  108. ('1','2','1',1,1), ('1','2','2',1,1), ('2','0','1',2,4),
  109. ('2','2','0',1,7);
  110. delete from m1 using t1 m1,t1 m2 where m1.groupid=m2.groupid and (m1.cnt < m2.cnt or m1.cnt=m2.cnt and m1.F3>m2.F3);
  111. select * from t1;
  112. drop table t1;
  113. #
  114. # Bug#5553 - Multi table UPDATE IGNORE fails on duplicate keys 
  115. #
  116. CREATE TABLE t1 ( 
  117.    `colA` int(10) unsigned NOT NULL auto_increment,
  118.    `colB` int(11) NOT NULL default '0',
  119.    PRIMARY KEY  (`colA`)
  120. );
  121. INSERT INTO t1 VALUES (4433,5424);
  122. CREATE TABLE t2 (
  123.   `colC` int(10) unsigned NOT NULL default '0',
  124.   `colA` int(10) unsigned NOT NULL default '0',
  125.   `colD` int(10) unsigned NOT NULL default '0',
  126.   `colE` int(10) unsigned NOT NULL default '0',
  127.   `colF` int(10) unsigned NOT NULL default '0',
  128.   PRIMARY KEY  (`colC`,`colA`,`colD`,`colE`)
  129. );
  130. INSERT INTO t2 VALUES (3,4433,10005,495,500);
  131. INSERT INTO t2 VALUES (3,4433,10005,496,500);
  132. INSERT INTO t2 VALUES (3,4433,10009,494,500);
  133. INSERT INTO t2 VALUES (3,4433,10011,494,500);
  134. INSERT INTO t2 VALUES (3,4433,10005,497,500);
  135. INSERT INTO t2 VALUES (3,4433,10013,489,500);
  136. INSERT INTO t2 VALUES (3,4433,10005,494,500);
  137. INSERT INTO t2 VALUES (3,4433,10005,493,500);
  138. INSERT INTO t2 VALUES (3,4433,10005,492,500);
  139. UPDATE IGNORE t2,t1 set t2.colE = t2.colE + 1,colF=0 WHERE t1.colA = t2.colA AND (t1.colB & 4096) > 0 AND (colE + 1) < colF;
  140. SELECT * FROM t2;
  141. DROP TABLE t1;
  142. DROP TABLE t2;
  143. #
  144. # Bug #6054 
  145. #
  146. create table t1 (c1 int, c2 char(6), c3 int);
  147. create table t2 (c1 int, c2 char(6));
  148. insert into t1 values (1, "t1c2-1", 10), (2, "t1c2-2", 20);
  149. update t1 left join t2 on t1.c1 = t2.c1 set t2.c2 = "t2c2-1";
  150. update t1 left join t2 on t1.c1 = t2.c1 set t2.c2 = "t2c2-1" where t1.c3 = 10;
  151. drop table t1, t2;
  152. #
  153. # Bug #8057
  154. #
  155. create table t1 (id int not null auto_increment primary key, id_str varchar(32));
  156. insert into t1 (id_str) values ("test");
  157. update t1 set id_str = concat(id_str, id) where id = last_insert_id();
  158. select * from t1;
  159. drop table t1;
  160. #
  161. # Bug #8942: a problem with update and partial key part
  162. #
  163. create table t1 (a int, b char(255), key(a, b(20)));
  164. insert into t1 values (0, '1');
  165. update t1 set b = b + 1 where a = 0;
  166. select * from t1;
  167. drop table t1;
  168. # BUG#9103 "Erroneous data truncation warnings on multi-table updates"
  169. create table t1 (a int, b varchar(10), key b(b(5))) engine=myisam;
  170. create table t2 (a int, b varchar(10)) engine=myisam;
  171. insert into t1 values ( 1, 'abcd1e');
  172. insert into t1 values ( 2, 'abcd2e');
  173. insert into t2 values ( 1, 'abcd1e');
  174. insert into t2 values ( 2, 'abcd2e');
  175. analyze table t1,t2;
  176. update t1, t2 set t1.a = t2.a where t2.b = t1.b;
  177. show warnings;
  178. drop table t1, t2;
  179. #
  180. # Bug #11868 Update with subquery with ref built with a key from the updated
  181. #            table crashes server
  182. #
  183. create table t1(f1 int, f2 int);
  184. create table t2(f3 int, f4 int);
  185. create index idx on t2(f3);
  186. insert into t1 values(1,0),(2,0);
  187. insert into t2 values(1,1),(2,2);
  188. UPDATE t1 SET t1.f2=(SELECT MAX(t2.f4) FROM t2 WHERE t2.f3=t1.f1);
  189. select * from t1;
  190. drop table t1,t2;
  191. #
  192. # Bug #13180 sometimes server accepts sum func in update/delete where condition
  193. #
  194. create table t1(f1 int);
  195. select DATABASE();
  196. --error 1111
  197. update t1 set f1=1 where count(*)=1;
  198. select DATABASE();
  199. --error 1111
  200. delete from t1 where count(*)=1;
  201. drop table t1;
  202. # BUG#12915: Optimize "DELETE|UPDATE ... ORDER BY ... LIMIT n" to use an index
  203. create table t1 ( a int, b int default 0, index (a) );
  204. insert into t1 (a) values (0),(0),(0),(0),(0),(0),(0),(0);
  205. flush status;
  206. select a from t1 order by a limit 1;
  207. show status like 'handler_read%';
  208. flush status;
  209. update t1 set a=9999 order by a limit 1;
  210. update t1 set b=9999 order by a limit 1;
  211. show status like 'handler_read%';
  212. flush status;
  213. delete from t1 order by a limit 1;
  214. show status like 'handler_read%';
  215. flush status;
  216. delete from t1 order by a desc limit 1;
  217. show status like 'handler_read%';
  218. alter table t1 disable keys;
  219. flush status;
  220. delete from t1 order by a limit 1;
  221. show status like 'handler_read%';
  222. select * from t1;
  223. update t1 set a=a+10,b=1 order by a limit 3;
  224. update t1 set a=a+11,b=2 order by a limit 3;
  225. update t1 set a=a+12,b=3 order by a limit 3;
  226. select * from t1 order by a;
  227. drop table t1;
  228. #
  229. # Bug#14186 select datefield is null not updated
  230. #
  231. create table t1 (f1 date not null);
  232. insert into t1 values('2000-01-01'),('0000-00-00');
  233. update t1 set f1='2002-02-02' where f1 is null;
  234. select * from t1;
  235. drop table t1;
  236. # End of 4.1 tests