1. 02 Jul, 2019 23 commits
  2. 01 Jul, 2019 12 commits
  3. 30 Jun, 2019 1 commit
  4. 28 Jun, 2019 4 commits
    • Kentoku SHIBA's avatar
    • Kentoku SHIBA's avatar
      MDEV-16508 spider: sql_mode not maintained between spider node and data nodes (#1347) · d4bdf1c0
      Kentoku SHIBA authored
      Add the following parameter.
      
      - spider_sync_sql_mode
        Local sql_mode synchronous existence to remote server.
         0 : It doesn't synchronize.
         1 : It synchronizes.
        The default value is 1
      d4bdf1c0
    • Marko Mäkelä's avatar
      MDEV-19845: Define my_timer_cycles() inline · 5e929ee8
      Marko Mäkelä authored
      On clang, use __builtin_readcyclecounter() when available.
      Hinted by Sergey Vojtovich. (This may lead to runtime failure
      on ARM systems. The hardware should be available on ARMv8 (AArch64),
      but access to it may require special privileges.)
      
      We remove support for the proprietary Sun Microsystems compiler,
      and rely on clang or the __GNUC__ assembler syntax instead.
      
      For now, we retain support for IA-64 (Itanium) and 32-bit SPARC,
      even though those platforms are likely no longer widely used.
      
      We remove support for clock_gettime(CLOCK_SGI_CYCLE),
      because Silicon Graphics ceased supporting IRIX in December 2013.
      This was the only cycle timer interface available for MIPS.
      
      On PowerPC, we rely on the GCC 4.8 __builtin_ppc_get_timebase()
      (or clang __builtin_readcyclecounter()), which should be equivalent
      to the old assembler code on both 64-bit and 32-bit targets.
      5e929ee8
    • Kentoku SHIBA's avatar
      MDEV-17402 slave_transaction_retry_errors="12701" won't be enabled (#1346) · 1635ea94
      Kentoku SHIBA authored
      error code 12701 is already included in default value, but other plugin specific error codes are ignored because of checking with ER_ERROR_LAST. ER_ERROR_LAST does not include plugin specific error codes. So I just removed it for fixing this issue.
      1635ea94