diff options
| -rw-r--r-- | lisp/progmodes/sql.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/sql.el b/lisp/progmodes/sql.el index 65e94bac5d3..fd59f4687c6 100644 --- a/lisp/progmodes/sql.el +++ b/lisp/progmodes/sql.el | |||
| @@ -4948,8 +4948,8 @@ Try to set `comint-output-filter-functions' like this: | |||
| 4948 | ;; Return the list of table names (public schema name can be omitted) | 4948 | ;; Return the list of table names (public schema name can be omitted) |
| 4949 | (mapcar #'(lambda (tbl) | 4949 | (mapcar #'(lambda (tbl) |
| 4950 | (if (string= (car tbl) "public") | 4950 | (if (string= (car tbl) "public") |
| 4951 | (cadr tbl) | 4951 | (format "\"%s\"" (cadr tbl)) |
| 4952 | (format "%s.%s" (car tbl) (cadr tbl)))) | 4952 | (format "\"%s\".\"%s\"" (car tbl) (cadr tbl)))) |
| 4953 | cl)))) | 4953 | cl)))) |
| 4954 | 4954 | ||
| 4955 | 4955 | ||