rpuch commented on code in PR #4640:
URL: https://github.com/apache/ignite-3/pull/4640#discussion_r1824219852
##########
modules/table/src/main/java/org/apache/ignite/internal/table/distributed/TableManager.java:
##########
@@ -1737,7 +1738,10 @@ private CompletableFuture<List<Assignments>>
getOrCreateAssignments(
protected MvTableStorage createTableStorage(CatalogTableDescriptor
tableDescriptor, CatalogZoneDescriptor zoneDescriptor) {
StorageEngine engine =
dataStorageMgr.engineByStorageProfile(tableDescriptor.storageProfile());
- assert engine != null : "tableId=" + tableDescriptor.id() + ",
storageProfile=" + tableDescriptor.storageProfile();
+ if (engine == null) {
Review Comment:
Could you please elaborate what `everything else` means here? At least,
tests are green.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]