You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kyuubi.apache.org by ch...@apache.org on 2022/07/26 12:59:20 UTC

[incubator-kyuubi] branch master updated: [KYUUBI #3144] Remove deprecated KyuubiDriver in services manifest

This is an automated email from the ASF dual-hosted git repository.

chengpan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-kyuubi.git


The following commit(s) were added to refs/heads/master by this push:
     new d5dae0963 [KYUUBI #3144] Remove deprecated KyuubiDriver in services manifest
d5dae0963 is described below

commit d5dae09639501a23aed4a8ff880c278a297da27e
Author: Cheng Pan <ch...@apache.org>
AuthorDate: Tue Jul 26 12:57:21 2022 +0000

    [KYUUBI #3144] Remove deprecated KyuubiDriver in services manifest
    
    ### _Why are the changes needed?_
    
    `KyuubiDriver` has been marked deprecated and replaced by `KyuubiHiveDriver` in 1.4.0, see detail in #1147.
    
    This PR removes the deprecated KyuubiDriver in services manifest so it would not be discovered by the service loader, users still can use this deprecated driver before removing the class itself.
    
    ### _How was this patch tested?_
    - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible
    
    - [ ] Add screenshots for manual tests if appropriate
    
    - [x] [Run test](https://kyuubi.apache.org/docs/latest/develop_tools/testing.html#running-tests) locally before make a pull request
    
    Closes #3144 from pan3793/jdbc.
    
    Closes #3144
    
    9d458541 [Cheng Pan] Remove deprecated KyuubiDriver in services manifest
    
    Authored-by: Cheng Pan <ch...@apache.org>
    Signed-off-by: Cheng Pan <ch...@apache.org>
---
 kyuubi-hive-jdbc/src/main/resources/META-INF/services/java.sql.Driver | 1 -
 1 file changed, 1 deletion(-)

diff --git a/kyuubi-hive-jdbc/src/main/resources/META-INF/services/java.sql.Driver b/kyuubi-hive-jdbc/src/main/resources/META-INF/services/java.sql.Driver
index ab16876b7..e93abdcdd 100644
--- a/kyuubi-hive-jdbc/src/main/resources/META-INF/services/java.sql.Driver
+++ b/kyuubi-hive-jdbc/src/main/resources/META-INF/services/java.sql.Driver
@@ -13,5 +13,4 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-org.apache.kyuubi.jdbc.KyuubiDriver
 org.apache.kyuubi.jdbc.KyuubiHiveDriver