Giter VIP home page Giter VIP logo

Comments (4)

Nek-12 avatar Nek-12 commented on June 5, 2024 1

After an investigation, I discovered that the following was the issue:

  1. There was an inheritance relationship involved for that particular entity and table. The code was declared in a parent table definition
  2. The code was invoked in a constructor of the Table, which is an object.
  3. The EntityClass is an object too, it is declared after the Table in the same file
  4. The table was accessed before the EntityClass object when DEBUG was off (in the first query) internally by Exposed.
  5. When DEBUG was TRUE, the EntityClass was accessed before the table definition

As a result, when the table was accessed for a query by Exposed for the first time, the child object was accessed first, which was trying to access the EntityClass, but the EntityClass tried to access the table which was not initialized yet. As a result, null was simply passed as an argument to the parent class's updateHook, due to a race/circular dependency.
This did not happen for tables where inheritance was not involved (for some reason?).

The method of declaring the updateHook was taken from one of the Github issues in the app and was actually used widely in the project before, and we did not notice the catch there.
So the issue is partially with the lacking documentation (#1703) and partially our fault, but regardless, I'm sorry for blaming everything on the library.

from exposed.

AlexeySoshin avatar AlexeySoshin commented on June 5, 2024

From your stack trace, the issue is not with how your updateHook is defined, but with how it is called.

My guess is that you're calling it from an init block of some entity?

from exposed.

Nek-12 avatar Nek-12 commented on June 5, 2024

As I've explained in the issue body, I'm calling it from an EntryTable.init() block

from exposed.

AlexeySoshin avatar AlexeySoshin commented on June 5, 2024

Appreciate the investigation done, @Nek-12 !

from exposed.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.