All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ai.platon.pulsar.ql.h2.H2SessionDelegate.kt Maven / Gradle / Ivy

There is a newer version: 1.13.2
Show newest version
package ai.platon.pulsar.ql.h2

import ai.platon.pulsar.ql.SessionDelegate

/**
 * DbSession is a wrapper for underlying database session, it is a bridge between database session and pulsar query
 * session
 */
class H2SessionDelegate(
    id: Int,
    val h2session: org.h2.engine.Session
) : SessionDelegate(id, h2session) {
    override val sqlSequence: Int
        get() = h2session.commandSequence
    override var name = h2session.toString()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy