Re: sqlite_fdw crashes & errors

Поиск
Список
Период
Сортировка
От Mariel Cherkassky
Тема Re: sqlite_fdw crashes & errors
Дата
Msg-id CA+t6e1njA-BnjqDeAJ9gdzhhfFYhBtKsfnxceFh0BLphM=yonw@mail.gmail.com
обсуждение исходный текст
Ответ на Re: sqlite_fdw crashes & errors  (Mark Kirkwood <mark.kirkwood@catalyst.net.nz>)
Ответы Re: sqlite_fdw crashes & errors  (Mark Kirkwood <mark.kirkwood@catalyst.net.nz>)
Список pgsql-admin
What version of sqlite did you use ?

‫בתאריך יום ג׳, 18 בספט׳ 2018 ב-3:49 מאת ‪Mark Kirkwood‬‏ <‪mark.kirkwood@catalyst.net.nz‬‏>:‬
On 17/09/18 00:01, Mariel Cherkassky wrote:
> Hi,
> I installed sqlite_fdw(https://github.com/pgspider/sqlite_fdw) on my
> postgresql v9.6.
> As mentioned on the github page, the extension supports writes. 
>
> However, When I try to insert record into my foreign table my
> postgresql crushes : 
>
> sqlite> .schema MARIEL_TEST
> CREATE TABLE MARIEL_TEST( cola INTEGER PRIMARY KEY, colb TEXT, colc
> INTEGER);
>
> db=# CREATE FOREIGN TABLE MARIEL_TEST_foreign(cola integer,
> colbtext,colc integer) SERVER sqlite_server OPTIONS (table 'MARIEL_TEST');
> CREATE FOREIGN TABLE
> afa=# insert into MARIEL_TEST_foreign values(1,1,1);
> server closed the connection unexpectedly
>         This probably means the server terminated abnormally
>         before or while processing the request.
> The connection to the server was lost. Attempting reset: Failed.
> !>
> !> .exit
> -> ;

Just tried this (Postgres 9.6.10 src build and sqlite_fdw on Ubuntu
18.04). Works for me. Hmmm interesting. I did one thing different from
you - my sqlite db is under Postgres home dir (/home/postgres/sqlite).
Thinking for a bit ... did you create the sqlite db as the postgres user
or someone else? If the latter then that might explain the crash (e.g
permission denied).

Cheers
Mark

В списке pgsql-admin по дате отправления:

Предыдущее
От: Mark Kirkwood
Дата:
Сообщение: Re: sqlite_fdw crashes & errors
Следующее
От: Mariel Cherkassky
Дата:
Сообщение: Re: Segmentation fault postgres 9.6