mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-20 00:20:44 +08:00
add missing space
This commit is contained in:
@@ -154,7 +154,7 @@ class QueryBuilder extends \yii\base\Object
|
|||||||
|
|
||||||
return 'INSERT INTO ' . $schema->quoteTableName($table)
|
return 'INSERT INTO ' . $schema->quoteTableName($table)
|
||||||
. (!empty($names) ? ' (' . implode(', ', $names) . ')' : '')
|
. (!empty($names) ? ' (' . implode(', ', $names) . ')' : '')
|
||||||
. (!empty($placeholders) ? ' VALUES (' . implode(', ', $placeholders) . ')' : 'DEFAULT VALUES');
|
. (!empty($placeholders) ? ' VALUES (' . implode(', ', $placeholders) . ')' : ' DEFAULT VALUES');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -201,6 +201,6 @@ class QueryBuilder extends \yii\db\QueryBuilder
|
|||||||
|
|
||||||
return 'INSERT INTO ' . $schema->quoteTableName($table)
|
return 'INSERT INTO ' . $schema->quoteTableName($table)
|
||||||
. (!empty($names) ? ' (' . implode(', ', $names) . ')' : '')
|
. (!empty($names) ? ' (' . implode(', ', $names) . ')' : '')
|
||||||
. (!empty($placeholders) ? ' VALUES (' . implode(', ', $placeholders) . ')' : 'DEFAULT VALUES');
|
. (!empty($placeholders) ? ' VALUES (' . implode(', ', $placeholders) . ')' : ' DEFAULT VALUES');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -197,7 +197,7 @@ EOD;
|
|||||||
|
|
||||||
return 'INSERT INTO ' . $schema->quoteTableName($table)
|
return 'INSERT INTO ' . $schema->quoteTableName($table)
|
||||||
. (!empty($names) ? ' (' . implode(', ', $names) . ')' : '')
|
. (!empty($names) ? ' (' . implode(', ', $names) . ')' : '')
|
||||||
. (!empty($placeholders) ? ' VALUES (' . implode(', ', $placeholders) . ')' : 'DEFAULT VALUES');
|
. (!empty($placeholders) ? ' VALUES (' . implode(', ', $placeholders) . ')' : ' DEFAULT VALUES');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user