File tree 2 files changed +5
-1
lines changed
sqllin-driver/src/commonMain/kotlin/com/ctrip/sqllin/driver
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 83
83
target : google_apis
84
84
arch : x86_64
85
85
profile : pixel_6
86
+ emulator-build : 11698152
86
87
force-avd-creation : false
87
88
emulator-options : -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
88
89
disable-animations : false
95
96
target : google_apis
96
97
arch : x86_64
97
98
profile : pixel_6
99
+ emulator-build : 11698152
98
100
force-avd-creation : false
99
101
emulator-options : -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
100
102
disable-animations : true
@@ -243,6 +245,7 @@ jobs:
243
245
target : default
244
246
arch : x86_64
245
247
profile : pixel_2
248
+ emulator-build : 11698152
246
249
force-avd-creation : false
247
250
emulator-options : -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
248
251
disable-animations : false
@@ -255,6 +258,7 @@ jobs:
255
258
target : default
256
259
arch : x86_64
257
260
profile : pixel_2
261
+ emulator-build : 11698152
258
262
force-avd-creation : false
259
263
emulator-options : -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
260
264
disable-animations : true
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ internal fun DatabaseConnection.migrateIfNeeded(
93
93
) = withTransaction {
94
94
val initialVersion = withQuery(" PRAGMA user_version;" ) {
95
95
it.next()
96
- it.getInt(0 ) ? : 0
96
+ it.getInt(0 )
97
97
}
98
98
if (initialVersion == 0 ) {
99
99
create(this )
You can’t perform that action at this time.
0 commit comments