Skip to content

Commit

Permalink
fix: resolve conflict in sql test result
Browse files Browse the repository at this point in the history
  • Loading branch information
dimbtp committed Dec 31, 2023
1 parent 3119174 commit ed504bc
Show file tree
Hide file tree
Showing 3 changed files with 144 additions and 130 deletions.
2 changes: 1 addition & 1 deletion src/catalog/src/information_schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -178,11 +178,11 @@ impl InformationSchemaProvider {
}
CHECK_CONSTRAINTS => setup_memory_table!(CHECK_CONSTRAINTS),
EVENTS => setup_memory_table!(EVENTS),
FILES => setup_memory_table!(FILES),
KEY_COLUMN_USAGE => Some(Arc::new(InformationSchemaKeyColumnUsage::new(
self.catalog_name.clone(),
self.catalog_manager.clone(),
)) as _),
FILES => setup_memory_table!(FILES),
SCHEMATA => Some(Arc::new(InformationSchemaSchemata::new(
self.catalog_name.clone(),
self.catalog_manager.clone(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ show tables;
| column_statistics |
| columns |
| engines |
| key_column_usage |
| events |
| files |
| key_column_usage |
| schemata |
| tables |
+---------------------------------------+
Expand Down
Loading

0 comments on commit ed504bc

Please sign in to comment.