Code Monkey home page Code Monkey logo

Comments (8)

tomjaguarpaw avatar tomjaguarpaw commented on August 17, 2024 1

Great, in that case maybe we can do them all as versions of a single "write type" that is something like

WriteField a = Omitted | SetToDefault | SetToValue a

from haskell-opaleye.

tomjaguarpaw avatar tomjaguarpaw commented on August 17, 2024

Just to check I understand, do the writing parts of these behave as indicated in the following?

-- Generates "field = value"
requiredTableField :: String -> TableFields (Field_ n a) (Field_ n a)
writeOnlyRequiredTableField :: String -> TableFields (Field_ n a) ()

-- Just: Generates "field = value"
-- Nothing: Generates "field = DEFAULT"
optionalTableField :: String -> TableFields (Maybe (Field_ n a)) (Field_ n a)
writeOnlyOptionalTableField :: String -> TableFields (Maybe (Field_ n a)) ()

-- Generates nothing for "field"
readOnlyTableField :: String -> TableFields () (Field_ n a)
missingTableField :: TableFields () ()

from haskell-opaleye.

tysonzero avatar tysonzero commented on August 17, 2024

Correct!

from haskell-opaleye.

tomjaguarpaw avatar tomjaguarpaw commented on August 17, 2024

I just noticed a related issue on rel8: circuithub/rel8#193

from haskell-opaleye.

tysonzero avatar tysonzero commented on August 17, 2024

Yeah I think many Haskell db libraries handle this type of stuff poorly. I don't think persistent handles default/generated columns well either.

from haskell-opaleye.

evertedsphere avatar evertedsphere commented on August 17, 2024

As a side note readOnlyTableField does actually work correctly for generated columns due to them allowing the keyword DEFAULT for inserts and updates even though all other values are rejected due to their read-only nature.

For updates, Opaleye generates a syntactically valid query that will actually "typecheck" against the schema, so to speak, but unless the DEFAULT value is a constant, the semantics of that query is likely not what you want:

db=# create temp table t(
  id integer primary key generated always as identity,
  created_at timestamptz not null default now(),
  v integer not null
);
CREATE TABLE

db=# insert into t(v) values(1);
INSERT 0 1

db=# select * from t;
 id |          created_at           | v
----+-------------------------------+---
  1 | 2024-05-20 08:13:51.872027+00 | 1

db=# update t set v = 2;
UPDATE 1

db=# select * from t;
 id |          created_at           | v
----+-------------------------------+---
  1 | 2024-05-20 08:13:51.872027+00 | 2

db=# update t set v = 3, id = default, created_at = default;
UPDATE 1

db=# select * from t;
 id |          created_at           | v
----+-------------------------------+---
  2 | 2024-05-20 08:14:21.103436+00 | 3

The query updates the field by recomputing the DEFAULT expression. In particular, this means that a table with a DEFAULTed foreign key target cannot be updated in this manner (since that would violate referential integrity).

(Which is just to say that the "nothing generated, not even DEFAULT" case is vital.)

from haskell-opaleye.

evertedsphere avatar evertedsphere commented on August 17, 2024

Ah, I see this was mentioned in #590 (comment) and you were talking about generated columns, not the…serial thing.

from haskell-opaleye.

tysonzero avatar tysonzero commented on August 17, 2024

Yes just GENERATED ALWAYS AS ( generation_expr ) STORED

from haskell-opaleye.

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.