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

@ -14,8 +14,8 @@
//! Test SQL syntax specific to PostgreSQL. The parser based on the
//! generic dialect is also tested (on the inputs it can handle).
use sqlparser::ast::*;
use sqlparser::dialect::{GenericSqlDialect, PostgreSqlDialect};
use sqlparser::sqlast::*;
use sqlparser::test_utils::*;
#[test]