I got a weird situation where each time I want to see the contents of a generated table view it starts loading the data instead of immediately showing the data.
When I use this query the data will be showed immediately:
CREATE VIEW train_set
AS SELECT *
FROM logs where ((logs.timestamp >= '2014-03-01 00:00:00') and (logs.timestamp < '2014-03-16 00:00:00'));
But when I use this query:
CREATE VIEW train_set
AS SELECT *
FROM logs where ((logs.timestamp >= '2014-03-01 00:00:00') and (logs.timestamp < '2014-03-16 00:00:00') and logs.user_id = '10');
for each time I want to see the contents of the Table View: train_set it starts loading like it's actually executing the query again.
Does anyone now why this is? I am using Sequel Pro on my Macbook