Compare commits

..

No commits in common. "c423116b9da3c3e174df1882266886d934513ecd" and "ab5808d1e85c91a05a39f036d6cd6c485ca9a894" have entirely different histories.

View File

@ -1,6 +1,4 @@
REFRESH MATERIALIZED VIEW pricequote.lastpricedetail;
CREATE MATERIALIZED VIEW pricequote.lastpricedetail AS
CREATE TABLE pricequote.lastpricedetail AS
WITH base AS (
SELECT
customer,
@ -124,5 +122,3 @@ FULL OUTER JOIN seg_json s
WITH DATA;
--SELECT * FROM pricequote.lastpricedetail;
CREATE INDEX lastpricedetail_idx ON pricequote.lastpricedetail(customer, partgroup);