citusdata / citus_docs

Documentation for Citus. Distributed PostgreSQL as an extension.
Creative Commons Attribution 4.0 International
58 stars 59 forks source link

Fixes invalid column_name minute for http_request in insert statements #1026

Closed gurkanindibay closed 2 years ago

gurkanindibay commented 2 years ago

http_request table does not have minute column but in insert statements we are trying to use minute column . I changed it into date_trunc('minute', ingest_time) which was used in other insert statements in the same document

jonels-msft commented 2 years ago

Thanks for noticing and fixing.