Alec Larson
Alec Larson
Input: ```sql CREATE TYPE address_type AS ( street varchar(100), city varchar(50), state varchar(50), zip_code varchar(20) ); ``` Output: ```sql CREATE TYPE address_type AS ( street varchar ( 100), city varchar(50),...
### Input ```pgsql CREATE TYPE person AS ( id text NOT NULL, age integer NOT NULL CHECK (age > 0), ); ``` ### Output ```pgsql CREATE TYPE person AS (...
See [here](https://github.com/pganalyze/libpg_query/blob/680f5ee67c6fdae497c8d1edfadd02b9b8eac74f/test/parse_tests.c#L9) the following `A_Const` node output: (all cases adhere to this pattern) ```json {"A_Const":{"ival":{"ival":1},"location":7}} ``` ### Ideal output I believe a more ideal output would be something like: ```json...
### Description When a `globalSetup` file (or a module imported as a result of a `globalSetup` file's execution) has an error at runtime, the sourcemaps were not being used, because...
Hello! I'm curious what the status of this project is. 1. Is it “production ready”? 2. Would you recommend using this, [pgrocks-fdw](https://github.com/vidardb/pgrocks-fdw), or something else entirely for write-heavy FDW? Looking...
Say I want to share a `.vscode` folder between all subrepos and the monorepo. So whether you check out the monorepo or a specific subrepo, the same `.vscode` folder is...
### Overview The `defineWxtPlugin` function is referenced by the generated `.wxt/types/imports.d.ts` module, which is used by client code. Therefore, we need to avoid importing from `wxt/src/types.ts`, as it depends on...
### Overview Avoid crashing the dev server if a broken import exists. **Unrelated to this PR:** You can see the suggestion to install `vite-tsconfig-paths`, but as I understand it, WXT...
Could an option be added to allow these? I realize that pg-schema-diff doesn't parse dependencies of UDFs, but my tool does, so it's not an issue. I also understand that...
**Describe the bug** Incompatible cast does not result in DROP COLUMN followed by ADD COLUMN. This is occurring for me with all hazards allowed and plan validation disabled. ``` Error:...