jw
09/13/2022, 11:48 AMxxfast
09/13/2022, 11:53 AMjw
09/13/2022, 11:54 AMDaniel Rampelt
09/13/2022, 5:31 PMNo table found with name <shared table name>
. Switching back to 1.6.10 immediately fixes the issue. Any ideas what the problem could be?Partho Paul
09/14/2022, 7:38 AMCREATE VIEW IF NOT EXISTS FinalView AS
SELECT
a.id,
a.id1,
a.id2,
b.id,
b.id1,
b.state,
c.id,
c.id1,
c.version,
d.id
FROM
A a
LEFT JOIN B b
ON b.id = a.bId
INNER JOIN C c ON c.id = b.cId
AND c.version = a.version
LEFT JOIN (SELECT * FROM D d
WHERE d.state = 'COMPLETED'
AND d.id = b.dId
AND d.id2 = a.id2
ORDER BY d.sessionNo DESC LIMIT 1) AS dLast ON d.id2= a.id2
AND d.version = a.version
;
In this I’m facing an issue where AndroidStudio is saying that it is not able to find table b and d in my subquery statement. Can someone please let me know what I’m doing wrong here?romtsn
09/15/2022, 6:42 AMthis
as parameter (as in, this + clockContext
), otherwise it still uses the original coroutineContext
https://github.com/cashapp/molecule/blob/dcfea3afe82d834643345c44b45522eee5b6c64a/[…]ule-runtime/src/commonMain/kotlin/app/cash/molecule/molecule.ktshaktiman_droid
09/20/2022, 9:28 PMPaparazzi
just for Android app module in a Kotlin Multiplatform project?Tlaster
09/21/2022, 8:59 AMColin White
09/23/2022, 6:32 PMbuffer
is an extension function so you’ll need to do: sink.buffer()
Ivan Đorđević
09/26/2022, 1:50 PMalec
09/26/2022, 1:54 PMalec
09/26/2022, 1:54 PMalec
09/26/2022, 1:54 PMIvan Đorđević
09/26/2022, 1:54 PMalec
09/26/2022, 1:54 PMIvan Đorđević
09/26/2022, 1:54 PMIvan Đorđević
09/26/2022, 1:55 PMalec
09/26/2022, 1:55 PMalec
09/26/2022, 1:55 PMalec
09/26/2022, 1:55 PMalec
09/26/2022, 1:56 PMIvan Đorđević
09/26/2022, 1:56 PMIvan Đorđević
09/26/2022, 1:56 PMalec
09/26/2022, 1:56 PMalec
09/26/2022, 1:57 PMalec
09/26/2022, 1:57 PMalec
09/26/2022, 1:57 PMalec
09/26/2022, 1:57 PMalec
09/26/2022, 1:57 PMIvan Đorđević
09/26/2022, 1:58 PMIvan Đorđević
09/26/2022, 1:58 PM