Skip to content

Commit 2dc03f2

Browse files
committed
Remove unrelated Postrgres methods
1 parent 6cb4e18 commit 2dc03f2

1 file changed

Lines changed: 0 additions & 36 deletions

File tree

system/Database/Postgre/Builder.php

Lines changed: 0 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -169,42 +169,6 @@ public function decrement(string $column, int $value = 1)
169169

170170
//--------------------------------------------------------------------
171171

172-
/**
173-
* Insert batch statement
174-
*
175-
* Generates a platform-specific insert string from the supplied data.
176-
*
177-
* @param string $table Table name
178-
* @param array $keys INSERT keys
179-
* @param array $values INSERT values
180-
*
181-
* @return string
182-
*/
183-
protected function _insertBatch(string $table, array $keys, array $values) : string
184-
{
185-
return 'INSERT INTO ' . $table . ' (' . implode(', ', $keys) . ') VALUES ' . implode(', ', $values) . $this->compileIgnore('insert');
186-
}
187-
188-
//--------------------------------------------------------------------
189-
190-
/**
191-
* Insert statement
192-
*
193-
* Generates a platform-specific insert string from the supplied data
194-
*
195-
* @param string $table The table name
196-
* @param array $keys The insert keys
197-
* @param array $unescapedKeys The insert values
198-
*
199-
* @return string
200-
*/
201-
protected function _insert(string $table, array $keys, array $unescapedKeys) : string
202-
{
203-
return 'INSERT INTO ' . $table . ' (' . implode(', ', $keys) . ') VALUES (' . implode(', ', $unescapedKeys) . ')' . $this->compileIgnore('insert');
204-
}
205-
206-
//--------------------------------------------------------------------
207-
208172
/**
209173
* Replace
210174
*

0 commit comments

Comments
 (0)