All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fahrschein-db.migration.V20__nakadi_partition.sql Maven / Gradle / Ivy

There is a newer version: 0.21.1
Show newest version
CREATE TABLE IF NOT EXISTS nakadi_partition (

    np_consumer_name  text NOT NULL,
    np_event_name     text NOT NULL,
    np_partition      text NOT NULL,
    np_locked_by      text,
    np_last_modified  timestamp without time zone NOT NULL DEFAULT clock_timestamp(),
    PRIMARY KEY (np_consumer_name, np_event_name, np_partition)
);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy