README.md in embulk-input-mysql-0.7.1 vs README.md in embulk-input-mysql-0.7.2
- old
+ new
@@ -18,9 +18,10 @@
- **query**: SQL to run (string)
- If **query** is not set,
- **table**: destination table name (string, required)
- **select**: comma-separated list of columns to select (string, default: "*")
- **where**: WHERE condition to filter the rows (string, default: no-condition)
+ - **order_by**: name of the column that rows are sorted by (string, default: not sorted)
- **fetch_rows**: number of rows to fetch one time (integer, default: 10000)
- If this value is set to > 1:
- It uses a server-side prepared statement and fetches rows by chunks.
- Internally, `useCursorFetch=true` is enabled and `java.sql.Statement.setFetchSize` is set to the configured value.
- If this value is set to 1: