diff options
author | unknown <bell@sanja.is.com.ua> | 2004-09-03 21:38:01 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2004-09-03 21:38:01 +0300 |
commit | 1948909aeeb1e0ecebfc55802756667f2aeb9b81 (patch) | |
tree | 7ea5ed5f4eb5fd90a23dd3d311171787407409d6 /sql/table.h | |
parent | 5feaa7b677a401b5e08c0cc605bcc70b2a1be546 (diff) | |
download | mariadb-git-1948909aeeb1e0ecebfc55802756667f2aeb9b81.tar.gz |
ufter review fix
sql/sql_view.cc:
name of variable changed to make merge easy
removed charset field
sql/table.h:
removed charset field
layout fixed
Diffstat (limited to 'sql/table.h')
-rw-r--r-- | sql/table.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sql/table.h b/sql/table.h index 93a7b8f7cf5..e8905ba092f 100644 --- a/sql/table.h +++ b/sql/table.h @@ -224,9 +224,8 @@ typedef struct st_table_list LEX_STRING view_db; /* save view database */ LEX_STRING view_name; /* save view name */ LEX_STRING timestamp; /* GMT time stamp of last operation */ - LEX_STRING syscharset; /* charset of VIEW query text*/ ulonglong file_version; /* version of file's field set */ - ulonglong updatable_view; /* VIEW can be updated */ + ulonglong updatable_view; /* VIEW can be updated */ ulonglong revision; /* revision control number */ ulonglong algorithm; /* 0 any, 1 tmp tables , 2 merging */ uint effective_algorithm; /* which algorithm was really used */ |