File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -413,7 +413,7 @@ public function releaseSavePoint($name) {
413
413
}
414
414
415
415
/**
416
- * Rollsback a save point by its name
416
+ * Rollback a save point by its name
417
417
*
418
418
* @param string $name
419
419
* @return void
@@ -422,6 +422,19 @@ public function rollbackSavepoint($name) {
422
422
$ this ->execute ($ this ->_driver ->rollbackSavePointSQL ($ name ));
423
423
}
424
424
425
+ /**
426
+ * Reset a sequence.
427
+ *
428
+ * Useful with database platforms that support sequences.
429
+ *
430
+ * @param string $table The table to reset.
431
+ * @param string $key The key to reset.
432
+ * @return boolean
433
+ */
434
+ public function resetSequence ($ table , $ key ) {
435
+ // TODO implement this.
436
+ }
437
+
425
438
/**
426
439
* Quotes value to be used safely in database query
427
440
*
You can’t perform that action at this time.
0 commit comments