mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge mysql.com:/home/alik/MySQL/devel/5.0-bug15103
into mysql.com:/home/alik/MySQL/devel/5.1-tree
This commit is contained in:
@ -108,11 +108,17 @@ functions */
|
|||||||
#undef _REENTRANT /* Crashes something for win32 */
|
#undef _REENTRANT /* Crashes something for win32 */
|
||||||
#undef SAFE_MUTEX /* Can't be used on windows */
|
#undef SAFE_MUTEX /* Can't be used on windows */
|
||||||
|
|
||||||
#define LONGLONG_MIN ((__int64) 0x8000000000000000)
|
#if defined(_MSC_VER) && _MSC_VER >= 1310
|
||||||
#define LONGLONG_MAX ((__int64) 0x7FFFFFFFFFFFFFFF)
|
#define LL(A) A##ll
|
||||||
#define ULONGLONG_MAX ((unsigned __int64) 0xFFFFFFFFFFFFFFFF)
|
#define ULL(A) A##ull
|
||||||
#define LL(A) ((__int64) A)
|
#else
|
||||||
#define ULL(A) ((unsigned __int64) A)
|
#define LL(A) ((__int64) A)
|
||||||
|
#define ULL(A) ((unsigned __int64) A)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define LONGLONG_MIN LL(0x8000000000000000)
|
||||||
|
#define LONGLONG_MAX LL(0x7FFFFFFFFFFFFFFF)
|
||||||
|
#define ULONGLONG_MAX ULL(0xFFFFFFFFFFFFFFFF)
|
||||||
|
|
||||||
/* Type information */
|
/* Type information */
|
||||||
|
|
||||||
@ -345,11 +351,7 @@ inline double ulonglong2double(ulonglong value)
|
|||||||
#define SPRINTF_RETURNS_INT
|
#define SPRINTF_RETURNS_INT
|
||||||
#define HAVE_SETFILEPOINTER
|
#define HAVE_SETFILEPOINTER
|
||||||
#define HAVE_VIO_READ_BUFF
|
#define HAVE_VIO_READ_BUFF
|
||||||
|
|
||||||
#if defined(_WIN64) && defined(_M_X64)
|
|
||||||
/* Avoid type conflicts with built-in functions. */
|
|
||||||
#define HAVE_STRNLEN
|
#define HAVE_STRNLEN
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef __NT__
|
#ifndef __NT__
|
||||||
#undef FILE_SHARE_DELETE
|
#undef FILE_SHARE_DELETE
|
||||||
|
@ -60,8 +60,8 @@ typedef struct SHA1_CONTEXT
|
|||||||
|
|
||||||
C_MODE_START
|
C_MODE_START
|
||||||
|
|
||||||
int sha1_reset( SHA1_CONTEXT* );
|
int mysql_sha1_reset(SHA1_CONTEXT*);
|
||||||
int sha1_input( SHA1_CONTEXT*, const uint8 *, unsigned int );
|
int mysql_sha1_input(SHA1_CONTEXT*, const uint8 *, unsigned int);
|
||||||
int sha1_result( SHA1_CONTEXT* , uint8 Message_Digest[SHA1_HASH_SIZE] );
|
int mysql_sha1_result(SHA1_CONTEXT* , uint8 Message_Digest[SHA1_HASH_SIZE]);
|
||||||
|
|
||||||
C_MODE_END
|
C_MODE_END
|
||||||
|
@ -838,40 +838,34 @@ end if;
|
|||||||
end|
|
end|
|
||||||
show triggers;
|
show triggers;
|
||||||
Trigger Event Table Statement Timing Created sql_mode Definer
|
Trigger Event Table Statement Timing Created sql_mode Definer
|
||||||
trg1 INSERT t1
|
trg1 INSERT t1 begin
|
||||||
begin
|
|
||||||
if new.j > 10 then
|
if new.j > 10 then
|
||||||
set new.j := 10;
|
set new.j := 10;
|
||||||
end if;
|
end if;
|
||||||
end BEFORE NULL root@localhost
|
end BEFORE NULL root@localhost
|
||||||
trg2 UPDATE t1
|
trg2 UPDATE t1 begin
|
||||||
begin
|
|
||||||
if old.i % 2 = 0 then
|
if old.i % 2 = 0 then
|
||||||
set new.j := -1;
|
set new.j := -1;
|
||||||
end if;
|
end if;
|
||||||
end BEFORE NULL root@localhost
|
end BEFORE NULL root@localhost
|
||||||
trg3 UPDATE t1
|
trg3 UPDATE t1 begin
|
||||||
begin
|
|
||||||
if new.j = -1 then
|
if new.j = -1 then
|
||||||
set @fired:= "Yes";
|
set @fired:= "Yes";
|
||||||
end if;
|
end if;
|
||||||
end AFTER NULL root@localhost
|
end AFTER NULL root@localhost
|
||||||
select * from information_schema.triggers;
|
select * from information_schema.triggers;
|
||||||
TRIGGER_CATALOG TRIGGER_SCHEMA TRIGGER_NAME EVENT_MANIPULATION EVENT_OBJECT_CATALOG EVENT_OBJECT_SCHEMA EVENT_OBJECT_TABLE ACTION_ORDER ACTION_CONDITION ACTION_STATEMENT ACTION_ORIENTATION ACTION_TIMING ACTION_REFERENCE_OLD_TABLE ACTION_REFERENCE_NEW_TABLE ACTION_REFERENCE_OLD_ROW ACTION_REFERENCE_NEW_ROW CREATED SQL_MODE DEFINER
|
TRIGGER_CATALOG TRIGGER_SCHEMA TRIGGER_NAME EVENT_MANIPULATION EVENT_OBJECT_CATALOG EVENT_OBJECT_SCHEMA EVENT_OBJECT_TABLE ACTION_ORDER ACTION_CONDITION ACTION_STATEMENT ACTION_ORIENTATION ACTION_TIMING ACTION_REFERENCE_OLD_TABLE ACTION_REFERENCE_NEW_TABLE ACTION_REFERENCE_OLD_ROW ACTION_REFERENCE_NEW_ROW CREATED SQL_MODE DEFINER
|
||||||
NULL test trg1 INSERT NULL test t1 0 NULL
|
NULL test trg1 INSERT NULL test t1 0 NULL begin
|
||||||
begin
|
|
||||||
if new.j > 10 then
|
if new.j > 10 then
|
||||||
set new.j := 10;
|
set new.j := 10;
|
||||||
end if;
|
end if;
|
||||||
end ROW BEFORE NULL NULL OLD NEW NULL root@localhost
|
end ROW BEFORE NULL NULL OLD NEW NULL root@localhost
|
||||||
NULL test trg2 UPDATE NULL test t1 0 NULL
|
NULL test trg2 UPDATE NULL test t1 0 NULL begin
|
||||||
begin
|
|
||||||
if old.i % 2 = 0 then
|
if old.i % 2 = 0 then
|
||||||
set new.j := -1;
|
set new.j := -1;
|
||||||
end if;
|
end if;
|
||||||
end ROW BEFORE NULL NULL OLD NEW NULL root@localhost
|
end ROW BEFORE NULL NULL OLD NEW NULL root@localhost
|
||||||
NULL test trg3 UPDATE NULL test t1 0 NULL
|
NULL test trg3 UPDATE NULL test t1 0 NULL begin
|
||||||
begin
|
|
||||||
if new.j = -1 then
|
if new.j = -1 then
|
||||||
set @fired:= "Yes";
|
set @fired:= "Yes";
|
||||||
end if;
|
end if;
|
||||||
|
@ -2006,18 +2006,16 @@ end|
|
|||||||
set sql_mode=default|
|
set sql_mode=default|
|
||||||
show triggers like "t1";
|
show triggers like "t1";
|
||||||
Trigger Event Table Statement Timing Created sql_mode Definer
|
Trigger Event Table Statement Timing Created sql_mode Definer
|
||||||
trg1 INSERT t1
|
trg1 INSERT t1 begin
|
||||||
begin
|
|
||||||
if new.a > 10 then
|
if new.a > 10 then
|
||||||
set new.a := 10;
|
set new.a := 10;
|
||||||
set new.a := 11;
|
set new.a := 11;
|
||||||
end if;
|
end if;
|
||||||
end BEFORE 0000-00-00 00:00:00 root@localhost
|
end BEFORE 0000-00-00 00:00:00 root@localhost
|
||||||
trg2 UPDATE t1 begin
|
trg2 UPDATE t1 begin
|
||||||
if old.a % 2 = 0 then set new.b := 12; end if;
|
if old.a % 2 = 0 then set new.b := 12; end if;
|
||||||
end BEFORE 0000-00-00 00:00:00 root@localhost
|
end BEFORE 0000-00-00 00:00:00 root@localhost
|
||||||
trg3 UPDATE t1
|
trg3 UPDATE t1 begin
|
||||||
begin
|
|
||||||
if new.a = -1 then
|
if new.a = -1 then
|
||||||
set @fired:= "Yes";
|
set @fired:= "Yes";
|
||||||
end if;
|
end if;
|
||||||
@ -2055,8 +2053,7 @@ UNLOCK TABLES;
|
|||||||
/*!50003 SET @OLD_SQL_MODE=@@SQL_MODE*/;
|
/*!50003 SET @OLD_SQL_MODE=@@SQL_MODE*/;
|
||||||
DELIMITER ;;
|
DELIMITER ;;
|
||||||
/*!50003 SET SESSION SQL_MODE="" */;;
|
/*!50003 SET SESSION SQL_MODE="" */;;
|
||||||
/*!50003 CREATE */ /*!50017 DEFINER=`root`@`localhost` */ /*!50003 TRIGGER `trg1` BEFORE INSERT ON `t1` FOR EACH ROW
|
/*!50003 CREATE */ /*!50017 DEFINER=`root`@`localhost` */ /*!50003 TRIGGER `trg1` BEFORE INSERT ON `t1` FOR EACH ROW begin
|
||||||
begin
|
|
||||||
if new.a > 10 then
|
if new.a > 10 then
|
||||||
set new.a := 10;
|
set new.a := 10;
|
||||||
set new.a := 11;
|
set new.a := 11;
|
||||||
@ -2069,8 +2066,7 @@ if old.a % 2 = 0 then set new.b := 12; end if;
|
|||||||
end */;;
|
end */;;
|
||||||
|
|
||||||
/*!50003 SET SESSION SQL_MODE="STRICT_TRANS_TABLES,STRICT_ALL_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,TRADITIONAL,NO_AUTO_CREATE_USER" */;;
|
/*!50003 SET SESSION SQL_MODE="STRICT_TRANS_TABLES,STRICT_ALL_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,TRADITIONAL,NO_AUTO_CREATE_USER" */;;
|
||||||
/*!50003 CREATE */ /*!50017 DEFINER=`root`@`localhost` */ /*!50003 TRIGGER `trg3` AFTER UPDATE ON `t1` FOR EACH ROW
|
/*!50003 CREATE */ /*!50017 DEFINER=`root`@`localhost` */ /*!50003 TRIGGER `trg3` AFTER UPDATE ON `t1` FOR EACH ROW begin
|
||||||
begin
|
|
||||||
if new.a = -1 then
|
if new.a = -1 then
|
||||||
set @fired:= "Yes";
|
set @fired:= "Yes";
|
||||||
end if;
|
end if;
|
||||||
@ -2092,8 +2088,7 @@ UNLOCK TABLES;
|
|||||||
/*!50003 SET @OLD_SQL_MODE=@@SQL_MODE*/;
|
/*!50003 SET @OLD_SQL_MODE=@@SQL_MODE*/;
|
||||||
DELIMITER ;;
|
DELIMITER ;;
|
||||||
/*!50003 SET SESSION SQL_MODE="STRICT_TRANS_TABLES,STRICT_ALL_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,TRADITIONAL,NO_AUTO_CREATE_USER" */;;
|
/*!50003 SET SESSION SQL_MODE="STRICT_TRANS_TABLES,STRICT_ALL_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,TRADITIONAL,NO_AUTO_CREATE_USER" */;;
|
||||||
/*!50003 CREATE */ /*!50017 DEFINER=`root`@`localhost` */ /*!50003 TRIGGER `trg4` BEFORE INSERT ON `t2` FOR EACH ROW
|
/*!50003 CREATE */ /*!50017 DEFINER=`root`@`localhost` */ /*!50003 TRIGGER `trg4` BEFORE INSERT ON `t2` FOR EACH ROW begin
|
||||||
begin
|
|
||||||
if new.a > 10 then
|
if new.a > 10 then
|
||||||
set @fired:= "No";
|
set @fired:= "No";
|
||||||
end if;
|
end if;
|
||||||
@ -2165,24 +2160,21 @@ t1
|
|||||||
t2
|
t2
|
||||||
show triggers;
|
show triggers;
|
||||||
Trigger Event Table Statement Timing Created sql_mode Definer
|
Trigger Event Table Statement Timing Created sql_mode Definer
|
||||||
trg1 INSERT t1
|
trg1 INSERT t1 begin
|
||||||
begin
|
|
||||||
if new.a > 10 then
|
if new.a > 10 then
|
||||||
set new.a := 10;
|
set new.a := 10;
|
||||||
set new.a := 11;
|
set new.a := 11;
|
||||||
end if;
|
end if;
|
||||||
end BEFORE # root@localhost
|
end BEFORE # root@localhost
|
||||||
trg2 UPDATE t1 begin
|
trg2 UPDATE t1 begin
|
||||||
if old.a % 2 = 0 then set new.b := 12; end if;
|
if old.a % 2 = 0 then set new.b := 12; end if;
|
||||||
end BEFORE # root@localhost
|
end BEFORE # root@localhost
|
||||||
trg3 UPDATE t1
|
trg3 UPDATE t1 begin
|
||||||
begin
|
|
||||||
if new.a = -1 then
|
if new.a = -1 then
|
||||||
set @fired:= "Yes";
|
set @fired:= "Yes";
|
||||||
end if;
|
end if;
|
||||||
end AFTER # STRICT_TRANS_TABLES,STRICT_ALL_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,TRADITIONAL,NO_AUTO_CREATE_USER root@localhost
|
end AFTER # STRICT_TRANS_TABLES,STRICT_ALL_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,TRADITIONAL,NO_AUTO_CREATE_USER root@localhost
|
||||||
trg4 INSERT t2
|
trg4 INSERT t2 begin
|
||||||
begin
|
|
||||||
if new.a > 10 then
|
if new.a > 10 then
|
||||||
set @fired:= "No";
|
set @fired:= "No";
|
||||||
end if;
|
end if;
|
||||||
@ -2210,7 +2202,7 @@ a2
|
|||||||
1
|
1
|
||||||
SHOW TRIGGERS;
|
SHOW TRIGGERS;
|
||||||
Trigger Event Table Statement Timing Created sql_mode Definer
|
Trigger Event Table Statement Timing Created sql_mode Definer
|
||||||
testref INSERT test1 BEGIN
|
testref INSERT test1 BEGIN
|
||||||
INSERT INTO test2 SET a2 = NEW.a1; END BEFORE NULL root@localhost
|
INSERT INTO test2 SET a2 = NEW.a1; END BEFORE NULL root@localhost
|
||||||
SELECT * FROM `test1`;
|
SELECT * FROM `test1`;
|
||||||
a1
|
a1
|
||||||
|
@ -1466,12 +1466,12 @@ flush logs;
|
|||||||
-------- switch to master -------
|
-------- switch to master -------
|
||||||
SHOW TRIGGERS;
|
SHOW TRIGGERS;
|
||||||
Trigger Event Table Statement Timing Created sql_mode Definer
|
Trigger Event Table Statement Timing Created sql_mode Definer
|
||||||
trg1 INSERT t1 SET @a:=1 BEFORE NULL root@localhost
|
trg1 INSERT t1 SET @a:=1 BEFORE NULL root@localhost
|
||||||
|
|
||||||
-------- switch to slave -------
|
-------- switch to slave -------
|
||||||
SHOW TRIGGERS;
|
SHOW TRIGGERS;
|
||||||
Trigger Event Table Statement Timing Created sql_mode Definer
|
Trigger Event Table Statement Timing Created sql_mode Definer
|
||||||
trg1 INSERT t1 SET @a:=1 BEFORE NULL root@localhost
|
trg1 INSERT t1 SET @a:=1 BEFORE NULL root@localhost
|
||||||
|
|
||||||
######## DROP TRIGGER trg1 ########
|
######## DROP TRIGGER trg1 ########
|
||||||
|
|
||||||
|
@ -34,7 +34,5 @@ Warning 1454 No definer attribute for trigger 'mysqltest_db1'.'wl2818_trg1'. The
|
|||||||
|
|
||||||
SELECT * FROM INFORMATION_SCHEMA.TRIGGERS ORDER BY trigger_name;
|
SELECT * FROM INFORMATION_SCHEMA.TRIGGERS ORDER BY trigger_name;
|
||||||
TRIGGER_CATALOG TRIGGER_SCHEMA TRIGGER_NAME EVENT_MANIPULATION EVENT_OBJECT_CATALOG EVENT_OBJECT_SCHEMA EVENT_OBJECT_TABLE ACTION_ORDER ACTION_CONDITION ACTION_STATEMENT ACTION_ORIENTATION ACTION_TIMING ACTION_REFERENCE_OLD_TABLE ACTION_REFERENCE_NEW_TABLE ACTION_REFERENCE_OLD_ROW ACTION_REFERENCE_NEW_ROW CREATED SQL_MODE DEFINER
|
TRIGGER_CATALOG TRIGGER_SCHEMA TRIGGER_NAME EVENT_MANIPULATION EVENT_OBJECT_CATALOG EVENT_OBJECT_SCHEMA EVENT_OBJECT_TABLE ACTION_ORDER ACTION_CONDITION ACTION_STATEMENT ACTION_ORIENTATION ACTION_TIMING ACTION_REFERENCE_OLD_TABLE ACTION_REFERENCE_NEW_TABLE ACTION_REFERENCE_OLD_ROW ACTION_REFERENCE_NEW_ROW CREATED SQL_MODE DEFINER
|
||||||
NULL mysqltest_db1 wl2818_trg1 INSERT NULL mysqltest_db1 t1 0 NULL
|
NULL mysqltest_db1 wl2818_trg1 INSERT NULL mysqltest_db1 t1 0 NULL INSERT INTO t2 VALUES(CURRENT_USER()) ROW BEFORE NULL NULL OLD NEW NULL
|
||||||
INSERT INTO t2 VALUES(CURRENT_USER()) ROW BEFORE NULL NULL OLD NEW NULL
|
NULL mysqltest_db1 wl2818_trg2 INSERT NULL mysqltest_db1 t1 0 NULL INSERT INTO t2 VALUES(CURRENT_USER()) ROW AFTER NULL NULL OLD NEW NULL mysqltest_dfn@localhost
|
||||||
NULL mysqltest_db1 wl2818_trg2 INSERT NULL mysqltest_db1 t1 0 NULL
|
|
||||||
INSERT INTO t2 VALUES(CURRENT_USER()) ROW AFTER NULL NULL OLD NEW NULL mysqltest_dfn@localhost
|
|
||||||
|
@ -185,10 +185,8 @@ INSERT INTO t1 VALUES(6);
|
|||||||
ERROR 42000: Access denied; you need the SUPER privilege for this operation
|
ERROR 42000: Access denied; you need the SUPER privilege for this operation
|
||||||
SHOW TRIGGERS;
|
SHOW TRIGGERS;
|
||||||
Trigger Event Table Statement Timing Created sql_mode Definer
|
Trigger Event Table Statement Timing Created sql_mode Definer
|
||||||
trg1 INSERT t1
|
trg1 INSERT t1 SET @new_sum = 0 BEFORE NULL mysqltest_inv@localhost
|
||||||
SET @new_sum = 0 BEFORE NULL mysqltest_inv@localhost
|
trg2 INSERT t1 SET @new_sum = 0 AFTER NULL mysqltest_nonexs@localhost
|
||||||
trg2 INSERT t1
|
|
||||||
SET @new_sum = 0 AFTER NULL mysqltest_nonexs@localhost
|
|
||||||
DROP TRIGGER trg1;
|
DROP TRIGGER trg1;
|
||||||
DROP TRIGGER trg2;
|
DROP TRIGGER trg2;
|
||||||
CREATE TRIGGER trg1 BEFORE INSERT ON t1
|
CREATE TRIGGER trg1 BEFORE INSERT ON t1
|
||||||
@ -219,16 +217,11 @@ Warning 1454 No definer attribute for trigger 'mysqltest_db1'.'trg1'. The trigge
|
|||||||
|
|
||||||
SELECT * FROM INFORMATION_SCHEMA.TRIGGERS ORDER BY trigger_name;
|
SELECT * FROM INFORMATION_SCHEMA.TRIGGERS ORDER BY trigger_name;
|
||||||
TRIGGER_CATALOG TRIGGER_SCHEMA TRIGGER_NAME EVENT_MANIPULATION EVENT_OBJECT_CATALOG EVENT_OBJECT_SCHEMA EVENT_OBJECT_TABLE ACTION_ORDER ACTION_CONDITION ACTION_STATEMENT ACTION_ORIENTATION ACTION_TIMING ACTION_REFERENCE_OLD_TABLE ACTION_REFERENCE_NEW_TABLE ACTION_REFERENCE_OLD_ROW ACTION_REFERENCE_NEW_ROW CREATED SQL_MODE DEFINER
|
TRIGGER_CATALOG TRIGGER_SCHEMA TRIGGER_NAME EVENT_MANIPULATION EVENT_OBJECT_CATALOG EVENT_OBJECT_SCHEMA EVENT_OBJECT_TABLE ACTION_ORDER ACTION_CONDITION ACTION_STATEMENT ACTION_ORIENTATION ACTION_TIMING ACTION_REFERENCE_OLD_TABLE ACTION_REFERENCE_NEW_TABLE ACTION_REFERENCE_OLD_ROW ACTION_REFERENCE_NEW_ROW CREATED SQL_MODE DEFINER
|
||||||
NULL mysqltest_db1 trg1 INSERT NULL mysqltest_db1 t1 0 NULL
|
NULL mysqltest_db1 trg1 INSERT NULL mysqltest_db1 t1 0 NULL SET @a = 1 ROW BEFORE NULL NULL OLD NEW NULL
|
||||||
SET @a = 1 ROW BEFORE NULL NULL OLD NEW NULL
|
NULL mysqltest_db1 trg2 INSERT NULL mysqltest_db1 t1 0 NULL SET @a = 2 ROW AFTER NULL NULL OLD NEW NULL @
|
||||||
NULL mysqltest_db1 trg2 INSERT NULL mysqltest_db1 t1 0 NULL
|
NULL mysqltest_db1 trg3 UPDATE NULL mysqltest_db1 t1 0 NULL SET @a = 3 ROW BEFORE NULL NULL OLD NEW NULL @abc@def@@
|
||||||
SET @a = 2 ROW AFTER NULL NULL OLD NEW NULL @
|
NULL mysqltest_db1 trg4 UPDATE NULL mysqltest_db1 t1 0 NULL SET @a = 4 ROW AFTER NULL NULL OLD NEW NULL @hostname
|
||||||
NULL mysqltest_db1 trg3 UPDATE NULL mysqltest_db1 t1 0 NULL
|
NULL mysqltest_db1 trg5 DELETE NULL mysqltest_db1 t1 0 NULL SET @a = 5 ROW BEFORE NULL NULL OLD NEW NULL @abcdef@@@hostname
|
||||||
SET @a = 3 ROW BEFORE NULL NULL OLD NEW NULL @abc@def@@
|
|
||||||
NULL mysqltest_db1 trg4 UPDATE NULL mysqltest_db1 t1 0 NULL
|
|
||||||
SET @a = 4 ROW AFTER NULL NULL OLD NEW NULL @hostname
|
|
||||||
NULL mysqltest_db1 trg5 DELETE NULL mysqltest_db1 t1 0 NULL
|
|
||||||
SET @a = 5 ROW BEFORE NULL NULL OLD NEW NULL @abcdef@@@hostname
|
|
||||||
|
|
||||||
---> connection: default
|
---> connection: default
|
||||||
DROP USER mysqltest_dfn@localhost;
|
DROP USER mysqltest_dfn@localhost;
|
||||||
|
@ -613,7 +613,7 @@ select @a;
|
|||||||
show triggers;
|
show triggers;
|
||||||
Trigger Event Table Statement Timing Created sql_mode Definer
|
Trigger Event Table Statement Timing Created sql_mode Definer
|
||||||
t1_bi INSERT t1 set new."t1 column" = 5 BEFORE # REAL_AS_FLOAT,PIPES_AS_CONCAT,ANSI_QUOTES,IGNORE_SPACE,ANSI root@localhost
|
t1_bi INSERT t1 set new."t1 column" = 5 BEFORE # REAL_AS_FLOAT,PIPES_AS_CONCAT,ANSI_QUOTES,IGNORE_SPACE,ANSI root@localhost
|
||||||
t1_af INSERT t1 set @a=10 AFTER # root@localhost
|
t1_af INSERT t1 set @a=10 AFTER # root@localhost
|
||||||
drop table t1;
|
drop table t1;
|
||||||
set sql_mode="traditional";
|
set sql_mode="traditional";
|
||||||
create table t1 (a date);
|
create table t1 (a date);
|
||||||
@ -634,7 +634,7 @@ t1 CREATE TABLE `t1` (
|
|||||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1
|
||||||
show triggers;
|
show triggers;
|
||||||
Trigger Event Table Statement Timing Created sql_mode Definer
|
Trigger Event Table Statement Timing Created sql_mode Definer
|
||||||
t1_bi INSERT t1 set new.a = '2004-01-00' BEFORE # root@localhost
|
t1_bi INSERT t1 set new.a = '2004-01-00' BEFORE # root@localhost
|
||||||
drop table t1;
|
drop table t1;
|
||||||
create table t1 (id int);
|
create table t1 (id int);
|
||||||
create trigger t1_ai after insert on t1 for each row flush tables;
|
create trigger t1_ai after insert on t1 for each row flush tables;
|
||||||
|
16
mysys/sha1.c
16
mysys/sha1.c
@ -69,7 +69,7 @@ static void SHA1ProcessMessageBlock(SHA1_CONTEXT*);
|
|||||||
Initialize SHA1Context
|
Initialize SHA1Context
|
||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
sha1_reset()
|
mysql_sha1_reset()
|
||||||
context [in/out] The context to reset.
|
context [in/out] The context to reset.
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
@ -92,7 +92,7 @@ const uint32 sha_const_key[5]=
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
int sha1_reset(SHA1_CONTEXT *context)
|
int mysql_sha1_reset(SHA1_CONTEXT *context)
|
||||||
{
|
{
|
||||||
#ifndef DBUG_OFF
|
#ifndef DBUG_OFF
|
||||||
if (!context)
|
if (!context)
|
||||||
@ -119,7 +119,7 @@ int sha1_reset(SHA1_CONTEXT *context)
|
|||||||
Return the 160-bit message digest into the array provided by the caller
|
Return the 160-bit message digest into the array provided by the caller
|
||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
sha1_result()
|
mysql_sha1_result()
|
||||||
context [in/out] The context to use to calculate the SHA-1 hash.
|
context [in/out] The context to use to calculate the SHA-1 hash.
|
||||||
Message_Digest: [out] Where the digest is returned.
|
Message_Digest: [out] Where the digest is returned.
|
||||||
|
|
||||||
@ -132,8 +132,8 @@ int sha1_reset(SHA1_CONTEXT *context)
|
|||||||
!= SHA_SUCCESS sha Error Code.
|
!= SHA_SUCCESS sha Error Code.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
int sha1_result(SHA1_CONTEXT *context,
|
int mysql_sha1_result(SHA1_CONTEXT *context,
|
||||||
uint8 Message_Digest[SHA1_HASH_SIZE])
|
uint8 Message_Digest[SHA1_HASH_SIZE])
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
@ -165,7 +165,7 @@ int sha1_result(SHA1_CONTEXT *context,
|
|||||||
Accepts an array of octets as the next portion of the message.
|
Accepts an array of octets as the next portion of the message.
|
||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
sha1_input()
|
mysql_sha1_input()
|
||||||
context [in/out] The SHA context to update
|
context [in/out] The SHA context to update
|
||||||
message_array An array of characters representing the next portion
|
message_array An array of characters representing the next portion
|
||||||
of the message.
|
of the message.
|
||||||
@ -176,8 +176,8 @@ int sha1_result(SHA1_CONTEXT *context,
|
|||||||
!= SHA_SUCCESS sha Error Code.
|
!= SHA_SUCCESS sha Error Code.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
int sha1_input(SHA1_CONTEXT *context, const uint8 *message_array,
|
int mysql_sha1_input(SHA1_CONTEXT *context, const uint8 *message_array,
|
||||||
unsigned length)
|
unsigned length)
|
||||||
{
|
{
|
||||||
if (!length)
|
if (!length)
|
||||||
return SHA_SUCCESS;
|
return SHA_SUCCESS;
|
||||||
|
@ -153,11 +153,13 @@ String *Item_func_sha::val_str(String *str)
|
|||||||
SHA1_CONTEXT context; /* Context used to generate SHA1 hash */
|
SHA1_CONTEXT context; /* Context used to generate SHA1 hash */
|
||||||
/* Temporary buffer to store 160bit digest */
|
/* Temporary buffer to store 160bit digest */
|
||||||
uint8 digest[SHA1_HASH_SIZE];
|
uint8 digest[SHA1_HASH_SIZE];
|
||||||
sha1_reset(&context); /* We do not have to check for error here */
|
mysql_sha1_reset(&context); /* We do not have to check for error here */
|
||||||
/* No need to check error as the only case would be too long message */
|
/* No need to check error as the only case would be too long message */
|
||||||
sha1_input(&context,(const unsigned char *) sptr->ptr(), sptr->length());
|
mysql_sha1_input(&context,
|
||||||
|
(const unsigned char *) sptr->ptr(), sptr->length());
|
||||||
/* Ensure that memory is free and we got result */
|
/* Ensure that memory is free and we got result */
|
||||||
if (!( str->alloc(SHA1_HASH_SIZE*2) || (sha1_result(&context,digest))))
|
if (!( str->alloc(SHA1_HASH_SIZE*2) ||
|
||||||
|
(mysql_sha1_result(&context,digest))))
|
||||||
{
|
{
|
||||||
sprintf((char *) str->ptr(),
|
sprintf((char *) str->ptr(),
|
||||||
"%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x\
|
"%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x\
|
||||||
|
@ -395,15 +395,15 @@ make_scrambled_password(char *to, const char *password)
|
|||||||
SHA1_CONTEXT sha1_context;
|
SHA1_CONTEXT sha1_context;
|
||||||
uint8 hash_stage2[SHA1_HASH_SIZE];
|
uint8 hash_stage2[SHA1_HASH_SIZE];
|
||||||
|
|
||||||
sha1_reset(&sha1_context);
|
mysql_sha1_reset(&sha1_context);
|
||||||
/* stage 1: hash password */
|
/* stage 1: hash password */
|
||||||
sha1_input(&sha1_context, (uint8 *) password, (uint) strlen(password));
|
mysql_sha1_input(&sha1_context, (uint8 *) password, (uint) strlen(password));
|
||||||
sha1_result(&sha1_context, (uint8 *) to);
|
mysql_sha1_result(&sha1_context, (uint8 *) to);
|
||||||
/* stage 2: hash stage1 output */
|
/* stage 2: hash stage1 output */
|
||||||
sha1_reset(&sha1_context);
|
mysql_sha1_reset(&sha1_context);
|
||||||
sha1_input(&sha1_context, (uint8 *) to, SHA1_HASH_SIZE);
|
mysql_sha1_input(&sha1_context, (uint8 *) to, SHA1_HASH_SIZE);
|
||||||
/* separate buffer is used to pass 'to' in octet2hex */
|
/* separate buffer is used to pass 'to' in octet2hex */
|
||||||
sha1_result(&sha1_context, hash_stage2);
|
mysql_sha1_result(&sha1_context, hash_stage2);
|
||||||
/* convert hash_stage2 to hex string */
|
/* convert hash_stage2 to hex string */
|
||||||
*to++= PVERSION41_CHAR;
|
*to++= PVERSION41_CHAR;
|
||||||
octet2hex(to, hash_stage2, SHA1_HASH_SIZE);
|
octet2hex(to, hash_stage2, SHA1_HASH_SIZE);
|
||||||
@ -434,20 +434,20 @@ scramble(char *to, const char *message, const char *password)
|
|||||||
uint8 hash_stage1[SHA1_HASH_SIZE];
|
uint8 hash_stage1[SHA1_HASH_SIZE];
|
||||||
uint8 hash_stage2[SHA1_HASH_SIZE];
|
uint8 hash_stage2[SHA1_HASH_SIZE];
|
||||||
|
|
||||||
sha1_reset(&sha1_context);
|
mysql_sha1_reset(&sha1_context);
|
||||||
/* stage 1: hash password */
|
/* stage 1: hash password */
|
||||||
sha1_input(&sha1_context, (uint8 *) password, (uint) strlen(password));
|
mysql_sha1_input(&sha1_context, (uint8 *) password, (uint) strlen(password));
|
||||||
sha1_result(&sha1_context, hash_stage1);
|
mysql_sha1_result(&sha1_context, hash_stage1);
|
||||||
/* stage 2: hash stage 1; note that hash_stage2 is stored in the database */
|
/* stage 2: hash stage 1; note that hash_stage2 is stored in the database */
|
||||||
sha1_reset(&sha1_context);
|
mysql_sha1_reset(&sha1_context);
|
||||||
sha1_input(&sha1_context, hash_stage1, SHA1_HASH_SIZE);
|
mysql_sha1_input(&sha1_context, hash_stage1, SHA1_HASH_SIZE);
|
||||||
sha1_result(&sha1_context, hash_stage2);
|
mysql_sha1_result(&sha1_context, hash_stage2);
|
||||||
/* create crypt string as sha1(message, hash_stage2) */;
|
/* create crypt string as sha1(message, hash_stage2) */;
|
||||||
sha1_reset(&sha1_context);
|
mysql_sha1_reset(&sha1_context);
|
||||||
sha1_input(&sha1_context, (const uint8 *) message, SCRAMBLE_LENGTH);
|
mysql_sha1_input(&sha1_context, (const uint8 *) message, SCRAMBLE_LENGTH);
|
||||||
sha1_input(&sha1_context, hash_stage2, SHA1_HASH_SIZE);
|
mysql_sha1_input(&sha1_context, hash_stage2, SHA1_HASH_SIZE);
|
||||||
/* xor allows 'from' and 'to' overlap: lets take advantage of it */
|
/* xor allows 'from' and 'to' overlap: lets take advantage of it */
|
||||||
sha1_result(&sha1_context, (uint8 *) to);
|
mysql_sha1_result(&sha1_context, (uint8 *) to);
|
||||||
my_crypt(to, (const uchar *) to, hash_stage1, SCRAMBLE_LENGTH);
|
my_crypt(to, (const uchar *) to, hash_stage1, SCRAMBLE_LENGTH);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -480,17 +480,17 @@ check_scramble(const char *scramble, const char *message,
|
|||||||
uint8 buf[SHA1_HASH_SIZE];
|
uint8 buf[SHA1_HASH_SIZE];
|
||||||
uint8 hash_stage2_reassured[SHA1_HASH_SIZE];
|
uint8 hash_stage2_reassured[SHA1_HASH_SIZE];
|
||||||
|
|
||||||
sha1_reset(&sha1_context);
|
mysql_sha1_reset(&sha1_context);
|
||||||
/* create key to encrypt scramble */
|
/* create key to encrypt scramble */
|
||||||
sha1_input(&sha1_context, (const uint8 *) message, SCRAMBLE_LENGTH);
|
mysql_sha1_input(&sha1_context, (const uint8 *) message, SCRAMBLE_LENGTH);
|
||||||
sha1_input(&sha1_context, hash_stage2, SHA1_HASH_SIZE);
|
mysql_sha1_input(&sha1_context, hash_stage2, SHA1_HASH_SIZE);
|
||||||
sha1_result(&sha1_context, buf);
|
mysql_sha1_result(&sha1_context, buf);
|
||||||
/* encrypt scramble */
|
/* encrypt scramble */
|
||||||
my_crypt((char *) buf, buf, (const uchar *) scramble, SCRAMBLE_LENGTH);
|
my_crypt((char *) buf, buf, (const uchar *) scramble, SCRAMBLE_LENGTH);
|
||||||
/* now buf supposedly contains hash_stage1: so we can get hash_stage2 */
|
/* now buf supposedly contains hash_stage1: so we can get hash_stage2 */
|
||||||
sha1_reset(&sha1_context);
|
mysql_sha1_reset(&sha1_context);
|
||||||
sha1_input(&sha1_context, buf, SHA1_HASH_SIZE);
|
mysql_sha1_input(&sha1_context, buf, SHA1_HASH_SIZE);
|
||||||
sha1_result(&sha1_context, hash_stage2_reassured);
|
mysql_sha1_result(&sha1_context, hash_stage2_reassured);
|
||||||
return memcmp(hash_stage2, hash_stage2_reassured, SHA1_HASH_SIZE);
|
return memcmp(hash_stage2, hash_stage2_reassured, SHA1_HASH_SIZE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -10692,6 +10692,8 @@ trigger_tail:
|
|||||||
bzero((char *)&lex->sp_chistics, sizeof(st_sp_chistics));
|
bzero((char *)&lex->sp_chistics, sizeof(st_sp_chistics));
|
||||||
lex->sphead->m_chistics= &lex->sp_chistics;
|
lex->sphead->m_chistics= &lex->sp_chistics;
|
||||||
lex->sphead->m_body_begin= lex->ptr;
|
lex->sphead->m_body_begin= lex->ptr;
|
||||||
|
while (my_isspace(system_charset_info, lex->sphead->m_body_begin[0]))
|
||||||
|
++lex->sphead->m_body_begin;
|
||||||
}
|
}
|
||||||
sp_proc_stmt
|
sp_proc_stmt
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user