emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/emacsql bec6af6940 148/427: Add VACUUM.


From: ELPA Syncer
Subject: [nongnu] elpa/emacsql bec6af6940 148/427: Add VACUUM.
Date: Tue, 13 Dec 2022 02:59:37 -0500 (EST)

branch: elpa/emacsql
commit bec6af6940c4251103e58bc2369591c372daab95
Author: Christopher Wellons <wellons@nullprogram.com>
Commit: Christopher Wellons <wellons@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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]