1. 15 Oct, 2007 4 commits
    • marko's avatar
      branches/zip: plug.in: Remove the check for aio.h and -lrt, which were · 278334e0
      marko authored
      never used.  Combine the three AC_CHECK_FUNCS tests.
      278334e0
    • marko's avatar
      branches/zip: buf_chunk_init(): Note that the function does not always · 0349b9d2
      marko authored
      return the requested amount of memory.
      0349b9d2
    • marko's avatar
      branches/zip: Allow a dynamically loaded InnoDB storage engine plugin · 7c68ba2e
      marko authored
      to replace a built-in instance of InnoDB in mysqld.  This is work in
      progress, with several limitations:
      
      * Other plugins defined in the builtin InnoDB are not disabled.
        However, InnoDB in MySQL 5.1 only defines the storage engine plugin,
        no INFORMATION_SCHEMA plugins.
      
      * The global C symbols in ha_innodb.so except innodb_hton_ptr and
        builtin_innobase_plugin will have to be redefined, e.g., by objcopy.
      
      * The storage engine cannot be called "InnoDB" to avoid a conflict with
        the builtin name.  Here we call it InnoDBzip.
      
      innobase_hton_name[]: Rename to "InnoDBzip" when building a dynamic plugin.
      
      innodb_plugin_init(): New function for the dynamic plugin, to copy
      and redirect configuration parameters from the builtin InnoDB.
      
      innodb_dynamic: New configuration parameter.  This has to be added
      to the builtin InnoDB in MySQL 5.1.  Also, innodb_hton_ptr must be made
      global there.
      
      innobase_init(): Interpret the parameter innodb_dynamic.
      
      Makefile.am: Redefine class ha_innobase to ha_innodb by a preprocessor
      define.  Apparently, C++ classes cannot be easily renamed by objcopy.
      7c68ba2e
    • marko's avatar
      branches/zip: innodb-index.test: Add FORCE INDEX directives and remove · 81761f5f
      marko authored
      those SELECTs whose ORDER BY cannot possibly make use of an index.
      81761f5f
  2. 12 Oct, 2007 9 commits
  3. 11 Oct, 2007 2 commits
    • vasil's avatar
      branches/zip: · abceb43b
      vasil authored
      Non-functional change: fix compiler warning:
      
      buf0buf.ic:637: warning: assignment discards qualifiers from pointer target type
      abceb43b
    • vasil's avatar
      branches/zip: · 9dbf703d
      vasil authored
      Non-functional change to improve readability.
      9dbf703d
  4. 10 Oct, 2007 2 commits
  5. 08 Oct, 2007 2 commits
    • marko's avatar
      branches/zip: innodb-index.result: Adapt the results to a patch from MySQL. · a8a47268
      marko authored
      Unfortunately, the patch seems to prevent MySQL from utilizing secondary
      indexes in the ORDER BY clauses.  Thus, the test no longer checks if newly
      created indexes are well-formed.
      
      ChangeSet@1.2528.98.1  2007-08-02 12:45:56-07:00  igor@mysql.com
      
      Fixed bug#28404.
      This patch adds cost estimation for the queries with ORDER BY / GROUP BY
      and LIMIT. 
      If there was a ref/range access to the table whose rows were required
      to be ordered in the result set the optimizer always employed this access
      though a scan by a different index that was compatible with the required 
      order could be cheaper to produce the first L rows of the result set.
      Now for such queries the optimizer makes a choice between the cheapest
      ref/range accesses not compatible with the given order and index scans
      compatible with it.
      a8a47268
    • vasil's avatar
      branches/zip: · fe92e646
      vasil authored
      Add diagnostic function ha_storage_get_size() to retrieve the amount of
      memory used by a ha_storage_t object.
      
      Approved by:	Marko
      fe92e646
  6. 05 Oct, 2007 7 commits
  7. 04 Oct, 2007 1 commit
  8. 03 Oct, 2007 6 commits
  9. 01 Oct, 2007 4 commits
  10. 28 Sep, 2007 3 commits
    • vasil's avatar
      branches/zip: · 598a8ca6
      vasil authored
      Remove bogus comment from ha_storage_empty().
      598a8ca6
    • vasil's avatar
      branches/zip: · 795a1798
      vasil authored
      Add const qualifier to the value returned by ha_storage_put().
      It must not be changed as this will invalidate the hash.
      795a1798
    • marko's avatar
      branches/zip: Add the function buf_page_get_block(), for converting · 20d7ea98
      marko authored
      from buf_page_t* to buf_block_t*.
      
      buf_page_can_relocate(): Replace the incorrect __attribute__((const))
      with __attribute__((pure)).
      20d7ea98