Skip to content
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

[Improvement][Seatunnel-web] Rename package com.whaleops.datasource to org.apache.seatunnel #217

Merged
merged 1 commit into from
Sep 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public class DatasourceLoadConfig {
"JDBC-CLICKHOUSE",
"org.apache.seatunnel.datasource.plugin.clickhouse.jdbc.ClickhouseJdbcDataSourceFactory");
classLoaderFactoryName.put(
"HIVE", "com.whaleops.datasource.datasource.plugin.hive.HiveDataSourceFactory");
"HIVE", "org.apache.seatunnel.datasource.plugin.hive.HiveDataSourceFactory");
classLoaderFactoryName.put(
"JDBC-ORACLE",
"org.apache.seatunnel.datasource.plugin.oracle.jdbc.OracleJdbcDataSourceFactory");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package com.whaleops.datasource.s3;
package org.apache.seatunnel.datasource;

import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package com.whaleops.datasource.datasource.plugin.hive;
package org.apache.seatunnel.datasource.plugin.hive;

import org.apache.seatunnel.api.configuration.util.OptionRule;
import org.apache.seatunnel.datasource.plugin.api.DataSourcePluginInfo;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package com.whaleops.datasource.datasource.plugin.hive;
package org.apache.seatunnel.datasource.plugin.hive;

import com.google.common.collect.Sets;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@
* limitations under the License.
*/

package com.whaleops.datasource.datasource.plugin.hive;
package org.apache.seatunnel.datasource.plugin.hive;

import org.apache.seatunnel.api.configuration.util.OptionRule;
import org.apache.seatunnel.datasource.plugin.api.DataSourceChannel;
import org.apache.seatunnel.datasource.plugin.api.DataSourcePluginException;
import org.apache.seatunnel.datasource.plugin.api.model.TableField;
import org.apache.seatunnel.datasource.plugin.hive.client.HiveClient;

import org.apache.commons.lang.StringUtils;

import com.whaleops.datasource.datasource.plugin.hive.client.HiveClient;
import lombok.NonNull;
import lombok.extern.slf4j.Slf4j;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package com.whaleops.datasource.datasource.plugin.hive;
package org.apache.seatunnel.datasource.plugin.hive;

import org.apache.seatunnel.datasource.plugin.api.DataSourceChannel;
import org.apache.seatunnel.datasource.plugin.api.DataSourceFactory;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package com.whaleops.datasource.datasource.plugin.hive;
package org.apache.seatunnel.datasource.plugin.hive;

import org.apache.seatunnel.api.configuration.Option;
import org.apache.seatunnel.api.configuration.Options;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@
* limitations under the License.
*/

package com.whaleops.datasource.datasource.plugin.hive.client;
package org.apache.seatunnel.datasource.plugin.hive.client;

import org.apache.seatunnel.common.utils.ExceptionUtils;
import org.apache.seatunnel.datasource.plugin.api.DataSourcePluginException;
import org.apache.seatunnel.datasource.plugin.api.model.TableField;
import org.apache.seatunnel.datasource.plugin.hive.HiveOptionRule;

import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.lang3.StringUtils;
Expand All @@ -31,7 +32,6 @@
import org.apache.hadoop.security.UserGroupInformation;
import org.apache.thrift.TException;

import com.whaleops.datasource.datasource.plugin.hive.HiveOptionRule;
import lombok.extern.slf4j.Slf4j;

import java.io.File;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ PageInfo<DatasourceRes> queryDatasourceList(
/**
* query all datasource by type
*
* @param type @see com.whaleops.datasource.plugin.api.DatasourcePluginTypeEnum
* @param type @see org.apache.seatunnel.datasource.plugin.api.DatasourcePluginTypeEnum
* @return List DataSourcePluginInfo
*/
List<DataSourcePluginInfo> queryAllDatasourcesByType(Integer type);
Expand Down
Loading