postgresql-parser icon indicating copy to clipboard operation
postgresql-parser copied to clipboard

Pure Golang PostgreSQL (SQL:2011, SQL:2008, SQL:2003, SQL:1999, and SQL-92 Standard) Parser

Results 12 postgresql-parser issues
Sort by recently updated
recently updated
newest added

## Description Right now when the parser fail with an unknown syntax, the error is really minimal, which to debug on a mid/big size schema is near impossible. Is there...

what does function `ParseTableName` mean? ``` // in file: pkg/sql/parser/parser.go:253 func ParseTableName(sql string) (*tree.UnresolvedObjectName, error) { // We wrap the name we want to parse into a dummy statement since...