diff --git a/system/Database/Postgre/Builder.php b/system/Database/Postgre/Builder.php index 2982312d06ec..f375445add19 100644 --- a/system/Database/Postgre/Builder.php +++ b/system/Database/Postgre/Builder.php @@ -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 *