summaryrefslogtreecommitdiff
path: root/sql/handler.h
diff options
context:
space:
mode:
authorunknown <mskold@mysql.com>2005-02-14 09:22:14 +0100
committerunknown <mskold@mysql.com>2005-02-14 09:22:14 +0100
commitefdfda46169d2178849b0f8323137e5dbe32cf10 (patch)
tree0c6355d73bff3b60409dc396c4cac7e6a8450b3f /sql/handler.h
parentb744f5fbc1c24847e69a06f792d8f073d8f88cc8 (diff)
parenta0f6d69b911fdffe02c551e1774a72b2b39208f7 (diff)
downloadmariadb-git-efdfda46169d2178849b0f8323137e5dbe32cf10.tar.gz
Merge mskold@bk-internal.mysql.com:/home/bk/mysql-5.0-ndb
into mysql.com:/usr/local/home/marty/MySQL/test/mysql-5.0-ndb sql/handler.h: Auto merged
Diffstat (limited to 'sql/handler.h')
-rw-r--r--sql/handler.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/handler.h b/sql/handler.h
index e9bc6652443..6fc2552290d 100644
--- a/sql/handler.h
+++ b/sql/handler.h
@@ -388,6 +388,12 @@ public:
virtual ha_rows estimate_rows_upper_bound()
{ return records+EXTRA_RECORDS; }
+ /*
+ Get the row type from the storage engine. If this method returns
+ ROW_TYPE_NOT_USED, the information in HA_CREATE_INFO should be used.
+ */
+ virtual enum row_type get_row_type() const { return ROW_TYPE_NOT_USED; }
+
virtual const char *index_type(uint key_number) { DBUG_ASSERT(0); return "";}
int ha_index_init(uint idx)