summaryrefslogtreecommitdiff
path: root/sql/table.h
diff options
context:
space:
mode:
authorunknown <bell@sanja.is.com.ua>2004-04-07 13:25:24 +0300
committerunknown <bell@sanja.is.com.ua>2004-04-07 13:25:24 +0300
commit08594c4795d9e673f8f514142489ce01954deba5 (patch)
treedece9888fe1343e2984889cfef41a8d06855dee7 /sql/table.h
parentffb47ca01e00cffd3546ed055f3220166d618a21 (diff)
downloadmariadb-git-08594c4795d9e673f8f514142489ce01954deba5.tar.gz
after review changes
sql/log_event.cc: non_cachable_table flag changed to cacheable_table sql/repl_failsafe.cc: non_cachable_table flag changed to cacheable_table sql/slave.cc: non_cachable_table flag changed to cacheable_table sql/sql_acl.cc: non_cachable_table flag changed to cacheable_table sql/sql_base.cc: non_cachable_table flag changed to cacheable_table sql/sql_cache.cc: non_cachable_table flag changed to cacheable_table sql/sql_help.cc: non_cachable_table flag changed to cacheable_table sql/sql_insert.cc: non_cachable_table flag changed to cacheable_table sql/sql_parse.cc: non_cachable_table flag changed to cacheable_table sql/sql_prepare.cc: renamed DEBUG tag sql/table.h: non_cachable_table flag changed to cacheable_table
Diffstat (limited to 'sql/table.h')
-rw-r--r--sql/table.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/table.h b/sql/table.h
index 0bae880a89f..7b30b03f1b4 100644
--- a/sql/table.h
+++ b/sql/table.h
@@ -193,7 +193,7 @@ typedef struct st_table_list
bool updating; /* for replicate-do/ignore table */
bool force_index; /* Prefer index over table scan */
bool ignore_leaves; /* Preload only non-leaf nodes */
- bool non_cachable_table; /* stop PS caching */
+ bool cacheable_table; /* stop PS caching */
} TABLE_LIST;
typedef struct st_changed_table_list