~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
set global log_bin_trust_function_creators=0;
2
set binlog_format=STATEMENT;
3
create function fn16456()
4
returns int
5
begin
6
return unix_timestamp();
7
end|
8
ERROR HY000: This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable)
9
set global log_bin_trust_function_creators=1;
10
create function fn16456()
11
returns int
12
begin
13
return unix_timestamp();
14
end|
15
set global log_bin_trust_function_creators=0;
16
set binlog_format=ROW;
17
select fn16456();
18
fn16456()
19
timestamp
20
set binlog_format=STATEMENT;
21
select fn16456();
22
ERROR HY000: Slave running with --log-slave-updates must use row-based binary logging to be able to replicate row-based binary log events
23
drop function fn16456;