mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-31 19:27:21 +00:00
Derive PartialOrd
, Ord
, and Copy
whenever possible (#717)
This allow other projects to use our structures inside others that need those.
This commit is contained in:
parent
c429197340
commit
5e1d9f8d6e
10 changed files with 106 additions and 106 deletions
|
@ -211,7 +211,7 @@ fn parse_show_create() {
|
|||
assert_eq!(
|
||||
mysql_and_generic().verified_stmt(format!("SHOW CREATE {} myident", obj_type).as_str()),
|
||||
Statement::ShowCreate {
|
||||
obj_type: obj_type.clone(),
|
||||
obj_type: *obj_type,
|
||||
obj_name: obj_name.clone(),
|
||||
}
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue