cloud-fan commented on a change in pull request #25465: [SPARK-28747][SQL]
merge the two data source v2 fallback configs
URL: https://github.com/apache/spark/pull/25465#discussion_r315744878
##########
File path:
sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/DataSource.scala
##########
@@ -711,6 +712,23 @@ object DataSource extends Logging {
}
}
+ /**
+ * Return a [[TableProvider]] instance for the given provider. It returns
None if the provider
+ * is not Data Source V2, or it's configured to fallback to Data Source V1
code path.
+ */
+ def lookupDataSourceV2(provider: String, conf: SQLConf):
Option[TableProvider] = {
+ val useV1Sources =
conf.getConf(SQLConf.USE_V1_SOURCE_LIST).toLowerCase(Locale.ROOT)
+ .split(",").map(_.trim)
+ val cls = lookupDataSource(provider, conf)
+ cls.newInstance() match {
+ case d: DataSourceRegister if useV1Sources.contains(d.shortName()) =>
None
Review comment:
It's checked in the next line.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]