class UnionTest extends AsyncTest[RelationalTestDB]

Source
UnionTest.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. UnionTest
  2. AsyncTest
  3. GenericTest
  4. AnyRef
  5. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new UnionTest()

Type Members

  1. class Employees extends Table[(Int, String, Int)]
  2. class Managers extends Table[(Int, String, String)]
  3. implicit class AssertionExtensionMethods[T] extends AnyRef
    Definition Classes
    AsyncTest
  4. implicit class CollectionAssertionExtensionMethods[T] extends AnyRef
    Definition Classes
    AsyncTest
  5. implicit class CollectionDBIOActionExtensionMethods[T, +S <: NoStream, -E <: Effect] extends AnyRef
    Definition Classes
    AsyncTest
  6. implicit class DBIOActionExtensionMethods[T, +S <: NoStream, -E <: Effect] extends AnyRef
    Definition Classes
    AsyncTest
  7. implicit class StringExtensionMethods extends AnyRef
    Definition Classes
    GenericTest

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from UnionTest toany2stringadd[UnionTest] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (UnionTest, B)
    Implicit
    This member is added by an implicit conversion from UnionTest toArrowAssoc[UnionTest] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. var _tdb: RelationalTestDB
    Attributes
    protected[this]
    Definition Classes
    GenericTest
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def assertNesting(q: Rep[_], exp: Int): Unit
    Definition Classes
    GenericTest
  9. implicit def asyncTestExecutionContext: ExecutionContextExecutor
    Attributes
    protected
    Definition Classes
    AsyncTest
  10. final def cleanup(): Unit
    Definition Classes
    GenericTest
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
  12. final def closeKeepAlive(): Unit
    Definition Classes
    GenericTest
  13. lazy val db: slick.relational.RelationalProfile.Backend.Database
    Definition Classes
    GenericTest
  14. lazy val employees: TableQuery[Employees]
  15. val employeesData: Seq[(Int, String, Int)]
  16. def employeesQuery: Query[(Rep[Int], Rep[String]), (Int, String), Seq]
  17. def ensuring(cond: (UnionTest) => Boolean, msg: => Any): UnionTest
    Implicit
    This member is added by an implicit conversion from UnionTest toEnsuring[UnionTest] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: (UnionTest) => Boolean): UnionTest
    Implicit
    This member is added by an implicit conversion from UnionTest toEnsuring[UnionTest] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. def ensuring(cond: Boolean, msg: => Any): UnionTest
    Implicit
    This member is added by an implicit conversion from UnionTest toEnsuring[UnionTest] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  20. def ensuring(cond: Boolean): UnionTest
    Implicit
    This member is added by an implicit conversion from UnionTest toEnsuring[UnionTest] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  21. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  23. def foreach[T](p: Publisher[T])(f: (T) => Any): Future[Unit]

    Iterate synchronously over a Reactive Stream.

    Iterate synchronously over a Reactive Stream.

    Definition Classes
    AsyncTest
  24. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  25. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  26. def ifCap[E <: Effect, R](caps: Capability*)(f: => DBIOAction[R, NoStream, E]): DBIOAction[Unit, NoStream, E]
    Definition Classes
    AsyncTest
  27. def ifCapF[R](caps: Capability*)(f: => Future[R]): Future[Unit]
    Definition Classes
    AsyncTest
  28. def ifCapU[T](caps: Capability*)(f: => T): Unit
    Definition Classes
    AsyncTest
  29. def ifNotCap[E <: Effect, R](caps: Capability*)(f: => DBIOAction[R, NoStream, E]): DBIOAction[Unit, NoStream, E]
    Definition Classes
    AsyncTest
  30. def ifNotCapF[R](caps: Capability*)(f: => Future[R]): Future[Unit]
    Definition Classes
    AsyncTest
  31. def ifNotCapU[T](caps: Capability*)(f: => T): Unit
    Definition Classes
    AsyncTest
  32. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  33. def jcap: JdbcCapabilities
    Definition Classes
    GenericTest
  34. lazy val managers: TableQuery[Managers]
  35. val managersData: Seq[(Int, String, String)]
  36. def managersQuery: Query[(Rep[Int], Rep[String]), (Int, String), Seq]
  37. final def mark[R, S <: NoStream, E <: Effect](id: String, f: => DBIOAction[R, S, E]): DBIOAction[R, S, E]
    Definition Classes
    GenericTest
  38. final def mark[T](id: String, f: => T): T
    Definition Classes
    GenericTest
  39. def materialize[T](p: Publisher[T]): Future[Vector[T]]

    Synchronously consume a Reactive Stream and materialize it as a Vector.

    Synchronously consume a Reactive Stream and materialize it as a Vector.

    Definition Classes
    AsyncTest
  40. def materializeAsync[T, R](p: Publisher[T], tr: (T) => Future[R], delay: Duration = Duration(100L, TimeUnit.MILLISECONDS)): Future[Vector[R]]

    Asynchronously consume a Reactive Stream and materialize it as a Vector, requesting new elements one by one and transforming them after the specified delay.

    Asynchronously consume a Reactive Stream and materialize it as a Vector, requesting new elements one by one and transforming them after the specified delay. This ensures that the transformation does not run in the synchronous database context but still preserves proper sequencing.

    Definition Classes
    AsyncTest
  41. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  42. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  43. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  44. def rcap: RelationalCapabilities
    Definition Classes
    GenericTest
  45. final val reuseInstance: Boolean(true)
    Definition Classes
    AsyncTestGenericTest
  46. def scap: SqlCapabilities
    Definition Classes
    GenericTest
  47. def seq[E <: Effect](actions: DBIOAction[_, NoStream, E]*): DBIOAction[Unit, NoStream, E]
    Definition Classes
    AsyncTest
  48. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  49. def tcap: capabilities
    Definition Classes
    GenericTest
  50. final lazy val tdb: RelationalTestDB
    Definition Classes
    GenericTest
  51. def testBasicUnions: DBIOAction[Unit, NoStream, Schema with Write with Write with Read with Read with Read with Read with Read with Read with Schema]
  52. def testCountWithUnion: DBIOAction[Unit, NoStream, Read with Schema]
  53. def testCountWithUnionAndSort: DBIOAction[Unit, NoStream, Read with Schema]
  54. def testInUnion: DBIOAction[Unit, NoStream, Read with Write with Schema]
  55. def testMappedUnion: DBIOAction[Unit, NoStream, Read with Write with Schema]
  56. def testUnionOfJoins: DBIOAction[Unit, NoStream, Read with Write with Schema]
  57. def testUnionWithLimit: DBIOAction[Unit, NoStream, Schema with Write with Write with Read with Schema]
  58. def testUnionWithoutProjection: DBIOAction[Unit, NoStream, Read with Write with Schema with Schema]
  59. def toString(): String
    Definition Classes
    AnyRef → Any
  60. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  61. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  62. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  63. object GetSession extends SynchronousDatabaseAction[slick.basic.BasicProfile.Backend.Session, NoStream, slick.basic.BasicProfile.Backend.Context, slick.basic.BasicProfile.Backend.StreamingContext, Effect]

    Test Action: Get the current database session

    Test Action: Get the current database session

    Definition Classes
    AsyncTest
  64. object GetStatementParameters extends SynchronousDatabaseAction[StatementParameters, NoStream, JdbcActionContext, JdbcStreamingActionContext, Effect]

    Test Action: Get the current statement parameters, except for statementInit which is always set to null

    Test Action: Get the current statement parameters, except for statementInit which is always set to null

    Definition Classes
    AsyncTest
  65. object GetTransactionality extends SynchronousDatabaseAction[(Int, Boolean), NoStream, JdbcActionContext, JdbcStreamingActionContext, Effect]

    Test Action: Get the current transactionality level and autoCommit flag

    Test Action: Get the current transactionality level and autoCommit flag

    Definition Classes
    AsyncTest
  66. object IsPinned extends SynchronousDatabaseAction[Boolean, NoStream, slick.basic.BasicProfile.Backend.Context, slick.basic.BasicProfile.Backend.StreamingContext, Effect]

    Test Action: Check if the current database session is pinned

    Test Action: Check if the current database session is pinned

    Definition Classes
    AsyncTest

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

  2. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from UnionTest toStringFormat[UnionTest] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  3. def [B](y: B): (UnionTest, B)
    Implicit
    This member is added by an implicit conversion from UnionTest toArrowAssoc[UnionTest] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from AsyncTest[RelationalTestDB]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromUnionTest to any2stringadd[UnionTest]

Inherited by implicit conversion StringFormat fromUnionTest to StringFormat[UnionTest]

Inherited by implicit conversion Ensuring fromUnionTest to Ensuring[UnionTest]

Inherited by implicit conversion ArrowAssoc fromUnionTest to ArrowAssoc[UnionTest]

Ungrouped