Giter Site home page Giter Site logo

Comments (5)

lunedis avatar lunedis commented on June 18, 2024 1

You are correct, everything seems to work now. Sorry for the confusion, was most likely an old version or database problem on my part. My bad.

The issues in both my reproduction repository and my main project are fixed. Thanks a lot again for the quick response and for developing this awesome tool!

from safeql.

Newbie012 avatar Newbie012 commented on June 18, 2024

Thanks for the detailed reproduction. I'll raise a fix.

from safeql.

Newbie012 avatar Newbie012 commented on June 18, 2024

fixed in 3.0.0

from safeql.

lunedis avatar lunedis commented on June 18, 2024

Thank you for the quick response, but I don't believe the issue is actually fixed.

Weirdly enough in my main (internal) project, it still generates the "main table" fields with | null (which I think is wrong).

I updated my reproduction repository (https://github.com/lunedis/safeql-recursive-bug) and now it thinks bossName is not nullable (https://github.com/lunedis/safeql-recursive-bug/blob/main/src/main.ts#L10), which I think is also wrong.

Sadly I haven't gotten around to digging into your codebase, else I'd try to fix it myself.

from safeql.

Newbie012 avatar Newbie012 commented on June 18, 2024

Hey @lunedis, I cloned and followed your instructions in the README.md and this is what I get when running eslint:

image

After fixing the types, eslint doesn't report any other errors:

image

I already have a test that covers this case:

await testQuery({
query: `
SELECT
caregiver.id as caregiver_id,
self.id as self_id
FROM caregiver
LEFT JOIN caregiver self ON caregiver.id = self.id
`,
expected: [
["caregiver_id", { kind: "type", value: "number" }],
[
"self_id",
{
kind: "union",
value: [
{ kind: "type", value: "number" },
{ kind: "type", value: "null" },
],
},
],
],
});

Can you share with me a failing CI execution so I could better reproduce the error?

from safeql.

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.