Skip to content

Commit

Permalink
scalastyle
Browse files Browse the repository at this point in the history
  • Loading branch information
alextheimer committed Apr 20, 2024
1 parent 6586b83 commit 16287bf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
package filodb.coordinator.queryplanner

import scala.collection.{Seq, mutable}
import scala.collection.{mutable, Seq}
import scala.collection.mutable.ArrayBuffer

import com.typesafe.scalalogging.StrictLogging

import filodb.core.TargetSchemaProvider
import filodb.core.query.{ColumnFilter, QueryContext, QueryUtils, RangeParams}
import filodb.core.query.Filter.{Equals, EqualsRegex}
import filodb.prometheus.ast.SubqueryUtils
import filodb.prometheus.ast.Vectors.PromMetricLabel
import filodb.prometheus.ast.WindowConstants
import filodb.query.AggregateClause.ClauseType
import filodb.query._
import filodb.query.AggregateClause.ClauseType

object LogicalPlanUtils extends StrictLogging {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
package filodb.coordinator.queryplanner

import java.util.concurrent.ConcurrentHashMap

import scala.collection.concurrent.{Map => ConcurrentMap}
import scala.collection.mutable
import scala.collection.mutable.ListBuffer
import scala.jdk.CollectionConverters._

import com.typesafe.scalalogging.StrictLogging
import io.grpc.ManagedChannel

import filodb.coordinator.queryplanner.LogicalPlanUtils._
import filodb.coordinator.queryplanner.PlannerUtil.rewritePlanWithRemoteRawExport
import filodb.core.{StaticTargetSchemaProvider, TargetSchemaProvider}
Expand Down

0 comments on commit 16287bf

Please sign in to comment.