diff options
author | Konstantin Osipov <kostja@sun.com> | 2009-08-12 17:11:06 +0400 |
---|---|---|
committer | Konstantin Osipov <kostja@sun.com> | 2009-08-12 17:11:06 +0400 |
commit | b28f09bd8cf65a0ce7dbe8fb04033cdf7f9323ff (patch) | |
tree | 93134a8ebdd911b1810c559d5ace514af1468eb8 /sql/table.h | |
parent | 1402275a53db6fc931739de46f88121924de1e02 (diff) | |
download | mariadb-git-b28f09bd8cf65a0ce7dbe8fb04033cdf7f9323ff.tar.gz |
A follow up patch for the follow up patch for Bug#45829
"CREATE TABLE TRANSACTIONAL PAGE_CHECKSUM ROW_FORMAT=PAGE accepted,
does nothing".
Put back stubs for members of structures that are shared between
sql/ and pluggable storage engines. to not break ABI unnecessarily.
To be NULL-merged into 5.4, where we do break the ABI already.
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 3b6a0871d09..40372fa91cf 100644 --- a/sql/table.h +++ b/sql/table.h @@ -361,6 +361,8 @@ typedef struct st_table_share } enum row_type row_type; /* How rows are stored */ enum tmp_table_type tmp_table; + enum enum_ha_unused unused1; + enum enum_ha_unused unused2; uint ref_count; /* How many TABLE objects uses this */ uint open_count; /* Number of tables in open list */ |