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
The --[no-]human should enable/disable space after a comma. Instead of:
--[no-]human
INSERT INTO `pstore_property` VALUES (126727,'2019-10-28 15:03:22',7321,'ip',1,'10.10.10.10',NULL);
I want:
INSERT INTO `pstore_property` VALUES (126727, '2019-10-28 15:03:22', 7321, 'ip', 1, '10.10.10.10', NULL);
by (--human) default.
--human
As for the --coleq, this is described at the top already:
--coleq
# * The --coleq rule match syntax is clunky and restrictive. Maybe do: # table_name[colidx]=value and then add and/or.
And the --help text is insufficient.
--help
Instead of this search:
mysqldumpdissect -f pstore.sql --coleq pstore_property=2:i:7321 | grep ",10);"
I'd like to do this:
mysqldumpdissect -f pstore.sql --coleq 'pstore_property[2]=(i)7321 & pstore_property[6]=(i)10'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
--[no-]human
should enable/disable space after a comma. Instead of:I want:
by (
--human
) default.As for the
--coleq
, this is described at the top already:And the
--help
text is insufficient.Instead of this search:
I'd like to do this:
The text was updated successfully, but these errors were encountered: