Hey :wave: I wanted to try out the new arrow-analy...
# arrow-meta
m
Hey 👋 I wanted to try out the new arrow-analysis plugin in one of my projects, but seem to be getting an internal exception
Copy code
kotlin.NotImplementedError: An operation is not implemented: Missing impl for throw RuntimeException(ex) .../DatabaseConfiguration.kt (org.jetbrains.kotlin.psi.KtThrowExpression)
The piece of code where
throw RuntimeException(ex)
is situated looks like this
Copy code
@Bean
    fun dataSource(
        hikariCpProperties: HikariCpProperties,
        meterRegistry: MeterRegistry
    ): TransactionAwareDataSourceProxy =
        hikariCpProperties.apply {
            this.metricsTrackerFactory = MicrometerMetricsTrackerFactory(meterRegistry)
            this.poolName = "PostgreSQL"
            this.addDataSourceProperty("applicationName", "app")
        }.let {
            try {
                TransactionAwareDataSourceProxy(HikariDataSource(it))
            } catch (ex: SQLException) {
                throw RuntimeException(ex)
            }
        }
I’m using kotlin 1.6.0 and gradle 7.3.3
a
are you using the snapshot or the stable version?
m
I’m using the stable
2.0
version
a
I think this is solved in the latest snapshot
m
works like a charm now, thanks 😄!