Cheap existence check; the default delegates to `lookup_array`.
(&self, name: &str)
| 83 | |
| 84 | /// Cheap existence check; the default delegates to `lookup_array`. |
| 85 | fn array_exists(&self, name: &str) -> bool { |
| 86 | self.lookup_array(name).is_some() |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | /// View of a registered array, surfaced to the SQL planner. Decoded by |
no test coverage detected