r4858: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Tue, 6 May 2003 21:52:34 +0000 (21:52 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Tue, 6 May 2003 21:52:34 +0000 (21:52 +0000)
debian/changelog
sql-classes.lisp

index beb220d11914764537fc43bfefef79a8ebf7e9e7..60990e9b54bd2057ff9d52714df1a103a897fd76 100644 (file)
@@ -1,3 +1,9 @@
+cl-umlisp (3.0.1-1) unstable; urgency=low
+
+  * Fix column name in find-ucoc
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Tue,  6 May 2003 15:52:23 -0600
+
 cl-umlisp (3.0.0-1) unstable; urgency=low
 
   * Major refactoring with performance improvments in parsing UMLS files
index f76ebffd52330f6c9c373a30999446c72aae68e6..608c463ad6a7e44020c5bd3be8cac675b13d9411 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Author:        Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
-;;;; $Id: sql-classes.lisp,v 1.73 2003/05/06 09:05:43 kevin Exp $
+;;;; $Id: sql-classes.lisp,v 1.74 2003/05/06 21:52:34 kevin Exp $
 ;;;;
 ;;;; This file, part of UMLisp, is
 ;;;;    Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D.
@@ -277,7 +277,7 @@ is OBJNAME from TABLE where WHERE-NAME field = WHERE-VALUE with FIELDS"
 (defun find-ucoc-cui (cui &key (srl *current-srl*))
   "Return a list of ucoc for cui"
   (with-umlisp-query (mrcoc (cui2 soc cot cof coa kpfstr2) srl cui1
-                           (parse-cui cui) :lrl "KSRL" :order (cof asc))
+                           (parse-cui cui) :lrl klrl :order (cof asc))
     (setq cui2 (ensure-integer cui2))
     (when (zerop cui2) (setq cui2 nil))
     (make-instance 'ucoc :cui1 (parse-cui cui) :cui2 (ensure-integer cui2)
@@ -287,7 +287,7 @@ is OBJNAME from TABLE where WHERE-NAME field = WHERE-VALUE with FIELDS"
 (defun find-ucoc-cui2 (cui2 &key (srl *current-srl*))
   "Return a list of ucoc for cui2"
   (with-umlisp-query (mrcoc (cui1 soc cot cof coa kpfstr2) srl cui2
-                           (parse-cui cui2) :lrl "KSRL" :order (cof asc))
+                           (parse-cui cui2) :lrl klrl :order (cof asc))
     (setq cui2 (ensure-integer cui2))
     (when (zerop cui2) (setq cui2 nil))
     (make-instance 'ucoc :cui1 (ensure-integer cui1) :cui2 (parse-cui cui2)