GithubHelp home page GithubHelp logo

sqlc-bug's Introduction

in brief

These two queries are almost identical except for the order of the comparisons in lines 3 and 4:

SELECT uid FROM emails
WHERE expunged = 0 AND user_id = ? AND mailbox_server_id = ?
  AND uid >= ?
  AND uid <= ?
ORDER BY uid ASC;
SELECT uid FROM emails
WHERE expunged = 0 AND user_id = ? AND mailbox_server_id = ?
  AND ? <= uid
  AND ? >= uid
ORDER BY uid ASC;

However sqlc generates different param structs:

type UidRangeRightParams struct {
	UserID          string `db:"user_id" json:"user_id"`
	MailboxServerID string `db:"mailbox_server_id" json:"mailbox_server_id"`
	Uid             int64  `db:"uid" json:"uid"`
	Uid_2           int64  `db:"uid_2" json:"uid_2"`
}
type UidRangeWrongParams struct {
	UserID          string      `db:"user_id" json:"user_id"`
	MailboxServerID string      `db:"mailbox_server_id" json:"mailbox_server_id"`
	Column3         interface{} `db:"column_3" json:"column_3"`
	Column4         interface{} `db:"column_4" json:"column_4"`
}

how to regenerate

cd database && sqlc generate

bug location

submitted as sqlc-dev/sqlc#2032

sqlc-bug's People

Contributors

pexarkh avatar

Watchers

 avatar

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.