1. 27 Nov, 2006 1 commit
    • unknown's avatar
      WL#3072 Maria Recovery. Making DDLs durable in Maria: · de6f550e
      unknown authored
      Sync table files after CREATE (of non-temp table), DROP, RENAME,
      TRUNCATE, sync directories and symlinks (for the 3 first commands).
      Comments for future log records.
      In ma_rename(), if rename of index works and then rename of data fails,
      try to undo the rename of the index to leave a consistent state.
      
      
      mysys/my_symlink.c:
        sync directory after creation of a symbolic link in it, if asked
      mysys/my_sync.c:
        comment. Fix for when the file's name has no directory in it.
      storage/maria/ma_create.c:
        sync files and links and dirs when creating a non-temporary table.
        Optimizations of the above to reduce syncs in the common cases:
        * if index file and data file have the exact same paths (regular
        and link), sync the directories (of regular and link) only once
        after creating the last file (the data file).
        * don't sync the data file if we didn't write to it (always true
        in our builds).
      storage/maria/ma_delete_all.c:
        sync files after truncating a table
      storage/maria/ma_delete_table.c:
        sync files and symbolic links and dirs after dropping a table
      storage/maria/ma_extra.c:
        a function which wraps the sync of the index file and the sync of the
        data file.
      storage/maria/ma_locking.c:
        using a wrapper function
      storage/maria/ma_rename.c:
        sync files and symbolic links and dirs after renaming a table.
        If rename of index works and then rename of data fails, try to undo
        the rename of the index to leave a consistent state. That is just a
        try, it may fail...
      storage/maria/ma_test3.c:
        warning to not pay attention to this test.
      storage/maria/maria_def.h:
        declaration for the function added to ma_extra.c
      de6f550e
  2. 22 Nov, 2006 4 commits
    • unknown's avatar
      Maria - post-review fixes about my_sync_dir(): · adfba203
      unknown authored
      make it return an error (except if certain errno), test this error in
      callers. Do a single my_sync_dir() in my_rename() if possible.
      
      
      include/my_global.h:
        better have a symbol name talking about the feature, use it in the
        code of the feature, and define the symbol once depending on the
        platform, rather than have the platform "tested" in the code
        of the feature several times.
      include/my_sys.h:
        my_sync_dir() now can return error
      mysys/my_create.c:
        my_sync_dir() can now return an error
      mysys/my_delete.c:
        my_sync_dir() can now return an error
      mysys/my_rename.c:
        my_sync_dir() can now return an error.
        Do a single sync if "from" and "to" are the same directory.
        #ifdef here to not even compile dirname_part() if useless.
      mysys/my_sync.c:
        more comments.
        A compilation error if no way to make my_sync() work (I guess
        we don't want to ship a binary which cannot do any sync at all;
        users of strange OSes compile from source and can remove
        the #error).
        my_sync_dir() now returns an error (except for certain errno values
        considered ok; EIO "input/output error" is not ok).
      sql/unireg.cc:
        my_sync_dir() now returns an error which must be tested
      adfba203
    • unknown's avatar
      Merge gbichot@bk-internal.mysql.com:/home/bk/mysql-maria · 33195266
      unknown authored
      into  gbichot3.local:/home/mysql_src/mysql-maria
      
      
      33195266
    • unknown's avatar
      shut up signedness warnings in atomic ops in gcc · 354d4a7e
      unknown authored
      
      unittest/mysys/my_atomic-t.c:
        try both signed and unsigned arguments for atomic ops
      354d4a7e
    • unknown's avatar
      Merge gbichot@bk-internal.mysql.com:/home/bk/mysql-maria · 4124839e
      unknown authored
      into  gbichot3.local:/home/mysql_src/mysql-maria
      
      
      4124839e
  3. 21 Nov, 2006 2 commits
    • unknown's avatar
      Maria - various fixes around durability of files: · a41ac15b
      unknown authored
      1) on Mac OS X >=10.3, fcntl() is recommended over fsync (from the
      man page: "[With fsync()] the disk drive may also re-order the data
      so that later writes may be present while earlier writes are not.
      Applications such as databases that require a strict ordering of writes
      should use F_FULLFSYNC to ensure their data is written in the order
      they expect"). I have seen two other pieces of software changing from
      fsync to F_FULLFSYNC on Mac OS X.
      2) to make a file creation/deletion/renaming durable on Linux (at least
      ext2 as I have tested) (see "man fsync"), a fsync() on the directory
      is needed: new functions to do that, and a flag MY_SYNC_DIR to do
      it in my_create/my_delete/my_rename.
      3) now using this directory syncing when creating he frm if
      opt_sync_frm, and for Maria's control file when it is created.
      
      
      include/my_sys.h:
        new flag to my_create/my_delete/my_rename, which asks to sync the
        directory after the operation is done (currently does nothing except
        on Linux)
      libmysql/CMakeLists.txt:
        my_create() now depends on my_sync() so my_sync is needed for libmysql
      libmysql/Makefile.shared:
        my_create() now depends on my_sync() so my_sync is needed for libmysql
      mysys/my_create.c:
        my_create() can now sync the directory if asked for
      mysys/my_delete.c:
        my_delete() can now sync the directory if asked for
      mysys/my_open.c:
        it was a bug that my_close() is done on fd but a positive fd would
        still be returned, by my_register_filename().
      mysys/my_rename.c:
        my_rename() can now sync the two directories (the one of "from" and
        the one of "to") if asked for.
      mysys/my_sync.c:
        On recent Mac OS X, fcntl(F_FULLFSYNC) is recommended over fsync()
        (see "man fsync" on Mac OS X 10.3).
        my_sync_dir(): to sync a directory after a file creation/deletion/
        renaming; can be called directly or via MY_SYNC_DIR in my_create/
        my_delete/my_rename(). No-op except on Linux (see "man fsync" on Linux).
        my_sync_dir_from_file(): same as above, just more practical when the
        caller has a file name but no directory name ready.
        Should the #warning even be a #error? I mean do we want to release
        binaries which don't guarantee any durability?
      sql/log.cc:
        a TODO for the future.
      sql/unireg.cc:
        If we sync the frm it makes sense to also sync its creation in the
        directory.
      storage/maria/ma_control_file.c:
        control file is vital, try to make it to disk
      a41ac15b
    • unknown's avatar
      Merge desktop.sanja.is.com.ua:/home/bell/mysql/bk/mysql-maria · 5c796096
      unknown authored
      into  desktop.sanja.is.com.ua:/home/bell/mysql/bk/work-maria-pagecache
      
      
      5c796096
  4. 19 Nov, 2006 1 commit
  5. 17 Nov, 2006 2 commits
  6. 16 Nov, 2006 3 commits
    • unknown's avatar
      Maria: fix for compiler warning (signed-ness). · 3becab22
      unknown authored
          #warning to warn (!) about current issues in the pagecache hindering
          checkpoint (we will have to fix them!).
      
      
      mysys/mf_pagecache.c:
        fix for compiler warning (signed-ness).
        #warning to warn (!) about current issues in the pagecache hindering
        checkpoint (we will have to fix them!).
      3becab22
    • unknown's avatar
      Maria - WL#3134 Key cache to Page cache conversion · 6691ce30
      unknown authored
      Moving the test_pagecache_ tests from mysys to unittest/mysys.
      Means fixing includes to work with the new directory, some Makefile.am
      editing, replacing memset() with bfill().
      test_page_cache_*.c renamed to mf_pagecache_*-t.c (-t is the standard
      suffix for tests in the mytap protocol).
      Also added plan() and exit_status() calls to tests.
      Sanja, I put some TODOs for you at the start of mf_pagecache_*.c
      
      
      unittest/mysys/test_file.h:
        Rename: mysys/test_file.h -> unittest/mysys/test_file.h
      mysys/Makefile.am:
        pagecache test files move to top/unittest/mysys
      mysys/mf_pagecache.c:
        my_bit.h needed to compile.
      unittest/mysys/Makefile.am:
        INCLUDES is a better place for includes than AM_CPPFLAGS (the latter
        get overriden by prog_CPPFLAGS, which is not desirable here).
        Adding pagecache's test programs (moved from mysys);
        test_pagecache_* has been renamed to mf_pagecache*-t
        (-t is the required suffix for test executables in the mytap framework).
      unittest/mysys/mf_pagecache_consist.c:
        fixing includes to work with the new directory.
        The test must return an exit code informing if any part failed.
        TODOs for Sanja.
      unittest/mysys/mf_pagecache_single.c:
        fixing includes to work with new directory.
        adding a plan() to account for the number of tests.
        Adding exit_status() to tell how many tests failed.
        memset() was giving a compilation warning (implicit declaration etc),
        properly due to me removing stdio.h etc, so I replaced it with bfill().
        TODOs for Sanja.
      unittest/mysys/test_file.c:
        moved from mysys (piece of the page cache tests) and includes fixed.
      6691ce30
    • unknown's avatar
      post-review fixes. · 915cebdd
      unknown authored
      tablockman: fixed a bug in finding a blocker lock
      
      
      mysys/my_getsystime.c:
        this is no longer true
      storage/maria/lockman.h:
        post-review fixes
      storage/maria/tablockman.h:
        post-review fixes
      storage/maria/unittest/lockman-t.c:
        post-review fixes
      storage/maria/unittest/lockman1-t.c:
        post-review fixes
      storage/maria/unittest/lockman2-t.c:
        post-review fixes
      include/my_atomic.h:
        moved intptr definition to my_global.h
      storage/maria/tablockman.c:
        post-review fixes
      BUILD/SETUP.sh:
        add -DMY_LF_EXTRA_DEBUG to debug builds
      include/atomic/nolock.h:
        suppress warning
      include/my_global.h:
        suppress warning
      mysys/lf_alloc-pin.c:
        post-review fixes
      mysys/lf_dynarray.c:
        post-review fixes
      mysys/lf_hash.c:
        post-review fixes
      storage/maria/trnman.c:
        suppress warning
      include/lf.h:
        post-review fix
      915cebdd
  7. 15 Nov, 2006 1 commit
    • unknown's avatar
      fixed typo · 9a06c502
      unknown authored
      
      storage/maria/CMakeLists.txt:
        Rename: storage/maria/_MakeLists.txt -> storage/maria/CMakeLists.txt
      9a06c502
  8. 14 Nov, 2006 2 commits
  9. 12 Nov, 2006 3 commits
    • unknown's avatar
      postreview fixes · e5858e1f
      unknown authored
      fixed bug in the pagecache which lead to assertion in multithread test
      
      
      include/pagecache.h:
        post review fixes:
         - comments fixed
         - types fixed
         - keyword 'extern' added to all interface functions
      mysys/mf_pagecache.c:
        postreview fixes:
         - comments fixed and added
         - types fixed
         - typo fixed
        Added write locking flag set when we took a block from LRU and going to free it (to prevent locking/using it for write)
      mysys/test_pagecache_consist.c:
        pagecache size reduced (to be able reproduce problems found by Guilhem)
        typo in the comment fixed
      e5858e1f
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-maria · 966e4b44
      unknown authored
      into  janus.mylan:/usr/home/serg/Abk/mysql-maria
      
      
      966e4b44
    • unknown's avatar
      minor unittest fixes · 41f890bc
      unknown authored
      
      storage/maria/lockman.c:
        restore removed lines
      storage/maria/unittest/lockman2-t.c:
        fix the plan
      41f890bc
  10. 10 Nov, 2006 3 commits
    • unknown's avatar
      Maria: importing change made to MyISAM's mi_test_all, into Maria's ma_test_all · f6edbbc8
      unknown authored
      This makes an expected warning message about the index file's size, go away,
      as intended.
      
      
      storage/maria/ma_test_all.sh:
        importing change made to MyISAM's mi_test_all, into Maria's ma_test_all
        This makes an expected warning message about the index file's size, go away,
        as intended.
      f6edbbc8
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-maria · 45109713
      unknown authored
      into  janus.mylan:/usr/home/serg/Abk/mysql-maria
      
      
      45109713
    • unknown's avatar
      comments · aad040fd
      unknown authored
      
      storage/maria/tablockman.c:
        comments. bugfix - a special case in release_locks
      storage/maria/unittest/lockman1-t.c:
        updated
      storage/maria/unittest/lockman2-t.c:
        new tests
      aad040fd
  11. 09 Nov, 2006 1 commit
    • unknown's avatar
      lock manager optimized for table locks · 96d3604d
      unknown authored
      
      storage/maria/unittest/lockman1-t.c:
        New BitKeeper file ``storage/maria/unittest/lockman1-t.c''
      storage/maria/tablockman.c:
        New BitKeeper file ``storage/maria/tablockman.c''
      storage/maria/tablockman.h:
        New BitKeeper file ``storage/maria/tablockman.h''
      storage/maria/unittest/lockman2-t.c:
        New BitKeeper file ``storage/maria/unittest/lockman2-t.c''
      96d3604d
  12. 08 Nov, 2006 1 commit
  13. 30 Oct, 2006 2 commits
    • unknown's avatar
      fix dynarray_idxes_in_prev_level[] values · fe382a9f
      unknown authored
      fe382a9f
    • unknown's avatar
      Manually importing Ingo's fix for BUG#22119 · 887383d4
      unknown authored
      "Changing MI_KEY_BLOCK_LENGTH makes a wrong myisamchk"
      in the Maria tree as it is really needed to get "ma_test_all" to pass
      (this bug showed up in Maria first, not in MyISAM).
      Now ma_test_all does not have corruption messages about test2 anymore,
      and shows the same output as mi_test_all except that
      ma_test_all has this at the start:
      lt-maria_chk: MARIA file test1
      lt-maria_chk: warning: Size of indexfile is: 8192          Should be: 16384
      MARIA-table 'test1' is usable but should be fixed
      This was already true before importing the bugfix.
      Wonder if normal.
      NOTE: this bugfix is currently in 5.1-engines, in a few days
      will be in the main 5.1, then we'll merge 5.1
      into Maria: this will merge the bugfix into storage/myisam, but there
      will be no need to apply it to storage/maria again. I just couldn't
      wait a few days for the 5.1-engines->5.1 merge to be allowed.
      
      
      mysql-test/r/maria.result:
        result update
      mysql-test/t/maria.test:
        test for BUG#22119
      storage/maria/ma_check.c:
        fix for BUG#22119
      887383d4
  14. 27 Oct, 2006 2 commits
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-maria · 8e971a05
      unknown authored
      into  janus.mylan:/usr/home/serg/Abk/mysql-maria
      
      
      storage/maria/trnman.c:
        Auto merged
      8e971a05
    • unknown's avatar
      comments, minor changes · 7ca33ae5
      unknown authored
      ---
      comments
      
      
      mysys/lf_alloc-pin.c:
        comments
      mysys/lf_dynarray.c:
        comments
      mysys/lf_hash.c:
        comments, charset-aware comparison
      storage/maria/trnman.c:
        comments
      storage/maria/unittest/lockman-t.c:
        test case for a bug
      unittest/mysys/my_atomic-t.c:
        removed mistakenly copied line
      7ca33ae5
  15. 23 Oct, 2006 2 commits
  16. 22 Oct, 2006 1 commit
  17. 21 Oct, 2006 2 commits
  18. 20 Oct, 2006 1 commit
    • unknown's avatar
      more post-review fixes - comments, renames, error checks in unit tests · fb818dd7
      unknown authored
      concurrency bug in lock manager
      
      
      include/my_global.h:
        compile-time assert macro
      mysys/my_atomic.c:
        use compile_time_assert() macro
      storage/maria/lockman.c:
        bug in concurrent lockdelete (with retries)
      storage/maria/trnman.c:
        more post-review fixes - comments, renames
      storage/maria/trnman.h:
        more post-review fixes - comments
      storage/maria/unittest/lockman-t.c:
        friendlier error checks
      storage/maria/unittest/trnman-t.c:
        friendlier error checks
      fb818dd7
  19. 19 Oct, 2006 2 commits
  20. 18 Oct, 2006 1 commit
    • unknown's avatar
      lock manager passed unit tests · 12a55aea
      unknown authored
      
      storage/maria/trnman.c:
        comments
      include/my_dbug.h:
        make DBUG_ASSERT always a statement
      storage/maria/lockman.h:
        comments
      include/lf.h:
        lf_pinbox - don't use a fixed-size purgatory.
      mysys/lf_alloc-pin.c:
        lf_pinbox - don't use a fixed-size purgatory.
      mysys/lf_hash.c:
        lf_pinbox - don't use a fixed-size purgatory.
      storage/maria/lockman.c:
        removed IGNORE_ME/UPGDARED matching - it was wrong in the first place.
        updated for "lf_pinbox - don't use a fixed-size purgatory"
      storage/maria/unittest/lockman-t.c:
        IGNORE_ME/UPGRADED pair counting bugtest.
        more tests
      unittest/mysys/my_atomic-t.c:
        lf_pinbox - don't use a fixed-size purgatory.
      12a55aea
  21. 15 Oct, 2006 1 commit
  22. 13 Oct, 2006 2 commits
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-maria · 67a2b7cf
      unknown authored
      into  janus.mylan:/usr/home/serg/Abk/mysql-maria
      
      
      configure.in:
        Auto merged
      include/my_global.h:
        Auto merged
      include/my_sys.h:
        Auto merged
      mysys/Makefile.am:
        Auto merged
      sql/item_func.cc:
        Auto merged
      sql/mysql_priv.h:
        Auto merged
      sql/mysqld.cc:
        Auto merged
      sql/set_var.cc:
        Auto merged
      sql/sql_parse.cc:
        Auto merged
      sql/sql_select.cc:
        Auto merged
      sql/sql_test.cc:
        Auto merged
      storage/maria/Makefile.am:
        Auto merged
      storage/maria/ha_maria.cc:
        Auto merged
      storage/myisam/ha_myisam.cc:
        Auto merged
      unittest/Makefile.am:
        Auto merged
      unittest/mysys/my_atomic-t.c:
        merged
      67a2b7cf
    • unknown's avatar
      push for trnman review · c2872baf
      unknown authored
      (lockmanager still fails unit tests)
      
      
      BitKeeper/deleted/.del-Makefile.am~4375ae3d4de2bdf0:
        Delete: unittest/maria/Makefile.am
      configure.in:
        silence up configure warnings, don't generate unittest/maria/Makefile
      include/atomic/nolock.h:
        s/LOCK/LOCK_prefix/
      include/atomic/x86-gcc.h:
        s/LOCK/LOCK_prefix/
      include/atomic/x86-msvc.h:
        s/LOCK/LOCK_prefix/
      include/lf.h:
        pin asserts, renames
      include/my_atomic.h:
        move cleanup
      include/my_bit.h:
        s/uint/uint32/
      mysys/lf_dynarray.c:
        style fixes, split for() in two, remove if()s
      mysys/lf_hash.c:
        renames, minor fixes
      mysys/my_atomic.c:
        run-time assert -> compile-time assert
      storage/maria/Makefile.am:
        lockman here
      storage/maria/unittest/Makefile.am:
        new unit tests
      storage/maria/unittest/trnman-t.c:
        lots of changes
      storage/maria/lockman.c:
        many changes:
        second meaning of "blocker"
        portability: s/gettimeofday/my_getsystime/
        move mutex/cond out of LOCK_OWNER - it creates a race condition
        that will be fixed in a separate changeset
        increment lm->count for every element, not only for distinct ones -
        because we cannot decrease it for distinct elements only :(
      storage/maria/lockman.h:
        move mutex/cond out of LOCK_OWNER
      storage/maria/trnman.c:
        move mutex/cond out of LOCK_OWNER
        atomic-ops to access short_trid_to_trn[]
      storage/maria/trnman.h:
        move mutex/cond out of LOCK_OWNER
      storage/maria/unittest/lockman-t.c:
        unit stress test
      c2872baf