-
Notifications
You must be signed in to change notification settings - Fork 23
errata
Ryan Wisnesky edited this page Oct 17, 2019
·
9 revisions
- MySQL JDBC driver version 8 is buggy for importing schemas, version 5 works correctly.
- For many JDBC drivers, the quote character must be set, e.g.
jdbc_quote_char = " "
, - The CQL IDE's memory usage increases monotonically.
- The terminate button may not terminate ongoing computation.
- The text editor does not detect concurrent modification of the opened files.
- When
require_consistency = false
, instance literals may not display as the user expects. - Errors involving
java.util.Optional
not being found are likely due to running CQL in a down-level or corrupt java machine. To solve, usejava -version
to verify the java version and launch CQL from the command line. - To suppress Nashorn deprecation warnings on stdout, launch java using
-Dnashorn.args="--no-deprecation-warning"
. - The save dialog will not issue an overwrite prompt when the filename is typed. This is a look and feel guideline: https://bugs.openjdk.java.net/browse/JDK-8124315