You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Guillaume!
Suppose I create a sqlite_fdw for such db:
-- sqlite3 test.dbCreateTabletest ( id integerPrimary Key autoincrement, data blob );
Insert Into test( data ) Values ( X'4869' ); --'4869' is hex encoded 'Hi'Select id, data From test;
id data
----- ------
1 Hi
Update test Set data = X'480069'; --zero byte between Select id, data From test; --the same situation will occur in postgres
id data
----- ------
1 H
--in sqlite I can still get whole blobSelect id, hex(data) hex_data, length(data) len From test;
id hex_data len
----- ---------- -----
1 480069 3
How do I get the whole blob in postgres with sqlite_fdw?
As far as I know, a similar situation was with mysql_fdw
The text was updated successfully, but these errors were encountered:
Hi Guillaume!
Suppose I create a sqlite_fdw for such db:
How do I get the whole blob in postgres with sqlite_fdw?
As far as I know, a similar situation was with mysql_fdw
The text was updated successfully, but these errors were encountered: