~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/mysqldump-max.result

Added code necessary for building plugins dynamically.
Merged in changes from lifeless to allow autoreconf to work.
Touching plugin.ini files now triggers a rebuid - so config/autorun.sh is no
longer required to be run after touching those.
Removed the duplicate plugin names - also removed the issue that getting them
different would silently fail weirdly later.

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
CREATE DATABASE IF NOT EXISTS `test`;
71
71
 
72
72
USE `test`;
 
73
DROP TABLE IF EXISTS `t1`;
 
74
CREATE TABLE `t1` (
 
75
  `id` int DEFAULT NULL,
 
76
  `name` varchar(32) DEFAULT NULL
 
77
) ENGINE=InnoDB;
 
78
 
 
79
ALTER TABLE `t1` DISABLE KEYS;
 
80
INSERT  IGNORE INTO `t1` VALUES (1,'first value'),(2,'first value'),(3,'first value'),(4,'first value'),(5,'first value');
 
81
ALTER TABLE `t1` ENABLE KEYS;
73
82
DROP TABLE IF EXISTS `t2`;
74
83
CREATE TABLE `t2` (
75
84
  `id` int DEFAULT NULL,
79
88
ALTER TABLE `t2` DISABLE KEYS;
80
89
INSERT  DELAYED IGNORE INTO `t2` VALUES (1,'first value'),(2,'first value'),(3,'first value'),(4,'first value'),(5,'first value');
81
90
ALTER TABLE `t2` ENABLE KEYS;
82
 
DROP TABLE IF EXISTS `t1`;
83
 
CREATE TABLE `t1` (
84
 
  `id` int DEFAULT NULL,
85
 
  `name` varchar(32) DEFAULT NULL
86
 
) ENGINE=InnoDB;
87
 
 
88
 
ALTER TABLE `t1` DISABLE KEYS;
89
 
INSERT  IGNORE INTO `t1` VALUES (1,'first value'),(2,'first value'),(3,'first value'),(4,'first value'),(5,'first value');
90
 
ALTER TABLE `t1` ENABLE KEYS;
91
91
DROP TABLE IF EXISTS `t6`;
92
92
CREATE TABLE `t6` (
93
93
  `id` int DEFAULT NULL,
105
105
CREATE DATABASE IF NOT EXISTS `test`;
106
106
 
107
107
USE `test`;
 
108
DROP TABLE IF EXISTS `t1`;
 
109
CREATE TABLE `t1` (
 
110
  `id` int DEFAULT NULL,
 
111
  `name` varchar(32) DEFAULT NULL
 
112
) ENGINE=InnoDB;
 
113
 
 
114
ALTER TABLE `t1` DISABLE KEYS;
 
115
INSERT INTO `t1` VALUES (1,'first value'),(2,'first value'),(3,'first value'),(4,'first value'),(5,'first value');
 
116
ALTER TABLE `t1` ENABLE KEYS;
108
117
DROP TABLE IF EXISTS `t2`;
109
118
CREATE TABLE `t2` (
110
119
  `id` int DEFAULT NULL,
114
123
ALTER TABLE `t2` DISABLE KEYS;
115
124
INSERT  DELAYED INTO `t2` VALUES (1,'first value'),(2,'first value'),(3,'first value'),(4,'first value'),(5,'first value');
116
125
ALTER TABLE `t2` ENABLE KEYS;
117
 
DROP TABLE IF EXISTS `t1`;
118
 
CREATE TABLE `t1` (
119
 
  `id` int DEFAULT NULL,
120
 
  `name` varchar(32) DEFAULT NULL
121
 
) ENGINE=InnoDB;
122
 
 
123
 
ALTER TABLE `t1` DISABLE KEYS;
124
 
INSERT INTO `t1` VALUES (1,'first value'),(2,'first value'),(3,'first value'),(4,'first value'),(5,'first value');
125
 
ALTER TABLE `t1` ENABLE KEYS;
126
126
DROP TABLE IF EXISTS `t6`;
127
127
CREATE TABLE `t6` (
128
128
  `id` int DEFAULT NULL,