diff options
author | Guilhem Bichot <guilhem@mysql.com> | 2009-07-29 10:54:20 +0200 |
---|---|---|
committer | Guilhem Bichot <guilhem@mysql.com> | 2009-07-29 10:54:20 +0200 |
commit | b1073fb7a75f3647e818153d0d4caff47ea56fc3 (patch) | |
tree | 11695ad26b01f87834d8b8b7c8dece060209048c /sql/table.h | |
parent | 9fc2f2e3220b8be00967f6725479d106266c16bb (diff) | |
download | mariadb-git-b1073fb7a75f3647e818153d0d4caff47ea56fc3.tar.gz |
Bug#45829 "CREATE TABLE TRANSACTIONAL PAGE_CHECKSUM ROW_FORMAT=PAGE accepted, does nothing":
those keywords do nothing in 5.1 (they are meant for future versions, for example featuring the Maria engine)
so they are here removed from the syntax. Adding those keywords to future versions when needed is:
- WL#5034 "Add TRANSACTIONA=0|1 and PAGE_CHECKSUM=0|1 clauses to CREATE TABLE"
- WL#5037 "New ROW_FORMAT value for CREATE TABLE: PAGE"
Diffstat (limited to 'sql/table.h')
-rw-r--r-- | sql/table.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/table.h b/sql/table.h index cb53013cd59..98ede52cd99 100644 --- a/sql/table.h +++ b/sql/table.h @@ -361,7 +361,9 @@ typedef struct st_table_share } enum row_type row_type; /* How rows are stored */ enum tmp_table_type tmp_table; + /** Transactional or not. Unused; reserved for future versions. */ enum ha_choice transactional; + /** Per-page checksums or not. Unused; reserved for future versions. */ enum ha_choice page_checksum; uint ref_count; /* How many TABLE objects uses this */ |