Commit 24bbd662 by Taylor Otwell

Merge pull request #838 from SonicHedgehog/master

Fixed typo
parents c92578b2 ec455632
...@@ -194,7 +194,7 @@ class Connection { ...@@ -194,7 +194,7 @@ class Connection {
return $statement->rowCount(); return $statement->rowCount();
} }
// For insert statements that use the "returning" clause, which is allowed // For insert statements that use the "returning" clause, which is allowed
// by databsae systems such as Postgres, we need to actually return the // by database systems such as Postgres, we need to actually return the
// real query result so the consumer can get the ID. // real query result so the consumer can get the ID.
elseif (stripos($sql, 'insert') === 0 and stripos($sql, 'returning') !== false) elseif (stripos($sql, 'insert') === 0 and stripos($sql, 'returning') !== false)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment