branch: elpa/emacsql commit bec6af6940c4251103e58bc2369591c372daab95 Author: Christopher Wellons <well...@nullprogram.com> Commit: Christopher Wellons <well...@nullprogram.com>
Add VACUUM. --- README.md | 4 ++++ emacsql.el | 3 +++ 2 files changed, 7 insertions(+) diff --git a/README.md b/README.md index 3fe6ad60ac..8de9635404 100644 --- a/README.md +++ b/README.md @@ -314,6 +314,10 @@ Provides `PRAGMA`. (emacsql db [:pragma (= foreign_keys on)]) ``` +#### :vacuum + +Provides `VACUUM`. + ### Templates To make statement compilation faster, and to avoid making you build up diff --git a/emacsql.el b/emacsql.el index 6cff8a905a..449544bba6 100644 --- a/emacsql.el +++ b/emacsql.el @@ -704,6 +704,9 @@ definitions for return from a `emacsql-defexpander'." (emacsql-defexpander :rollback () (list "ROLLBACK")) +(emacsql-defexpander :vacuum () + (list "VACUUM")) + (provide 'emacsql) ;;; emacsql.el ends here