ECPG bug: PRAPARE FOR

From: 1250kv <1250kv(at)gmail(dot)com>
To: pgsql-bugs(at)lists(dot)postgresql(dot)org
Subject: ECPG bug: PRAPARE FOR
Date: 2020-10-20 16:36:39
Message-ID: CA+4qtLett6CMxojrwn+yQq7qmN8SMOM3eZQ8yQG9D5tCuF-vKw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

Hello
I have code:

void main()
{
char *foo = "CALL "My_Proc"(?)";
EXEC SQL char *stmt = foo;
EXEC SQL PREPARE prep_stmt FROM :stmt;

EXEC SQL char *stmt2 = "CALL \x22OMy_Proc\x22(?)";
EXEC SQL PREPARE prep_stmt2 FROM :stmt2;

EXEC SQL PREPARE prep_stmt3 FROM "CALL "My_Proc"(?)";
}

ecpg --version
ecpg (PostgreSQL) 13.0 (Ubuntu 13.0-1.pgdg20.04+1)

ecpg sample.pgc -o sample.c
sample.pgc:10: ERROR: syntax error at or near "My_Proc"

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Peter Eisentraut 2020-10-20 16:41:38 Re: invalid alloc size error possible in shm_mq
Previous Message 1250kv 2020-10-20 16:25:36 ECPG bug: "unterminated quoted identifier"