Merge branch 'maint'

This commit is contained in:
Bastien 2021-05-04 22:44:34 +02:00
commit f838dbae77
1 changed files with 5 additions and 1 deletions

View File

@ -125,7 +125,7 @@ This function is called by `org-babel-execute-src-block'."
(mapcar (lambda (row)
(if (eq 'hline row)
'hline
(mapcar #'org-babel-string-read row)))
(mapcar #'org-babel-sqlite--read-cell row)))
result)))
(defun org-babel-sqlite-offset-colnames (table headers-p)
@ -139,6 +139,10 @@ This function is called by `org-babel-execute-src-block'."
Prepare SESSION according to the header arguments specified in PARAMS."
(error "SQLite sessions not yet implemented"))
(defun org-babel-sqlite--read-cell (cell)
"Process CELL to remove unnecessary characters."
(org-babel-read cell t))
(provide 'ob-sqlite)
;;; ob-sqlite.el ends here