From aab7ac880d5b1737a060416716bc618ee7cfd78a Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 22 Sep 2005 13:09:14 +0300 Subject: [PATCH] InnoDB: correct two misleading comments innobase/include/data0type.ic: Correct the comment of dtype_get_min_size() sql/ha_innodb.h: Correct the comment of innobase_set_cursor_view() --- innobase/include/data0type.ic | 2 +- sql/ha_innodb.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/innobase/include/data0type.ic b/innobase/include/data0type.ic index 06d45dd5501..d4a7b3c64b8 100644 --- a/innobase/include/data0type.ic +++ b/innobase/include/data0type.ic @@ -420,7 +420,7 @@ dtype_get_fixed_size( } /*************************************************************************** -Returns the size of a fixed size data type, 0 if not a fixed size type. */ +Returns the minimum size of a data type. */ UNIV_INLINE ulint dtype_get_min_size( diff --git a/sql/ha_innodb.h b/sql/ha_innodb.h index 672e48d9817..1c02ac20bb4 100644 --- a/sql/ha_innodb.h +++ b/sql/ha_innodb.h @@ -344,4 +344,4 @@ restored to a transaction read view. */ void innobase_set_cursor_view( /*=====================*/ - void* curview); /* in: Consistent read view to be closed */ + void* curview); /* in: Consistent read view to be set */