ndb_share.test 9.38 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
-- source include/not_embedded.inc
-- source include/have_ndb.inc
-- source include/have_log_bin.inc

-- disable_query_log
call mtr.add_suppression('.*You need to use --log-bin to make --binlog-format work.*');
-- enable_query_log

connect (server1,127.0.0.1,root,,test,$MYSQLD1_PORT,);
connect (server2,127.0.0.1,root,,test,$MYSQLD2_PORT,);
connect (server3,127.0.0.1,root,,test,$MYSQLD3_PORT,);
connect (server4,127.0.0.1,root,,test,$MYSQLD4_PORT,);

connection server1;
show variables like 'log_bin';
connection server2;
show variables like 'log_bin';
connection server3;
show variables like 'log_bin';
connection server4;
show variables like 'log_bin';

#
# Basic create+drop (from with and without log-bin)
#   no share should be present
#
connection server1;
create table t1 (a int) engine=ndbcluster;
drop table t1;
--source suite/ndb/include/ndb_share_check_shares.inc

connection server3;
create table t1 (a int) engine=ndbcluster;
drop table t1;
--source suite/ndb/include/ndb_share_check_shares.inc

#
# Basic create+rename+drop (from with and without log-bin)
#   no share should be present
#
connection server1;
create table t1 (a int) engine=ndbcluster;
rename table t1 to t2;
drop table t2;
--source suite/ndb/include/ndb_share_check_shares.inc

connection server2;
create table t1 (a int) engine=ndbcluster;
rename table t1 to t2;
drop table t2;
--source suite/ndb/include/ndb_share_check_shares.inc

#
# Basic create+offline-alter+drop (from with and without log-bin)
#   no share should be present
#
connection server1;
create table t1 (a int) engine=ndbcluster;
alter offline table t1 add column b int default 77;
drop table t1;
--source suite/ndb/include/ndb_share_check_shares.inc

connection server2;
create table t1 (a int) engine=ndbcluster;
alter offline table t1 add column b int default 77;
drop table t1;
--source suite/ndb/include/ndb_share_check_shares.inc

#
# Basic create+offline-alter-partitions+drop (from with and without log-bin)
#   no share should be present
#
connection server1;
create table t1 (a int primary key) engine=ndbcluster
partition by list(a) (partition p0 values in (0));
alter offline table t1 add partition (partition p1 values in (1));
drop table t1;
--source suite/ndb/include/ndb_share_check_shares.inc

connection server2;
create table t1 (a int primary key) engine=ndbcluster
partition by list(a) (partition p0 values in (0));
alter offline table t1 add partition (partition p1 values in (1));
drop table t1;
--source suite/ndb/include/ndb_share_check_shares.inc

#
# Basic create+online-alter+drop (from with and without log-bin)
#   no share should be present
#
connection server1;
create table t1 (a int primary key) engine=ndbcluster;
alter online table t1 add column b int column_format dynamic;
drop table t1;
--source suite/ndb/include/ndb_share_check_shares.inc

connection server2;
create table t1 (a int primary key) engine=ndbcluster;
alter offline table t1 add column b int column_format dynamic;
drop table t1;
--source suite/ndb/include/ndb_share_check_shares.inc

#
# Basic create+multi-rename+drop (from with and without log-bin)
#   no share should be present
#
connection server1;
create table t1 (a int) engine=ndbcluster;
create table t2 (a int) engine=ndbcluster;
rename table t1 to tmp, t2 to t1, tmp to t2;
drop table t1, t2;
--source suite/ndb/include/ndb_share_check_shares.inc

connection server2;
create table t1 (a int) engine=ndbcluster;
create table t2 (a int) engine=ndbcluster;
rename table t1 to tmp, t2 to t1, tmp to t2;
drop table t1, t2;
--source suite/ndb/include/ndb_share_check_shares.inc

#
# Now...lets get nastier 1
#   create myisam tables on other servers...and then create ndb table
#
connection server2;
create table t1 (a int) engine=myisam;
connection server4;
create table t1 (a int) engine=myisam;

connection server1;
create table t1 (a int) engine = ndb;
drop table t1;
--source suite/ndb/include/ndb_share_check_shares.inc

connection server3;
create table t1 (a int) engine = ndb;
drop table t1;
--source suite/ndb/include/ndb_share_check_shares.inc

connection server1;
create table t1 (a int) engine = ndb;

connection server2;
drop table t1;
desc t1; # force discovery

connection server4;
drop table t1;
desc t1; # force discovery

connection server1;
drop table t1;
--source suite/ndb/include/ndb_share_check_shares.inc

#
# Now...lets get nastier 2
#   create myisam tables on other servers...and then create ndb table
#   and off-line alter them
connection server2;
create table t1 (a int) engine=myisam;
connection server4;
create table t1 (a int) engine=myisam;

connection server1;
create table t1 (a int) engine = ndb;
alter offline table t1 add column b int column_format dynamic;

connection server2;
drop table t1;
desc t1; # force discovery

connection server4;
drop table t1;
desc t1; # force discovery

connection server1;
drop table t1;
--source suite/ndb/include/ndb_share_check_shares.inc

