~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to lib/GenTest/Executor/Drizzle.pm

Modified Drizzle Executor to look for YES rather than TRUE when performing metadata queries

Show diffs side-by-side

added added

removed removed

Lines of Context:
594
594
                    "ELSE 'misc' END, ".
595
595
               "column_name, ".
596
596
               "CASE WHEN IS_USED_IN_PRIMARY = 'TRUE' THEN 'primary' ".
597
 
                    "WHEN IS_INDEXED = 'TRUE' THEN 'indexed' ".
 
597
                    "WHEN IS_INDEXED = 'YES' THEN 'indexed' ".
598
598
                    "ELSE 'ordinary' END ".
599
599
         "FROM data_dictionary.tables INNER JOIN ".
600
600
              "data_dictionary.columns USING(table_schema, table_name) ORDER BY table_schema, table_name";