diff options
author | hf@deer.mysql.r18.ru <> | 2003-01-21 20:20:46 +0400 |
---|---|---|
committer | hf@deer.mysql.r18.ru <> | 2003-01-21 20:20:46 +0400 |
commit | 9fb261e3844ff73f9e1788df7390a5d341491b94 (patch) | |
tree | c9e7b6941dd01018f2f3c6769a50be4c05a7837e /sql/table.h | |
parent | 9967da942b6db3dce37b1cda97a630a8d8a14f90 (diff) | |
download | mariadb-git-9fb261e3844ff73f9e1788df7390a5d341491b94.tar.gz |
SCRUM
Default in UPDATE & SELECT
Diffstat (limited to 'sql/table.h')
-rw-r--r-- | sql/table.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/table.h b/sql/table.h index 75f16797050..dedad37f6c6 100644 --- a/sql/table.h +++ b/sql/table.h @@ -54,7 +54,6 @@ struct st_table { Field_blob **blob_field; /* Pointer to blob fields */ HASH name_hash; /* hash of field names */ byte *record[3]; /* Pointer to records */ - byte *default_values; uint fields; /* field count */ uint reclength; /* Recordlength */ uint rec_buff_length; @@ -137,6 +136,7 @@ struct st_table { uint derived_select_number; THD *in_use; /* Which thread uses this */ struct st_table *next,*prev; + byte *default_values() { return record[2]; } }; |