Merge lp:~vkolesnikov/pbxt/pbxt-5.1.35-upgrade into lp:pbxt

Proposed by Vladimir Kolesnikov
Status: Merged
Merge reported by: Paul McCullagh
Merged at revision: not available
Proposed branch: lp:~vkolesnikov/pbxt/pbxt-5.1.35-upgrade
Merge into: lp:pbxt
Diff against target: None lines
To merge this branch: bzr merge lp:~vkolesnikov/pbxt/pbxt-5.1.35-upgrade
Reviewer Review Type Date Requested Status
PBXT Core Pending
Review via email: mp+7847@code.launchpad.net
To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'test/mysql-test/r/pbxt_ref_int.result'
2--- test/mysql-test/r/pbxt_ref_int.result 2008-12-16 13:39:34 +0000
3+++ test/mysql-test/r/pbxt_ref_int.result 2009-06-24 10:20:27 +0000
4@@ -166,7 +166,7 @@
5 `parent_id` int(11) DEFAULT NULL,
6 KEY `par_ind` (`parent_id`),
7 KEY `child_ind` (`id`),
8- CONSTRAINT `FOREIGN_1` FOREIGN KEY (`parent_id`) REFERENCES `parent` (`id`)
9+ CONSTRAINT `FOREIGN_1` FOREIGN KEY (`parent_id`) REFERENCES `test`.`parent` (`id`)
10 ) ENGINE=PBXT DEFAULT CHARSET=latin1
11 drop index child_ind on child;
12 show create table child;
13@@ -175,7 +175,7 @@
14 `id` int(11) DEFAULT NULL,
15 `parent_id` int(11) DEFAULT NULL,
16 KEY `par_ind` (`parent_id`),
17- CONSTRAINT `FOREIGN_1` FOREIGN KEY (`parent_id`) REFERENCES `parent` (`id`)
18+ CONSTRAINT `FOREIGN_1` FOREIGN KEY (`parent_id`) REFERENCES `test`.`parent` (`id`)
19 ) ENGINE=PBXT DEFAULT CHARSET=latin1
20 alter table parent add column c1 varchar(40);
21 insert child values(2000, 2);
22@@ -243,7 +243,7 @@
23 `id` int(11) DEFAULT NULL,
24 `parent_id` int(11) DEFAULT NULL,
25 KEY `par_ind` (`parent_id`),
26- CONSTRAINT `FOREIGN_1` FOREIGN KEY (`parent_id`) REFERENCES `parent` (`id`)
27+ CONSTRAINT `FOREIGN_1` FOREIGN KEY (`parent_id`) REFERENCES `test`.`parent` (`id`)
28 ) ENGINE=PBXT DEFAULT CHARSET=latin1
29 alter table child add column c1 varchar(40);
30 insert child values(400, 1, "asd");
31@@ -284,7 +284,7 @@
32 `id` int(11) DEFAULT NULL,
33 `parent_id` int(11) DEFAULT NULL,
34 KEY `par_ind` (`parent_id`),
35- CONSTRAINT `FOREIGN_1` FOREIGN KEY (`parent_id`) REFERENCES `parent` (`id`) ON DELETE CASCADE
36+ CONSTRAINT `FOREIGN_1` FOREIGN KEY (`parent_id`) REFERENCES `test`.`parent` (`id`) ON DELETE CASCADE
37 ) ENGINE=PBXT DEFAULT CHARSET=latin1
38 insert parent values(1);
39 insert child values(100, 1);

Subscribers

People subscribed via source and target branches