ob-sql: explicitly set \t as field separator on import -- Thanks to Joost Helberg
* lisp/ob-sql.el (org-babel-execute:sql): Explicitly set field separator to \t when importing tabular data.
This commit is contained in:
parent
0d0edd6d21
commit
6e450915a7
|
@ -80,7 +80,7 @@ This function is called by `org-babel-execute-src-block'."
|
|||
(message command)
|
||||
(shell-command command)
|
||||
(with-temp-buffer
|
||||
(org-table-import out-file nil)
|
||||
(org-table-import out-file '(16))
|
||||
(org-babel-reassemble-table
|
||||
(org-table-to-lisp)
|
||||
(org-babel-pick-name (cdr (assoc :colname-names params))
|
||||
|
|
Loading…
Reference in New Issue