public final class CatalogSearchPath extends Object
Plan §7.2 / §9.3. PostgreSQL search_path is the canonical example;
Oracle "PUBLIC" synonyms behave similarly.
Segments are stored as supplied — case-folding happens at lookup time via
IdentifierService, never inside this type.
| Modifier and Type | Method and Description |
|---|---|
static CatalogSearchPath |
empty() |
boolean |
equals(Object o) |
int |
hashCode() |
boolean |
isEmpty() |
static CatalogSearchPath |
of(List<String> segments) |
static CatalogSearchPath |
of(String... segments) |
List<String> |
segments() |
String |
toString() |
public static CatalogSearchPath empty()
public static CatalogSearchPath of(String... segments)
public static CatalogSearchPath of(List<String> segments)
public boolean isEmpty()