jw
03/26/2019, 4:29 PMdave08
03/26/2019, 4:33 PMmbonnin
03/27/2019, 2:59 PM-- Player.sq
CREATE TABLE hockeyPlayer (
player_number INTEGER NOT NULL,
full_name TEXT NOT NULL,
draft_year INTEGER NOT NULL
);
-- 1.sqm
ALTER TABLE hockeyPlayer ADD COLUMN draft_year TEXT NOT NULL;
That seems to compile just fine while I'm not sure what the runtime behavior is (draft_year can be a TEXT or an INTEGER). Is it possible to catch such usages ?egorand
03/27/2019, 3:20 PMegorand
03/27/2019, 3:21 PMverifyMigrations
, name can be different if you’re using flavorsmbonnin
03/27/2019, 3:22 PMmbonnin
03/27/2019, 3:25 PMdave08
03/27/2019, 4:23 PM{"customer_id": [48302, "Name"], "id": 32787147}
or {"customer_id": false, "id": 32787147}
dave08
03/27/2019, 4:24 PM@JsonClass(generateAdapter = true)
data class Info(
@Json(name = "id")
val fooId: Int,
@OdooIdentityId
val customerId: Int?
)
dave08
03/27/2019, 4:43 PM@Json
annotation 😊.
It makes it harder since the docs and examples don't go into too many details, and the source code isn't so explicit on how to make adapters.
Thanks!Dico
03/28/2019, 6:48 PMDico
03/28/2019, 6:49 PMjw
03/28/2019, 6:49 PMjw
03/28/2019, 6:49 PMrook
03/29/2019, 4:28 PMBehaviorDelegate<T>
and I’m struggling to understand how I should mock network error returns. When my endpoints used Rx Single
, I needed to return Single.error(Throwable)
. Do I need to do anything special now that the return type is Deferred<Response<T>>
, or do I just throw?jw
03/29/2019, 4:38 PMjw
03/29/2019, 4:38 PMjw
03/29/2019, 4:39 PMjw
03/29/2019, 4:39 PMrook
03/29/2019, 5:03 PMMohammadsss1
03/30/2019, 7:49 PMResults
dave08
03/31/2019, 2:29 PMdave08
03/31/2019, 3:25 PM{"key": "\u0927\u093e\u0921\u0938"}
instead of {"key": "धाडस"}
...dave08
03/31/2019, 3:26 PMjw
03/31/2019, 3:29 PMdave08
03/31/2019, 4:19 PMwriter.value(source: BufferedSource)
?jessewilson
04/01/2019, 9:02 AMjessewilson
04/01/2019, 9:02 AMrkeazor
04/03/2019, 2:28 AM