From 6e450915a70317ac36b825734a249c755ac464b4 Mon Sep 17 00:00:00 2001 From: Eric Schulte Date: Fri, 3 Dec 2010 07:01:14 -0700 Subject: [PATCH] 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. --- lisp/ob-sql.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ob-sql.el b/lisp/ob-sql.el index 19c271d39..6bb9a962d 100644 --- a/lisp/ob-sql.el +++ b/lisp/ob-sql.el @@ -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))