Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Internal AssertError: Attempting to fetch the front of an empty array of ubyte #7

Closed
Abscissa opened this issue Dec 9, 2012 · 0 comments

Comments

@Abscissa
Copy link

Abscissa commented Dec 9, 2012

(I'll be pushing a fix for this in a moment. I'm posting this just to document the issue.)

I'm not sure how easy it is to reproduce this on other systems, or with simpler test cases, but my setup is:

Server: Win7 x64, MySQL Server v5.0.91
Client: Win7 x64, 32-bit executable, vibe.d 0.7.9

I get the following AssertError:

Attempting to fetch the front of an empty array of ubyte

When using execSQLResult to execute this query:

SELECT `COLUMN_NAME`, `ORDINAL_POSITION`
    FROM `INFORMATION_SCHEMA`.`COLUMNS`
    WHERE `TABLE_SCHEMA`='my_db_schema_name' AND `TABLE_NAME`='org'

Where 'org' is this table:

CREATE TABLE `org` (
    `id`    SERIAL,
    `name`  VARCHAR(255) NOT NULL,
    `email` VARCHAR(255) NOT NULL,
    PRIMARY KEY (`id`),
    UNIQUE (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ;
@ghost ghost assigned Abscissa Dec 9, 2012
@Abscissa Abscissa removed their assignment Oct 2, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant