-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrate Postgres and MySql to use new JdbcSource #1307
Conversation
0d400d7
to
7d48ef4
Compare
19e6f62
to
2325e8f
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tada!
import org.junit.jupiter.api.BeforeEach; | ||
import org.testcontainers.containers.MySQLContainer; | ||
|
||
class MySqlDbSourceStandardTest extends JdbcSourceStandardTest { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NIT: remove the db
from the name
import org.testcontainers.containers.PostgreSQLContainer; | ||
import org.testcontainers.utility.MountableFile; | ||
|
||
class PostgresDbSourceStandardTest extends JdbcSourceStandardTest { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same NIT
* in source-postgres. | ||
*/ | ||
@Disabled | ||
class PostgresJdbcJdbcStressTest extends JdbcStressTest { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can can remove one of the JDBC :)
8c487d9
to
3d490fc
Compare
What