Skip to content

Commit

Permalink
Remove unrelated Postrgres methods
Browse files Browse the repository at this point in the history
  • Loading branch information
MGatner committed Dec 9, 2019
1 parent 6cb4e18 commit 2dc03f2
Showing 1 changed file with 0 additions and 36 deletions.
36 changes: 0 additions & 36 deletions system/Database/Postgre/Builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -169,42 +169,6 @@ public function decrement(string $column, int $value = 1)

//--------------------------------------------------------------------

/**
* Insert batch statement
*
* Generates a platform-specific insert string from the supplied data.
*
* @param string $table Table name
* @param array $keys INSERT keys
* @param array $values INSERT values
*
* @return string
*/
protected function _insertBatch(string $table, array $keys, array $values) : string
{
return 'INSERT INTO ' . $table . ' (' . implode(', ', $keys) . ') VALUES ' . implode(', ', $values) . $this->compileIgnore('insert');
}

//--------------------------------------------------------------------

/**
* Insert statement
*
* Generates a platform-specific insert string from the supplied data
*
* @param string $table The table name
* @param array $keys The insert keys
* @param array $unescapedKeys The insert values
*
* @return string
*/
protected function _insert(string $table, array $keys, array $unescapedKeys) : string
{
return 'INSERT INTO ' . $table . ' (' . implode(', ', $keys) . ') VALUES (' . implode(', ', $unescapedKeys) . ')' . $this->compileIgnore('insert');
}

//--------------------------------------------------------------------

/**
* Replace
*
Expand Down

0 comments on commit 2dc03f2

Please sign in to comment.