Giter Club home page Giter Club logo

Comments (8)

asdine avatar asdine commented on July 23, 2024 1

Sorry, i does not fail for me either but this fails:

package main

import (
    "log"
    "time"

    "github.com/asdine/storm"
)

type User struct {
    ID          int    `storm:"id"`
    Name        string `storm:"index"`
    age         int
    DateOfBirth time.Time `storm:"index"`
    Group       string
    Slug        string `storm:"unique"`
}

func main() {
    db, err := storm.Open("my.db", storm.AutoIncrement())
    if err != nil {
        log.Fatal("db open:", err)
    }
    defer db.Close()

    user := User{Name: "John"}

    if err = db.Save(user); err != nil {
        log.Fatal("save user: ", err)
    }
}

The AutoIncrement option makes it fail because Storm needs to access the ID field to set the new incremented value

from storm.

bits01 avatar bits01 commented on July 23, 2024 1

Indeed, any required access to a non-addressable field would do.

(The previous example without the AutoIncrement option failed because the ID==0 which is different than the field not being addressable)

from storm.

asdine avatar asdine commented on July 23, 2024

I can reproduce it with a simple struct passed by value. The question is should we only accept pointers to structs or also accept copies?

from storm.

bits01 avatar bits01 commented on July 23, 2024

Could you please post an example of a simple struct passed by value that fails? I tried one without any inline tags and it worked.

I think supporting just pointers is fine, for efficiency callers would want to use pointers anyway instead of making copies of potentially large structs.

from storm.

asdine avatar asdine commented on July 23, 2024

Here is one:

w := User{Name: "John"}
err := db.Save(w)
assert.Error(t, err)
assert.Equal(t, ErrStructPtrNeeded, err)

from storm.

bits01 avatar bits01 commented on July 23, 2024

What is the struct definition of User in your example above? Just like the one in my bug report above?

from storm.

asdine avatar asdine commented on July 23, 2024

It is a simple struct that you can find here and that i use for several tests

from storm.

bits01 avatar bits01 commented on July 23, 2024

Thanks for the fix. Interesting that I can't get it to fail with your simple User struct.

Here's what I tried before the fix and it worked fine for me. It worries me if it failed for you but not for me.

package main

import (
    "log"
    "time"

    "github.com/asdine/storm"
)

type User struct {
    ID          int    `storm:"id"`
    Name        string `storm:"index"`
    age         int
    DateOfBirth time.Time `storm:"index"`
    Group       string
    Slug        string `storm:"unique"`
}

func main() {
    db, err := storm.Open("my.db")
    if err != nil {
        log.Fatal("db open:", err)
    }
    defer db.Close()

    user := User{ID: 20, Name: "John"}

    if err = db.Save(user); err != nil {
        log.Fatal("save user: ", err)
    }
}

from storm.

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.