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 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
|
# Remove this line after fixing bug#29888076.
--source include/not_solaris.inc
--echo ########################################################################
--echo #
--echo # Verify definitions of I_S system views.
--echo # --------------------------------------
--echo # This test has three parts:
--echo #
--echo # 1. Verify the existence of the expected I_S system views, neither less
--echo # nor more.
--echo # 2. Verify the I_S_VERSION and the CREATE VIEW statements of the
--echo # I_S system views.
--echo # 3. Verify the checksum of the generated meta data associated with the
--echo # current I_S version number.
--echo #
--echo ########################################################################
--echo #
--echo # A note regarding the checksum usage.
--echo # ------------------------------------
--echo # This is based on a test by Marc Alff (perfschema.dd_version_check).
--echo # The idea is to keep a record of each I_S version released with the
--echo # I_S version number and a checksum created based on the meta data for
--echo # the I_S views. It is important not to change the expected checksum
--echo # once a release has been published.
--echo #
--echo # If there was an intentional change, leading to a new checksum, then:
--echo #
--echo # 1. Uncomment the debug output showing the low level meta data and
--echo # verify that the changes are intentional.
--echo # 2. Create a new target I_S version (unless the existing target IS
--echo # version is not publicly released yet).
--echo # 3. Add a new row in test.I_S_published_schema with the new target
--echo # I_S version and the new checksum (or update the expected
--echo # checksum if the target I_S version is not publicly released yet).
--echo #
--echo # Note that a failure to do 2, when doing 3, will result in a broken
--echo # upgrade where the server code is expecting a certain I_S system view
--echo # definition, while the actual persisted I_S system view definition is
--echo # different (because it was created by a previous server binary, and
--echo # I_S upgrade handling was not triggered).
--echo #
--echo # Thus, this part of the test is designed to be a reminder to do 2.
--echo # by detecting differences in 3.
--echo #
--echo ########################################################################
--echo #
--echo # How to handle test failures.
--echo # ----------------------------
--echo # In general, if there is a change leading to a failure in this test,
--echo # then we must first consider whether the change is intentional, i.e.,
--echo # whether there is a change in a I_S system view definition that
--echo # that we actually want to do, or whether the change is by mistake
--echo # or not needed.
--echo #
--echo # Then, if the change is intentional, we must make sure the following
--echo # scenarios are handled:
--echo #
--echo # 1. Plain initialization of the server. This is most likely handled,
--echo # otherwise we wouldn't even get to the point where this test starts
--echo # failing.
--echo # 2. Plain server restart using a data directory initialized by this
--echo # server.
--echo # 3. Upgrade from any supported I_S version, or server restart using
--echo # a data directory from a different server version using the same
--echo # I_S version.
--echo #
--echo # Failures in the different parts of the test must be handled as
--echo # follows:
--echo #
--echo # * A failure in part 1 means that a I_S system view is added or removed.
--echo # In this case, please make sure the tables 'I_S_view_names'
--echo # below are kept up to date. Also make sure that
--echo # the list of SHOW CREATE VIEW statements is up to date.
--echo # * A failure in part 2 or 3 means that there is a change in the I_S
--echo # system view definitions, and that we have a new I_S version. So
--echo # if the current target I_S version number is released publicly,
--echo # then we must bump the target I_S version. If the I_S version is
--echo # not yet released, and has already been bumped, then it should
--echo # stay the same. This test must have its results re-recorded. A
--echo # failure in part 1 or 2 will most likely also lead to a failure
--echo # in part 3.
--echo # * A failure in part 3 means that the generated meta data is
--echo # different than it used to be. If there is a change in part 1 or
--echo # 2, this is to be expected. In that case, the test results must
--echo # be re-recorded, and we must either update the expected checksum
--echo # (if the I_S version stays the same) or add the new I_S version
--echo # along with the expected checksum. However, if there is not a
--echo # change in part 1 or 2, then we have changes in the SQL DDL
--echo # semantics. This should be handled by changing the I_S initialization
--echo # procedure to either tweak the view statements before execution
--echo # by tweaking the generated low level meta data. Either way, the
--echo # result of the changes to the server code should be that
--echo # this test stops failing.
--echo ########################################################################
--source include/have_debug.inc
SET debug = '+d,skip_dd_table_access_check';
# Total number of system views in MySQL server.
let $expected_system_view_count = 44;
--echo ########################################################################
--echo # PART 1
--echo # Verify the existence of the expected I_S system views, neither less
--echo ########################################################################
let $I_S_view_names = test.I_S_view_names;
# Create table to hold the I_S view names, they are needed later in this test.
eval CREATE TABLE $I_S_view_names (name VARCHAR(64) PRIMARY KEY);
--source suite/information_schema/include/i_s_schema_assert_and_fill_table_names.inc
--echo ########################################################################
--echo # PART 2. Verify the I_S_VERSION and the CREATE VIEW statements of the
--echo # I_S system views.
--echo ########################################################################
--echo # Print the actual I_S version stored on disk.
let $current_i_s_version = `SELECT SUBSTRING_INDEX(
SUBSTRING_INDEX(SUBSTRING(properties,
LOCATE('IS_VERSION', properties), 30), ';', 1)
, '=', -1) AS I_S_VERSION
FROM mysql.dd_properties`;
--echo Current I_S_VERSION=$current_i_s_version
let $current_mysqld_version = `SELECT SUBSTRING_INDEX(
SUBSTRING_INDEX(SUBSTRING(properties,
LOCATE('MYSQLD_VERSION', properties), 30), ';', 1)
, '=', -1) AS MYSQLD_VERSION
FROM mysql.dd_properties`;
# Check if the I_S version on disk is greater than MYSQLD_VERSION.
let $value = `SELECT $current_i_s_version > $current_mysqld_version`;
if ($value) {
echo Error: I_S_VERSION ($current_i_s_version) version found in
sql/dd/info_schema/metadata.h is greater than MYSQLD_VERSION
($current_i_s_version). I_S_VERSION should be <= MYSQLD_VERSION.;
die;
}
# We also store the defs in following table in order to calculate the
# checksum later.
CREATE TABLE I_S_check_table (id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
t TEXT NOT NULL,
row_hash VARCHAR(64) DEFAULT NULL);
--source suite/information_schema/include/i_s_schema_dump_table_defs_debug.inc
--echo ########################################################################
--echo # PART 3. Verify the checksum of the generated meta data associated with
--echo # the current I_S version number.
--echo ########################################################################
--disable_query_log
# Verify number of system views stored in DD.
let $system_view_count_in_dd = `SELECT count(id) FROM mysql.tables
WHERE type = 'SYSTEM VIEW' AND CHAR_LENGTH(view_definition_utf8)>0 AND
name IN (SELECT name FROM $I_S_view_names)`;
let $assert_cond = "$system_view_count_in_dd" = "$expected_system_view_count";
--let $assert_text = Found expected number of system views in DD.
--source include/assert.inc
# Make sure that we have checksum of all system view definitions that are
# stored in I_S_check_table().
let $actual_system_view_count = `SELECT COUNT(*) from I_S_check_table`;
let $assert_cond = "$actual_system_view_count" = "$expected_system_view_count";
--let $assert_text = Found expected number of system views in I_S_check_table.
--source include/assert.inc
# Schema meta data excluding timestamps. Id is fixed even across versions.
INSERT INTO I_S_check_table(t)
SELECT CONCAT(id, '-', catalog_id, '-',
name, '-', default_collation_id, '-',
IFNULL(options, 'NULL'))
FROM mysql.schemata
WHERE name = 'information_schema';
# Expression representing the I_S view ids
let $I_S_view_ids = SELECT id FROM mysql.tables
WHERE type = 'SYSTEM VIEW' AND CHAR_LENGTH(view_definition_utf8)>0 AND
name IN (SELECT name FROM $I_S_view_names);
# definitions from views
eval INSERT INTO I_S_check_table(t)
SELECT CONCAT(name, '-', type, '-',
IFNULL(collation_id,'NULL'), '-',
comment, '-', hidden, '-',
view_check_option, '-',
view_is_updatable, '-',
view_algorithm, '-',
view_security_type, '-',
view_definer, '-',
view_client_collation_id, '-',
view_connection_collation_id, '-',
IFNULL(view_column_names,'NULL'))
FROM mysql.tables
WHERE id IN ($I_S_view_ids)
ORDER BY id;
# Subset of definitions from columns, not including
# default_values.
eval INSERT INTO I_S_check_table(t)
SELECT CONCAT(name, '-',
ordinal_position, '-', type, '-', is_nullable, '-',
IFNULL(is_zerofill, 'NULL'), '-',
IFNULL(is_unsigned, 'NULL'), '-',
IFNULL(char_length, 'NULL'), '-',
IFNULL(numeric_precision, 'NULL'), '-',
IFNULL(numeric_scale, 'NULL'), '-',
IFNULL(datetime_precision, 'NULL'), '-',
IFNULL(collation_id, 'NULL'), '-',
IFNULL(default_option, 'NULL'), '-',
IFNULL(update_option, 'NULL'), '-',
IFNULL(is_auto_increment, 'NULL'), '-',
comment, '-',
hidden, '-',
IFNULL(options, 'NULL'), '-',
IFNULL(se_private_data, 'NULL'))
FROM mysql.columns
WHERE table_id IN ($I_S_view_ids)
ORDER BY id;
# Create checksums for each row.
UPDATE I_S_check_table SET row_hash = SHA2(t, 256);
# And then a checksum of all rows. We need about 1500 rows of varchar(64)
# concatenated.
SET @old_group_concat_max_len = @@group_concat_max_len;
SET group_concat_max_len = 100000;
CREATE TABLE whole_schema(row_checksums LONGTEXT, checksum VARCHAR(64));
INSERT INTO whole_schema (row_checksums)
SELECT GROUP_CONCAT(row_hash ORDER BY id)
FROM I_S_check_table;
UPDATE whole_schema SET checksum = SHA2(row_checksums, 256);
let $assert_cond = "[SELECT LENGTH(row_checksums) FROM whole_schema]"
< @@group_concat_max_len;
--let $assert_text = The group concat max length is sufficient.
--source include/assert.inc
# Insert historical records of I_S version numbers and checksums. For a
# new I_S version, add a new row below. Please read the comments at the
# beginning of the test file to make sure this is done correctly. Note
# that the checksums are different depending on case sensitivity of the
# underlying file system. Hence, the lctn field is used as a discriminator
# (lctn = lower case table names).
CREATE TABLE I_S_published_schema(
mysqld_version VARCHAR(20),
i_s_version VARCHAR(20),
lctn BOOL,
checksum VARCHAR(64),
PRIMARY KEY (i_s_version, lctn));
# Checksums with ids.
INSERT INTO I_S_published_schema (i_s_version, lctn, checksum)
VALUES ('80017', 0,
'172ff4fb1366414e3fb16c0175eefe861a493dab30d59e299f6186f4abc8d13a');
INSERT INTO I_S_published_schema (i_s_version, lctn, checksum)
VALUES ('80017', 1,
'23dbc025dda0dfba52a9e9f09061290347c868735a01258396a55525e894b69b');
INSERT INTO I_S_published_schema (i_s_version, lctn, checksum)
VALUES ('80018', 0,
'b0077c83e03d640dcf26fc717accd5081269ea7ff3e6c3282914380a1246c1af');
INSERT INTO I_S_published_schema (i_s_version, lctn, checksum)
VALUES ('80018', 1,
'ca7b69e91a233bab7856f491e7dab6caff7f0fd4f56218ece438e95375ff2392');
INSERT INTO I_S_published_schema (i_s_version, lctn, checksum)
VALUES ('80020', 0,
'e74c98084d3f83870cd69ec351542ac2bdfe18275fcee10ad4e4f27c35d2c150');
INSERT INTO I_S_published_schema (i_s_version, lctn, checksum)
VALUES ('80020', 1,
'1223657a2f27ecdbea64f024eba5799275acd91fd23ef6696696ecf9f64161ec');
INSERT INTO I_S_published_schema (i_s_version, lctn, checksum)
VALUES ('800201', 0,
'db2c2bdf36bc5fd81f7f888ab9706774921ff5160b0543936559855f27e8ea51');
INSERT INTO I_S_published_schema (i_s_version, lctn, checksum)
VALUES ('800201', 1,
'b3cc231594350f18af9144d492687ca0c16a490b132096671a20b712ee19af76');
INSERT INTO I_S_published_schema
VALUES ('80021', '80021', 0,
'be6f4d15dd5f5c817a9e589af721a23319d4e33e62093b00cb240e3fc84e68aa');
INSERT INTO I_S_published_schema
VALUES ('80021', '80021', 1,
'b1359fbef2feecf8dfc688dc0716cea8686905aeee15a0115bcbfdbc0dc8f456');
INSERT INTO I_S_published_schema
VALUES ('80022', '80022', 0,
'53555f72c6938d7a343d6b344900d52acf4ebe228bb0d70b30eb1ad1ab693a8d');
INSERT INTO I_S_published_schema
VALUES ('80022', '80022', 1,
'6702af4a1d352b7c8a27280358b7fa95667c5b3e27d1a7f1e4ffbe791d00dffe');
INSERT INTO I_S_published_schema
VALUES ('80023', '80023', 0,
'9c2b5a3a5d542a2408cdab784ecd704649656a4f6f623d12dd5f52d2a5e679f3');
INSERT INTO I_S_published_schema
VALUES ('80023', '80023', 1,
'f9e66faba69fd615e14afc9f3253a488609909d9358fd9a79d04a612ba8b0e57');
INSERT INTO I_S_published_schema
VALUES ('80029', '80029', 0,
'd8f5013771e8f2d28283159286ec85ec7a481724e3cfdda3c098b7cf2acd9a64');
INSERT INTO I_S_published_schema
VALUES ('80029', '80029', 1,
'06bdff30a209ee9b41bf1b654048010e0ca67399ccca594600659816fb3ee036');
INSERT INTO I_S_published_schema
VALUES ('80030', '80030', 0,
'f2f9eac78a7fe69de079bd55831bb4451236c492a76f9195e43051db44e84510');
INSERT INTO I_S_published_schema
VALUES ('80030', '80030', 1,
'4399948df993b3a2084c4a6dd80d76e38b2ff874e68b7e33a16b907eeb090ff0');
LET $checksum_version = `SELECT IF(ISNULL(mysqld_version), "0", i_s_version)
FROM I_S_published_schema i RIGHT OUTER JOIN whole_schema w
ON i.checksum = w.checksum`;
# Check if i_s_version in I_S_published_schema is greater than I_S version
# on disk.
let $value = `SELECT $checksum_version > $current_i_s_version`;
if ($value) {
echo Error: The checksum in above INSERT is updated for I_S_VERSION
$checksum_version, but the version in sql/dd/info_schema/metadata.h
$current_i_s_version is different.;
die;
}
# If this is unknown checksum, ask to update valid checksum and I_S version
# of server.
if ($checksum_version == "0") {
let $action = `SELECT IF(COUNT(*) > 0,
"update_checksum", "insert_checksum") as ACTION
FROM I_S_published_schema i
WHERE i.mysqld_version = '$current_mysqld_version' AND
i.i_s_version = '$current_mysqld_version'`;
# Make sure that we always bump the I_S version equal to latest MySQLD
# version.
let $bump_version = `SELECT $current_mysqld_version != $current_i_s_version`;
if ($bump_version == "1") {
echo Please increase the I_S_VERSION in sql/dd/info_schema/metadata.h
to $current_mysqld_version.;
}
if ($action == "update_checksum") {
echo The given checksum is a new change for I_S version
$current_mysqld_version. Please update the existing INSERT
command above as follows:;
}
if ($action == "insert_checksum") {
echo There is no known I_S version with the given checksum. Please
add a new INSERT command above as follows:;
}
let $whole_checksum = `SELECT checksum FROM whole_schema`;
let $lctn = `SELECT @@global.lower_case_file_system`;
echo "INSERT INTO I_S_published_schema
VALUES ('$current_mysqld_version', '$current_mysqld_version', $lctn,
'$whole_checksum');";
echo Note: If you are working on patch that is pushed for more than one
source tree. e.g., to mysql-8.0 and mysql-trunk. Then there may be
cases where checksum would differ in both the tree based on development
state. Please take this into consideration.;
die Error: Please take suggested action below and re-run the test.;
}
# We found known checksum.
if ($checksum_version != "0") {
echo The schema checksum corresponds to I_S version $checksum_version.;
}
# Please read the comments at the beginning of the test file to make sure an
# error in the assert below is handled correctly.
# Make sure that the current checksum is already published.
let $assert_cond = "[SELECT COUNT(i_s_version)
FROM I_S_published_schema i, whole_schema w
WHERE i.checksum = w.checksum
AND lctn = @@global.lower_case_file_system]" >= 1;
--let $assert_text = The schema checksum corresponds to a known I_S version.
--source include/assert.inc
# Make sure that the current checksum is published with latest I_S version
# stored in disk.
let $assert_cond = "[SELECT COUNT(i_s_version)
FROM I_S_published_schema i, whole_schema w
WHERE i.checksum = w.checksum
AND lctn = @@global.lower_case_file_system
AND i_s_version = \'$current_i_s_version\']" >= 1;
let $assert_text = The schema checksum corresponds to
IS_VERSION $current_i_s_version stored on on disk.;
--source include/assert.inc
# Make sure that the I_S version stored on disk is the latest known I_S version
# in I_S_published_schema.
let $assert_cond = "[SELECT COUNT(i_s_version) FROM I_S_published_schema i
WHERE i.i_s_version > $current_i_s_version AND
i.i_s_version != \'800201\']" = 0;
let $assert_text = The stored I_S version is the latest published I_S version.;
--source include/assert.inc
SET group_concat_max_len = @old_group_concat_max_len;
eval DROP TABLES I_S_check_table, whole_schema, I_S_published_schema,
$I_S_view_names;
SET debug = '-d,skip_dd_table_access_check';
--enable_query_log
|