Coder Social home page Coder Social logo

Comments (10)

elprans avatar elprans commented on July 18, 2024 1

I'll see if I can put a PostgreSQL patch together to support binary I/O for ltree.

from asyncpg.

elprans avatar elprans commented on July 18, 2024

Custom data codecs can be specified using Connection.set_type_codec().

As to the error itself, it seems to be a bug, as unknown data types should be returned as text. I'll look into this.

from asyncpg.

elprans avatar elprans commented on July 18, 2024

H-m-m. I can't seem to reproduce this. Would you mind sharing a snippet that triggers this?

from asyncpg.

fmariluis avatar fmariluis commented on July 18, 2024

Mmm, it seems something specific to our DB. If I a create a new DB with ltree installed, asyncpg returns text, like you said.

I'll keep trying.

from asyncpg.

fmariluis avatar fmariluis commented on July 18, 2024

It fails with a composite ltree (ltree[]). Complete steps:

Python 3.5.2, Ubuntu 16.04 and PostgreSQL 9.5.3 (with contrib package installed).

  1. createdb example_asyncpg
  2. Inside the db: CREATE EXTENSION ltree;
  3. SQL:
DROP TABLE IF EXISTS test;

CREATE TABLE test (path ltree, comp_path ltree[]);
INSERT INTO test VALUES ('Top', '{"1", "2"}');
  1. Python file:
import asyncio
import asyncpg

async def run():
    conn = await asyncpg.connect(user='example', password='example',
                                 database='example_asyncpg', host='127.0.0.1')
    values = await conn.fetch('''SELECT comp_path FROM test''')
    await conn.close()

loop = asyncio.get_event_loop()
loop.run_until_complete(run())
  1. Exception:
  File "asyncpg/protocol/protocol.pyx", line 165, in bind_execute (asyncpg/protocol/protocol.c:45839)
  File "/usr/lib/python3.5/asyncio/futures.py", line 361, in __iter__
    yield self  # This tells Task to wait for completion.
  File "/usr/lib/python3.5/asyncio/tasks.py", line 296, in _wakeup
    future.result()
  File "/usr/lib/python3.5/asyncio/futures.py", line 274, in result
    raise self._exception
asyncpg.exceptions.UndefinedFunctionError: no binary output function available for type ltree

from asyncpg.

elprans avatar elprans commented on July 18, 2024

OK, so the real issue here is that ltree does not implement binary I/O. Unfortunately, current version of asyncpg does not support text-only datatypes in arrays or composite types, as that would require complicated text parsing for everything. This is a limitation of PostgreSQL protocol.

As workaround, you can cast ltree[] to text[]:

await conn.fetch('''SELECT comp_path::text[] FROM test''')

from asyncpg.

fmariluis avatar fmariluis commented on July 18, 2024

That's perfect, thanks.

from asyncpg.

vitaly-burovoy avatar vitaly-burovoy commented on July 18, 2024

@fmariluis, try asyncpg-0.8.4: @elprans added text array decoder, your steps to reproduce give correct result for me.

from asyncpg.

fmariluis avatar fmariluis commented on July 18, 2024

I'll give it a try. Thanks.

from asyncpg.

elprans avatar elprans commented on July 18, 2024

This is fixed in the released version.

from asyncpg.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.