Skip to content

Commit

Permalink
Fix: sql syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed May 29, 2014
1 parent 7a670c5 commit b75dea9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/core/db/pgsql.class.php
Expand Up @@ -190,7 +190,7 @@ static function convertSQLFromMysql($line,$type='auto',$unescapeslashquot=0)
else if (preg_match('/DROP TABLE/i',$line)) $type='dml';
}

$line=preg_replace('/ as signed\)/i',' as integer\)',$line);
$line=preg_replace('/ as signed\)/i',' as integer)',$line);

if ($type == 'dml')
{
Expand Down

0 comments on commit b75dea9

Please sign in to comment.