Skip to content

Commit

Permalink
chore: skip information schema
Browse files Browse the repository at this point in the history
  • Loading branch information
shuiyisong committed Oct 17, 2023
1 parent 33e6977 commit f634bde
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/cmd/src/cli/export.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,9 @@ impl Export {
let mut result = Vec::with_capacity(schemas.len());
for i in 0..schemas.len() {
let schema = schemas.get_data(i).unwrap().to_owned();
if schema == common_catalog::consts::INFORMATION_SCHEMA_NAME {
continue;
}
result.push((self.catalog.clone(), schema));
}
Ok(result)
Expand Down

0 comments on commit f634bde

Please sign in to comment.