Commit 8049c695 authored by gshchepa/uchum@gleb.loc's avatar gshchepa/uchum@gleb.loc
Browse files

Merge gleb.loc:/home/uchum/work/bk/5.0-opt-31077

into  gleb.loc:/home/uchum/work/bk/5.0-opt
parents c3ffd4ac c81751ad
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -634,7 +634,7 @@ static void write_footer(FILE *sql_file)
                time_str);
      }
      else
        fprintf(sql_file, "-- Dump completed");
        fprintf(sql_file, "-- Dump completed\n");
    }
    check_io(sql_file);
  }
+14 −2
Original line number Diff line number Diff line
@@ -3548,11 +3548,23 @@ DROP TABLE t1,t2;
#            "Dump completed on"
#
# --skip-dump-date:
--



-- Dump completed
# --dump-date:
-- Dump completed on -- ::
--



-- Dump completed on x-x-x x:x:x
# --dump-date (default):
-- Dump completed on -- ::
--



-- Dump completed on x-x-x x:x:x
#
# End of 5.0 tests
#
+6 −3
Original line number Diff line number Diff line
@@ -1582,13 +1582,16 @@ DROP TABLE t1,t2;
--echo #

--echo # --skip-dump-date:
--exec $MYSQL_DUMP --skip-dump-date test | grep 'Dump completed'
--replace_regex /-- [^D][^u][^m][^p].*// /\/\*!.*//
--exec $MYSQL_DUMP --skip-dump-date test

--echo # --dump-date:
--exec $MYSQL_DUMP --dump-date test | grep 'Dump completed' | tr -d '[0-9]'
--replace_regex /-- [^D][^u][^m][^p].*// /\/\*!.*// /[0-9]+/x/
--exec $MYSQL_DUMP --dump-date test

--echo # --dump-date (default):
--exec $MYSQL_DUMP test | grep 'Dump completed' | tr -d '[0-9]'
--replace_regex /-- [^D][^u][^m][^p].*// /\/\*!.*// /[0-9]+/x/
--exec $MYSQL_DUMP test

--echo #
--echo # End of 5.0 tests