From 78055fe13b64cdfb4accd131e9a462770c21a934 Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Sun, 30 Jun 2024 07:57:30 -0400 Subject: [PATCH] Minor: fix SQLOptions::with_allow_ddl comments (#11166) * Minor: fix SQLOptions::with_allow_ddl comments * fix * Update datafusion/core/src/execution/context/mod.rs Co-authored-by: Jonah Gao --------- Co-authored-by: Jonah Gao --- datafusion/core/src/execution/context/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/datafusion/core/src/execution/context/mod.rs b/datafusion/core/src/execution/context/mod.rs index 9ec0148d9122..012717a007c2 100644 --- a/datafusion/core/src/execution/context/mod.rs +++ b/datafusion/core/src/execution/context/mod.rs @@ -1490,13 +1490,13 @@ impl SQLOptions { Default::default() } - /// Should DML data modification commands (e.g. `INSERT and COPY`) be run? Defaults to `true`. + /// Should DDL data definition commands (e.g. `CREATE TABLE`) be run? Defaults to `true`. pub fn with_allow_ddl(mut self, allow: bool) -> Self { self.allow_ddl = allow; self } - /// Should DML data modification commands (e.g. `INSERT and COPY`) be run? Defaults to `true` + /// Should DML data modification commands (e.g. `INSERT` and `COPY`) be run? Defaults to `true` pub fn with_allow_dml(mut self, allow: bool) -> Self { self.allow_dml = allow; self