From: | Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com> |
---|---|
To: | Igor Korot <ikorot01(at)gmail(dot)com> |
Cc: | "pgsql-generallists(dot)postgresql(dot)org" <pgsql-general(at)lists(dot)postgresql(dot)org> |
Subject: | Re: Error on the query |
Date: | 2025-03-04 17:35:23 |
Message-ID: | CAFj8pRDGvEV-rN7W69zuvg64ASG==mEqfLCVXxANAYPhfmUtNg@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
Hi
út 4. 3. 2025 v 18:30 odesílatel Igor Korot <ikorot01(at)gmail(dot)com> napsal:
> Hi, ALL,
> Trying to execute following query:
>
> [code]
> queries.push_back( L"DO $$ BEGIN IF NOT EXISTS( SELECT 1 FROM
> pg_class c, pg_namespace n WHERE n.oid = c.relnamespace AND c.relname
> = \'abcatc_x\' AND n.nspname = \'public\' ) THEN CREATE UNIQUE INDEX
> \"abcatc_x\" ON \"abcatcol\"(\"abc_tnam\" ASC, \"abc_ownr\" ASC,
> \"abc_cnam\" ASC); END IF; END;" );
> [/code]
>
> I got:
>
> [quote]
> $4 = L"ERROR: unterminated dollar-quoted string at or near \"$$ BEGIN
> IF NOT EXISTS( SELECT 1 FROM pg_class c, pg_namespace n WHERE n.oid =
> c.relnamespace AND c.relna
> me = 'abcatc_x' AND n.nspname = 'public' "...
>
> [/quote]
>
> What am I missing?
>
you miss ending string separator
DO $$ .... $$;
DO $$
BEGIN
IF ... THEN
END IF;
END;
$$;
Regards
Pavel
>
> Thank you.
>
>
>
From | Date | Subject | |
---|---|---|---|
Next Message | David G. Johnston | 2025-03-04 17:36:07 | Re: Error on the query |
Previous Message | Igor Korot | 2025-03-04 17:30:37 | Error on the query |