SongYoungUk
SongYoungUk
@dmfay I'm not very familiar with PostGIS syntax, but I believe this bug is related to the code at this link: (https://github.com/sqlfluff/sqlfluff/blob/main/src/sqlfluff/dialects/dialect_postgres.py#L1471).
@alanmcruickshank I'm working on `dialect_postgres_keywords` and noticed that its structure is a bit different from other dialects. This difference may be due to the PostgreSQL extension keywords. In addition, I'm...
Thank you for the advice, @WittierDinosaur! I referred to the official PostgreSQL source code (`gram.y`) and noticed that keywords are divided into five categories: `unreserved`, `col_name`, `type_func_name`, `reserved`, and `bare_label`....
@ryanking13 @hoodmane I’d like to work on this issue. Could you assign me as the assignee?
Hi @ryanking13, this issue might be a bit challenging for me, but would it be okay if I take it?
@greg-finley Thanks for advice! When I try to check comments in PostgreSQL, I have to implement my own application logic to retrieve comments for a specific column or table by...
@greg-finley, I usually review DDL commands before executing them at work, so relying solely on the information schema is impossible for me. When a table or DDL is lengthy, it...