~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/sql_yacc.yy

  • Committer: Brian Aker
  • Date: 2008-06-29 19:19:20 UTC
  • Revision ID: brian@tangent.org-20080629191920-ioqljg6ihntzcz9y
More dead code removal.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5650
5650
            if (prepare_schema_table(YYTHD, lex, $4, SCH_COLUMNS))
5651
5651
              MYSQL_YYABORT;
5652
5652
          }
5653
 
        | NEW_SYM MASTER_SYM FOR_SYM SLAVE
5654
 
          WITH MASTER_LOG_FILE_SYM EQ
5655
 
          TEXT_STRING_sys /* $8 */
5656
 
          AND_SYM MASTER_LOG_POS_SYM EQ
5657
 
          ulonglong_num /* $12 */
5658
 
          AND_SYM MASTER_SERVER_ID_SYM EQ
5659
 
          ulong_num /* $16 */
5660
 
          {
5661
 
            Lex->sql_command = SQLCOM_SHOW_NEW_MASTER;
5662
 
            Lex->mi.log_file_name = $8.str;
5663
 
            Lex->mi.pos = $12;
5664
 
            Lex->mi.server_id = $16;
5665
 
          }
5666
5653
        | master_or_binary LOGS_SYM
5667
5654
          {
5668
5655
            Lex->sql_command = SQLCOM_SHOW_BINLOGS;