1. 03 Jul, 2019 1 commit
  2. 02 Jul, 2019 23 commits
  3. 01 Jul, 2019 12 commits
  4. 30 Jun, 2019 1 commit
  5. 28 Jun, 2019 3 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