#
# Now...lets get nastier 3
#   create myisam tables on other servers...and then create ndb table
#   and online alter them
connection server2;
create table t1 (a int) engine=myisam;
connection server4;
create table t1 (a int) engine=myisam;

connection server1;
create table t1 (a int primary key) engine = ndb;
alter online table t1 add column b int column_format dynamic;

connection server2;
drop table t1;
desc t1; # force discovery

connection server4;
drop table t1;
desc t1; # force discovery

connection server1;
drop table t1;
--source suite/ndb/include/ndb_share_check_shares.inc

#
# Now...lets get nastier 4
#   create myisam tables on other servers...and then create ndb table
#   and rename them
connection server2;
create table t1 (a int) engine=myisam;
connection server4;
create table t1 (a int) engine=myisam;

connection server1;
create table t1 (a int) engine = ndb;
rename table t1 to t2;

connection server2;
desc t2; # force discovery

connection server4;
desc t2; # force discovery

connection server1;
drop table t2;
--source suite/ndb/include/ndb_share_check_shares.inc

connection server2;
drop table t1;

connection server4;
drop table t1;
--source suite/ndb/include/ndb_share_check_shares.inc

#
# Now...create table if not exists
#
--disable_warnings
let $1=5;
while ($1)
{
  dec $1;
  connection server1;
  --send create table if not exists t1 (a int) engine=ndbcluster
  connection server2;
  --send create table if not exists t1 (a int) engine=ndbcluster
  connection server3;
  --send create table if not exists t1 (a int) engine=ndbcluster
  connection server4;
  --send create table if not exists t1 (a int) engine=ndbcluster
  connection server1;
  --reap
  connection server2;
  --reap
  connection server3;
  --reap
  connection server4;
  --reap
  connection server1;
  drop table t1;
  --source suite/ndb/include/ndb_share_check_shares.inc
}
--enable_warnings

#
# Now...drop table if exists
#
--disable_warnings
let $1=5;
while ($1)
{
  dec $1;
  connection server1;
  create table t1 (a int) engine=ndbcluster;

  connection server1;
  --send drop table if exists t1
  connection server2;
  --send drop table if exists t1
  connection server3;
  --send drop table if exists t1
  connection server4;
  --send drop table if exists t1
  connection server1;
  --reap
  connection server2;
  --reap
  connection server3;
  --reap
  connection server4;
  --reap
  --source suite/ndb/include/ndb_share_check_shares.inc
}
--enable_warnings

#
# Now...restart
#
connection server1;
create table t1 (a int) engine=ndbcluster;

connection server3;
create table t2 (a int) engine=ndbcluster;

--exec $NDB_MGM --no-defaults -e "all restart -n" >> $NDB_TOOLS_OUTPUT
--exec $NDB_WAITER --no-defaults --ndb-connectstring="$NDB_CONNECTSTRING" --not-started >> $NDB_TOOLS_OUTPUT
--exec $NDB_MGM --no-defaults -e "all start" >> $NDB_TOOLS_OUTPUT
--exec $NDB_WAITER --no-defaults --ndb-connectstring="$NDB_CONNECTSTRING" >> $NDB_TOOLS_OUTPUT

# Wait for mysqld to reconnect and exit from readonly mode
--disable_query_log
connection server1;
--source include/ndb_not_readonly.inc
connection server2;
--source include/ndb_not_readonly.inc
connection server3;
--source include/ndb_not_readonly.inc
connection server4;
--source include/ndb_not_readonly.inc
--enable_query_log

connection server1;
desc t1;
desc t2;
connection server2;
desc t1;
desc t2;
connection server3;
desc t1;
desc t2;
connection server4;
desc t1;
desc t2;

connection server1;
drop table t1, t2;
--source suite/ndb/include/ndb_share_check_shares.inc

#
# Now...restart -i
#
connection server1;
create table t1 (a int) engine=ndbcluster;

connection server3;
create table t2 (a int) engine=ndbcluster;

--exec $NDB_MGM --no-defaults -e "all restart -i -n" >> $NDB_TOOLS_OUTPUT
--exec $NDB_WAITER --no-defaults --ndb-connectstring="$NDB_CONNECTSTRING" --not-started >> $NDB_TOOLS_OUTPUT
--exec $NDB_MGM --no-defaults -e "all start" >> $NDB_TOOLS_OUTPUT
--exec $NDB_WAITER --no-defaults --ndb-connectstring="$NDB_CONNECTSTRING" >> $NDB_TOOLS_OUTPUT

# Wait for mysqld to reconnect and exit from readonly mode
--disable_query_log
connection server1;
--source include/ndb_not_readonly.inc
connection server2;
--source include/ndb_not_readonly.inc
connection server3;
--source include/ndb_not_readonly.inc
connection server4;
--source include/ndb_not_readonly.inc
--enable_query_log

connection server1;
--error 1146
desc t1;
--error 1146
desc t2;
connection server2;
--error 1146
desc t1;
--error 1146
desc t2;
connection server3;
--error 1146
desc t1;
--error 1146
desc t2;
connection server4;
--error 1146
desc t1;
--error 1146
desc t2;

--source suite/ndb/include/ndb_share_check_shares.inc