Fix naming inconsistency for the column and FTS parser modules. Fixes #1269
@ -18,6 +18,7 @@ Features
|
||||
Bug fixes
|
||||
*********
|
||||
|
||||
| `Bug #1269 <https://redmine.postgresql.org/issues/1269>`_ - Fix naming inconsistency for the column and FTS parser modules.
|
||||
| `Bug #3104 <https://redmine.postgresql.org/issues/3104>`_ - Improve a couple of German translations.
|
||||
| `Bug #3995 <https://redmine.postgresql.org/issues/3995>`_ - Avoid 'bogus varno' message from Postgres when viewing the SQL for a table with triggers.
|
||||
| `Bug #4019 <https://redmine.postgresql.org/issues/4019>`_ - Update all Python and JavaScript dependencies.
|
||||
|
@ -13,7 +13,7 @@ import json
|
||||
import uuid
|
||||
|
||||
from pgadmin.browser.server_groups.servers.databases.schemas. \
|
||||
fts_parser.tests import utils as fts_parser_utils
|
||||
fts_parsers.tests import utils as fts_parser_utils
|
||||
from pgadmin.browser.server_groups.servers.databases.schemas.tests import \
|
||||
utils as schema_utils
|
||||
from pgadmin.browser.server_groups.servers.databases.schemas \
|
||||
|
Before Width: | Height: | Size: 326 B After Width: | Height: | Size: 326 B |
Before Width: | Height: | Size: 323 B After Width: | Height: | Size: 323 B |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 744 B After Width: | Height: | Size: 744 B |
@ -9,7 +9,7 @@
|
||||
|
||||
import uuid
|
||||
|
||||
from pgadmin.browser.server_groups.servers.databases.schemas.tables.column. \
|
||||
from pgadmin.browser.server_groups.servers.databases.schemas.tables.columns. \
|
||||
tests import utils as columns_utils
|
||||
from pgadmin.browser.server_groups.servers.databases.schemas.tables.tests \
|
||||
import utils as tables_utils
|
||||
|
@ -10,7 +10,7 @@
|
||||
import uuid
|
||||
import json
|
||||
|
||||
from pgadmin.browser.server_groups.servers.databases.schemas.tables.column. \
|
||||
from pgadmin.browser.server_groups.servers.databases.schemas.tables.columns. \
|
||||
tests import utils as columns_utils
|
||||
from pgadmin.browser.server_groups.servers.databases.schemas.tables.tests \
|
||||
import utils as tables_utils
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
import uuid
|
||||
|
||||
from pgadmin.browser.server_groups.servers.databases.schemas.tables.column. \
|
||||
from pgadmin.browser.server_groups.servers.databases.schemas.tables.columns. \
|
||||
tests import utils as columns_utils
|
||||
from pgadmin.browser.server_groups.servers.databases.schemas.tables.tests \
|
||||
import utils as tables_utils
|
||||
|
@ -10,7 +10,7 @@
|
||||
import json
|
||||
import uuid
|
||||
|
||||
from pgadmin.browser.server_groups.servers.databases.schemas.tables.column. \
|
||||
from pgadmin.browser.server_groups.servers.databases.schemas.tables.columns. \
|
||||
tests import utils as columns_utils
|
||||
from pgadmin.browser.server_groups.servers.databases.schemas.tables.tests \
|
||||
import utils as tables_utils
|
||||
|
@ -1,11 +1,11 @@
|
||||
"""
|
||||
We will use the exisiting modules for creating children module under
|
||||
We will use the existing modules for creating children module under
|
||||
materialize views.
|
||||
|
||||
Do not remove these imports as they will be automatically imported by the view
|
||||
module as its children
|
||||
"""
|
||||
from pgadmin.browser.server_groups.servers.databases.schemas.tables.column \
|
||||
from pgadmin.browser.server_groups.servers.databases.schemas.tables.columns \
|
||||
import blueprint as columns_module
|
||||
from pgadmin.browser.server_groups.servers.databases.schemas.tables.indexes \
|
||||
import blueprint as indexes_modules
|
||||
|