Sewen Thy
Sewen Thy
### `slack.0.1` Slack API implementation. OCaml interface for accessing Slack APIs and receiving events. --- * Homepage: https://github.com/ahrefs/slack * Source repo: git+https://github.com/ahrefs/slack.git * Bug tracker: https://github.com/ahrefs/slack/issues --- :camel: Pull-request generated...
Adding support for MySQL's `STRAIGHT_JOIN` defined here: https://dev.mysql.com/doc/refman/8.0/en/join.html
## Description The following query works in MariaDB: ```sql SELECT col3 FROM table1 WHERE (col1, col2) IN (('x', 1), ('y', 2)); ``` I want to generate a similar query using...