branch: elpa/emacsql commit 36c6aae4b58159e976da8b03db444d0846336efb Author: Christopher Wellons <well...@nullprogram.com> Commit: Christopher Wellons <well...@nullprogram.com>
Drop raw select. --- emacsql.el | 7 ------- 1 file changed, 7 deletions(-) diff --git a/emacsql.el b/emacsql.el index b5ccb82a6b..dc27c69de1 100644 --- a/emacsql.el +++ b/emacsql.el @@ -290,13 +290,6 @@ Each row must be a sequence of values to store into TABLE. (mapconcat #'emacsql-escape-value row ", ")) rows "), ("))))) -(defun emacsql-select-raw (conn query) - "Send a raw QUERY string to CONN." - (emacsql--clear conn) - (emacsql--send conn query) - (emacsql--check-error conn) - (emacsql--parse conn)) - ;; SQL Expansion: (defvar emacsql-expanders ()