Get a mutable temp table entry (for INSERT INTO).
(&mut self, name: &str)
| 73 | |
| 74 | /// Get a mutable temp table entry (for INSERT INTO). |
| 75 | pub fn get_mut(&mut self, name: &str) -> Option<&mut TempTableEntry> { |
| 76 | self.tables.get_mut(name) |
| 77 | } |
| 78 | |
| 79 | /// Remove a temp table. |
| 80 | pub fn remove(&mut self, name: &str) -> bool { |
no outgoing calls