-
Notifications
You must be signed in to change notification settings - Fork 85
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for the PR.
when a table contains only generated columns, it should produce an output with COUNT(*)
empty rows, rather than skipping the table entirely, for instance producing
INSERT INTO `the_table` VALUES
(),
(),
(),
(),
();
could you add a test for that (e.g. reuse tests/ignore_generate_column
)?
(you could use the CI if setting up the environment is too hard 😛)
…ix_all_generated_column
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rest LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
* Fix dump all generated column table
* Fix dump all generated column table
* Fix dump all generated column table
* Fix dump all generated column table
* Fix dump all generated column table
What problem does this PR solve?
Fix #145
What is changed and how it works?
Handling the case where selected field is empty
Check List
Tests
Side effects
Related changes
Release note