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:
Nikhil Benesch 2019-06-24 12:56:26 -04:00
parent 5b23ad1d4c
commit cf655ad1a6
No known key found for this signature in database
GPG key ID: FCF98542083C5A69
18 changed files with 24 additions and 24 deletions

View file

@ -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();

View file

@ -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) \