I have a module `commonDB` with several table shar...
# squarelibraries
s
I have a module
commonDB
with several table shared between my clients and my server. On the server side, I have some triggers created for those table that shouldn't exist on the client side. For this reason, the sq file with all the triggers is in
server
module. Within my
server
module, I can do my insert on the table from
commonDB
. I have a lot of error from the IDE saying that the tables can't be found but it compile and the insert happen at runtime. When I add my triggers in the
server
module however, I do have the same errors in the IDE of table from
commonDB
not found, but sadly it fails at compilation here. "No table found with name ..." Anyone has encounter an issue like that and solved it ? EDIT: Solved -> Colum name typo in one of my triggers generating a lot of noise
h
Can you share a reproducer?
s
@hfhbd I'll need to make some clean up first, then I'll push that (probably in the morning tomorrow : London time)
@hfhbd Turns out it was because there was a typo in one of my trigger column name. But it was hard to find cause of all the generated noise saying all the rest of the table where not found