Changeset 392 for trunk


Ignore:
Timestamp:
Feb 14, 2012, 8:42:53 PM (13 years ago)
Author:
katerina
Message:

Fix for ticket #289 (Integer columns not initialized to handle unsigned 64bit in SQL DB).

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/docs/Changelog

    r390 r392  
    113.0.2:
     2        * change sql init scripts to make bigint fields unsigned (problem
     3          reported by A. Sabitov)
     4        * patch by Andy Jack for issue with the --with-gpg option (hangs with
     5          high cpu load at startup)
    26        * call ./samhain-install.sh as /bin/sh ./samhain-install.sh in the
    37          RPM spec file, because /var might be mounted noexec (reported by GC)
     
    1115        * fixed: the definition of O_NOATIME isn't seen in sh_files.c.
    1216
    13 3.0.1:
     173.0.1 (07-12-2011):
    1418        * fix a memory leak (reported by C. Westlake)
    1519        * fix an uninitialized variable in the suidcheck code (problem
  • trunk/sql_init/samhain.mysql.init

    r296 r392  
    7070        link_new      BLOB,
    7171       
    72         size_old      BIGINT,
    73         size_new      BIGINT,
    74         hardlinks_old BIGINT,
    75         hardlinks_new BIGINT,
    76         inode_old     BIGINT,
    77         inode_new     BIGINT,
     72        size_old      BIGINT UNSIGNED,
     73        size_new      BIGINT UNSIGNED,
     74        hardlinks_old BIGINT UNSIGNED,
     75        hardlinks_new BIGINT UNSIGNED,
     76        inode_old     BIGINT UNSIGNED,
     77        inode_new     BIGINT UNSIGNED,
    7878
    79         imode_old     BIGINT,
    80         imode_new     BIGINT,
    81         iattr_old     BIGINT,
    82         iattr_new     BIGINT,
    83         idevice_old   BIGINT,
    84         idevice_new   BIGINT,
    85         iowner_old    BIGINT,
    86         iowner_new    BIGINT,
    87         igroup_old    BIGINT,
    88         igroup_new    BIGINT,
     79        imode_old     BIGINT UNSIGNED,
     80        imode_new     BIGINT UNSIGNED,
     81        iattr_old     BIGINT UNSIGNED,
     82        iattr_new     BIGINT UNSIGNED,
     83        idevice_old   BIGINT UNSIGNED,
     84        idevice_new   BIGINT UNSIGNED,
     85        iowner_old    BIGINT UNSIGNED,
     86        iowner_new    BIGINT UNSIGNED,
     87        igroup_old    BIGINT UNSIGNED,
     88        igroup_new    BIGINT UNSIGNED,
    8989       
    9090
  • trunk/sql_init/samhain.postgres.init

    r296 r392  
    6464        link_new      TEXT,
    6565       
    66         size_old      BIGINT,
    67         size_new      BIGINT,
    68         hardlinks_old BIGINT,
    69         hardlinks_new BIGINT,
    70         inode_old     BIGINT,
    71         inode_new     BIGINT,
     66        size_old      NUMERIC(20),
     67        size_new      NUMERIC(20),
     68        hardlinks_old NUMERIC(20),
     69        hardlinks_new NUMERIC(20),
     70        inode_old     NUMERIC(20),
     71        inode_new     NUMERIC(20),
    7272
    73         imode_old     BIGINT,
    74         imode_new     BIGINT,
    75         iattr_old     BIGINT,
    76         iattr_new     BIGINT,
    77         idevice_old   BIGINT,
    78         idevice_new   BIGINT,
    79         iowner_old    BIGINT,
    80         iowner_new    BIGINT,
    81         igroup_old    BIGINT,
    82         igroup_new    BIGINT,
     73        imode_old     NUMERIC(20),
     74        imode_new     NUMERIC(20),
     75        iattr_old     NUMERIC(20),
     76        iattr_new     NUMERIC(20),
     77        idevice_old   NUMERIC(20),
     78        idevice_new   NUMERIC(20),
     79        iowner_old    NUMERIC(20),
     80        iowner_new    NUMERIC(20),
     81        igroup_old    NUMERIC(20),
     82        igroup_new    NUMERIC(20),
    8383                 
    8484        acl_old       TEXT,
Note: See TracChangeset for help on using the changeset viewer.