@@ -2260,24 +2260,6 @@ protected function _insertBatch(string $table, array $keys, array $values): stri
22602260 return str_replace ('{:_table_:} ' , $ data , $ sql );
22612261 }
22622262
2263- /**
2264- * Allows key/value pairs to be set for batch inserts
2265- *
2266- * @param mixed $key
2267- *
2268- * @return $this|null
2269- *
2270- * @deprecated
2271- */
2272- public function setInsertBatch ($ key , string $ value = '' , ?bool $ escape = null )
2273- {
2274- if (! is_array ($ key )) {
2275- $ key = [[$ key => $ value ]];
2276- }
2277-
2278- return $ this ->setData ($ key , $ escape );
2279- }
2280-
22812263 /**
22822264 * Compiles an insert query and returns the sql
22832265 *
@@ -2709,28 +2691,6 @@ protected function _updateBatch(string $table, array $keys, array $values): stri
27092691 return str_replace ('{:_table_:} ' , $ data , $ sql );
27102692 }
27112693
2712- /**
2713- * Allows key/value pairs to be set for batch updating
2714- *
2715- * @param array|object $key
2716- *
2717- * @return $this
2718- *
2719- * @throws DatabaseException
2720- *
2721- * @deprecated
2722- */
2723- public function setUpdateBatch ($ key , string $ index = '' , ?bool $ escape = null )
2724- {
2725- if ($ index !== '' ) {
2726- $ this ->onConstraint ($ index );
2727- }
2728-
2729- $ this ->setData ($ key , $ escape );
2730-
2731- return $ this ;
2732- }
2733-
27342694 /**
27352695 * Compiles a delete string and runs "DELETE FROM table"
27362696 *
@@ -3550,18 +3510,6 @@ protected function setBind(string $key, $value = null, bool $escape = true): str
35503510 return $ key . '. ' . $ count ;
35513511 }
35523512
3553- /**
3554- * Returns a clone of a Base Builder with reset query builder values.
3555- *
3556- * @return $this
3557- *
3558- * @deprecated
3559- */
3560- protected function cleanClone ()
3561- {
3562- return (clone $ this )->from ([], true )->resetQuery ();
3563- }
3564-
35653513 /**
35663514 * @param mixed $value
35673515 */
0 commit comments