We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d19487c commit 78055feCopy full SHA for 78055fe
datafusion/core/src/execution/context/mod.rs
@@ -1490,13 +1490,13 @@ impl SQLOptions {
1490
Default::default()
1491
}
1492
1493
- /// 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`.
1494
pub fn with_allow_ddl(mut self, allow: bool) -> Self {
1495
self.allow_ddl = allow;
1496
self
1497
1498
1499
- /// 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`
1500
pub fn with_allow_dml(mut self, allow: bool) -> Self {
1501
self.allow_dml = allow;
1502
0 commit comments