瀏覽代碼

[core] Show that postgresql_psycopg2 is supported

abec 13 年之前
父節點
當前提交
85cd772
共有 3 個文件被更改,包括 3 次插入3 次删除
  1. 1 1
      desktop/conf.dist/hue.ini
  2. 1 1
      desktop/conf/pseudo-distributed.ini.tmpl
  3. 1 1
      desktop/core/src/desktop/conf.py

+ 1 - 1
desktop/conf.dist/hue.ini

@@ -157,7 +157,7 @@
   # ------------------------------------------------------------------------
   [[database]]
     # Database engine is typically one of:
-    # postgresql, mysql, sqlite3, or oracle
+    # postgresql_psycopg2, mysql, or sqlite3
     #
     # Note that for sqlite3, 'name', below is a filename;
     # for other backends, it is the database name.

+ 1 - 1
desktop/conf/pseudo-distributed.ini.tmpl

@@ -163,7 +163,7 @@
   # ------------------------------------------------------------------------
   [[database]]
     # Database engine is typically one of:
-    # postgresql, mysql, sqlite3, or oracle
+    # postgresql_psycopg2, mysql, or sqlite3
     #
     # Note that for sqlite3, 'name', below is a filename;
     # for other backends, it is the database name.

+ 1 - 1
desktop/core/src/desktop/conf.py

@@ -146,7 +146,7 @@ DATABASE = ConfigSection(
   members=dict(
     ENGINE=Config(
       key='engine',
-      help=_('Database engine, such as postgresql, mysql, sqlite3, or Oracle.'),
+      help=_('Database engine, such as postgresql_psycopg2, mysql, or sqlite3.'),
       type=str,
       default='sqlite3',
     ),