mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-07-07 17:04:59 +00:00
Remove "sql" prefix from module names
Since this crate only deals with SQL parsing, the modules are understood to refer to SQL and don't need to restate that explicitly.
This commit is contained in:
parent
5b23ad1d4c
commit
cf655ad1a6
18 changed files with 24 additions and 24 deletions
|
@ -19,7 +19,7 @@ use simple_logger;
|
|||
use std::fs;
|
||||
|
||||
use sqlparser::dialect::*;
|
||||
use sqlparser::sqlparser::Parser;
|
||||
use sqlparser::parser::Parser;
|
||||
|
||||
fn main() {
|
||||
simple_logger::init().unwrap();
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#![warn(clippy::all)]
|
||||
|
||||
use sqlparser::dialect::GenericSqlDialect;
|
||||
use sqlparser::sqlparser::*;
|
||||
use sqlparser::parser::*;
|
||||
|
||||
fn main() {
|
||||
let sql = "SELECT a, b, 123, myfunc(b) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue