File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change 44 SQL SECURITY DEFINER
55VIEW ` global_addressbook` AS
66 SELECT
7- SUBSTR((UNIX_TIMESTAMP(` vmail` .` mailbox` .` passwordlastchange` ) +
8- UNIX_TIMESTAMP(` vmail` .` mailbox` .` modified` )) -
9- UNIX_TIMESTAMP(` vmail` .` mailbox` .` created` ),
10- - (8 )) AS ` ID` ,
7+ SUBSTR((UNIX_TIMESTAMP(` vmail` .` mailbox` .` created` ) -
8+ CHAR_LENGTH(` vmail` .` mailbox` .` password` )), - (8 )) AS ` ID` ,
119 ` vmail` .` mailbox` .` name` AS ` name` ,
12- (SELECT
13- GROUP_CONCAT(` vmail` .` alias` .` address`
14- SEPARATOR ' ,' )
10+ (SELECT GROUP_CONCAT(` vmail` .` alias` .` address` SEPARATOR ' ,' )
1511 FROM
1612 ` vmail` .` alias`
1713 WHERE
1814 ((` vmail` .` alias` .` goto` = ` vmail` .` mailbox` .` username` )
1915 AND (` vmail` .` alias` .` address` LIKE ' %@%' ))) AS ` email` ,
2016 ` vmail` .` mailbox` .` domain` AS ` domain`
2117 FROM
22- ` vmail` .` mailbox`
18+ ` vmail` .` mailbox` ;
You can’t perform that action at this time.
0 commit comments