Look up an array by name. Returns `None` if no array with that name is registered. The default implementation returns `None` so that catalog adapters predating array support compile without change — the array DML planner falls back to "array not found" in that case.
(&self, _name: &str)
| 78 | /// change — the array DML planner falls back to "array not found" |
| 79 | /// in that case. |
| 80 | fn lookup_array(&self, _name: &str) -> Option<ArrayCatalogView> { |
| 81 | None |
| 82 | } |
| 83 | |
| 84 | /// Cheap existence check; the default delegates to `lookup_array`. |
| 85 | fn array_exists(&self, name: &str) -> bool { |
no outgoing calls
no test coverage detected