You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given that mysql's type support is slightly different from postgres's, here we remove the unsupported types. For instance, INTERVALs are removed, as there is no equivalent in mysql. However, we still need to test the behavior of sinking data types that mysql doesn't support, including:
INTERVAL, in mysql we can use STRING.
TIMESTAMPTZ, mysql only supports TIMESTAMP
ARRAY, mysql tends to use JSON to represent a list
@WillyKidd Please take a look at this issue. Support data types for stream_chunk payload first, since JSON payload we need to do casting by ourselves which is error-prone.
We expect the mysql sink is ultimately able to pass this test. We'll need to add this test to https://github.com/risingwavelabs/risingwave/tree/main/integration_tests/mysql-sink
Given that mysql's type support is slightly different from postgres's, here we remove the unsupported types. For instance, INTERVALs are removed, as there is no equivalent in mysql. However, we still need to test the behavior of sinking data types that mysql doesn't support, including:
The schema of MySQL:
The text was updated successfully, but these errors were encountered: