~darrencassar/crib/trunk

« back to all changes in this revision

Viewing changes to INSTALL/crib.sql

  • Committer: root
  • Date: 2010-10-24 00:24:00 UTC
  • Revision ID: root@ubt-20101024002400-6bfsfef7u5kgnv5k
permissions

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
) ENGINE=MYISAM AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
69
69
 
70
70
 
71
 
DELIMITER ;;
 
71
DELIMITER $$
72
72
CREATE  PROCEDURE `info_object_size_reporting`()
73
73
BEGIN
74
74
 
135
135
                                        table_schema != 'crib' and
136
136
                                        table_schema not like '%test%';
137
137
 
138
 
END ;;
 
138
END $$
139
139
DELIMITER ;
140
140
 
141
141
 
142
 
DELIMITER ;;
 
142
DELIMITER $$
143
143
CREATE  PROCEDURE `info_reporting`()
144
144
BEGIN
145
145
 
355
355
            END WHILE cur_priv_loop;
356
356
 
357
357
        CLOSE cur_priv;
358
 
END ;;
 
358
END $$
359
359
DELIMITER ;