mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed typos in FTS DICTIONARY node
This commit is contained in:
committed by
Ashesh Vashi
parent
baae12dfcc
commit
817bdd0108
@@ -1,4 +1,4 @@
|
|||||||
{# FETCH FTS DICTIONARY name statement #}
|
{# Fetch FTS DICTIONARY name statement #}
|
||||||
SELECT
|
SELECT
|
||||||
oid, dictname as name
|
oid, dictname as name
|
||||||
FROM
|
FROM
|
||||||
@@ -7,7 +7,7 @@ WHERE
|
|||||||
{% if scid %}
|
{% if scid %}
|
||||||
dict.dictnamespace = {{scid}}::OID
|
dict.dictnamespace = {{scid}}::OID
|
||||||
{% elif dcid %}
|
{% elif dcid %}
|
||||||
dict.oid = {{pid}}::OID
|
dict.oid = {{dcid}}::OID
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
ORDER BY name
|
ORDER BY name
|
||||||
@@ -16,7 +16,7 @@ FROM
|
|||||||
E'\n);' ||
|
E'\n);' ||
|
||||||
CASE
|
CASE
|
||||||
WHEN description IS NOT NULL THEN
|
WHEN description IS NOT NULL THEN
|
||||||
E'\n\nCOMMENT ON TEXT SEARCH TEMPLATE ' || nspname || E'.' || dict.dictname ||
|
E'\n\nCOMMENT ON TEXT SEARCH DICTIONARY ' || nspname || E'.' || dict.dictname ||
|
||||||
E' IS ' || pg_catalog.quote_literal(description) || E';'
|
E' IS ' || pg_catalog.quote_literal(description) || E';'
|
||||||
ELSE '' END as sql
|
ELSE '' END as sql
|
||||||
FROM
|
FROM
|
||||||
|
|||||||
Reference in New Issue
Block a user