Browse Source

[editor] Show external statement should default to false

Romain Rigaux 4 years ago
parent
commit
894b421e9e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      desktop/libs/notebook/src/notebook/conf.py

+ 1 - 1
desktop/libs/notebook/src/notebook/conf.py

@@ -223,7 +223,7 @@ ENABLE_EXTERNAL_STATEMENT = Config(
   key="enable_external_statements",
   help=_t("Flag to enable the selection of queries from files, saved queries into the editor or as snippet."),
   type=coerce_bool,
-  default=True
+  default=False
 )
 
 ENABLE_BATCH_EXECUTE = Config(