summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2019-04-03 17:10:54 +0300
committerMarko Mäkelä <marko.makela@mariadb.com>2019-04-03 19:56:03 +0300
commit7984ea80de75fa626e8c2f947aee828bdef1771f (patch)
tree884937015dccb4baa8770d01942c39c061414f95
parenta1ec7ac4f44d1cabfa730195c47dcdcbd7e246fc (diff)
downloadmariadb-git-7984ea80de75fa626e8c2f947aee828bdef1771f.tar.gz
Remove a useless CHECK TABLE printout for debug builds
-rw-r--r--storage/innobase/btr/btr0btr.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/storage/innobase/btr/btr0btr.cc b/storage/innobase/btr/btr0btr.cc
index a40e39624e2..d143f98dda1 100644
--- a/storage/innobase/btr/btr0btr.cc
+++ b/storage/innobase/btr/btr0btr.cc
@@ -4908,13 +4908,6 @@ btr_validate_level(
block = btr_root_block_get(index, RW_SX_LATCH, &mtr);
page = buf_block_get_frame(block);
-#ifdef UNIV_DEBUG
- if (dict_index_is_spatial(index)) {
- fprintf(stderr, "Root page no: %lu\n",
- (ulong) page_get_page_no(page));
- }
-#endif
-
fil_space_t* space = fil_space_get(index->space);
const page_size_t table_page_size(
dict_table_page_size(index->table));