Tup.Cobar4Net.Parser.Recognizer.Mysql.Syntax.MySqlDdlParser.MySqlDdlParser C# (CSharp) Метод

MySqlDdlParser() статический приватный Метод

static private MySqlDdlParser ( ) : System
Результат System
        static MySqlDdlParser()
        {
            specialIdentifiers["TRUNCATE"] = SpecialIdentifier.Truncate;
            specialIdentifiers["TEMPORARY"] = SpecialIdentifier.Temporary;
            specialIdentifiers["DEFINER"] = SpecialIdentifier.Definer;
            specialIdentifiers["KEY_BLOCK_SIZE"] = SpecialIdentifier.KeyBlockSize;
            specialIdentifiers["COMMENT"] = SpecialIdentifier.Comment;
            specialIdentifiers["DYNAMIC"] = SpecialIdentifier.Dynamic;
            specialIdentifiers["FIXED"] = SpecialIdentifier.Fixed;
            specialIdentifiers["BIT"] = SpecialIdentifier.Bit;
            specialIdentifiers["DATE"] = SpecialIdentifier.Date;
            specialIdentifiers["TIME"] = SpecialIdentifier.Time;
            specialIdentifiers["TIMESTAMP"] = SpecialIdentifier.Timestamp;
            specialIdentifiers["DATETIME"] = SpecialIdentifier.Datetime;
            specialIdentifiers["YEAR"] = SpecialIdentifier.Year;
            specialIdentifiers["TEXT"] = SpecialIdentifier.Text;
            specialIdentifiers["ENUM"] = SpecialIdentifier.Enum;
            specialIdentifiers["ENGINE"] = SpecialIdentifier.Engine;
            specialIdentifiers["AUTO_INCREMENT"] = SpecialIdentifier.AutoIncrement;
            specialIdentifiers["AVG_ROW_LENGTH"] = SpecialIdentifier.AvgRowLength;
            specialIdentifiers["CHECKSUM"] = SpecialIdentifier.Checksum;
            specialIdentifiers["CONNECTION"] = SpecialIdentifier.Connection;
            specialIdentifiers["DATA"] = SpecialIdentifier.Data;
            specialIdentifiers["DELAY_KEY_WRITE"] = SpecialIdentifier.DelayKeyWrite;
            specialIdentifiers["INSERT_METHOD"] = SpecialIdentifier.InsertMethod;
            specialIdentifiers["MAX_ROWS"] = SpecialIdentifier.MaxRows;
            specialIdentifiers["MIN_ROWS"] = SpecialIdentifier.MinRows;
            specialIdentifiers["PACK_KEYS"] = SpecialIdentifier.PackKeys;
            specialIdentifiers["PASSWORD"] = SpecialIdentifier.Password;
            specialIdentifiers["ROW_FORMAT"] = SpecialIdentifier.RowFormat;
            specialIdentifiers["COMPRESSED"] = SpecialIdentifier.Compressed;
            specialIdentifiers["REDUNDANT"] = SpecialIdentifier.Redundant;
            specialIdentifiers["COMPACT"] = SpecialIdentifier.Compact;
            specialIdentifiers["MODIFY"] = SpecialIdentifier.Modify;
            specialIdentifiers["DISABLE"] = SpecialIdentifier.Disable;
            specialIdentifiers["ENABLE"] = SpecialIdentifier.Enable;
            specialIdentifiers["DISCARD"] = SpecialIdentifier.Discard;
            specialIdentifiers["IMPORT"] = SpecialIdentifier.Import;
            specialIdentifiers["CHARSET"] = SpecialIdentifier.Charset;
            specialIdentifiers["POLICY"] = SpecialIdentifier.Policy;
        }

Same methods

MySqlDdlParser::MySqlDdlParser ( MySqlLexer lexer, MySqlExprParser exprParser ) : System