This commit is contained in:
Xudong Cao 2024-06-11 10:52:01 +08:00 committed by GitHub
commit ca949b18a1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -103,6 +103,6 @@ public enum DbType {
* @return
*/
public boolean isSupportMultipleStatement() {
return isHive() || this == DbType.SPARK;
return this == DbType.SPARK;
}
}