Skip to content
This repository was archived by the owner on Sep 27, 2019. It is now read-only.

Commit 088fde4

Browse files
committed
fix iso compile bug
1 parent 96313f8 commit 088fde4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/catalog/catalog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -923,7 +923,7 @@ std::shared_ptr<SystemCatalogs> Catalog::GetSystemCatalogs(
923923
const oid_t database_oid) {
924924
if (catalog_map_.find(database_oid) == catalog_map_.end()) {
925925
throw CatalogException("Failed to find SystemCatalog for database_oid = " +
926-
database_oid);
926+
std::to_string(database_oid));
927927
}
928928
return catalog_map_[database_oid];
929929
}

0 commit comments

Comments
 (0)