parser icon indicating copy to clipboard operation
parser copied to clipboard

A MySQL Compatible SQL Parser

Results 61 parser issues
Sort by recently updated
recently updated
newest added

## Bug Report Please answer these questions before submitting your issue. Thanks! 1. What did you do? Ran parser for dump file with following system generated code at the beginning...

## Feature Request Hello from the [sqlc](https://github.com/kyleconroy/sqlc) project! sqlc is a SQL compiler; it parses SQL and generates type-safe Go code. For MySQL support, we currently use the [vitess.io/vitess/go/vt/sqlparser](https://pkg.go.dev/vitess.io/vitess/go/vt/sqlparser) package....

type/new-feature

Signed-off-by: lzmhhh123 ### What problem does this PR solve? close https://github.com/pingcap/tidb/issues/28476 ### What is changed and how it works? close [#28475](https://github.com/pingcap/tidb/issues/28476) ### Check List Tests - Unit test - Integration...

## Bug Report Please answer these questions before submitting your issue. Thanks! 1. What did you do? If possible, provide a recipe for reproducing the error. Run the demo in...

## Question For example, If query is ``` SELECT Orders.OrderID, Customers.CustomerName, Orders.OrderDate FROM Orders INNER JOIN Customers ON Orders.CustomerID=Customers.CustomerID; ``` I need something like below, ``` { "tableName":"Orders", "columns":[ "OrderID",...

question

## Question Hi. i would like to parse a kind of query like: ``` select * from a inner join b on a.col1 == b.col1 inner join c on b.col2...

## Bug Report Please answer these questions before submitting your issue. Thanks! 1. What did you do? If possible, provide a recipe for reproducing the error. Add the following code...

## Bug Report Please answer these questions before submitting your issue. Thanks! 1. What did you do? ```sql CREATE TABLE t1 ( -- literal defaults i INT DEFAULT 0, c...

1. Support charset gbk in parser; 2. fix description for charsetlatin and charsetbin1 and charsetbin ### What problem does this PR solve? We're using parser to develop some our systems...

status/LGT1
needs-rebase

## Bug Report Getting errors parsing output from mysqldump ``` mysqldump Ver 8.0.26 for Linux on x86_64 (MySQL Community Server - GPL) ``` 1. The problematic part of the dump:...