Merge branch 'QA_4_9'

I missed the sign-off for 180b45f225 and e0889beb52
So the sign-off below is also for them.

Signed-off-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
William Desportes 2019-06-24 21:41:16 +02:00
commit bc585d97f7
No known key found for this signature in database
GPG Key ID: 90A0EF1B8251A889

View File

@ -1481,7 +1481,7 @@ create the example tables:
country_code char(1) NOT NULL default '',
description varchar(10) NOT NULL default '',
PRIMARY KEY (country_code)
) TYPE=MyISAM;
) ENGINE=MyISAM;
INSERT INTO REL_countries VALUES ('C', 'Canada');
@ -1491,16 +1491,16 @@ create the example tables:
town_code varchar(5) default '0',
country_code char(1) NOT NULL default '',
PRIMARY KEY (id)
) TYPE=MyISAM;
) ENGINE=MyISAM;
INSERT INTO REL_persons VALUES (11, 'Marc', 'S', '');
INSERT INTO REL_persons VALUES (11, 'Marc', 'S', 'C');
INSERT INTO REL_persons VALUES (15, 'Paul', 'S', 'C');
CREATE TABLE REL_towns (
town_code varchar(5) NOT NULL default '0',
description varchar(30) NOT NULL default '',
PRIMARY KEY (town_code)
) TYPE=MyISAM;
) ENGINE=MyISAM;
INSERT INTO REL_towns VALUES ('S', 'Sherbrooke');
INSERT INTO REL_towns VALUES ('M', 'Montréal');