Greg Shrago
Greg Shrago
Some things I'd like to highlight: * `null` handling is preserved for default Map methods, so no `defaultValue` support (checked in tests) * `0` is treated as `null` element in...
In gitbase 0.20 schema introspection is fast and full. MySQL Connector/J JDBC metadata call that gets all columns for all tables at once `metaData.getColumns("gitbase", "", "%", "%")` is converted to...
`java.sql.Driver#getPropertyInfo` returns infos with empty `description`. (`java.sql.DriverPropertyInfo#description`) See https://youtrack.jetbrains.com/issue/DBE-7991
In 243 ``` java.lang.Throwable: org.intellij.grammar.editor.BnfSyntaxHighlighter requests com.intellij.openapi.editor.colors.TextAttributesKey$TextAttributeKeyDefaultsProvider instance. Class initialization must not depend on services. Consider using instance of the service on-demand instead. at com.intellij.openapi.diagnostic.Logger.error(Logger.java:376) at com.intellij.serviceContainer.ComponentManagerImplKt.checkOutsideClassInitializer(ComponentManagerImpl.kt:1588) at com.intellij.serviceContainer.ComponentManagerImplKt.getOrCreateInstanceBlocking(ComponentManagerImpl.kt:1557) at...
M2 Max 64 GB macOS 14.6.1 Hot says 86 TG Pro says 43/40
``` import kotlinx.coroutines.* import kotlin.coroutines.CoroutineContext fun main() { Thread.setDefaultUncaughtExceptionHandler { thread, throwable -> throwable.printStackTrace() // does not work } runBlocking(Dispatchers.Default) { try { withContext(CoroutineName("any")) { // try withContext(ContextElement(10)) { println("Success!")...