Skip to content

Commit 7b3b64c

Browse files
Merlin Rabensmerlinrabens
authored andcommitted
Rename files following camel case convention
1 parent 212664f commit 7b3b64c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/main/scala/com/intenthq/action_processor/integrationsV2/HiveFeed.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import doobie.util.transactor.{Strategy, Transactor}
66

77
import scala.util.Properties
88

9-
abstract class HiveFeed[I, O] extends SQLFeed[I, O]("org.apache.hive.jdbc.HiveDriver") with TimeMeta with JavaLegacyTimeMeta {
9+
abstract class HiveFeed[I, O] extends SqlFeed[I, O]("org.apache.hive.jdbc.HiveDriver") with TimeMeta with JavaLegacyTimeMeta {
1010
override protected lazy val transactor: Transactor[IO] = Transactor.strategy.set(createTransactor, Strategy.void)
1111
override protected val jdbcUrl: String = Properties.envOrElse("HIVE_JDBC_URL", "jdbc:hive2://localhost:10000")
1212
}

src/main/scala/com/intenthq/action_processor/integrationsV2/SQLFeed.scala renamed to src/main/scala/com/intenthq/action_processor/integrationsV2/SqlFeed.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import doobie.util.query.Query0
66
import doobie.util.transactor.Transactor
77
import doobie.util.transactor.Transactor.Aux
88

9-
abstract class SQLFeed[I, O](driver: String) extends Feed[I, O] {
9+
abstract class SqlFeed[I, O](driver: String) extends Feed[I, O] {
1010

1111
protected val jdbcUrl: String
1212
protected def query: Query0[I]

src/test/scala/com/intenthq/action_processor/integrations/SQLCSVFeedSpec.scala renamed to src/test/scala/com/intenthq/action_processor/integrations/SqlCsvFeedSpec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import doobie.util.transactor.Transactor
1414
import doobie.util.update.Update
1515
import weaver.IOSuite
1616

17-
object SQLCSVFeedSpec extends IOSuite {
17+
object SqlCsvFeedSpec extends IOSuite {
1818

1919
override type Res = Transactor[IO]
2020

0 commit comments

Comments
 (0)