On Wed, Jun 13, 2001 at 03:05:13PM +0200, pp wrote:
> 
> I made strace with repligard , and have had a look for my pid file :
> 
> read(3, "\377\36\4Unknown column \'guid\' in \'fie"..., 40) = 40
> It is almos for all operations. Is it important?
Yes. It means that your 'repligard' table is wrong. As you said before
that your DB has the same structure as sql dump you've sent to me, and
repligard table in it looks:

#
# Table structure for table 'repligard'
#
CREATE TABLE repligard (
  autoid int(11) DEFAULT '0' NOT NULL auto_increment,
  id int(11) DEFAULT '0' NOT NULL,
  timestamp datetime DEFAULT '0000-00-00 00:00:00' NOT NULL,
  updated datetime DEFAULT '0000-00-00 00:00:00' NOT NULL,
  realm varchar(32) DEFAULT '' NOT NULL,
  tag varchar(32) DEFAULT '' NOT NULL,
  sitegroup int(11) DEFAULT '0' NOT NULL,
  PRIMARY KEY (autoid),
  KEY id (tag(16),id)
);

... I should say it is wrong and doesn't correspond current repligard
table:

#
# Table structure for table 'repligard'
#

CREATE TABLE repligard (
  id int(11) NOT NULL default '0',
  changed timestamp(14) NOT NULL,
  updated timestamp(14) NOT NULL,
  realm varchar(32) NOT NULL default '',
  guid varchar(32) NOT NULL default '',
  action enum('create','update','delete') NOT NULL default 'create',
  sitegroup int(11) NOT NULL default '0',
  PRIMARY KEY (guid),
  KEY realm(realm,id)
);

... But you've said that dbupgrade script was used too. So, could you show
current structure of 'repligard' table in your database?
-- 
Sincerely yours, Alexander Bokovoy 
  The Midgard Project    | ALT  Linux  Team | Minsk Linux Users Group
 www.midgard-project.org | www.altlinux.ru  |    www.minsk-lug.net 
-- You won't skid if you stay in a rut.
                -- Frank Hubbard

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to