summaryrefslogtreecommitdiff
path: root/sql/unireg.h
diff options
context:
space:
mode:
authorunknown <cmiller@zippy.cornsilk.net>2007-10-16 16:11:50 -0400
committerunknown <cmiller@zippy.cornsilk.net>2007-10-16 16:11:50 -0400
commitf8ecea29bcc8dd403cfac111c8734ac28d43605e (patch)
tree8b9e521083780437237f38683ce7cab9518c7e78 /sql/unireg.h
parent7e82cf4f2dc4e825da94f0a9161162172d6a00c5 (diff)
downloadmariadb-git-f8ecea29bcc8dd403cfac111c8734ac28d43605e.tar.gz
Doxygenize comments.
Diffstat (limited to 'sql/unireg.h')
-rw-r--r--sql/unireg.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/sql/unireg.h b/sql/unireg.h
index f0b4a88c7f8..2e0172ce31d 100644
--- a/sql/unireg.h
+++ b/sql/unireg.h
@@ -155,34 +155,34 @@
#define OPEN_VIEW 8192 /* Allow open on view */
#define OPEN_VIEW_NO_PARSE 16384 /* Open frm only if it's a view,
but do not parse view itself */
-/*
+/**
This flag is used in function get_all_tables() which fills
I_S tables with data which are retrieved from frm files and storage engine
The flag means that we need to open FRM file only to get necessary data.
*/
#define OPEN_FRM_FILE_ONLY 32768
-/*
+/**
This flag is used in function get_all_tables() which fills
I_S tables with data which are retrieved from frm files and storage engine
The flag means that we need to process tables only to get necessary data.
Views are not processed.
*/
#define OPEN_TABLE_ONLY OPEN_FRM_FILE_ONLY*2
-/*
+/**
This flag is used in function get_all_tables() which fills
I_S tables with data which are retrieved from frm files and storage engine
The flag means that we need to process views only to get necessary data.
Tables are not processed.
*/
#define OPEN_VIEW_ONLY OPEN_TABLE_ONLY*2
-/*
+/**
This flag is used in function get_all_tables() which fills
I_S tables with data which are retrieved from frm files and storage engine.
The flag means that we need to open a view using
open_normal_and_derived_tables() function.
*/
#define OPEN_VIEW_FULL OPEN_VIEW_ONLY*2
-/*
+/**
This flag is used in function get_all_tables() which fills
I_S tables with data which are retrieved from frm files and storage engine.
The flag means that I_S table uses optimization algorithm.