We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
(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 ;
The text was updated successfully, but these errors were encountered:
19e0f86
No branches or pull requests
(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:
When using execSQLResult to execute this query:
Where 'org' is this table:
The text was updated successfully, but these errors were encountered: