Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Adapt index/changes tables for PostgreSQL
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed Aug 6, 2014
1 parent bbabfe9 commit 2c45fe0
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions core/src/plugins/meta.syncable/create.pgsql
@@ -0,0 +1,60 @@
CREATE TYPE ajxp_change_type AS ENUM ('create','delete','path','content');

CREATE TABLE ajxp_changes (
seq BIGSERIAL,
repository_identifier TEXT NOT NULL,
node_id INTEGER NOT NULL,
type ajxp_change_type NOT NULL,
source text NOT NULL,
target text NOT NULL,
constraint pk primary key(seq)
);

CREATE TABLE ajxp_index (
node_id BIGSERIAL ,
node_path text NOT NULL,
bytesize INTEGER NOT NULL,
md5 varchar(32) NOT NULL,
mtime INTEGER NOT NULL,
repository_identifier text NOT NULL,
PRIMARY KEY (node_id)
);


CREATE FUNCTION ajxp_index_delete() RETURNS trigger AS $ajxp_index_delete$
BEGIN
INSERT INTO ajxp_changes (repository_identifier, node_id,source,target,type)
VALUES (OLD.repository_identifier, OLD.node_id, OLD.node_path, 'NULL', 'delete');
RETURN NULL;
END;
$ajxp_index_delete$ LANGUAGE plpgsql;

CREATE FUNCTION ajxp_index_insert() RETURNS trigger AS $ajxp_index_insert$
BEGIN
INSERT INTO ajxp_changes (repository_identifier, node_id,source,target,type)
VALUES (NEW.repository_identifier, NEW.node_id, 'NULL', NEW.node_path, 'create');
RETURN NEW;
END;
$ajxp_index_insert$ LANGUAGE plpgsql;

CREATE FUNCTION ajxp_index_update() RETURNS trigger AS $ajxp_index_update$
BEGIN
IF OLD.node_path = NEW.node_path THEN
INSERT INTO ajxp_changes (repository_identifier, node_id,source,target,type)
VALUES (NEW.repository_identifier, NEW.node_id, OLD.node_path, NEW.node_path, 'content');
ELSE
INSERT INTO ajxp_changes (repository_identifier, node_id,source,target,type)
VALUES (NEW.repository_identifier, NEW.node_id, OLD.node_path, NEW.node_path, 'path');
END IF;
RETURN NEW;
END;
$ajxp_index_update$ LANGUAGE plpgsql;

CREATE TRIGGER LOG_DELETE AFTER DELETE ON ajxp_index
FOR EACH ROW EXECUTE PROCEDURE ajxp_index_delete();

CREATE TRIGGER LOG_INSERT AFTER INSERT ON ajxp_index
FOR EACH ROW EXECUTE PROCEDURE ajxp_index_insert();

CREATE TRIGGER LOG_UPDATE AFTER UPDATE ON ajxp_index
FOR EACH ROW EXECUTE PROCEDURE ajxp_index_update();

0 comments on commit 2c45fe0

Please sign in to comment.