MCPcopy Create free account
hub / github.com/crate/crate / getSafePortal

Method getSafePortal

server/src/main/java/io/crate/session/Session.java:320–326  ·  view source on GitHub ↗
(String portalName)

Source from the content-addressed store, hash-verified

318 }
319
320 private Portal getSafePortal(String portalName) {
321 Portal portal = portals.get(portalName);
322 if (portal == null) {
323 throw new IllegalArgumentException("Cannot find portal: " + portalName);
324 }
325 return portal;
326 }
327
328 public CoordinatorSessionSettings sessionSettings() {
329 return sessionSettings;

Callers 5

describeMethod · 0.95
executeMethod · 0.95
getOutputTypesMethod · 0.95
getQueryMethod · 0.95
getResultFormatCodesMethod · 0.95

Calls 1

getMethod · 0.65

Tested by

no test coverage detected