X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=create-sql.lisp;h=697ecb0a0eb858260cb67f8c9387b510773ac0d9;hb=88be55a3921b3078570bb737da197c671117a719;hp=ad46fb4d28c45fc788ad9b2c6f5385a7625e1f8f;hpb=d5cdac77d9abe5fbff91ea11e1d2929b082bffbe;p=umlisp.git diff --git a/create-sql.lisp b/create-sql.lisp index ad46fb4..697ecb0 100644 --- a/create-sql.lisp +++ b/create-sql.lisp @@ -211,7 +211,8 @@ (defun sql-create-indexes (conn &key (indexes +index-cols+) verbose) "SQL Databases: create all indexes" (dolist (idx indexes) - (when verbose (format t "UMLS Import: Creating index ~S.~%" idx)) + (when verbose (format t "UMLS Import: Creating index for column ~A on table ~A.~%" + (first idx) (second idx))) (ignore-errors (sql-execute (drop-index-cmd (car idx) (cadr idx)) conn)) (sql-execute (create-index-cmd (car idx) (cadr idx) (caddr idx)) conn))) @@ -278,7 +279,7 @@ This is much faster that using create-umls-db-insert." "Translate all *umls-files* to optimized import format." (make-noneng-index-file extension) (dolist (f (remove "MRXW_NONENG.RRF" *umls-files* :test #'string= :key #'fil)) - (when verbose (format t "UMLS Import: translating file ~S.~%" (fil f))) + (when verbose (format t "UMLS Import: Translating file ~A.~%" (fil f))) (translate-umls-file f extension :force force))) (defun translate-umls-file (file extension &key force) @@ -420,9 +421,9 @@ This is much faster that using create-umls-db-insert." (declare (optimize (speed 3) (space 0))) (ensure-ucols+ufiles) (let ((max 0)) - (declare (fixnum max)) + (declare (type (integer 0 1000000) max)) (dolist (ucol *umls-cols*) - (when (> (cmax ucol) max) + (when (> (the (integer 0 1000000) (cmax ucol)) max) (setq max (cmax ucol)))) max)) @@ -433,7 +434,11 @@ This is much faster that using create-umls-db-insert." (let ((rowsizes '())) (dolist (file *umls-files*) (let ((row 0)) + (declare (type (integer 0 1000000) row)) (dolist (ucol (ucols file)) - (incf row (1+ (cmax ucol)))) + (let* ((col-max (cmax ucol)) + (max-with-delim (1+ col-max))) + (declare (type (integer 0 1000000) col-max max-with-delim)) + (incf row max-with-delim))) (push row rowsizes))) (car (sort rowsizes #'>))))