mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-09 08:48:02 +00:00
move tests to tests dir
This commit is contained in:
parent
486eca1f10
commit
9daba3ab49
3 changed files with 8 additions and 5 deletions
|
@ -27,9 +27,6 @@ use chrono::{NaiveDate,
|
||||||
Utc,
|
Utc,
|
||||||
};
|
};
|
||||||
|
|
||||||
#[cfg(test)]
|
|
||||||
mod tests;
|
|
||||||
|
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
pub enum ParserError {
|
pub enum ParserError {
|
||||||
TokenizerError(String),
|
TokenizerError(String),
|
||||||
|
|
|
@ -1,6 +1,12 @@
|
||||||
|
extern crate log;
|
||||||
|
extern crate sqlparser;
|
||||||
|
|
||||||
use super::super::dialect::PostgreSqlDialect;
|
use sqlparser::sqlast::*;
|
||||||
use super::*;
|
use sqlparser::sqltokenizer::*;
|
||||||
|
use sqlparser::sqlparser::*;
|
||||||
|
use sqlparser::dialect::PostgreSqlDialect;
|
||||||
|
|
||||||
|
use log::*;
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_prev_index(){
|
fn test_prev_index(){
|
Loading…
Add table
Add a link
Reference in a new issue