Giter VIP home page Giter VIP logo

Comments (8)

stanislas-m avatar stanislas-m commented on August 22, 2024 1

Hello @cursey,

You're right, right now this one is hard-coded, but should support an override.

In the meanwhile, you can use Where instead, since Find is mostly a WHERE id = ? and a First to get the only row.

from pop.

petar-dambovaliev avatar petar-dambovaliev commented on August 22, 2024

#97

from pop.

petar-dambovaliev avatar petar-dambovaliev commented on August 22, 2024

@markbates @stanislas-m Some strategy needs to be laid out for these id mapping issues.
Are they going to be done individually or all in a single enhancement?
I can see pros and cons of both.
Too many changes at once is risky.
On the other hand, if would be confusing and possibly breaking for users who have models that map their ID field for the query but it isn't for the associations.

Also, we need a better test coverage of the associations.

from pop.

nithin-bose avatar nithin-bose commented on August 22, 2024

I am using postgres and I am getting the pq: column "id" does not exist. The following is my model:

type SellOrder struct {
	ID            uuid.UUID `json:"seller_order_id" db:"seller_order_id"`
	CreatedAt     time.Time `json:"created_at" db:"created_at"`
	Quantity      float64   `json:"quantity" db:"quantity"`
}

I have tried using the db tag to specify the correct column name however I dont think the tag is taken into consideration.

from pop.

petar-dambovaliev avatar petar-dambovaliev commented on August 22, 2024

@nithin-bose No, the tag on the ID is not taken into consideration. It is hardcoded currently.

from pop.

KrzysztofMadejski avatar KrzysztofMadejski commented on August 22, 2024

Some strategy needs to be laid out for these id mapping issues.
Are they going to be done individually or all in a single enhancement?

I'd vote for a primary_key struct tag that can override defaults. That way it could be set in one place instead of using that in every Find. It could also hlp with migrations generation (is it a feature?)

On the other hand, if would be confusing and possibly breaking for users who have models that map their ID field for the query but it isn't for the associations.

Could you elaborate @petar-dambovaliev ?

from pop.

MaMrEzO avatar MaMrEzO commented on August 22, 2024

Hi there
As pop documentation`s IDField :

/* pop/model.go:55 */
// IDField returns the name of the DB field used for the ID.
// By default, it will return "id".
func (m *Model) IDField() string {
	field, ok := reflect.TypeOf(m.Value).Elem().FieldByName("ID")
	if !ok {
		return "id"
	}
	dbField := field.Tag.Get("db")
	if dbField == "" {
		return "id"
	}
	return dbField
}

It would respect Db design BUT what I found in codes pop/dialect_postgresql.go:60:

/*  pop/dialect_postgresql.go:60 */
		if len(w.Cols) > 0 {
			query = fmt.Sprintf("INSERT INTO %s (%s) VALUES (%s) returning id", p.Quote(model.TableName()), w.QuotedString(p), w.SymbolizedString())
		} else {
			query = fmt.Sprintf("INSERT INTO %s DEFAULT VALUES returning id", p.Quote(model.TableName()))
		}

BUT SHOULD BE: ... returning %s", p.Quote(model.TableName()), p.Quote(model.IDField())...

		if len(w.Cols) > 0 {
			query = fmt.Sprintf("INSERT INTO %s (%s) VALUES (%s) returning %s", p.Quote(model.TableName()), w.QuotedString(p), w.SymbolizedString(), p.Quote(model.IDField()))
		} else {
			query = fmt.Sprintf("INSERT INTO %s DEFAULT VALUES returning %s", p.Quote(model.TableName()), p.Quote(model.IDField()))
		}

Not event "dialect_postgresql.go" but:

dialect_postgresql.go:61:                       query = fmt.Sprintf("INSERT INTO %s (%s) VALUES (%s) returning id", p.Quote(model.TableName()), w.QuotedString(p), w.SymbolizedString())
dialect_postgresql.go:63:                       query = fmt.Sprintf("INSERT INTO %s DEFAULT VALUES returning id", p.Quote(model.TableName()))
dialect_cockroach.go:75:                        query = fmt.Sprintf("INSERT INTO %s (%s) VALUES (%s) returning id", p.Quote(model.TableName()), w.QuotedString(p), w.SymbolizedString())
dialect_cockroach.go:77:                        query = fmt.Sprintf("INSERT INTO %s DEFAULT VALUES returning id", p.Quote(model.TableName()))

Anyone can do a favor to me, and tell me how to change them locally till these updates done?

from pop.

MaMrEzO avatar MaMrEzO commented on August 22, 2024

After some googling finally found that (git init, git add .) able me to change files!
I can confirm that the above code (my previous comment) works as expected!

This will works:

type SellOrder struct {
	ID            uuid.UUID `json:"seller_order_id" db:"seller_order_id"`
	CreatedAt     time.Time `json:"created_at" db:"created_at"`
	Quantity      float64   `json:"quantity" db:"quantity"`
}

from pop.

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.