Fixed
Status Update
Comments
uc...@google.com <uc...@google.com>
ad...@google.com <ad...@google.com> #2
I am also on Catalina if it helps.
to...@gmail.com <to...@gmail.com> #3
I'm also affected but I'm on Windows10. can confirm it on version 4.0 Canary 9
ps...@google.com <ps...@google.com> #4
Happening on junit tests for me as well.
Android Studio 3.6 RC 1
Build #AI-192.7142.36.36.6071332, built on December 13, 2019
Runtime version: 1.8.0_212-release-1586-b4-5784211 x86_64
VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
macOS 10.15.2
GC: ParNew, ConcurrentMarkSweep
Memory: 1237M
Cores: 16
Registry: ide.new.welcome.screen.force=true, ide.tooltip.initialDelay=600
Non-Bundled Plugins: IdeaVIM, org.jetbrains.kotlin, com.squareup.sqldelight
Android Studio 3.6 RC 1
Build #AI-192.7142.36.36.6071332, built on December 13, 2019
Runtime version: 1.8.0_212-release-1586-b4-5784211 x86_64
VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
macOS 10.15.2
GC: ParNew, ConcurrentMarkSweep
Memory: 1237M
Cores: 16
Registry: ide.new.welcome.screen.force=true, ide.tooltip.initialDelay=600
Non-Bundled Plugins: IdeaVIM, org.jetbrains.kotlin, com.squareup.sqldelight
Description
Would be nice to see 2 small improvements:
1) Automatic stripping of the ending ; as you do not support it but it's valid SQL
```select * from songs limit 10;```
Fails with
```Error executing SQLite statement: near ";": syntax error (code 1 SQLITE_ERROR): , while compiling: SELECT COUNT(*) FROM (select * from songs limit 10;)```
2) For the same reason (trying to get counts) EXPLAIN queries does not work
```Error executing SQLite statement: near "select": syntax error (code 1 SQLITE_ERROR): , while compiling: SELECT COUNT(*) FROM (explain select * from songs limit 10)```
But having explain running directly on device to see if execution plan differs by SQLITE version is important feature to have.