vrmiguel opened a new issue, #1994:
URL: https://github.com/apache/datafusion-sqlparser-rs/issues/1994

   ```rust
   Parser::parse_sql(&PostgreSqlDialect {}, "SHOW search_path; SHOW timezone; 
SET search_path TO public;").unwrap()
   ```
   
   The above results in:
   
   ```rust
   [
       ShowVariable {
           variable: [
               Ident {
                   value: "search_path",
                   quote_style: None,
                   span: Span(Location(1,6)..Location(1,17)),
               },
               Ident {
                   value: "SHOW",
                   quote_style: None,
                   span: Span(Location(1,19)..Location(1,23)),
               },
               Ident {
                   value: "timezone",
                   quote_style: None,
                   span: Span(Location(1,24)..Location(1,32)),
               },
               Ident {
                   value: "SET",
                   quote_style: None,
                   span: Span(Location(1,34)..Location(1,37)),
               },
               Ident {
                   value: "search_path",
                   quote_style: None,
                   span: Span(Location(1,38)..Location(1,49)),
               },
               Ident {
                   value: "TO",
                   quote_style: None,
                   span: Span(Location(1,50)..Location(1,52)),
               },
               Ident {
                   value: "public",
                   quote_style: None,
                   span: Span(Location(1,53)..Location(1,59)),
               },
           ],
       },
   ]
   ```
   
   Its `Display` impl results in `"SHOW search_path SHOW timezone SET 
search_path TO public"`
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to