Skip to content

Commit

Permalink
Move API into connector and fix import.
Browse files Browse the repository at this point in the history
  • Loading branch information
rdblue committed Nov 18, 2020
1 parent b3ba28d commit 2eec8e5
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package org.apache.spark.sql.catalog.v2;
package org.apache.spark.sql.connector.catalog;

import org.apache.spark.sql.catalyst.InternalRow;
import org.apache.spark.sql.types.DataType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package org.apache.spark.sql.catalog.v2;
package org.apache.spark.sql.connector.catalog;

import java.io.Serializable;

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

package org.apache.spark.sql.catalog.v2;
package org.apache.spark.sql.connector.catalog;

import org.apache.spark.sql.types.DataType;
import org.apache.spark.sql.types.IntegerType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package org.apache.spark.sql.catalog.v2;
package org.apache.spark.sql.connector.catalog;

import java.io.Serializable;

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

package org.apache.spark.sql.catalog.v2;
package org.apache.spark.sql.connector.catalog;

import org.apache.spark.sql.catalyst.analysis.NoSuchFunctionException;
import org.apache.spark.sql.catalyst.analysis.NoSuchNamespaceException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package org.apache.spark.sql.catalog.v2;
package org.apache.spark.sql.connector.catalog;

import org.apache.spark.sql.catalyst.InternalRow;
import org.apache.spark.sql.types.DataType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package org.apache.spark.sql.catalog.v2;
package org.apache.spark.sql.connector.catalog;

import org.apache.spark.sql.types.StructType;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class NoSuchFunctionException(
msg: String,
cause: Option[Throwable]) extends AnalysisException(msg, cause = cause) {

import org.apache.spark.sql.catalog.v2.CatalogV2Implicits._
import org.apache.spark.sql.connector.catalog.CatalogV2Implicits._

def this(db: String, func: String, cause: Option[Throwable] = None) = {
this(s"Undefined function: '$func'. " +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package org.apache.spark.sql.catalog.v2
package org.apache.spark.sql.connector.catalog

import org.apache.spark.SparkFunSuite
import org.apache.spark.sql.catalyst.InternalRow
Expand Down

0 comments on commit 2eec8e5

Please sign in to comment.