diff options
author | monty@donna.mysql.com <> | 2000-10-16 02:29:48 +0300 |
---|---|---|
committer | monty@donna.mysql.com <> | 2000-10-16 02:29:48 +0300 |
commit | 422979694649ad87e1406a8ea408467cbc4e5d0e (patch) | |
tree | 5027f963ce243feb9758c98bc0d3be35c3b4c614 /sql/handler.h | |
parent | 9323e733ff9bfbbc7555de94cb9b603f47502905 (diff) | |
download | mariadb-git-422979694649ad87e1406a8ea408467cbc4e5d0e.tar.gz |
Automatic primary key for BDB tables
Diffstat (limited to 'sql/handler.h')
-rw-r--r-- | sql/handler.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/handler.h b/sql/handler.h index 1457c033ed9..269f60eec16 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -202,6 +202,7 @@ public: virtual double read_time(ha_rows rows) { return rows; } virtual bool fast_key_read() { return 0;} virtual bool has_transactions(){ return 0;} + virtual uint extra_rec_buf_length() { return 0; } virtual int index_init(uint idx) { active_index=idx; return 0;} virtual int index_end() {return 0; } |