diff options
author | Alexander Barkov <bar@mnogosearch.org> | 2013-02-07 13:34:27 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mnogosearch.org> | 2013-02-07 13:34:27 +0400 |
commit | 30c4b0ebc24fe0106e146b1f6577a4150e71e258 (patch) | |
tree | 592673d8c2f5b418833c3ee5fcfeb9dbf4ba1681 /storage/connect/checklvl.h | |
parent | 60c4cab3bd00621cc03afb1be6de01c8fab0c5f0 (diff) | |
download | mariadb-git-30c4b0ebc24fe0106e146b1f6577a4150e71e258.tar.gz |
- Fixing TAB to 2 spaces
- Fixing line endings from "\r\n" to "\n"
Diffstat (limited to 'storage/connect/checklvl.h')
-rw-r--r-- | storage/connect/checklvl.h | 84 |
1 files changed, 42 insertions, 42 deletions
diff --git a/storage/connect/checklvl.h b/storage/connect/checklvl.h index 81eb9d00e7b..5505534678d 100644 --- a/storage/connect/checklvl.h +++ b/storage/connect/checklvl.h @@ -1,42 +1,42 @@ -/************** PlgDBSem H Declares Source Code File (.H) **************/
-/* Name: CHKLVL.H Version 1.1 */
-/* */
-/* (C) Copyright to the author Olivier BERTRAND 2009 */
-/* */
-/* This file contains the definition of the checking level constants. */
-/***********************************************************************/
-
-#if !defined(_CHKLVL_DEFINED_)
-#define _CHKLVL_DEFINED_
-/***********************************************************************/
-/* Following definitions are used to indicate the level of checking. */
-/***********************************************************************/
-enum CHKLVL {CHK_NO = 0x00, /* No checking */
- CHK_TYPE = 0x01, /* Check types for Insert/Update */
- CHK_UPDATE = 0x02, /* Two pass checking of Update */
- CHK_DELETE = 0x04, /* Indexed checking of Delete */
- CHK_JOIN = 0x08, /* Check types joining tables */
- CHK_OPT = 0x10, /* Automatic optimize on changes */
- CHK_MANY = 0x20, /* Check many-to-many joins */
- CHK_ALL = 0x3F, /* All of the above */
- CHK_STD = 0x1E, /* Standard level of checking */
- CHK_MAXRES = 0x40, /* Prevent Maxres recalculation */
- CHK_ONLY = 0x100}; /* Just check, no action (NIY) */
-
-/***********************************************************************/
-/* Following definitions are used to indicate the execution mode. */
-/***********************************************************************/
-enum XMOD {XMOD_EXECUTE = 0, /* DOS execution mode */
- XMOD_PREPARE = 1, /* Prepare mode */
- XMOD_TEST = 2, /* Test mode */
- XMOD_CONVERT = 3}; /* HQL conversion mode */
-
-/***********************************************************************/
-/* Following definitions indicate the use of a temporay file. */
-/***********************************************************************/
-enum USETEMP {TMP_AUTO = 0, /* Best choice */
- TMP_NO = 1, /* Never */
- TMP_YES = 2, /* Always */
- TMP_FORCE = 3}; /* Forced for MAP tables */
-
-#endif // _CHKLVL_DEFINED_
+/************** PlgDBSem H Declares Source Code File (.H) **************/ +/* Name: CHKLVL.H Version 1.1 */ +/* */ +/* (C) Copyright to the author Olivier BERTRAND 2009 */ +/* */ +/* This file contains the definition of the checking level constants. */ +/***********************************************************************/ + +#if !defined(_CHKLVL_DEFINED_) +#define _CHKLVL_DEFINED_ +/***********************************************************************/ +/* Following definitions are used to indicate the level of checking. */ +/***********************************************************************/ +enum CHKLVL {CHK_NO = 0x00, /* No checking */ + CHK_TYPE = 0x01, /* Check types for Insert/Update */ + CHK_UPDATE = 0x02, /* Two pass checking of Update */ + CHK_DELETE = 0x04, /* Indexed checking of Delete */ + CHK_JOIN = 0x08, /* Check types joining tables */ + CHK_OPT = 0x10, /* Automatic optimize on changes */ + CHK_MANY = 0x20, /* Check many-to-many joins */ + CHK_ALL = 0x3F, /* All of the above */ + CHK_STD = 0x1E, /* Standard level of checking */ + CHK_MAXRES = 0x40, /* Prevent Maxres recalculation */ + CHK_ONLY = 0x100}; /* Just check, no action (NIY) */ + +/***********************************************************************/ +/* Following definitions are used to indicate the execution mode. */ +/***********************************************************************/ +enum XMOD {XMOD_EXECUTE = 0, /* DOS execution mode */ + XMOD_PREPARE = 1, /* Prepare mode */ + XMOD_TEST = 2, /* Test mode */ + XMOD_CONVERT = 3}; /* HQL conversion mode */ + +/***********************************************************************/ +/* Following definitions indicate the use of a temporay file. */ +/***********************************************************************/ +enum USETEMP {TMP_AUTO = 0, /* Best choice */ + TMP_NO = 1, /* Never */ + TMP_YES = 2, /* Always */ + TMP_FORCE = 3}; /* Forced for MAP tables */ + +#endif // _CHKLVL_DEFINED_ |