This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author skrah
Recipients christian.heimes, methane, skrah, vstinner
Date 2016-09-13.11:26:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1473765962.22.0.656136488612.issue28120@psf.upfronthosting.co.za>
In-reply-to
Content
It fails in pytest and has a segfault.  The pytest issue should probably
be separate issue (it could also be a blaze issue).


This is a minimal reproducer for the segfault:

=========================================================
from blaze.expr import symbol
from blaze.interactive import data
from blaze.compute import compute

t = symbol('t', 'var * {amount: int64, id: int64, name: string}')

sql = data('sqlite:///:memory:::accounts', dshape=t.dshape)

expr = t.distinct().nrows
x = expr._subs({t: sql})
result = compute(x)
=========================================================


Blaze itself is pure Python, a third part issue could be in sqlite
or sqlalchemy (but I think that is also mostly pure Python).
History
Date User Action Args
2016-09-13 11:26:02skrahsetrecipients: + skrah, vstinner, christian.heimes, methane
2016-09-13 11:26:02skrahsetmessageid: <1473765962.22.0.656136488612.issue28120@psf.upfronthosting.co.za>
2016-09-13 11:26:02skrahlinkissue28120 messages
2016-09-13 11:26:01skrahcreate