Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Two bugfixes #240

Merged
merged 2 commits into from May 26, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/pgsql/queries.lisp
Expand Up @@ -207,7 +207,7 @@
(when tables
(pomo:execute
(format nil "create temp table reloids(oid) as values ~{('~a'::regclass)~^,~}"
tables)))
(mapcar #'apply-identifier-case tables))))

(handler-case
(let ((sql (format nil "
Expand Down
2 changes: 1 addition & 1 deletion src/sources/mysql/mysql.lisp
Expand Up @@ -248,7 +248,7 @@
(map 'string #'code-char
(loop :repeat 5
:collect (+ (random 26) (char-code #\A))))
"-"
"_"
(map 'string #'code-char
(loop :repeat 5
:collect (+ (random 26) (char-code #\A)))))))
Expand Down