Postgres 9.6 on Windows 10 I’m creating a table filtered_table1 via a simple select operation on another table table1 (around 1.8 billion rows) and filtering it by some field create table filtered_table1 as ( select * from table1 where epoch_time >= 1510227000000 and epoch_time <= 1510230600000 ); I get the error pasted below on runningRead more