Results 39 comments of Dian Fay

I am able to reproduce this crash in 2.32 on Arch: ``` Newsboat 2.32.0 - https://newsboat.org/ Copyright (C) 2006-2015 Andreas Krennmair Copyright (C) 2015-2023 Alexander Batischev Copyright (C) 2006-2017 Newsbeuter...

@vitaly-t pg-query-stream's reversion to the classic readable stream style is what's breaking https://github.com/dmfay/massive-js/pull/473 too btw.

no -- modern streams have `readable`, the `data` event is what makes it [classic](https://github.com/substack/stream-handbook#classic-readable-streams) style.

You want @brianc, not me :) I wound up [writing a wrapper](https://github.com/dmfay/massive-js/blob/master/lib/database.js#L365) to be able to return a modern stream from Massive.

I'm seeing related problems on clean applies as well when the ownership grant comes later in the DAG sort: ``` │ Error: error granting privileges to account role: 003036 (23001):...

@emancu I'm not pronouncing it a solution yet but initial results have been promising -- I've split up the `grant_privileges_to_role` resources so a dependent grant (e.g. usage + create table)...

> @dmfay Thanks for your hint! How did you infer that from the error? 🤔 the exact same thing happened to me earlier this week after I upgraded to 0.68...

Splitting the schema grants works well for setup, but teardown fails to unroll them during execution: ```terraform resource "snowflake_grant_privileges_to_role" "admin_schema_ownership" { for_each = toset(["PUBLIC", snowflake_schema.raw.name, snowflake_schema.security.name, snowflake_schema.mart.name]) role_name = local.role_admin...

> @dmfay I've found this PR just before starting to work on some functions to check comments, what are your intention about this one ? I have not been able...