~jaypipes/drizzle/subscriber-plugin

1 by brian
clean slate
1
/* Copyright (C) 2004-2005 MySQL AB
2
3
   This program is free software; you can redistribute it and/or modify
4
   it under the terms of the GNU General Public License as published by
5
   the Free Software Foundation; version 2 of the License.
6
7
   This program is distributed in the hope that it will be useful,
8
   but WITHOUT ANY WARRANTY; without even the implied warranty of
9
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10
   GNU General Public License for more details.
11
12
   You should have received a copy of the GNU General Public License
13
   along with this program; if not, write to the Free Software
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA */
15
16
provider mysql {
17
probe external_lock(int);
18
probe insert_row_start();
19
probe insert_row_end();
20
probe filesort_start();
21
probe filesort_end();
22
probe delete_start();
23
probe delete_end();
24
probe insert_start();
25
probe insert_end();
26
probe select_start();
27
probe select_end();
28
probe update_start();
29
probe update_end();
30
};