Skip to content
Snippets Groups Projects
Commit 9eb96d1b authored by Christopher Baines's avatar Christopher Baines
Browse files

database: Don't return rowid from db-add-input.

As it is unused from where db-add-input is called.

* src/cuirass/database.scm (db-add-input): Don't call and
return (last-insert-rowid).
parent c238cc9f
No related branches found
No related tags found
No related merge requests found
......@@ -303,8 +303,7 @@ tag, revision, no_compile_p) VALUES ("
(assq-ref input #:branch) ", "
(assq-ref input #:tag) ", "
(assq-ref input #:commit) ", "
(if (assq-ref input #:no-compile?) 1 0) ");")
(last-insert-rowid db)))
(if (assq-ref input #:no-compile?) 1 0) ");")))
(define (db-add-checkout spec-name eval-id checkout)
"Insert CHECKOUT associated with SPEC-NAME and EVAL-ID. If a checkout with
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment