Skip to content

Commit

Permalink
correct typo in mysql source docs (#3143)
Browse files Browse the repository at this point in the history
* correct mysql source docs

* change bigint order
  • Loading branch information
marcosmarxm committed Apr 30, 2021
1 parent fadf374 commit 237b99e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion docs/integrations/sources/mysql.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@ MySQL data types are mapped to the following data types when synchronizing data:
| `date` | string | |
| `datetime` | string | |
| `enum` | string | |
| `numeric` | string | includes integer, etc |
| `tinyint` | number | |
| `smallint` | number | |
| `mediumint` | number | |
| `int` | number | |
| `bigint` | number | |
| `numeric` | number | |
| `string` | string | |

If you do not see a type in this list, assume that it is coerced into a string. We are happy to take feedback on preferred mappings.
Expand Down

0 comments on commit 237b99e

Please sign in to comment.