1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00
Default in UPDATE & SELECT
This commit is contained in:
hf@deer.mysql.r18.ru
2003-01-21 20:20:46 +04:00
parent 9967da942b
commit 9fb261e384
6 changed files with 43 additions and 36 deletions

View File

@ -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]; }
};