For SQLDelight has anyone ran into issues with a `...
# squarelibraries
c
For SQLDelight has anyone ran into issues with a
View
breaking their code gen? (More info in thread)
Here’s the failure:
Copy code
> Task :library:generateDebugConversationsDatabaseInterface FAILED

/Users/cengel/Documents/Dev/Team Android/conversations-repository/library/src/main/sqldelight/com/activecampaign/conversations/repository/conversations/summary/ConversationSummaryView.sq line 26:6 - No table found with name conversationEntity
24    SELECT *
25    FROM conversationSummaryView
26    WHERE conversationEntity.id = :id
            ^^^^^^^^^^^^^^^^^^
We have a table
conversationEntity
though so I’m unsure if maybe it’s running in a different order and at this point that table hasn’t been generated?
Ya know what, I’m a dummy. I was migrating some joins into a view and yeah… The error is self explanatory now that I came back to it, I thought this error was from the create query but it’s actually the select… And the select is definitely wrong.
Sorry for the false alarm everyone. Thanks again for this library 😅