~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/innobase/handler/ha_innodb.cc

  • Committer: Brian Aker
  • Date: 2008-07-01 08:15:04 UTC
  • Revision ID: brian@tangent.org-20080701081504-qn3jzgsbb2twnchs
Large file and ftruncate() support

Show diffs side-by-side

added added

removed removed

Lines of Context:
1483
1483
        os_innodb_umask = (ulint)my_umask;
1484
1484
 
1485
1485
        /* First calculate the default path for innodb_data_home_dir etc.,
1486
 
        in case the user has not given any value.
1487
 
 
1488
 
        Note that when using the embedded server, the datadirectory is not
1489
 
        necessarily the current directory of this program. */
1490
 
 
1491
 
        if (mysqld_embedded) {
1492
 
                default_path = mysql_real_data_home;
1493
 
                fil_path_to_mysql_datadir = mysql_real_data_home;
1494
 
        } else {
 
1486
          in case the user has not given any value. */
 
1487
 
 
1488
        {
1495
1489
                /* It's better to use current lib, to keep paths short */
1496
1490
                current_dir[0] = FN_CURLIB;
1497
1491
                current_dir[1] = FN_LIBCHAR;
1637
1631
        srv_use_adaptive_hash_indexes =
1638
1632
                (ibool) innobase_use_adaptive_hash_indexes;
1639
1633
 
1640
 
        srv_print_verbose_log = mysqld_embedded ? 0 : 1;
 
1634
        srv_print_verbose_log = 1;
1641
1635
 
1642
1636
        /* Store the default charset-collation number of this MySQL
1643
1637
        installation */