[interchange-cvs] interchange - heins modified lib/Vend/Table/Common.pm

interchange-core@icdevgroup.org interchange-core@icdevgroup.org
Wed Dec 11 22:23:00 2002


User:      heins
Date:      2002-12-12 03:22:58 GMT
Modified:  lib/Vend/Table Common.pm
Log:
* Add stub for create_sql routine so no die on configuration routines.

Revision  Changes    Path
2.22      +6 -2      interchange/lib/Vend/Table/Common.pm


rev 2.22, prev_rev 2.21
Index: Common.pm
===================================================================
RCS file: /var/cvs/interchange/lib/Vend/Table/Common.pm,v
retrieving revision 2.21
retrieving revision 2.22
diff -u -r2.21 -r2.22
--- Common.pm	6 Oct 2002 00:03:34 -0000	2.21
+++ Common.pm	12 Dec 2002 03:22:58 -0000	2.22
@@ -1,6 +1,6 @@
 # Vend::Table::Common - Common access methods for Interchange databases
 #
-# $Id: Common.pm,v 2.21 2002/10/06 00:03:34 mheins Exp $
+# $Id: Common.pm,v 2.22 2002/12/12 03:22:58 mheins Exp $
 #
 # Copyright (C) 1996-2002 Red Hat, Inc. <interchange@redhat.com>
 #
@@ -22,7 +22,7 @@
 # Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 # MA  02111-1307  USA.
 
-$VERSION = substr(q$Revision: 2.21 $, 10);
+$VERSION = substr(q$Revision: 2.22 $, 10);
 use strict;
 
 package Vend::Table::Common;
@@ -504,6 +504,10 @@
     $value = $row[$s->column_index($column)] += $adder;
     $s->set_row(@row);
     return $value;
+}
+
+sub create_sql {
+    return undef;
 }
 
 sub touch {