Currently, the StatementExecutor in the ClickHouse implementation only uses the default Action.values(), which may not sufficiently populate the database tables with meaningful data. This limits the generation of diverse and realistic SQL queries during testing.

Proposed Changes :-
Replaces Action.values() with specific actions.
Now uses: Action[]{Action.INSERT, Action.UPDATE, Action.DELETE}.
These actions explicitly populate the database with meaningful data.
Improves test reliability.
Ensures that tables are not empty during query execution.
Avoids unnecessary triggering of IgnoreMeException.
Currently, the StatementExecutor in the ClickHouse implementation only uses the default Action.values(), which may not sufficiently populate the database tables with meaningful data. This limits the generation of diverse and realistic SQL queries during testing.
Proposed Changes :-
Replaces Action.values() with specific actions.
Now uses: Action[]{Action.INSERT, Action.UPDATE, Action.DELETE}.
These actions explicitly populate the database with meaningful data.
Improves test reliability.
Ensures that tables are not empty during query execution.
Avoids unnecessary triggering of IgnoreMeException.