Index: openacs-4/packages/acs-bootstrap-installer/tcl/40-db-query-dispatcher-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-bootstrap-installer/tcl/40-db-query-dispatcher-procs.tcl,v diff -u -N -r1.27.2.4 -r1.27.2.5 --- openacs-4/packages/acs-bootstrap-installer/tcl/40-db-query-dispatcher-procs.tcl 5 Mar 2003 14:42:01 -0000 1.27.2.4 +++ openacs-4/packages/acs-bootstrap-installer/tcl/40-db-query-dispatcher-procs.tcl 2 Apr 2003 08:33:19 -0000 1.27.2.5 @@ -567,9 +567,11 @@ } { # Check if it's compatible at all! - if {![db_rdbms_compatible_p [db_fullquery_get_rdbms $fullquery] [db_current_rdbms]]} { - ns_log Error "Query [db_fullquery_get_name $fullquery] is *NOT* compatible" - return + set rdbms [db_fullquery_get_rdbms $fullquery] + if {![db_rdbms_compatible_p $rdbms [db_current_rdbms]]} { + # The query isn't compatible, probably because of a too high version + ns_log Warning "Query [db_fullquery_get_name $fullquery] has rdbms info $rdbms which is not compatible with system rdbms [db_current_rdbms]" + return } set name [db_fullquery_get_name $fullquery]