We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
增加支持opengauss数据源
CREATE TABLE source_opengauss ( std_id integer ,std_name varchar ,std_sex varchar ,std_birth timestamp(0) ,std_in timestamp(0) ,std_address varchar ) WITH ( 'connector' = 'opengauss-x', 'url' = 'jdbc:opengauss://x.x.x.x:5432/school', 'table-name' = 'student', 'username' = 'test', 'password' = 'xxx', -- 'scan.fetch-size' = '2', 'scan.query-timeout' = '10' ,'scan.custom-sql' = 'SELECT * from student where std_id>40' ); CREATE TABLE sink_opengauss ( std_id integer ,std_name varchar ,std_sex varchar ,std_birth timestamp(0) ,std_in timestamp(0) ,std_address varchar ) WITH ( 'connector' = 'opengauss-x', 'url' = 'jdbc:opengauss://x.x.x.x:5432/school', 'table-name' = 'di_test', 'username' = 'test', 'password' = 'xxxxx', -- 'sink.buffer-flush.max-rows' = '1', 'sink.all-replace' = 'true' ); CREATE TABLE sink_stream ( std_id integer ,std_name varchar ,std_sex varchar ,std_birth timestamp(0) ,std_in timestamp(0) ,std_address varchar ) WITH ( 'connector' = 'stream-x' ); -- INSERT INTO sink_stream SELECT * FROM source_opengauss; INSERT INTO sink_opengauss SELECT * FROM source_opengauss;
No response
The text was updated successfully, but these errors were encountered:
[Feature-DTStack#1924][opengauss] Add opengauss connector
1c9d594
[Feature-#1924][opengauss] Add opengauss connector
1d77727
Successfully merging a pull request may close this issue.
Search before asking
Description
增加支持opengauss数据源
Use case
Related issues
No response
Are you willing to submit a PR?
Code of Conduct
The text was updated successfully, but these errors were encountered: