GithubHelp home page GithubHelp logo

Comments (9)

max-l avatar max-l commented on June 28, 2024

NoSuchMethodError are very often due to incomplete/stale compilation, or wrongfull
use of asInstanceOf, I don't think there asInstanceOfs in that area, can you validate the 1st hypothesis ?

from squeryl.

alecw avatar alecw commented on June 28, 2024

Hi Max,

I did clean build of both Squeryl and my project. Same result. It's puzzling.

-Alec

from squeryl.

max-l avatar max-l commented on June 28, 2024

Wait a minute.... the $eq method is used by the HashMap, and that is what the complain is about.... KeyedEntity implements the required, equals+ hashCode stuff
but if you are using an instanceOf like :

ZamboniSchema.workflowToSteps.leftStateful(this.asInstanceOf[Workflow])

the equality and hashCode might not be implemented....

from squeryl.

alecw avatar alecw commented on June 28, 2024

Hi Max,

Note that the problem is not the $eq method. It is the $plus$plus$eq method. I tried without the asInstanceOf and still had the problem. I tried reproducing the problem with SchoolDb2 courseAssignments but I was unable to. The thing that is strange to me about the exception is the the L at the beginning of the class name in the function signature. I wonder if this is caused by the fact that this many-to-many relationship relates a table to itself.

I'm afraid I can't spend any more time on this right now. I'm just going to not use the stateful flavor for now. At some point I guess you or I could try to create a test case with a table referring to itself.

Thanks, Alec

from squeryl.

max-l avatar max-l commented on June 28, 2024

Djeez, I didn't realize it was the the ++= ($plus$plus$eq)...

if you get a chance, Line 189 in :
http://github.com/max-l/Squeryl/blob/master/src/main/scala/org/squeryl/dsl/ManyToMany.scala

replace :
_map ++= relation.associationMap

by :
for(e <- relation.associationMap)
_map.put(e._1, e._2)

The ++= relies on some implicit conversion magic, the for loop has much lower content of type system magic....

from squeryl.

alecw avatar alecw commented on June 28, 2024

Hi Max,

Map having an add method? Who would think of such a crazy thing? ;-)

This change fixes the problem:


    for(e <- relation.associationMap)
      _map += e

Thanks, Alec

from squeryl.

alecw avatar alecw commented on June 28, 2024

So much for using markup. Here it is again:

for(e <- relation.associationMap)
  _map += e

from squeryl.

max-l avatar max-l commented on June 28, 2024

djeeez... I meant put, I corrected the comment, fortunately
github's issue tracking allows editing the comments !

from squeryl.

max-l avatar max-l commented on June 28, 2024

replaced +== by put in master.

from squeryl.

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.