Skip to content

Commit

Permalink
Ignore warning about dropping get_column_real_type table if it doesn'…
Browse files Browse the repository at this point in the history
…t exist yet. (fixes #31)
  • Loading branch information
fukamachi committed Jun 16, 2018
1 parent 0c81793 commit 5e52fa4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/core/type.lisp
Expand Up @@ -55,9 +55,10 @@
(or real-type
(setf real-type
(progn
(dbi:do-sql conn
(sxql:yield
(sxql:drop-table :get_column_real_type :if-exists t)))
(let ((*error-output* (make-broadcast-stream)))
(dbi:do-sql conn
(sxql:yield
(sxql:drop-table :get_column_real_type :if-exists t))))
(dbi:do-sql conn
(sxql:yield
(sxql:create-table :get_column_real_type
Expand Down

0 comments on commit 5e52fa4

Please sign in to comment.