Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
HuaHuaY committed Nov 10, 2022
1 parent a413c3a commit 704dc47
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/frontend/src/catalog/system_catalog/pg_catalog/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,9 @@ impl SysCatalogReaderImpl {
Some(ScalarImpl::Utf8(schema.name())),
Some(ScalarImpl::Utf8(view.name().to_string())),
// TODO(zehua): after fix issue #6080, there must be Some.
user_info_reader.get_user_name_by_id(view.owner).map(ScalarImpl::Utf8),
user_info_reader
.get_user_name_by_id(view.owner)
.map(ScalarImpl::Utf8),
// TODO(zehua): may be not same as postgresql's "definition" column.
Some(ScalarImpl::Utf8(view.sql.clone())),
])
Expand Down

0 comments on commit 704dc47

Please sign in to comment.