Commit 62e68139 authored by Michael Widenius's avatar Michael Widenius

Fixed compiler warning and errors

mysql-test/suite/funcs_1/t/is_engines_federated.test:
  Corrected path
storage/xtradb/fil/fil0fil.c:
  Fixed compiler warning
parent 3a8e7aa8
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
# #
let $engine_type= FEDERATED; let $engine_type= FEDERATED;
--source suite/federated/have_federated_db.inc --source suite/federated/have_federatedx.inc
--vertical_results --vertical_results
eval SELECT * FROM information_schema.engines eval SELECT * FROM information_schema.engines
WHERE ENGINE = '$engine_type'; WHERE ENGINE = '$engine_type';
...@@ -3448,8 +3448,8 @@ fil_open_single_table_tablespace( ...@@ -3448,8 +3448,8 @@ fil_open_single_table_tablespace(
if ((ulint) (offset / (zip_size ? zip_size : UNIV_PAGE_SIZE)) == root_page[i]) { if ((ulint) (offset / (zip_size ? zip_size : UNIV_PAGE_SIZE)) == root_page[i]) {
if (fil_page_get_type(page) != FIL_PAGE_INDEX) { if (fil_page_get_type(page) != FIL_PAGE_INDEX) {
file_is_corrupt = TRUE; file_is_corrupt = TRUE;
fprintf(stderr, " [etyp:%lld]", fprintf(stderr, " [etyp:%ld]",
offset / (zip_size ? zip_size : UNIV_PAGE_SIZE)); (long) (offset / (zip_size ? zip_size : UNIV_PAGE_SIZE)));
goto skip_write; goto skip_write;
} }
/* this is index root page */ /* this is index root page */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment