Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added a default value of EPOCH if migration from string to timestamp fails #2117

Merged
merged 2 commits into from
Aug 10, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Format query test in db migration test
Co-authored-by: Omar Ismail <[email protected]>
  • Loading branch information
aditya-07 and omarismail94 authored Aug 10, 2023
commit 086aa98fac5a57a54eaf10405d6bc4c7af4efce0
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ class ResourceDatabaseMigrationTest {
it.getLong(0)
}

query("Select timestamp from LocalChangeEntity", null).let {
query("SELECT timestamp FROM LocalChangeEntity", null).let {
it.moveToFirst()
localChangeEntityTimeStamp = it.getLong(0)
it.moveToNext()
Expand Down
Loading