Matthew Peveler

Results 298 comments of Matthew Peveler

When implementing this feature, I've found that for some people's redshift configuration, querying the `SVV_EXTERNAL_TABLES` table can be extraordinarily slow, and so may be good to offer a way for...

Ideally a release with 5590ade825c9ae159d2a8e5def697d7259162700 would be made as the info is already in the repo.

I think the following would demonstrate the "bug": ```sql CREATE TABLE t ( c1 bigint, c2 int8 ); ``` where the `information_schema.columns.udt_name` ([docs](https://www.postgresql.org/docs/current/infoschema-columns.html)) column will show `int8` as that's what...

I wonder if it's a limitation of using `secrets.GITHUB_TOKEN` for trying to create a protected tag, where the user associated doesn't have admin/maintainer rights on the repo? Might need to...

It's recommended that you use [`npm ci`](https://docs.npmjs.com/cli/v10/commands/npm-ci) in CI environments to install dependencies instead of `npm install` where the former will fail if the `package.json` and `package-lock.json` files do not...

The easiest (and best?) would be to just use the builtin [`localStorage`](https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage) API with an attached event listener on each field we care about, writing out the form values every...

I would vote for holding off on automatic server side submission for now. I think that just client side auto-saving of the form might be good enough for the students...

I think we'll want to call out in the docs that you can disable the sql editor from the service management page. When disabled, can re-enable it from the sql...

@ajibarra Sorry for the delay on this. I don't really want to merge an "omnibus" PR to 0.13.x branch as it makes reverting anything a pain. I'd rather see individual...

Thanks for the report. I think the solution here is to remove the check and then just rely on `file_put_contents` failing for really deciding if something isn't writable or not,...