Set the query text for audit
(mut self, query_text: Option<String>)
| 82 | |
| 83 | /// Set the query text for audit |
| 84 | pub fn with_query_text(mut self, query_text: Option<String>) -> Self { |
| 85 | self.query_text = query_text; |
| 86 | self |
| 87 | } |
| 88 | |
| 89 | /// Set the physical plan |
| 90 | pub fn with_physical_plan(mut self, plan: Option<PhysicalPlan>) -> Self { |