1. 13 Sep, 2018 2 commits
    • Jan Lindström's avatar
      Merge pull request #865 from grooverdan/MDEV-17173-wsrep_sst · ec457c08
      Jan Lindström authored
      MDEV-17173: correct parsing of 12.13.14.15:4444/xtrabackup_sst leavin…
      ec457c08
    • Daniel Black's avatar
      MDEV-17173: correct parsing of 12.13.14.15:4444/xtrabackup_sst leaving LSN/SST_VER blank · b96d3634
      Daniel Black authored
      Correcting commit e78e308e
      $ . scripts/wsrep_sst_common.sh --address 12.13.14.15:4444/xtrabackup_sst ; set | grep WSREP_SST
      WSREP_SST_OPT_ADDR=12.13.14.15:4444/xtrabackup_sst
      WSREP_SST_OPT_ADDR_PORT=4444
      WSREP_SST_OPT_AUTH=
      WSREP_SST_OPT_BINLOG=
      WSREP_SST_OPT_BINLOG_INDEX=
      WSREP_SST_OPT_BYPASS=0
      WSREP_SST_OPT_CONF='  '
      WSREP_SST_OPT_DATA=
      WSREP_SST_OPT_DEFAULT=
      WSREP_SST_OPT_EXTRA_DEFAULT=
      WSREP_SST_OPT_HOST=12.13.14.15
      WSREP_SST_OPT_HOST_UNESCAPED=12.13.14.15
      WSREP_SST_OPT_LSN=
      WSREP_SST_OPT_MODULE=xtrabackup_sst
      WSREP_SST_OPT_PATH=xtrabackup_sst
      WSREP_SST_OPT_PORT=4444
      WSREP_SST_OPT_PSWD=
      WSREP_SST_OPT_SST_VER=
      WSREP_SST_OPT_SUFFIX_DEFAULT=
      WSREP_SST_OPT_SUFFIX_VALUE=
      WSREP_SST_OPT_USER=
      
      . scripts/wsrep_sst_common.sh --address 12.13.14.15:4444/xtrabackup_sst/1234/5676 ; set | grep WSREP_SST
      WSREP_SST_OPT_ADDR=12.13.14.15:4444/xtrabackup_sst/1234/5676
      WSREP_SST_OPT_ADDR_PORT=4444
      WSREP_SST_OPT_AUTH=
      WSREP_SST_OPT_BINLOG=
      WSREP_SST_OPT_BINLOG_INDEX=
      WSREP_SST_OPT_BYPASS=0
      WSREP_SST_OPT_CONF='  '
      WSREP_SST_OPT_DATA=
      WSREP_SST_OPT_DEFAULT=
      WSREP_SST_OPT_EXTRA_DEFAULT=
      WSREP_SST_OPT_HOST=12.13.14.15
      WSREP_SST_OPT_HOST_UNESCAPED=12.13.14.15
      WSREP_SST_OPT_LSN=1234
      WSREP_SST_OPT_MODULE=xtrabackup_sst
      WSREP_SST_OPT_PATH=xtrabackup_sst/1234/5676
      WSREP_SST_OPT_PORT=4444
      WSREP_SST_OPT_PSWD=
      WSREP_SST_OPT_SST_VER=5676
      WSREP_SST_OPT_SUFFIX_DEFAULT=
      WSREP_SST_OPT_SUFFIX_VALUE=
      WSREP_SST_OPT_USER=
      b96d3634
  2. 12 Sep, 2018 6 commits
  3. 11 Sep, 2018 2 commits
  4. 10 Sep, 2018 1 commit
  5. 09 Sep, 2018 1 commit
  6. 08 Sep, 2018 2 commits
  7. 07 Sep, 2018 7 commits
  8. 06 Sep, 2018 7 commits
  9. 05 Sep, 2018 4 commits
    • Sergei Golubchik's avatar
      MDEV-16465 Invalid (old?) table or database name or hang in... · 0ccba62d
      Sergei Golubchik authored
      MDEV-16465 Invalid (old?) table or database name or hang in ha_innobase::delete_table and log semaphore wait upon concurrent DDL with foreign keys
      
      lowercase db and table names before prelocking.
      
      Post-fix for 9180e866
      
      This fixes failures on main.lowercase_table4 on Windows
      0ccba62d
    • Sergey Vojtovich's avatar
      MDEV-16757 Memory leak after adding manually min/max statistical data · 4cf75706
      Sergey Vojtovich authored
                 for blob column
      
      Moved delete_stat_values_for_table_share() call to proper place.
      4cf75706
    • Jan Lindström's avatar
      Galera test case cleanups. · 6695fcea
      Jan Lindström authored
      6695fcea
    • Jan Lindström's avatar
      MDEV-15436: If log_bin and log_bin_index is different SST with rsync fails. · b44b9f71
      Jan Lindström authored
      Problem was that in SST log_bin_index name and directory was not
      handled and passed to rsync SST script.
      
      wsrep_sst_common.sh
      	Read binlog index dirname and filename if --binlog-index
      	parameter is provided. Read binlog filenames from that file
      	from donor and write transfered binlog filenames to that
      	file in joiner.
      
      mysqld.cc, mysqld.h
      	Moved opt_binlog_index_name from static to global and added
      	it to extern.
      
      wsrep_sst.cc
      
      generate_binlog_index_opt_val
      	New function to generate binlog index name if opt_binlog_index_name is
      	given on configuration.
      
      sst_prepare_other
      	Add binlog index configuration to SST command.
      
      wsrep_sst.h
      	Add new SST parameter --binlog-index
      
      Add test case.
      b44b9f71
  10. 04 Sep, 2018 8 commits