Get a temp table entry.
(&self, name: &str)
| 68 | |
| 69 | /// Get a temp table entry. |
| 70 | pub fn get(&self, name: &str) -> Option<&TempTableEntry> { |
| 71 | self.tables.get(name) |
| 72 | } |
| 73 | |
| 74 | /// Get a mutable temp table entry (for INSERT INTO). |
| 75 | pub fn get_mut(&mut self, name: &str) -> Option<&mut TempTableEntry> { |
no outgoing calls