Comment 6 for bug 935951

Revision history for this message
Wajahat Abbassi (wajahat-abbassi) wrote :

Hi,

I have commited the fix for this bug. Fix is:

Drizzled.cc has been modified:

Old code: if (vm.count("no-defaults"))

New Code: if (! vm["no-defaults"].as<bool>())

I implemented unit test and submitted the branch for merging.

Wajahat Abbassi