summaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorunknown <heikki@hundin.mysql.fi>2004-11-16 22:50:29 +0200
committerunknown <heikki@hundin.mysql.fi>2004-11-16 22:50:29 +0200
commit190227dc57b9cbceafa4084ebe044ff3bf73a435 (patch)
tree359cacb44a133fcd9fb93b8c93189b4f0a39823e /sql
parenta710ebb41347be2985027f279bc1533203be6ec9 (diff)
parentd711df11f558547b2351097cc8cc7e8b2d2b7344 (diff)
downloadmariadb-git-190227dc57b9cbceafa4084ebe044ff3bf73a435.tar.gz
Merge heikki@bk-internal.mysql.com:/home/bk/mysql-4.1
into hundin.mysql.fi:/home/heikki/mysql-4.1
Diffstat (limited to 'sql')
-rw-r--r--sql/ha_innodb.cc9
1 files changed, 3 insertions, 6 deletions
diff --git a/sql/ha_innodb.cc b/sql/ha_innodb.cc
index 8e9e5fd9ed0..07d8da63733 100644
--- a/sql/ha_innodb.cc
+++ b/sql/ha_innodb.cc
@@ -1505,17 +1505,14 @@ innobase_close_connection(
*****************************************************************************/
/********************************************************************
-This function is not relevant since we store the tables and indexes
-into our own tablespace, not as files, whose extension this function would
-give. */
+Gives the file extension of an InnoDB single-table tablespace. */
const char**
ha_innobase::bas_ext() const
/*========================*/
- /* out: file extension strings, currently not
- used */
+ /* out: file extension string */
{
- static const char* ext[] = {".InnoDB", NullS};
+ static const char* ext[] = {".ibd", NullS};
return(ext);
}