فهرست منبع

[core] Show that postgresql_psycopg2 is supported

abec 13 سال پیش
والد
کامیت
85cd772eb0
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',
     ),