Joshua Sosso

Results 40 comments of Joshua Sosso

Another example: This is what a stream from ChatGPT looks like. Notice the `[DONE]` event at the end. ![Image](https://github.com/user-attachments/assets/9458e5d9-5b41-48e5-952f-95c5a69f98f6)

Okay so I've figured out the issue. This due to a limitation with the VSCode debugger. See here: https://github.com/microsoft/vscode/issues/41600 Basically it doesn't read anything from stdout. It only reads logs...

Hello I'm running into this issue when trying to format sql written for [sqlc](https://sqlc.dev/). With sqlc you write SQL queries that look like this: ```sql -- name: GetAccount :one SELECT...

Oh nvm I literally just found the `sqlParamsTypes` option. So adding the following to my prettier config fixed my issue: ```jsonc { "overrides": [ { "files": "*.sql", "options": { //...

@nene Actually I tried setting `sqlAcceptUnsupportedGrammar` to `true` and it still failed for me. For example I have the following sql: ```sql CREATE TABLE account ( id BINARY(16) NOT NULL...

Should I create a separate issue for supporting `ON UPDATE` in `CREATE TABLE` for Mysql?

Oh nvm I see you've added it to the MYSQL support issue in sql-parser-cst (https://github.com/nene/sql-parser-cst/issues/55)

I'm having the same issue with swift 5.10 on ubuntu 24.04 Error log: ```bash Error: Unexpected error, unable to continue. Please report at https://github.com/swift-actions/setup-swift/issues Version "24.04" of Ubuntu is not...

@devongovett Not OP but I'm running into this issue on Linux. (`Pop!_OS 22.04 LTS`) Here's the output from the debugger ```text lldb `which node` index.mjs (lldb) target create "/home/joshmossas/.nvm/versions/node/v22.7.0/bin/node" Current...