Hi Lars,
Thank you for your quick reply.
Yes I have tried to insert values with a notable gap and it gets inserted. Something like this I tried :
insert into "SERIES_DATA"."ELECTRICITY_CONSUMPTION2" values (1, '2015-01-03', 7.0);
Looks like as you have already said, the statements like equidistant and missing elements not allowed are not to be taken as a statement.
However,
insert into "SERIES_DATA"."ELECTRICITY_CONSUMPTION2" values (1, '2015-01-03 00:30:00', 7.0)
fails as it does not adhere to interval of 1 hour which is mentioned in the table definition.