@@ -1942,7 +1942,7 @@ discard block |
||
1942 | 1942 | "Please check 'https://bugs.mysql.com/bug.php?id=14564'"); |
1943 | 1943 | } |
1944 | 1944 | $procedureStmt = $row['Create Procedure']; |
1945 | - if ( $this->dumpSettings['skip-definer'] ) { |
|
1945 | + if ($this->dumpSettings['skip-definer']) { |
|
1946 | 1946 | if ($procedureStmtReplaced = preg_replace( |
1947 | 1947 | '/^(CREATE)\s+('.self::DEFINER_RE.')?\s+(PROCEDURE\s.*)$/s', |
1948 | 1948 | '\1 \3', |
@@ -1976,7 +1976,7 @@ discard block |
||
1976 | 1976 | $characterSetClient = $row['character_set_client']; |
1977 | 1977 | $collationConnection = $row['collation_connection']; |
1978 | 1978 | $sqlMode = $row['sql_mode']; |
1979 | - if ( $this->dumpSettings['skip-definer'] ) { |
|
1979 | + if ($this->dumpSettings['skip-definer']) { |
|
1980 | 1980 | if ($functionStmtReplaced = preg_replace( |
1981 | 1981 | '/^(CREATE)\s+('.self::DEFINER_RE.')?\s+(FUNCTION\s.*)$/s', |
1982 | 1982 | '\1 \3', |
@@ -2132,7 +2132,7 @@ discard block |
||
2132 | 2132 | |
2133 | 2133 | public function start_transaction() |
2134 | 2134 | { |
2135 | - return "START TRANSACTION " . |
|
2135 | + return "START TRANSACTION ". |
|
2136 | 2136 | "/*!40100 WITH CONSISTENT SNAPSHOT */"; |
2137 | 2137 | } |
2138 | 2138 |