Jaime Casanova jaime at 2ndquadrant.com
Wed Nov 17 07:58:42 PST 2010
On Wed, Nov 17, 2010 at 10:46 AM, Jaime Casanova <jaime at 2ndquadrant.com> wrote:
>
> so, is this something i have to worry about? more important, does
> slony 1.2.21 support 9.0?
>

ah! seems like the function load_slony_base() in slonik.c should be
updated but not sure how...
because the condition seems to be including 8.4, besides it needs to
know that 8.5 doesn't exists but is 9.0 instead

now being the case that every one of those versions all use the schema
for 8.1 then it seems safe, at least until 8.4... 9.0 will use the
same schema? anything to be worried?

"""
        else if ((adminfo->pg_version >= 80100) && adminfo->pg_version
< 80500) /* 8.1, 8.2, 8.3, 8.4 */
        {
                use_major = 8;
                use_minor = 1;
        }
        else    /* 8.5+ */
        {
                use_major = 8;
                use_minor = 1;
                printf("%s:%d: Possible unsupported PostgreSQL "
                        "version (%d) %d.%d, defaulting to 8.1 support\n",
                        stmt->stmt_filename, stmt->stmt_lno,
adminfo->pg_version,
                        (adminfo->pg_version/10000),
((adminfo->pg_version%10000)/100));
        }

"""

-- 
Jaime Casanova         www.2ndQuadrant.com
Professional PostgreSQL: Soporte y capacitación de PostgreSQL


More information about the Slony1-general mailing list