there is one index on histories tables:
CREATE INDEX history_1 on history (itemid,clock);
CREATE INDEX history_uint_1 on history_uint (itemid,clock);
Question:
Why this index is not unique ?
Is it expected to have more than 1 value for each (itemid, clock) ?
CREATE INDEX history_1 on history (itemid,clock);
CREATE INDEX history_uint_1 on history_uint (itemid,clock);
Question:
Why this index is not unique ?
Is it expected to have more than 1 value for each (itemid, clock) ?
Comment