DLZ with PostgreSQL and stored procedures
2007-10-01 11:24:55 GMT
I am trying to implement DLZ with a PostgreSQL backend and stored procedures. I apologise for the lack of wrapping at 72 characters in this message. I am getting very wierd results, where my function works in some cases but not in others, where works implies that BIND returns a valid result. This is a rather long email, but I am trying to provide as much information as possible. My schema looks likes this: CREATE TABLE zone_soa ( zoneid integer primary key, vsid integer NOT NULL, zone_name varchar(255) NOT NULL, is_authoritative boolean DEFAULT 'f', ttl integer NOT NULL DEFAULT 28800, zone_serial bigint NOT NULL, refresh integer NOT NULL DEFAULT 2592000, retry integer NOT NULL DEFAULT 86400, expire integer NOT NULL DEFAULT 7776000, minimum integer NOT NULL DEFAULT 28800, primaryns varchar(255) NOT NULL, responsible_person varchar(255) NOT NULL, status text NOT NULL DEFAULT 'Active', last_modified_on timestamp DEFAULT now(), created_on timestamp DEFAULT now(), CONSTRAINT positive_ttl CHECK (ttl >= 0), CONSTRAINT positive_serial CHECK (zone_serial >= 0), CONSTRAINT positive_refresh CHECK (refresh >= 0),(Continue reading)
RSS Feed