SYMBOL INDEX (17482 symbols across 4109 files) FILE: cmd/sqlc-gen-json/main.go function main (line 15) | func main() { function run (line 22) | func run() error { FILE: cmd/sqlc-test-setup/main.go constant pgVersion (line 20) | pgVersion = "18.2.0" type pgBinary (line 24) | type pgBinary struct function main (line 41) | func main() { function run (line 66) | func run(name string, args ...string) error { function runOutput (line 76) | func runOutput(name string, args ...string) (string, error) { function commandExists (line 84) | func commandExists(name string) bool { function isMySQLVersionOK (line 91) | func isMySQLVersionOK(versionOutput string) bool { function pgBaseDir (line 111) | func pgBaseDir() string { function pgBinDir (line 120) | func pgBinDir() string { function pgDataDir (line 125) | func pgDataDir() string { function pgBin (line 130) | func pgBin(name string) string { function runInstall (line 136) | func runInstall() error { function installAptProxy (line 155) | func installAptProxy() error { function installPostgreSQL (line 174) | func installPostgreSQL() error { function installPgDeps (line 250) | func installPgDeps() error { function supportedPlatforms (line 259) | func supportedPlatforms() string { function downloadFile (line 268) | func downloadFile(filepath string, url string) error { function sha256File (line 290) | func sha256File(path string) (string, error) { function installMySQL (line 304) | func installMySQL() error { function runStart (line 387) | func runStart() error { function startPostgreSQL (line 404) | func startPostgreSQL() error { function configurePgHBA (line 508) | func configurePgHBA(hbaPath string) error { function configurePgHBAWithMD5 (line 519) | func configurePgHBAWithMD5(hbaPath string) error { function appendToFile (line 530) | func appendToFile(path, text string) error { function pgIsReady (line 541) | func pgIsReady() bool { function waitForPostgreSQL (line 547) | func waitForPostgreSQL(timeout time.Duration) error { function startMySQL (line 558) | func startMySQL() error { function ensureMySQLDirs (line 633) | func ensureMySQLDirs() error { function startMySQLDaemon (line 645) | func startMySQLDaemon(extraArgs ...string) error { function mysqlReady (line 664) | func mysqlReady() bool { function waitForMySQL (line 670) | func waitForMySQL(timeout time.Duration) error { function verifyMySQL (line 685) | func verifyMySQL() error { function mysqlInitialized (line 697) | func mysqlInitialized() bool { FILE: cmd/sqlc/main.go function main (line 9) | func main() { FILE: docs/conf.py function setup (line 69) | def setup(app): FILE: examples/authors/mysql/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: examples/authors/mysql/db_test.go function TestAuthors (line 15) | func TestAuthors(t *testing.T) { FILE: examples/authors/mysql/models.go type Author (line 11) | type Author struct FILE: examples/authors/mysql/query.sql.go constant createAuthor (line 13) | createAuthor = `-- name: CreateAuthor :execresult type CreateAuthorParams (line 21) | type CreateAuthorParams struct method CreateAuthor (line 26) | func (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorPara... constant deleteAuthor (line 30) | deleteAuthor = `-- name: DeleteAuthor :exec method DeleteAuthor (line 35) | func (q *Queries) DeleteAuthor(ctx context.Context, id int64) error { constant getAuthor (line 40) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 45) | func (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, erro... constant listAuthors (line 52) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 57) | func (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) { FILE: examples/authors/mysql/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: examples/authors/postgresql/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: examples/authors/postgresql/db_test.go function TestAuthors (line 15) | func TestAuthors(t *testing.T) { FILE: examples/authors/postgresql/models.go type Author (line 11) | type Author struct FILE: examples/authors/postgresql/query.sql.go constant createAuthor (line 14) | createAuthor = `-- name: CreateAuthor :one type CreateAuthorParams (line 23) | type CreateAuthorParams struct method CreateAuthor (line 28) | func (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorPara... constant deleteAuthor (line 35) | deleteAuthor = `-- name: DeleteAuthor :exec method DeleteAuthor (line 40) | func (q *Queries) DeleteAuthor(ctx context.Context, id int64) error { constant getAuthor (line 45) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 50) | func (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, erro... constant listAuthors (line 57) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 62) | func (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) { FILE: examples/authors/postgresql/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: examples/authors/sqlite/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: examples/authors/sqlite/db_test.go function TestAuthors (line 13) | func TestAuthors(t *testing.T) { FILE: examples/authors/sqlite/models.go type Author (line 11) | type Author struct FILE: examples/authors/sqlite/query.sql.go constant createAuthor (line 13) | createAuthor = `-- name: CreateAuthor :execresult type CreateAuthorParams (line 21) | type CreateAuthorParams struct method CreateAuthor (line 26) | func (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorPara... constant deleteAuthor (line 30) | deleteAuthor = `-- name: DeleteAuthor :exec method DeleteAuthor (line 35) | func (q *Queries) DeleteAuthor(ctx context.Context, id int64) error { constant getAuthor (line 40) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 45) | func (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, erro... constant listAuthors (line 52) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 57) | func (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) { FILE: examples/authors/sqlite/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: examples/batch/postgresql/batch.go constant booksByYear (line 20) | booksByYear = `-- name: BooksByYear :batchmany type BooksByYearBatchResults (line 25) | type BooksByYearBatchResults struct method Query (line 43) | func (b *BooksByYearBatchResults) Query(f func(int, []Book, error)) { method Close (line 83) | func (b *BooksByYearBatchResults) Close() error { method BooksByYear (line 31) | func (q *Queries) BooksByYear(ctx context.Context, year []int32) *BooksB... constant createBook (line 88) | createBook = `-- name: CreateBook :batchone type CreateBookBatchResults (line 109) | type CreateBookBatchResults struct method QueryRow (line 143) | func (b *CreateBookBatchResults) QueryRow(f func(int, Book, error)) { method Close (line 170) | func (b *CreateBookBatchResults) Close() error { type CreateBookParams (line 115) | type CreateBookParams struct method CreateBook (line 125) | func (q *Queries) CreateBook(ctx context.Context, arg []CreateBookParams... constant deleteBook (line 175) | deleteBook = `-- name: DeleteBook :batchexec type DeleteBookBatchResults (line 180) | type DeleteBookBatchResults struct method Exec (line 198) | func (b *DeleteBookBatchResults) Exec(f func(int, error)) { method Close (line 214) | func (b *DeleteBookBatchResults) Close() error { method DeleteBook (line 186) | func (q *Queries) DeleteBook(ctx context.Context, bookID []int32) *Delet... constant deleteBookNamedFunc (line 219) | deleteBookNamedFunc = `-- name: DeleteBookNamedFunc :batchexec type DeleteBookNamedFuncBatchResults (line 224) | type DeleteBookNamedFuncBatchResults struct method Exec (line 242) | func (b *DeleteBookNamedFuncBatchResults) Exec(f func(int, error)) { method Close (line 258) | func (b *DeleteBookNamedFuncBatchResults) Close() error { method DeleteBookNamedFunc (line 230) | func (q *Queries) DeleteBookNamedFunc(ctx context.Context, bookID []int3... constant deleteBookNamedSign (line 263) | deleteBookNamedSign = `-- name: DeleteBookNamedSign :batchexec type DeleteBookNamedSignBatchResults (line 268) | type DeleteBookNamedSignBatchResults struct method Exec (line 286) | func (b *DeleteBookNamedSignBatchResults) Exec(f func(int, error)) { method Close (line 302) | func (b *DeleteBookNamedSignBatchResults) Close() error { method DeleteBookNamedSign (line 274) | func (q *Queries) DeleteBookNamedSign(ctx context.Context, bookID []int3... constant getBiography (line 307) | getBiography = `-- name: GetBiography :batchone type GetBiographyBatchResults (line 312) | type GetBiographyBatchResults struct method QueryRow (line 330) | func (b *GetBiographyBatchResults) QueryRow(f func(int, []byte, error)) { method Close (line 348) | func (b *GetBiographyBatchResults) Close() error { method GetBiography (line 318) | func (q *Queries) GetBiography(ctx context.Context, authorID []int32) *G... constant updateBook (line 353) | updateBook = `-- name: UpdateBook :batchexec type UpdateBookBatchResults (line 359) | type UpdateBookBatchResults struct method Exec (line 385) | func (b *UpdateBookBatchResults) Exec(f func(int, error)) { method Close (line 401) | func (b *UpdateBookBatchResults) Close() error { type UpdateBookParams (line 365) | type UpdateBookParams struct method UpdateBook (line 371) | func (q *Queries) UpdateBook(ctx context.Context, arg []UpdateBookParams... FILE: examples/batch/postgresql/db.go type DBTX (line 14) | type DBTX interface function New (line 21) | func New(db DBTX) *Queries { type Queries (line 25) | type Queries struct method WithTx (line 29) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: examples/batch/postgresql/db_test.go function TestBatchBooks (line 16) | func TestBatchBooks(t *testing.T) { FILE: examples/batch/postgresql/models.go type BookType (line 14) | type BookType method Scan (line 21) | func (e *BookType) Scan(src interface{}) error { constant BookTypeFICTION (line 17) | BookTypeFICTION BookType = "FICTION" constant BookTypeNONFICTION (line 18) | BookTypeNONFICTION BookType = "NONFICTION" type NullBookType (line 33) | type NullBookType struct method Scan (line 39) | func (ns *NullBookType) Scan(value interface{}) error { method Value (line 49) | func (ns NullBookType) Value() (driver.Value, error) { type Author (line 56) | type Author struct type Book (line 62) | type Book struct FILE: examples/batch/postgresql/querier.go type Querier (line 13) | type Querier interface FILE: examples/batch/postgresql/query.sql.go constant createAuthor (line 14) | createAuthor = `-- name: CreateAuthor :one method CreateAuthor (line 19) | func (q *Queries) CreateAuthor(ctx context.Context, name string) (Author... constant deleteBookExecResult (line 26) | deleteBookExecResult = `-- name: DeleteBookExecResult :execresult method DeleteBookExecResult (line 31) | func (q *Queries) DeleteBookExecResult(ctx context.Context, bookID int32... constant getAuthor (line 35) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 40) | func (q *Queries) GetAuthor(ctx context.Context, authorID int32) (Author... FILE: examples/batch/postgresql/schema.sql type authors (line 1) | CREATE TABLE authors ( type books (line 12) | CREATE TABLE books ( FILE: examples/booktest/mysql/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: examples/booktest/mysql/db_test.go function TestBooks (line 16) | func TestBooks(t *testing.T) { FILE: examples/booktest/mysql/models.go type BooksBookType (line 13) | type BooksBookType method Scan (line 20) | func (e *BooksBookType) Scan(src interface{}) error { constant BooksBookTypeFICTION (line 16) | BooksBookTypeFICTION BooksBookType = "FICTION" constant BooksBookTypeNONFICTION (line 17) | BooksBookTypeNONFICTION BooksBookType = "NONFICTION" type NullBooksBookType (line 32) | type NullBooksBookType struct method Scan (line 38) | func (ns *NullBooksBookType) Scan(value interface{}) error { method Value (line 48) | func (ns NullBooksBookType) Value() (driver.Value, error) { type Author (line 55) | type Author struct type Book (line 60) | type Book struct FILE: examples/booktest/mysql/query.sql.go constant booksByTags (line 14) | booksByTags = `-- name: BooksByTags :many type BooksByTagsRow (line 26) | type BooksByTagsRow struct method BooksByTags (line 34) | func (q *Queries) BooksByTags(ctx context.Context, tags string) ([]Books... constant booksByTitleYear (line 63) | booksByTitleYear = `-- name: BooksByTitleYear :many type BooksByTitleYearParams (line 68) | type BooksByTitleYearParams struct method BooksByTitleYear (line 73) | func (q *Queries) BooksByTitleYear(ctx context.Context, arg BooksByTitle... constant createAuthor (line 105) | createAuthor = `-- name: CreateAuthor :execresult method CreateAuthor (line 109) | func (q *Queries) CreateAuthor(ctx context.Context, name string) (sql.Re... constant createBook (line 113) | createBook = `-- name: CreateBook :execresult type CreateBookParams (line 133) | type CreateBookParams struct method CreateBook (line 143) | func (q *Queries) CreateBook(ctx context.Context, arg CreateBookParams) ... constant deleteAuthorBeforeYear (line 155) | deleteAuthorBeforeYear = `-- name: DeleteAuthorBeforeYear :exec type DeleteAuthorBeforeYearParams (line 160) | type DeleteAuthorBeforeYearParams struct method DeleteAuthorBeforeYear (line 165) | func (q *Queries) DeleteAuthorBeforeYear(ctx context.Context, arg Delete... constant deleteBook (line 170) | deleteBook = `-- name: DeleteBook :exec method DeleteBook (line 175) | func (q *Queries) DeleteBook(ctx context.Context, bookID int32) error { constant getAuthor (line 180) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 185) | func (q *Queries) GetAuthor(ctx context.Context, authorID int32) (Author... constant getBook (line 192) | getBook = `-- name: GetBook :one method GetBook (line 197) | func (q *Queries) GetBook(ctx context.Context, bookID int32) (Book, erro... constant updateBook (line 213) | updateBook = `-- name: UpdateBook :exec type UpdateBookParams (line 219) | type UpdateBookParams struct method UpdateBook (line 225) | func (q *Queries) UpdateBook(ctx context.Context, arg UpdateBookParams) ... constant updateBookISBN (line 230) | updateBookISBN = `-- name: UpdateBookISBN :exec type UpdateBookISBNParams (line 236) | type UpdateBookISBNParams struct method UpdateBookISBN (line 243) | func (q *Queries) UpdateBookISBN(ctx context.Context, arg UpdateBookISBN... FILE: examples/booktest/mysql/schema.sql type authors (line 1) | CREATE TABLE authors ( type authors_name_idx (line 6) | CREATE INDEX authors_name_idx ON authors(name(255)) type books (line 8) | CREATE TABLE books ( type books_title_idx (line 20) | CREATE INDEX books_title_idx ON books(title(255), yr) FILE: examples/booktest/postgresql/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: examples/booktest/postgresql/db_test.go function TestBooks (line 16) | func TestBooks(t *testing.T) { FILE: examples/booktest/postgresql/models.go type BookType (line 14) | type BookType method Scan (line 21) | func (e *BookType) Scan(src interface{}) error { constant BookTypeFICTION (line 17) | BookTypeFICTION BookType = "FICTION" constant BookTypeNONFICTION (line 18) | BookTypeNONFICTION BookType = "NONFICTION" type NullBookType (line 33) | type NullBookType struct method Scan (line 39) | func (ns *NullBookType) Scan(value interface{}) error { method Value (line 49) | func (ns NullBookType) Value() (driver.Value, error) { type Author (line 56) | type Author struct type Book (line 61) | type Book struct FILE: examples/booktest/postgresql/query.sql.go constant booksByTags (line 14) | booksByTags = `-- name: BooksByTags :many type BooksByTagsRow (line 26) | type BooksByTagsRow struct method BooksByTags (line 34) | func (q *Queries) BooksByTags(ctx context.Context, dollar_1 []string) ([... constant booksByTitleYear (line 60) | booksByTitleYear = `-- name: BooksByTitleYear :many type BooksByTitleYearParams (line 65) | type BooksByTitleYearParams struct method BooksByTitleYear (line 70) | func (q *Queries) BooksByTitleYear(ctx context.Context, arg BooksByTitle... constant createAuthor (line 99) | createAuthor = `-- name: CreateAuthor :one method CreateAuthor (line 104) | func (q *Queries) CreateAuthor(ctx context.Context, name string) (Author... constant createBook (line 111) | createBook = `-- name: CreateBook :one type CreateBookParams (line 132) | type CreateBookParams struct method CreateBook (line 142) | func (q *Queries) CreateBook(ctx context.Context, arg CreateBookParams) ... constant deleteBook (line 166) | deleteBook = `-- name: DeleteBook :exec method DeleteBook (line 171) | func (q *Queries) DeleteBook(ctx context.Context, bookID int32) error { constant getAuthor (line 176) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 181) | func (q *Queries) GetAuthor(ctx context.Context, authorID int32) (Author... constant getBook (line 188) | getBook = `-- name: GetBook :one method GetBook (line 193) | func (q *Queries) GetBook(ctx context.Context, bookID int32) (Book, erro... constant sayHello (line 209) | sayHello = `-- name: SayHello :one method SayHello (line 213) | func (q *Queries) SayHello(ctx context.Context, s string) (pgtype.Text, ... constant updateBook (line 220) | updateBook = `-- name: UpdateBook :exec type UpdateBookParams (line 226) | type UpdateBookParams struct method UpdateBook (line 232) | func (q *Queries) UpdateBook(ctx context.Context, arg UpdateBookParams) ... constant updateBookISBN (line 237) | updateBookISBN = `-- name: UpdateBookISBN :exec type UpdateBookISBNParams (line 243) | type UpdateBookISBNParams struct method UpdateBookISBN (line 250) | func (q *Queries) UpdateBookISBN(ctx context.Context, arg UpdateBookISBN... FILE: examples/booktest/postgresql/schema.sql type authors (line 1) | CREATE TABLE authors ( type authors_name_idx (line 6) | CREATE INDEX authors_name_idx ON authors(name) type books (line 13) | CREATE TABLE books ( type books_title_idx (line 24) | CREATE INDEX books_title_idx ON books(title, year) function say_hello (line 26) | CREATE FUNCTION say_hello(s text) RETURNS text AS $$ type books_title_lower_idx (line 32) | CREATE INDEX books_title_lower_idx ON books(title) FILE: examples/booktest/sqlite/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: examples/booktest/sqlite/db_test.go constant BooksBookTypeFICTION (line 15) | BooksBookTypeFICTION string = "FICTION" constant BooksBookTypeNONFICTION (line 16) | BooksBookTypeNONFICTION string = "NONFICTION" function TestBooks (line 19) | func TestBooks(t *testing.T) { FILE: examples/booktest/sqlite/models.go type Author (line 11) | type Author struct type Book (line 16) | type Book struct FILE: examples/booktest/sqlite/query.sql.go constant booksByTags (line 15) | booksByTags = `-- name: BooksByTags :many type BooksByTagsRow (line 27) | type BooksByTagsRow struct method BooksByTags (line 35) | func (q *Queries) BooksByTags(ctx context.Context, tags []string) ([]Boo... constant booksByTitleYear (line 74) | booksByTitleYear = `-- name: BooksByTitleYear :many type BooksByTitleYearParams (line 79) | type BooksByTitleYearParams struct method BooksByTitleYear (line 84) | func (q *Queries) BooksByTitleYear(ctx context.Context, arg BooksByTitle... constant createAuthor (line 116) | createAuthor = `-- name: CreateAuthor :one method CreateAuthor (line 121) | func (q *Queries) CreateAuthor(ctx context.Context, name string) (Author... constant createBook (line 128) | createBook = `-- name: CreateBook :one type CreateBookParams (line 149) | type CreateBookParams struct method CreateBook (line 159) | func (q *Queries) CreateBook(ctx context.Context, arg CreateBookParams) ... constant deleteAuthorBeforeYear (line 183) | deleteAuthorBeforeYear = `-- name: DeleteAuthorBeforeYear :exec type DeleteAuthorBeforeYearParams (line 188) | type DeleteAuthorBeforeYearParams struct method DeleteAuthorBeforeYear (line 193) | func (q *Queries) DeleteAuthorBeforeYear(ctx context.Context, arg Delete... constant deleteBook (line 198) | deleteBook = `-- name: DeleteBook :exec method DeleteBook (line 203) | func (q *Queries) DeleteBook(ctx context.Context, bookID int64) error { constant getAuthor (line 208) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 213) | func (q *Queries) GetAuthor(ctx context.Context, authorID int64) (Author... constant getBook (line 220) | getBook = `-- name: GetBook :one method GetBook (line 225) | func (q *Queries) GetBook(ctx context.Context, bookID int64) (Book, erro... constant updateBook (line 241) | updateBook = `-- name: UpdateBook :exec type UpdateBookParams (line 247) | type UpdateBookParams struct method UpdateBook (line 253) | func (q *Queries) UpdateBook(ctx context.Context, arg UpdateBookParams) ... constant updateBookISBN (line 258) | updateBookISBN = `-- name: UpdateBookISBN :exec type UpdateBookISBNParams (line 264) | type UpdateBookISBNParams struct method UpdateBookISBN (line 271) | func (q *Queries) UpdateBookISBN(ctx context.Context, arg UpdateBookISBN... FILE: examples/booktest/sqlite/schema.sql type authors (line 1) | CREATE TABLE authors ( type authors_name_idx (line 6) | CREATE INDEX authors_name_idx ON authors(name) type books (line 8) | CREATE TABLE books ( type books_title_idx (line 20) | CREATE INDEX books_title_idx ON books(title, yr) FILE: examples/jets/postgresql/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: examples/jets/postgresql/models.go type Jet (line 7) | type Jet struct type Language (line 15) | type Language struct type Pilot (line 20) | type Pilot struct type PilotLanguage (line 25) | type PilotLanguage struct FILE: examples/jets/postgresql/query-building.sql.go constant countPilots (line 12) | countPilots = `-- name: CountPilots :one method CountPilots (line 16) | func (q *Queries) CountPilots(ctx context.Context) (int64, error) { constant deletePilot (line 23) | deletePilot = `-- name: DeletePilot :exec method DeletePilot (line 27) | func (q *Queries) DeletePilot(ctx context.Context, id int32) error { constant listPilots (line 32) | listPilots = `-- name: ListPilots :many method ListPilots (line 36) | func (q *Queries) ListPilots(ctx context.Context) ([]Pilot, error) { FILE: examples/jets/postgresql/schema.sql type pilots (line 1) | CREATE TABLE pilots ( type jets (line 8) | CREATE TABLE jets ( type languages (line 19) | CREATE TABLE languages ( type pilot_languages (line 27) | CREATE TABLE pilot_languages ( FILE: examples/ondeck/mysql/city.sql.go constant createCity (line 12) | createCity = `-- name: CreateCity :exec type CreateCityParams (line 22) | type CreateCityParams struct method CreateCity (line 27) | func (q *Queries) CreateCity(ctx context.Context, arg CreateCityParams) ... constant getCity (line 32) | getCity = `-- name: GetCity :one method GetCity (line 38) | func (q *Queries) GetCity(ctx context.Context, slug string) (City, error) { constant listCities (line 45) | listCities = `-- name: ListCities :many method ListCities (line 51) | func (q *Queries) ListCities(ctx context.Context) ([]City, error) { constant updateCityName (line 74) | updateCityName = `-- name: UpdateCityName :exec type UpdateCityNameParams (line 80) | type UpdateCityNameParams struct method UpdateCityName (line 85) | func (q *Queries) UpdateCityName(ctx context.Context, arg UpdateCityName... FILE: examples/ondeck/mysql/db.go type DBTX (line 13) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { function Prepare (line 24) | func Prepare(ctx context.Context, db DBTX) (*Queries, error) { type Queries (line 148) | type Queries struct method Close (line 60) | func (q *Queries) Close() error { method exec (line 115) | func (q *Queries) exec(ctx context.Context, stmt *sql.Stmt, query stri... method query (line 126) | func (q *Queries) query(ctx context.Context, stmt *sql.Stmt, query str... method queryRow (line 137) | func (q *Queries) queryRow(ctx context.Context, stmt *sql.Stmt, query ... method WithTx (line 163) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: examples/ondeck/mysql/db_test.go function join (line 17) | func join(vals ...string) sql.NullString { function runOnDeckQueries (line 27) | func runOnDeckQueries(t *testing.T, q *Queries) { function TestPrepared (line 143) | func TestPrepared(t *testing.T) { function TestQueries (line 161) | func TestQueries(t *testing.T) { FILE: examples/ondeck/mysql/models.go type VenueStatus (line 14) | type VenueStatus method Scan (line 21) | func (e *VenueStatus) Scan(src interface{}) error { constant VenueStatusOpen (line 17) | VenueStatusOpen VenueStatus = "open" constant VenueStatusClosed (line 18) | VenueStatusClosed VenueStatus = "closed" type NullVenueStatus (line 33) | type NullVenueStatus struct method Scan (line 39) | func (ns *NullVenueStatus) Scan(value interface{}) error { method Value (line 49) | func (ns NullVenueStatus) Value() (driver.Value, error) { type City (line 56) | type City struct type Venue (line 62) | type Venue struct FILE: examples/ondeck/mysql/querier.go type Querier (line 12) | type Querier interface FILE: examples/ondeck/mysql/schema/0001_city.sql type city (line 1) | CREATE TABLE city ( FILE: examples/ondeck/mysql/schema/0002_venue.sql type venues (line 1) | CREATE TABLE venues ( FILE: examples/ondeck/mysql/venue.sql.go constant createVenue (line 13) | createVenue = `-- name: CreateVenue :execresult type CreateVenueParams (line 35) | type CreateVenueParams struct method CreateVenue (line 45) | func (q *Queries) CreateVenue(ctx context.Context, arg CreateVenueParams... constant deleteVenue (line 57) | deleteVenue = `-- name: DeleteVenue :exec type DeleteVenueParams (line 62) | type DeleteVenueParams struct method DeleteVenue (line 67) | func (q *Queries) DeleteVenue(ctx context.Context, arg DeleteVenueParams... constant getVenue (line 72) | getVenue = `-- name: GetVenue :one type GetVenueParams (line 78) | type GetVenueParams struct method GetVenue (line 83) | func (q *Queries) GetVenue(ctx context.Context, arg GetVenueParams) (Ven... constant listVenues (line 101) | listVenues = `-- name: ListVenues :many method ListVenues (line 108) | func (q *Queries) ListVenues(ctx context.Context, city string) ([]Venue,... constant updateVenueName (line 142) | updateVenueName = `-- name: UpdateVenueName :exec type UpdateVenueNameParams (line 148) | type UpdateVenueNameParams struct method UpdateVenueName (line 153) | func (q *Queries) UpdateVenueName(ctx context.Context, arg UpdateVenueNa... constant venueCountByCity (line 158) | venueCountByCity = `-- name: VenueCountByCity :many type VenueCountByCityRow (line 167) | type VenueCountByCityRow struct method VenueCountByCity (line 172) | func (q *Queries) VenueCountByCity(ctx context.Context) ([]VenueCountByC... FILE: examples/ondeck/postgresql/city.sql.go constant createCity (line 12) | createCity = `-- name: CreateCity :one type CreateCityParams (line 22) | type CreateCityParams struct method CreateCity (line 30) | func (q *Queries) CreateCity(ctx context.Context, arg CreateCityParams) ... constant getCity (line 37) | getCity = `-- name: GetCity :one method GetCity (line 43) | func (q *Queries) GetCity(ctx context.Context, slug string) (City, error) { constant listCities (line 50) | listCities = `-- name: ListCities :many method ListCities (line 56) | func (q *Queries) ListCities(ctx context.Context) ([]City, error) { constant updateCityName (line 79) | updateCityName = `-- name: UpdateCityName :exec type UpdateCityNameParams (line 85) | type UpdateCityNameParams struct method UpdateCityName (line 90) | func (q *Queries) UpdateCityName(ctx context.Context, arg UpdateCityName... FILE: examples/ondeck/postgresql/db.go type DBTX (line 13) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { function Prepare (line 24) | func Prepare(ctx context.Context, db DBTX) (*Queries, error) { type Queries (line 148) | type Queries struct method Close (line 60) | func (q *Queries) Close() error { method exec (line 115) | func (q *Queries) exec(ctx context.Context, stmt *sql.Stmt, query stri... method query (line 126) | func (q *Queries) query(ctx context.Context, stmt *sql.Stmt, query str... method queryRow (line 137) | func (q *Queries) queryRow(ctx context.Context, stmt *sql.Stmt, query ... method WithTx (line 163) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: examples/ondeck/postgresql/db_test.go function runOnDeckQueries (line 16) | func runOnDeckQueries(t *testing.T, q *Queries) { function TestPrepared (line 125) | func TestPrepared(t *testing.T) { function TestQueries (line 143) | func TestQueries(t *testing.T) { FILE: examples/ondeck/postgresql/models.go type Status (line 15) | type Status method Scan (line 22) | func (e *Status) Scan(src interface{}) error { constant StatusOpen (line 18) | StatusOpen Status = "op!en" constant StatusClosed (line 19) | StatusClosed Status = "clo@sed" type NullStatus (line 34) | type NullStatus struct method Scan (line 40) | func (ns *NullStatus) Scan(value interface{}) error { method Value (line 50) | func (ns NullStatus) Value() (driver.Value, error) { type City (line 57) | type City struct type Venue (line 63) | type Venue struct FILE: examples/ondeck/postgresql/querier.go type Querier (line 11) | type Querier interface FILE: examples/ondeck/postgresql/schema/0001_city.sql type city (line 1) | CREATE TABLE city ( FILE: examples/ondeck/postgresql/schema/0002_venue.sql type venues (line 4) | CREATE TABLE venues ( FILE: examples/ondeck/postgresql/venue.sql.go constant createVenue (line 14) | createVenue = `-- name: CreateVenue :one type CreateVenueParams (line 36) | type CreateVenueParams struct method CreateVenue (line 46) | func (q *Queries) CreateVenue(ctx context.Context, arg CreateVenueParams... constant deleteVenue (line 61) | deleteVenue = `-- name: DeleteVenue :exec method DeleteVenue (line 66) | func (q *Queries) DeleteVenue(ctx context.Context, slug string) error { constant getVenue (line 71) | getVenue = `-- name: GetVenue :one type GetVenueParams (line 77) | type GetVenueParams struct method GetVenue (line 82) | func (q *Queries) GetVenue(ctx context.Context, arg GetVenueParams) (Ven... constant listVenues (line 100) | listVenues = `-- name: ListVenues :many method ListVenues (line 107) | func (q *Queries) ListVenues(ctx context.Context, city string) ([]Venue,... constant updateVenueName (line 141) | updateVenueName = `-- name: UpdateVenueName :one type UpdateVenueNameParams (line 148) | type UpdateVenueNameParams struct method UpdateVenueName (line 153) | func (q *Queries) UpdateVenueName(ctx context.Context, arg UpdateVenueNa... constant venueCountByCity (line 160) | venueCountByCity = `-- name: VenueCountByCity :many type VenueCountByCityRow (line 169) | type VenueCountByCityRow struct method VenueCountByCity (line 174) | func (q *Queries) VenueCountByCity(ctx context.Context) ([]VenueCountByC... FILE: examples/ondeck/sqlite/city.sql.go constant createCity (line 12) | createCity = `-- name: CreateCity :exec type CreateCityParams (line 22) | type CreateCityParams struct method CreateCity (line 27) | func (q *Queries) CreateCity(ctx context.Context, arg CreateCityParams) ... constant getCity (line 32) | getCity = `-- name: GetCity :one method GetCity (line 38) | func (q *Queries) GetCity(ctx context.Context, slug string) (City, error) { constant listCities (line 45) | listCities = `-- name: ListCities :many method ListCities (line 51) | func (q *Queries) ListCities(ctx context.Context) ([]City, error) { constant updateCityName (line 74) | updateCityName = `-- name: UpdateCityName :exec type UpdateCityNameParams (line 80) | type UpdateCityNameParams struct method UpdateCityName (line 85) | func (q *Queries) UpdateCityName(ctx context.Context, arg UpdateCityName... FILE: examples/ondeck/sqlite/db.go type DBTX (line 13) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { function Prepare (line 24) | func Prepare(ctx context.Context, db DBTX) (*Queries, error) { type Queries (line 148) | type Queries struct method Close (line 60) | func (q *Queries) Close() error { method exec (line 115) | func (q *Queries) exec(ctx context.Context, stmt *sql.Stmt, query stri... method query (line 126) | func (q *Queries) query(ctx context.Context, stmt *sql.Stmt, query str... method queryRow (line 137) | func (q *Queries) queryRow(ctx context.Context, stmt *sql.Stmt, query ... method WithTx (line 163) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: examples/ondeck/sqlite/db_test.go constant VenuesStatusOpen (line 18) | VenuesStatusOpen string = "open" constant VenuesStatusClosed (line 19) | VenuesStatusClosed string = "closed" function join (line 22) | func join(vals ...string) sql.NullString { function runOnDeckQueries (line 32) | func runOnDeckQueries(t *testing.T, q *Queries) { function TestPrepared (line 148) | func TestPrepared(t *testing.T) { function TestQueries (line 163) | func TestQueries(t *testing.T) { FILE: examples/ondeck/sqlite/models.go type City (line 12) | type City struct type Venue (line 17) | type Venue struct FILE: examples/ondeck/sqlite/querier.go type Querier (line 12) | type Querier interface FILE: examples/ondeck/sqlite/schema/0001_city.sql type city (line 1) | CREATE TABLE city ( FILE: examples/ondeck/sqlite/schema/0002_venue.sql type venues (line 1) | CREATE TABLE venues ( FILE: examples/ondeck/sqlite/venue.sql.go constant createVenue (line 13) | createVenue = `-- name: CreateVenue :execresult type CreateVenueParams (line 35) | type CreateVenueParams struct method CreateVenue (line 45) | func (q *Queries) CreateVenue(ctx context.Context, arg CreateVenueParams... constant deleteVenue (line 57) | deleteVenue = `-- name: DeleteVenue :exec type DeleteVenueParams (line 62) | type DeleteVenueParams struct method DeleteVenue (line 67) | func (q *Queries) DeleteVenue(ctx context.Context, arg DeleteVenueParams... constant getVenue (line 72) | getVenue = `-- name: GetVenue :one type GetVenueParams (line 78) | type GetVenueParams struct method GetVenue (line 83) | func (q *Queries) GetVenue(ctx context.Context, arg GetVenueParams) (Ven... constant listVenues (line 101) | listVenues = `-- name: ListVenues :many method ListVenues (line 108) | func (q *Queries) ListVenues(ctx context.Context, city string) ([]Venue,... constant updateVenueName (line 142) | updateVenueName = `-- name: UpdateVenueName :exec type UpdateVenueNameParams (line 148) | type UpdateVenueNameParams struct method UpdateVenueName (line 153) | func (q *Queries) UpdateVenueName(ctx context.Context, arg UpdateVenueNa... constant venueCountByCity (line 158) | venueCountByCity = `-- name: VenueCountByCity :many type VenueCountByCityRow (line 167) | type VenueCountByCityRow struct method VenueCountByCity (line 172) | func (q *Queries) VenueCountByCity(ctx context.Context) ([]VenueCountByC... FILE: internal/analysis/analysis.pb.go constant _ (line 18) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 20) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type Identifier (line 23) | type Identifier struct method Reset (line 33) | func (x *Identifier) Reset() { method String (line 42) | func (x *Identifier) String() string { method ProtoMessage (line 46) | func (*Identifier) ProtoMessage() {} method ProtoReflect (line 48) | func (x *Identifier) ProtoReflect() protoreflect.Message { method Descriptor (line 61) | func (*Identifier) Descriptor() ([]byte, []int) { method GetCatalog (line 65) | func (x *Identifier) GetCatalog() string { method GetSchema (line 72) | func (x *Identifier) GetSchema() string { method GetName (line 79) | func (x *Identifier) GetName() string { type Column (line 86) | type Column struct method Reset (line 110) | func (x *Column) Reset() { method String (line 119) | func (x *Column) String() string { method ProtoMessage (line 123) | func (*Column) ProtoMessage() {} method ProtoReflect (line 125) | func (x *Column) ProtoReflect() protoreflect.Message { method Descriptor (line 138) | func (*Column) Descriptor() ([]byte, []int) { method GetName (line 142) | func (x *Column) GetName() string { method GetOriginalName (line 149) | func (x *Column) GetOriginalName() string { method GetDataType (line 156) | func (x *Column) GetDataType() string { method GetNotNull (line 163) | func (x *Column) GetNotNull() bool { method GetUnsigned (line 170) | func (x *Column) GetUnsigned() bool { method GetIsArray (line 177) | func (x *Column) GetIsArray() bool { method GetArrayDims (line 184) | func (x *Column) GetArrayDims() int32 { method GetComment (line 191) | func (x *Column) GetComment() string { method GetLength (line 198) | func (x *Column) GetLength() int32 { method GetIsNamedParam (line 205) | func (x *Column) GetIsNamedParam() bool { method GetIsFuncCall (line 212) | func (x *Column) GetIsFuncCall() bool { method GetScope (line 219) | func (x *Column) GetScope() string { method GetTable (line 226) | func (x *Column) GetTable() *Identifier { method GetTableAlias (line 233) | func (x *Column) GetTableAlias() string { method GetType (line 240) | func (x *Column) GetType() *Identifier { method GetEmbedTable (line 247) | func (x *Column) GetEmbedTable() *Identifier { method GetIsSqlcSlice (line 254) | func (x *Column) GetIsSqlcSlice() bool { type Parameter (line 261) | type Parameter struct method Reset (line 270) | func (x *Parameter) Reset() { method String (line 279) | func (x *Parameter) String() string { method ProtoMessage (line 283) | func (*Parameter) ProtoMessage() {} method ProtoReflect (line 285) | func (x *Parameter) ProtoReflect() protoreflect.Message { method Descriptor (line 298) | func (*Parameter) Descriptor() ([]byte, []int) { method GetNumber (line 302) | func (x *Parameter) GetNumber() int32 { method GetColumn (line 309) | func (x *Parameter) GetColumn() *Column { type Analysis (line 316) | type Analysis struct method Reset (line 325) | func (x *Analysis) Reset() { method String (line 334) | func (x *Analysis) String() string { method ProtoMessage (line 338) | func (*Analysis) ProtoMessage() {} method ProtoReflect (line 340) | func (x *Analysis) ProtoReflect() protoreflect.Message { method Descriptor (line 353) | func (*Analysis) Descriptor() ([]byte, []int) { method GetColumns (line 357) | func (x *Analysis) GetColumns() []*Column { method GetParams (line 364) | func (x *Analysis) GetParams() []*Parameter { function file_analysis_analysis_proto_rawDescGZIP (line 445) | func file_analysis_analysis_proto_rawDescGZIP() []byte { function init (line 473) | func init() { file_analysis_analysis_proto_init() } function file_analysis_analysis_proto_init (line 474) | func file_analysis_analysis_proto_init() { FILE: internal/analysis/analysis_vtproto.pb.go constant _ (line 17) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 19) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) method CloneVT (line 22) | func (m *Identifier) CloneVT() *Identifier { method CloneMessageVT (line 38) | func (m *Identifier) CloneMessageVT() proto.Message { method CloneVT (line 42) | func (m *Column) CloneVT() *Column { method CloneMessageVT (line 72) | func (m *Column) CloneMessageVT() proto.Message { method CloneVT (line 76) | func (m *Parameter) CloneVT() *Parameter { method CloneMessageVT (line 91) | func (m *Parameter) CloneMessageVT() proto.Message { method CloneVT (line 95) | func (m *Analysis) CloneVT() *Analysis { method CloneMessageVT (line 121) | func (m *Analysis) CloneMessageVT() proto.Message { method EqualVT (line 125) | func (this *Identifier) EqualVT(that *Identifier) bool { method EqualMessageVT (line 143) | func (this *Identifier) EqualMessageVT(thatMsg proto.Message) bool { method EqualVT (line 150) | func (this *Column) EqualVT(that *Column) bool { method EqualMessageVT (line 210) | func (this *Column) EqualMessageVT(thatMsg proto.Message) bool { method EqualVT (line 217) | func (this *Parameter) EqualVT(that *Parameter) bool { method EqualMessageVT (line 232) | func (this *Parameter) EqualMessageVT(thatMsg proto.Message) bool { method EqualVT (line 239) | func (this *Analysis) EqualVT(that *Analysis) bool { method EqualMessageVT (line 282) | func (this *Analysis) EqualMessageVT(thatMsg proto.Message) bool { method MarshalVT (line 289) | func (m *Identifier) MarshalVT() (dAtA []byte, err error) { method MarshalToVT (line 302) | func (m *Identifier) MarshalToVT(dAtA []byte) (int, error) { method MarshalToSizedBufferVT (line 307) | func (m *Identifier) MarshalToSizedBufferVT(dAtA []byte) (int, error) { method MarshalVT (line 343) | func (m *Column) MarshalVT() (dAtA []byte, err error) { method MarshalToVT (line 356) | func (m *Column) MarshalToVT(dAtA []byte) (int, error) { method MarshalToSizedBufferVT (line 361) | func (m *Column) MarshalToSizedBufferVT(dAtA []byte) (int, error) { method MarshalVT (line 522) | func (m *Parameter) MarshalVT() (dAtA []byte, err error) { method MarshalToVT (line 535) | func (m *Parameter) MarshalToVT(dAtA []byte) (int, error) { method MarshalToSizedBufferVT (line 540) | func (m *Parameter) MarshalToSizedBufferVT(dAtA []byte) (int, error) { method MarshalVT (line 570) | func (m *Analysis) MarshalVT() (dAtA []byte, err error) { method MarshalToVT (line 583) | func (m *Analysis) MarshalToVT(dAtA []byte) (int, error) { method MarshalToSizedBufferVT (line 588) | func (m *Analysis) MarshalToSizedBufferVT(dAtA []byte) (int, error) { function encodeVarint (line 627) | func encodeVarint(dAtA []byte, offset int, v uint64) int { method MarshalVTStrict (line 638) | func (m *Identifier) MarshalVTStrict() (dAtA []byte, err error) { method MarshalToVTStrict (line 651) | func (m *Identifier) MarshalToVTStrict(dAtA []byte) (int, error) { method MarshalToSizedBufferVTStrict (line 656) | func (m *Identifier) MarshalToSizedBufferVTStrict(dAtA []byte) (int, err... method MarshalVTStrict (line 692) | func (m *Column) MarshalVTStrict() (dAtA []byte, err error) { method MarshalToVTStrict (line 705) | func (m *Column) MarshalToVTStrict(dAtA []byte) (int, error) { method MarshalToSizedBufferVTStrict (line 710) | func (m *Column) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error) { method MarshalVTStrict (line 871) | func (m *Parameter) MarshalVTStrict() (dAtA []byte, err error) { method MarshalToVTStrict (line 884) | func (m *Parameter) MarshalToVTStrict(dAtA []byte) (int, error) { method MarshalToSizedBufferVTStrict (line 889) | func (m *Parameter) MarshalToSizedBufferVTStrict(dAtA []byte) (int, erro... method MarshalVTStrict (line 919) | func (m *Analysis) MarshalVTStrict() (dAtA []byte, err error) { method MarshalToVTStrict (line 932) | func (m *Analysis) MarshalToVTStrict(dAtA []byte) (int, error) { method MarshalToSizedBufferVTStrict (line 937) | func (m *Analysis) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error) { method SizeVT (line 976) | func (m *Identifier) SizeVT() (n int) { method SizeVT (line 998) | func (m *Column) SizeVT() (n int) { method SizeVT (line 1068) | func (m *Parameter) SizeVT() (n int) { method SizeVT (line 1085) | func (m *Analysis) SizeVT() (n int) { function sov (line 1107) | func sov(x uint64) (n int) { function soz (line 1110) | func soz(x uint64) (n int) { method UnmarshalVT (line 1113) | func (m *Identifier) UnmarshalVT(dAtA []byte) error { method UnmarshalVT (line 1260) | func (m *Column) UnmarshalVT(dAtA []byte) error { method UnmarshalVT (line 1769) | func (m *Parameter) UnmarshalVT(dAtA []byte) error { method UnmarshalVT (line 1875) | func (m *Analysis) UnmarshalVT(dAtA []byte) error { function skip (line 1995) | func skip(dAtA []byte) (n int, err error) { FILE: internal/analyzer/analyzer.go type CachedAnalyzer (line 22) | type CachedAnalyzer struct method Analyze (line 39) | func (c *CachedAnalyzer) Analyze(ctx context.Context, n ast.Node, q st... method analyze (line 50) | func (c *CachedAnalyzer) analyze(ctx context.Context, n ast.Node, q st... method Close (line 109) | func (c *CachedAnalyzer) Close(ctx context.Context) error { method EnsureConn (line 113) | func (c *CachedAnalyzer) EnsureConn(ctx context.Context, migrations []... method GetColumnNames (line 117) | func (c *CachedAnalyzer) GetColumnNames(ctx context.Context, query str... function Cached (line 29) | func Cached(a Analyzer, c config.Config, db config.Database) *CachedAnal... type Analyzer (line 121) | type Analyzer interface FILE: internal/bundler/multipart.go function readFiles (line 11) | func readFiles(dir string, paths []string) ([]*pb.File, error) { function readFile (line 27) | func readFile(dir string, path string) (*pb.File, error) { FILE: internal/bundler/upload.go type Uploader (line 33) | type Uploader struct method Validate (line 55) | func (up *Uploader) Validate() error { method buildRequest (line 130) | func (up *Uploader) buildRequest(ctx context.Context, results []*Query... method DumpRequestOut (line 134) | func (up *Uploader) DumpRequestOut(ctx context.Context, result []*Quer... method Upload (line 152) | func (up *Uploader) Upload(ctx context.Context, result []*QuerySetArch... type QuerySetArchive (line 40) | type QuerySetArchive struct function NewUploader (line 47) | func NewUploader(configPath, dir string, conf *config.Config) *Uploader { function annotate (line 80) | func annotate() map[string]string { function BuildRequest (line 89) | func BuildRequest(ctx context.Context, dir, configPath string, results [... FILE: internal/cache/cache.go function Dir (line 13) | func Dir() (string, error) { function PluginsDir (line 25) | func PluginsDir() (string, error) { function AnalysisDir (line 37) | func AnalysisDir() (string, error) { FILE: internal/cmd/cmd.go function init (line 27) | func init() { function Do (line 37) | func Do(args []string, stdin io.Reader, stdout io.Writer, stderr io.Writ... type Env (line 140) | type Env struct method Validate (line 163) | func (e *Env) Validate(cfg *config.Config) error { function ParseEnv (line 148) | func ParseEnv(c *cobra.Command) Env { function getConfigPath (line 172) | func getConfigPath(stderr io.Writer, f *pflag.Flag) (string, string) { function getLines (line 239) | func getLines(f []byte) []string { function filterHunks (line 249) | func filterHunks[T gonp.Elem](uniHunks []gonp.UniHunk[T]) []gonp.UniHunk... FILE: internal/cmd/createdb.go function CreateDB (line 41) | func CreateDB(ctx context.Context, dir, filename, querySetName string, o... FILE: internal/cmd/diff.go function Diff (line 15) | func Diff(ctx context.Context, dir, name string, opts *Options) error { FILE: internal/cmd/generate.go constant errMessageNoVersion (line 35) | errMessageNoVersion = `The configuration file must have a version number. constant errMessageUnknownVersion (line 44) | errMessageUnknownVersion = `The configuration file has an invalid versio... constant errMessageNoPackages (line 48) | errMessageNoPackages = `No packages are configured` function printFileErr (line 50) | func printFileErr(stderr io.Writer, dir string, fileErr *multierr.FileEr... function findPlugin (line 58) | func findPlugin(conf config.Config, name string) (*config.Plugin, error) { function readConfig (line 67) | func readConfig(stderr io.Writer, dir, filename string) (string, *config... function Generate (line 134) | func Generate(ctx context.Context, dir, filename string, o *Options) (ma... type generator (line 171) | type generator struct method Pairs (line 177) | func (g *generator) Pairs(ctx context.Context, conf *config.Config) []... method ProcessResult (line 202) | func (g *generator) ProcessResult(ctx context.Context, combo config.Co... function remoteGenerate (line 233) | func remoteGenerate(ctx context.Context, configPath string, conf *config... function parse (line 296) | func parse(ctx context.Context, name, dir string, sql config.SQL, combo ... function codegen (line 336) | func codegen(ctx context.Context, combo config.CombinedSettings, sql Out... FILE: internal/cmd/options.go type Options (line 9) | type Options struct method ReadConfig (line 20) | func (o *Options) ReadConfig(dir, filename string) (string, *config.Co... FILE: internal/cmd/process.go type OutputPair (line 20) | type OutputPair struct type ResultProcessor (line 27) | type ResultProcessor interface function Process (line 32) | func Process(ctx context.Context, rp ResultProcessor, dir, filename stri... function processQuerySets (line 55) | func processQuerySets(ctx context.Context, rp ResultProcessor, conf *con... FILE: internal/cmd/push.go function init (line 16) | func init() { type pusher (line 44) | type pusher struct method Pairs (line 49) | func (g *pusher) Pairs(ctx context.Context, conf *config.Config) []Out... method ProcessResult (line 59) | func (g *pusher) ProcessResult(ctx context.Context, combo config.Combi... function Push (line 72) | func Push(ctx context.Context, dir, filename string, opts *Options) error { FILE: internal/cmd/shim.go function pluginSettings (line 12) | func pluginSettings(r *compiler.Result, cs config.CombinedSettings) *plu... function pluginCodegen (line 22) | func pluginCodegen(cs config.CombinedSettings, s config.Codegen) *plugin... function pluginProcess (line 43) | func pluginProcess(p config.Plugin) *plugin.Codegen_Process { function pluginWASM (line 52) | func pluginWASM(p config.Plugin) *plugin.Codegen_WASM { function pluginCatalog (line 62) | func pluginCatalog(c *catalog.Catalog) *plugin.Catalog { function pluginQueries (line 136) | func pluginQueries(r *compiler.Result) []*plugin.Query { function pluginQueryColumn (line 169) | func pluginQueryColumn(c *compiler.Column) *plugin.Column { function pluginQueryParam (line 219) | func pluginQueryParam(p compiler.Parameter) *plugin.Parameter { function codeGenRequest (line 226) | func codeGenRequest(r *compiler.Result, settings config.CombinedSettings... FILE: internal/cmd/verify.go function init (line 24) | func init() { function Verify (line 51) | func Verify(ctx context.Context, dir, filename string, opts *Options) er... FILE: internal/cmd/vet.go function NewCmdVet (line 43) | func NewCmdVet() *cobra.Command { function Vet (line 66) | func Vet(ctx context.Context, dir, filename string, opts *Options) error { type preparer (line 169) | type preparer interface type pgxConn (line 173) | type pgxConn struct method Prepare (line 177) | func (p *pgxConn) Prepare(ctx context.Context, name, query string) err... method Explain (line 308) | func (p *pgxConn) Explain(ctx context.Context, query string, args ...*... function pgDefaultValue (line 184) | func pgDefaultValue(col *plugin.Column) any { function mysqlDefaultValue (line 268) | func mysqlDefaultValue(col *plugin.Column) any { type dbPreparer (line 330) | type dbPreparer struct method Prepare (line 334) | func (p *dbPreparer) Prepare(ctx context.Context, name, query string) ... type explainer (line 342) | type explainer interface type mysqlExplainer (line 346) | type mysqlExplainer struct method Explain (line 350) | func (me *mysqlExplainer) Explain(ctx context.Context, query string, a... type rule (line 375) | type rule struct type checker (line 382) | type checker struct method fetchDatabaseUri (line 407) | func (c *checker) fetchDatabaseUri(ctx context.Context, s config.SQL) ... method DSN (line 461) | func (c *checker) DSN(dsn string) (string, error) { method checkSQL (line 465) | func (c *checker) checkSQL(ctx context.Context, s config.SQL) error { function isInMemorySQLite (line 395) | func isInMemorySQLite(uri string) bool { function vetConfig (line 677) | func vetConfig(req *plugin.GenerateRequest) *vet.Config { function vetQuery (line 686) | func vetQuery(q *plugin.Query) *vet.Query { type vetEngineOutput (line 701) | type vetEngineOutput struct FILE: internal/codegen/golang/driver.go function parseDriver (line 5) | func parseDriver(sqlPackage string) opts.SQLDriver { FILE: internal/codegen/golang/enum.go type Constant (line 8) | type Constant struct type Enum (line 14) | type Enum struct method NameTag (line 22) | func (e Enum) NameTag() string { method ValidTag (line 26) | func (e Enum) ValidTag() string { function enumReplacer (line 30) | func enumReplacer(r rune) rune { function EnumReplace (line 44) | func EnumReplace(value string) string { function EnumValueName (line 50) | func EnumValueName(value string) string { function titleFirst (line 59) | func titleFirst(s string) string { FILE: internal/codegen/golang/field.go type Field (line 13) | type Field struct method Tag (line 24) | func (gf Field) Tag() string { method HasSqlcSlice (line 28) | func (gf Field) HasSqlcSlice() bool { function TagsToString (line 32) | func TagsToString(tags map[string]string) string { function JSONTagName (line 44) | func JSONTagName(name string, options *opts.Options) string { function SetCaseStyle (line 54) | func SetCaseStyle(name string, style string) string { function SetJSONCaseStyle (line 67) | func SetJSONCaseStyle(name string, style string, idUppercase bool) string { function toSnakeCase (line 82) | func toSnakeCase(s string) string { function toCamelCase (line 91) | func toCamelCase(s string) string { function toPascalCase (line 95) | func toPascalCase(s string) string { function toCamelInitCase (line 99) | func toCamelInitCase(name string, initUpper bool) string { function toJsonCamelCase (line 115) | func toJsonCamelCase(name string, idUppercase bool) string { function toLowerCase (line 137) | func toLowerCase(str string) string { FILE: internal/codegen/golang/gen.go type tmplCtx (line 19) | type tmplCtx struct method OutputQuery (line 47) | func (t *tmplCtx) OutputQuery(sourceName string) bool { method codegenDbarg (line 51) | func (t *tmplCtx) codegenDbarg() string { method codegenEmitPreparedQueries (line 60) | func (t *tmplCtx) codegenEmitPreparedQueries() bool { method codegenQueryMethod (line 64) | func (t *tmplCtx) codegenQueryMethod(q Query) string { method codegenQueryRetval (line 91) | func (t *tmplCtx) codegenQueryRetval(q Query) (string, error) { function Generate (line 111) | func Generate(ctx context.Context, req *plugin.GenerateRequest) (*plugin... function validate (line 139) | func validate(options *opts.Options, enums []Enum, structs []Struct, que... function generate (line 166) | func generate(req *plugin.GenerateRequest, options *opts.Options, enums ... function usesCopyFrom (line 336) | func usesCopyFrom(queries []Query) bool { function usesBatch (line 345) | func usesBatch(queries []Query) bool { function checkNoTimesForMySQLCopyFrom (line 356) | func checkNoTimesForMySQLCopyFrom(queries []Query) error { function filterUnusedStructs (line 370) | func filterUnusedStructs(enums []Enum, structs []Struct, queries []Query... FILE: internal/codegen/golang/go_type.go function addExtraGoStructTags (line 11) | func addExtraGoStructTags(tags map[string]string, req *plugin.GenerateRe... function goType (line 42) | func goType(req *plugin.GenerateRequest, options *opts.Options, col *plu... function goInnerType (line 72) | func goInnerType(req *plugin.GenerateRequest, options *opts.Options, col... FILE: internal/codegen/golang/imports.go type fileImports (line 12) | type fileImports struct type ImportSpec (line 17) | type ImportSpec struct method String (line 22) | func (s ImportSpec) String() string { function mergeImports (line 30) | func mergeImports(imps ...fileImports) [][]ImportSpec { type importer (line 60) | type importer struct method usesType (line 67) | func (i *importer) usesType(typ string) bool { method HasImports (line 78) | func (i *importer) HasImports(filename string) bool { method Imports (line 83) | func (i *importer) Imports(filename string) [][]ImportSpec { method dbImports (line 121) | func (i *importer) dbImports() fileImports { method interfaceImports (line 249) | func (i *importer) interfaceImports() fileImports { method modelImports (line 274) | func (i *importer) modelImports() fileImports { method queryImports (line 299) | func (i *importer) queryImports(filename string) fileImports { method copyfromImports (line 412) | func (i *importer) copyfromImports() fileImports { method batchImports (line 447) | func (i *importer) batchImports() fileImports { function buildImports (line 163) | func buildImports(options *opts.Options, queries []Query, uses func(stri... function sortedImports (line 285) | func sortedImports(std map[string]struct{}, pkg map[ImportSpec]struct{})... function trimSliceAndPointerPrefix (line 497) | func trimSliceAndPointerPrefix(v string) string { function hasPrefixIgnoringSliceAndPointerPrefix (line 503) | func hasPrefixIgnoringSliceAndPointerPrefix(s, prefix string) bool { function replaceConflictedArg (line 509) | func replaceConflictedArg(imports [][]ImportSpec, queries []Query) []Que... FILE: internal/codegen/golang/mysql_type.go function mysqlType (line 12) | func mysqlType(req *plugin.GenerateRequest, options *opts.Options, col *... FILE: internal/codegen/golang/opts/enum.go type SQLDriver (line 5) | type SQLDriver method IsPGX (line 47) | func (d SQLDriver) IsPGX() bool { method IsGoSQLDriverMySQL (line 51) | func (d SQLDriver) IsGoSQLDriverMySQL() bool { method Package (line 55) | func (d SQLDriver) Package() string { constant SQLPackagePGXV4 (line 8) | SQLPackagePGXV4 string = "pgx/v4" constant SQLPackagePGXV5 (line 9) | SQLPackagePGXV5 string = "pgx/v5" constant SQLPackageStandard (line 10) | SQLPackageStandard string = "database/sql" function validatePackage (line 19) | func validatePackage(sqlPackage string) error { constant SQLDriverPGXV4 (line 27) | SQLDriverPGXV4 SQLDriver = "github.com/jackc/pgx/v4" constant SQLDriverPGXV5 (line 28) | SQLDriverPGXV5 = "github.com/jackc/pgx/v5" constant SQLDriverLibPQ (line 29) | SQLDriverLibPQ = "github.com/lib/pq" constant SQLDriverGoSQLDriverMySQL (line 30) | SQLDriverGoSQLDriverMySQL = "github.com/go-sql-driver/mysql" function validateDriver (line 40) | func validateDriver(sqlDriver string) error { FILE: internal/codegen/golang/opts/go_type.go type GoType (line 13) | type GoType struct method MarshalJSON (line 31) | func (o *GoType) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 39) | func (o *GoType) UnmarshalJSON(data []byte) error { method UnmarshalYAML (line 54) | func (o *GoType) UnmarshalYAML(unmarshal func(interface{}) error) error { method parse (line 88) | func (gt GoType) parse() (*ParsedGoType, error) { type ParsedGoType (line 23) | type ParsedGoType struct function generatePackageID (line 73) | func generatePackageID(importPath string) (string, bool) { type GoStructTag (line 171) | type GoStructTag method parse (line 182) | func (s GoStructTag) parse() (map[string]string, error) { FILE: internal/codegen/golang/opts/options.go type Options (line 12) | type Options struct type GlobalOptions (line 52) | type GlobalOptions struct function Parse (line 57) | func Parse(req *plugin.GenerateRequest) (*Options, error) { function parseOpts (line 78) | func parseOpts(req *plugin.GenerateRequest) (*Options, error) { function parseGlobalOpts (line 131) | func parseGlobalOpts(req *plugin.GenerateRequest) (*GlobalOptions, error) { function ValidateOpts (line 147) | func ValidateOpts(opts *Options) error { FILE: internal/codegen/golang/opts/override.go type Override (line 13) | type Override struct method Matches (line 54) | func (o *Override) Matches(n *plugin.Identifier, defaultSchema string)... method MatchesColumn (line 80) | func (o *Override) MatchesColumn(col *plugin.Column) bool { method parse (line 86) | func (o *Override) parse(req *plugin.GenerateRequest) (err error) { FILE: internal/codegen/golang/opts/override_test.go function TestTypeOverrides (line 9) | func TestTypeOverrides(t *testing.T) { function FuzzOverride (line 103) | func FuzzOverride(f *testing.F) { FILE: internal/codegen/golang/opts/shim.go type ShimOverride (line 14) | type ShimOverride struct function shimOverride (line 24) | func shimOverride(req *plugin.GenerateRequest, o *Override) *ShimOverride { type ShimGoType (line 57) | type ShimGoType struct function shimGoType (line 65) | func shimGoType(o *Override) *ShimGoType { FILE: internal/codegen/golang/postgresql_type.go function parseIdentifierString (line 14) | func parseIdentifierString(name string) (*plugin.Identifier, error) { function postgresType (line 37) | func postgresType(req *plugin.GenerateRequest, options *opts.Options, co... FILE: internal/codegen/golang/query.go type QueryValue (line 12) | type QueryValue struct method EmitStruct (line 26) | func (v QueryValue) EmitStruct() bool { method IsStruct (line 30) | func (v QueryValue) IsStruct() bool { method IsPointer (line 34) | func (v QueryValue) IsPointer() bool { method isEmpty (line 38) | func (v QueryValue) isEmpty() bool { method Pair (line 47) | func (v QueryValue) Pair() string { method Pairs (line 57) | func (v QueryValue) Pairs() []Argument { method SlicePair (line 79) | func (v QueryValue) SlicePair() string { method Type (line 86) | func (v QueryValue) Type() string { method DefineType (line 96) | func (v *QueryValue) DefineType() string { method ReturnName (line 104) | func (v *QueryValue) ReturnName() string { method UniqueFields (line 111) | func (v QueryValue) UniqueFields() []Field { method Params (line 126) | func (v QueryValue) Params() string { method ColumnNames (line 153) | func (v QueryValue) ColumnNames() []string { method ColumnNamesAsGoSlice (line 164) | func (v QueryValue) ColumnNamesAsGoSlice() string { method HasSqlcSlices (line 181) | func (v QueryValue) HasSqlcSlices() bool { method Scan (line 193) | func (v QueryValue) Scan() string { method CopyFromMySQLFields (line 233) | func (v QueryValue) CopyFromMySQLFields() []Field { method VariableForField (line 247) | func (v QueryValue) VariableForField(f Field) string { type Argument (line 42) | type Argument struct type Query (line 258) | type Query struct method hasRetType (line 272) | func (q Query) hasRetType() bool { method TableIdentifierAsGoSlice (line 278) | func (q Query) TableIdentifierAsGoSlice() string { method TableIdentifierForMySQL (line 288) | func (q Query) TableIdentifierForMySQL() string { FILE: internal/codegen/golang/reserved.go function escape (line 3) | func escape(s string) string { function IsReserved (line 10) | func IsReserved(s string) bool { FILE: internal/codegen/golang/result.go function buildEnums (line 16) | func buildEnums(req *plugin.GenerateRequest, options *opts.Options) []En... function buildStructs (line 63) | func buildStructs(req *plugin.GenerateRequest, options *opts.Options) []... type goColumn (line 113) | type goColumn struct type goEmbed (line 119) | type goEmbed struct function newGoEmbed (line 127) | func newGoEmbed(embed *plugin.Identifier, structs []Struct, defaultSchem... function columnName (line 156) | func columnName(c *plugin.Column, pos int) string { function paramName (line 163) | func paramName(p *plugin.Parameter) string { function argName (line 170) | func argName(name string) string { function buildQueries (line 184) | func buildQueries(req *plugin.GenerateRequest, options *opts.Options, st... function putOutColumns (line 339) | func putOutColumns(query *plugin.Query) bool { function columnsToStruct (line 352) | func columnsToStruct(req *plugin.GenerateRequest, options *opts.Options,... function checkIncompatibleFieldTypes (line 438) | func checkIncompatibleFieldTypes(fields []Field) error { FILE: internal/codegen/golang/result_test.go function TestPutOutColumns_ForZeroColumns (line 10) | func TestPutOutColumns_ForZeroColumns(t *testing.T) { function TestPutOutColumns_AlwaysTrueWhenQueryHasColumns (line 70) | func TestPutOutColumns_AlwaysTrueWhenQueryHasColumns(t *testing.T) { FILE: internal/codegen/golang/sqlite_type.go function sqliteType (line 13) | func sqliteType(req *plugin.GenerateRequest, options *opts.Options, col ... FILE: internal/codegen/golang/struct.go type Struct (line 12) | type Struct struct function StructName (line 19) | func StructName(name string, options *opts.Options) string { FILE: internal/codegen/json/gen.go function parseOptions (line 14) | func parseOptions(req *plugin.GenerateRequest) (*opts, error) { function Generate (line 28) | func Generate(ctx context.Context, req *plugin.GenerateRequest) (*plugin... FILE: internal/codegen/json/opts.go type opts (line 3) | type opts struct FILE: internal/codegen/sdk/sdk.go function DataType (line 8) | func DataType(n *plugin.Identifier) string { function MatchString (line 16) | func MatchString(pat, target string) bool { function SameTableName (line 24) | func SameTableName(tableID, f *plugin.Identifier, defaultSchema string) ... FILE: internal/codegen/sdk/utils.go function LowerTitle (line 8) | func LowerTitle(s string) string { function Title (line 18) | func Title(s string) string { function EscapeBacktick (line 36) | func EscapeBacktick(s string) string { function DoubleSlashComment (line 40) | func DoubleSlashComment(s string) string { FILE: internal/codegen/sdk/utils_test.go function TestLowerTitle (line 7) | func TestLowerTitle(t *testing.T) { FILE: internal/compiler/analyze.go type analysis (line 15) | type analysis struct function convertTableName (line 23) | func convertTableName(id *analyzer.Identifier) *ast.TableName { function convertTypeName (line 34) | func convertTypeName(id *analyzer.Identifier) *ast.TypeName { function convertColumn (line 45) | func convertColumn(c *analyzer.Column) *Column { function combineAnalysis (line 68) | func combineAnalysis(prev *analysis, a *analyzer.Analysis) *analysis { method analyzeQuery (line 117) | func (c *Compiler) analyzeQuery(raw *ast.RawStmt, query string) (*analys... method inferQuery (line 121) | func (c *Compiler) inferQuery(raw *ast.RawStmt, query string) (*analysis... method _analyzeQuery (line 125) | func (c *Compiler) _analyzeQuery(raw *ast.RawStmt, query string, failfas... FILE: internal/compiler/compat.go function stringSlice (line 12) | func stringSlice(list *ast.List) []string { type Relation (line 22) | type Relation struct function parseRelation (line 28) | func parseRelation(node ast.Node) (*Relation, error) { function ParseTableName (line 92) | func ParseTableName(node ast.Node) (*ast.TableName, error) { function ParseTypeName (line 104) | func ParseTypeName(node ast.Node) (*ast.TypeName, error) { function ParseRelationString (line 116) | func ParseRelationString(name string) (*Relation, error) { FILE: internal/compiler/compile.go type Parser (line 23) | type Parser interface method parseCatalog (line 29) | func (c *Compiler) parseCatalog(schemas []string) error { method parseQueries (line 70) | func (c *Compiler) parseQueries(o opts.Parser) (*Result, error) { FILE: internal/compiler/engine.go type Compiler (line 20) | type Compiler struct method Catalog (line 120) | func (c *Compiler) Catalog() *catalog.Catalog { method ParseCatalog (line 124) | func (c *Compiler) ParseCatalog(schema []string) error { method ParseQueries (line 128) | func (c *Compiler) ParseQueries(queries []string, o opts.Parser) error { method Result (line 137) | func (c *Compiler) Result() *Result { method Close (line 141) | func (c *Compiler) Close(ctx context.Context) { function NewCompiler (line 39) | func NewCompiler(conf config.SQL, combo config.CombinedSettings, parserO... FILE: internal/compiler/expand.go method expand (line 14) | func (c *Compiler) expand(qc *QueryCatalog, raw *ast.RawStmt) ([]source.... method quoteIdent (line 50) | func (c *Compiler) quoteIdent(ident string) string { method quote (line 72) | func (c *Compiler) quote(x string) string { method expandStmt (line 81) | func (c *Compiler) expandStmt(qc *QueryCatalog, raw *ast.RawStmt, node a... FILE: internal/compiler/find_params.go function findParameters (line 10) | func findParameters(root ast.Node) ([]paramRef, []error) { type paramRef (line 22) | type paramRef struct type paramSearch (line 29) | type paramSearch struct method Visit (line 55) | func (p paramSearch) Visit(node ast.Node) astutils.Visitor { type limitCount (line 41) | type limitCount struct method Pos (line 44) | func (l *limitCount) Pos() int { type limitOffset (line 48) | type limitOffset struct method Pos (line 51) | func (l *limitOffset) Pos() int { FILE: internal/compiler/output_columns.go method OutputColumns (line 15) | func (c *Compiler) OutputColumns(stmt ast.Node) ([]*catalog.Column, erro... function hasStarRef (line 41) | func hasStarRef(cf *ast.ColumnRef) bool { method outputColumns (line 54) | func (c *Compiler) outputColumns(qc *QueryCatalog, node ast.Node) ([]*Co... constant tableNotFound (line 411) | tableNotFound = iota constant tableRequired (line 412) | tableRequired constant tableOptional (line 413) | tableOptional function isTableRequired (line 416) | func isTableRequired(n ast.Node, col *Column, prior int) int { type tableVisitor (line 458) | type tableVisitor struct method Visit (line 462) | func (r *tableVisitor) Visit(n ast.Node) astutils.Visitor { method sourceTables (line 481) | func (c *Compiler) sourceTables(qc *QueryCatalog, node ast.Node) ([]*Tab... function outputColumnRefs (line 650) | func outputColumnRefs(res *ast.ResTarget, tables []*Table, node *ast.Col... function findColumnForNode (line 717) | func findColumnForNode(item ast.Node, tables []*Table, targetList *ast.L... function findColumnForRef (line 725) | func findColumnForRef(ref *ast.ColumnRef, tables []*Table, targetList *a... FILE: internal/compiler/parse.go method parseQuery (line 18) | func (c *Compiler) parseQuery(stmt ast.Node, src string, o opts.Parser) ... function rangeVars (line 184) | func rangeVars(root ast.Node) []*ast.RangeVar { function uniqueParamRefs (line 196) | func uniqueParamRefs(in []paramRef, dollar bool) []paramRef { FILE: internal/compiler/query.go type Function (line 9) | type Function struct type Table (line 15) | type Table struct type Column (line 20) | type Column struct type Query (line 45) | type Query struct type Parameter (line 58) | type Parameter struct FILE: internal/compiler/query_catalog.go type QueryCatalog (line 11) | type QueryCatalog struct method GetTable (line 80) | func (qc QueryCatalog) GetTable(rel *ast.TableName) (*Table, error) { method GetFunc (line 96) | func (qc QueryCatalog) GetFunc(rel *ast.FuncName) (*Function, error) { method buildQueryCatalog (line 17) | func (comp *Compiler) buildQueryCatalog(c *catalog.Catalog, node ast.Nod... function ConvertColumn (line 66) | func ConvertColumn(rel *ast.TableName, c *catalog.Column) *Column { FILE: internal/compiler/resolve.go function dataType (line 16) | func dataType(n *ast.TypeName) string { method resolveCatalogRefs (line 24) | func (comp *Compiler) resolveCatalogRefs(qc *QueryCatalog, rvs []*ast.Ra... FILE: internal/compiler/result.go type Result (line 7) | type Result struct FILE: internal/compiler/selector.go type selector (line 9) | type selector interface type defaultSelector (line 18) | type defaultSelector struct method ColumnExpr (line 24) | func (s *defaultSelector) ColumnExpr(name string, column *Column) stri... function newDefaultSelector (line 20) | func newDefaultSelector() *defaultSelector { type sqliteSelector (line 28) | type sqliteSelector struct method ColumnExpr (line 34) | func (s *sqliteSelector) ColumnExpr(name string, column *Column) string { function newSQLiteSelector (line 30) | func newSQLiteSelector() *sqliteSelector { FILE: internal/compiler/selector_test.go function TestSelector (line 5) | func TestSelector(t *testing.T) { FILE: internal/compiler/to_column.go function arrayDims (line 10) | func arrayDims(n *ast.TypeName) int { function toColumn (line 17) | func toColumn(n *ast.TypeName) *Column { FILE: internal/config/config.go type versionSetting (line 14) | type versionSetting struct type Engine (line 18) | type Engine type Paths (line 20) | type Paths method UnmarshalJSON (line 22) | func (p *Paths) UnmarshalJSON(data []byte) error { method UnmarshalYAML (line 39) | func (p *Paths) UnmarshalYAML(unmarshal func(interface{}) error) error { constant EngineMySQL (line 54) | EngineMySQL Engine = "mysql" constant EnginePostgreSQL (line 55) | EnginePostgreSQL Engine = "postgresql" constant EngineSQLite (line 56) | EngineSQLite Engine = "sqlite" type Config (line 59) | type Config struct type Server (line 70) | type Server struct type Database (line 76) | type Database struct type Cloud (line 81) | type Cloud struct type Plugin (line 88) | type Plugin struct type Rule (line 101) | type Rule struct type Overrides (line 107) | type Overrides struct type SQL (line 111) | type SQL struct type AnalyzerDatabase (line 127) | type AnalyzerDatabase struct method IsEnabled (line 134) | func (a AnalyzerDatabase) IsEnabled() bool { method IsOnly (line 142) | func (a AnalyzerDatabase) IsOnly() bool { method UnmarshalJSON (line 146) | func (a *AnalyzerDatabase) UnmarshalJSON(data []byte) error { method UnmarshalYAML (line 169) | func (a *AnalyzerDatabase) UnmarshalYAML(unmarshal func(interface{}) e... type Analyzer (line 192) | type Analyzer struct type Codegen (line 197) | type Codegen struct type SQLGen (line 203) | type SQLGen struct type SQLJSON (line 208) | type SQLJSON struct function ParseConfig (line 245) | func ParseConfig(rd io.Reader) (Config, error) { type CombinedSettings (line 280) | type CombinedSettings struct function Combine (line 290) | func Combine(conf Config, pkg SQL) CombinedSettings { FILE: internal/config/config_test.go constant missingVersion (line 10) | missingVersion = `{ constant missingPackages (line 13) | missingPackages = `{ constant unknownVersion (line 17) | unknownVersion = `{ constant unknownFields (line 21) | unknownFields = `{ function TestBadConfigs (line 26) | func TestBadConfigs(t *testing.T) { constant validConfigOne (line 67) | validConfigOne = `{ function FuzzConfig (line 72) | func FuzzConfig(f *testing.F) { function TestInvalidConfig (line 79) | func TestInvalidConfig(t *testing.T) { FILE: internal/config/convert/convert.go function gen (line 11) | func gen(n *yaml.Node) (interface{}, error) { function YAMLtoJSON (line 71) | func YAMLtoJSON(n yaml.Node) ([]byte, error) { FILE: internal/config/convert/convert_test.go constant anchor (line 9) | anchor = ` type config (line 34) | type config struct function TestAlias (line 38) | func TestAlias(t *testing.T) { FILE: internal/config/env.go method addEnvVars (line 9) | func (c *Config) addEnvVars() error { FILE: internal/config/v_one.go type V1GenerateSettings (line 13) | type V1GenerateSettings struct method ValidateGlobalOverrides (line 101) | func (c *V1GenerateSettings) ValidateGlobalOverrides() error { method Translate (line 118) | func (c *V1GenerateSettings) Translate() Config { type v1PackageSettings (line 22) | type v1PackageSettings struct function v1ParseConfig (line 64) | func v1ParseConfig(rd io.Reader) (Config, error) { FILE: internal/config/v_two.go function v2ParseConfig (line 10) | func v2ParseConfig(rd io.Reader) (Config, error) { method validateGlobalOverrides (line 92) | func (c *Config) validateGlobalOverrides() error { FILE: internal/config/validate.go function Validate (line 3) | func Validate(c *Config) error { FILE: internal/constants/query.go constant QueryFlagParam (line 5) | QueryFlagParam = "@param" constant QueryFlagSqlcVetDisable (line 6) | QueryFlagSqlcVetDisable = "@sqlc-vet-disable" constant QueryRuleDbPrepare (line 11) | QueryRuleDbPrepare = "sqlc/db-prepare" FILE: internal/dbmanager/client.go type CreateDatabaseRequest (line 19) | type CreateDatabaseRequest struct type CreateDatabaseResponse (line 25) | type CreateDatabaseResponse struct type Client (line 29) | type Client interface type ManagedClient (line 36) | type ManagedClient struct method CreateDatabase (line 50) | func (m *ManagedClient) CreateDatabase(ctx context.Context, req *Creat... method Close (line 140) | func (m *ManagedClient) Close(ctx context.Context) { function dbid (line 42) | func dbid(migrations []string) string { function NewClient (line 144) | func NewClient(servers []config.Server) *ManagedClient { FILE: internal/debug/dump.go function init (line 16) | func init() { function Dump (line 23) | func Dump(n ...interface{}) { function DumpAsJSON (line 29) | func DumpAsJSON(a any) { FILE: internal/endtoend/case_test.go type Testcase (line 13) | type Testcase struct type ExecMeta (line 21) | type ExecMeta struct type Exec (line 25) | type Exec struct function parseStderr (line 34) | func parseStderr(t *testing.T, dir, testctx string) []byte { function parseExec (line 53) | func parseExec(t *testing.T, dir string) *Exec { function FindTests (line 73) | func FindTests(t *testing.T, root, testctx string) []*Testcase { FILE: internal/endtoend/ddl_test.go function TestValidSchema (line 13) | func TestValidSchema(t *testing.T) { FILE: internal/endtoend/endtoend_test.go function lineEndings (line 24) | func lineEndings() cmp.Option { function stderrTransformer (line 31) | func stderrTransformer() cmp.Option { function TestExamples (line 38) | func TestExamples(t *testing.T) { function BenchmarkExamples (line 74) | func BenchmarkExamples(b *testing.B) { type textContext (line 103) | type textContext struct function TestReplay (line 108) | func TestReplay(t *testing.T) { function cmpDirectory (line 305) | func cmpDirectory(t *testing.T, dir string, actual map[string]string) { function BenchmarkReplay (line 369) | func BenchmarkReplay(b *testing.B) { FILE: internal/endtoend/fmt_test.go type sqlParser (line 22) | type sqlParser interface type sqlFormatter (line 27) | type sqlFormatter interface function TestFormat (line 31) | func TestFormat(t *testing.T) { FILE: internal/endtoend/json_schema_test.go type conf (line 13) | type conf struct function loadSchema (line 17) | func loadSchema(t *testing.T, path string) *gojsonschema.Schema { function TestJsonSchema (line 33) | func TestJsonSchema(t *testing.T) { FILE: internal/endtoend/testdata/accurate_cte/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/accurate_cte/postgresql/stdlib/go/models.go type Product (line 7) | type Product struct FILE: internal/endtoend/testdata/accurate_cte/postgresql/stdlib/go/query.sql.go constant getProductStats (line 12) | getProductStats = `-- name: GetProductStats :one type GetProductStatsRow (line 19) | type GetProductStatsRow struct method GetProductStats (line 24) | func (q *Queries) GetProductStats(ctx context.Context) (GetProductStatsR... constant listExpensiveProducts (line 31) | listExpensiveProducts = `-- name: ListExpensiveProducts :many type ListExpensiveProductsRow (line 38) | type ListExpensiveProductsRow struct method ListExpensiveProducts (line 44) | func (q *Queries) ListExpensiveProducts(ctx context.Context) ([]ListExpe... FILE: internal/endtoend/testdata/accurate_cte/postgresql/stdlib/schema.sql type products (line 1) | CREATE TABLE products ( FILE: internal/endtoend/testdata/accurate_enum/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/accurate_enum/postgresql/stdlib/go/models.go type Status (line 12) | type Status method Scan (line 20) | func (e *Status) Scan(src interface{}) error { constant StatusPending (line 15) | StatusPending Status = "pending" constant StatusActive (line 16) | StatusActive Status = "active" constant StatusCompleted (line 17) | StatusCompleted Status = "completed" type NullStatus (line 32) | type NullStatus struct method Scan (line 38) | func (ns *NullStatus) Scan(value interface{}) error { method Value (line 48) | func (ns NullStatus) Value() (driver.Value, error) { type Task (line 55) | type Task struct FILE: internal/endtoend/testdata/accurate_enum/postgresql/stdlib/go/query.sql.go constant createTask (line 12) | createTask = `-- name: CreateTask :one type CreateTaskParams (line 16) | type CreateTaskParams struct method CreateTask (line 21) | func (q *Queries) CreateTask(ctx context.Context, arg CreateTaskParams) ... constant getTasksByStatus (line 28) | getTasksByStatus = `-- name: GetTasksByStatus :many method GetTasksByStatus (line 32) | func (q *Queries) GetTasksByStatus(ctx context.Context, status Status) (... constant listTasks (line 55) | listTasks = `-- name: ListTasks :many method ListTasks (line 59) | func (q *Queries) ListTasks(ctx context.Context) ([]Task, error) { FILE: internal/endtoend/testdata/accurate_enum/postgresql/stdlib/schema.sql type tasks (line 3) | CREATE TABLE tasks ( FILE: internal/endtoend/testdata/accurate_sqlite/sqlite/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/accurate_sqlite/sqlite/stdlib/go/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/accurate_sqlite/sqlite/stdlib/go/query.sql.go constant createAuthor (line 13) | createAuthor = `-- name: CreateAuthor :one type CreateAuthorParams (line 17) | type CreateAuthorParams struct method CreateAuthor (line 22) | func (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorPara... constant getAuthor (line 29) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 33) | func (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, erro... constant listAuthors (line 40) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 44) | func (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) { FILE: internal/endtoend/testdata/accurate_sqlite/sqlite/stdlib/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/accurate_star_expansion/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/accurate_star_expansion/postgresql/stdlib/go/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/accurate_star_expansion/postgresql/stdlib/go/query.sql.go constant createAuthor (line 13) | createAuthor = `-- name: CreateAuthor :one type CreateAuthorParams (line 17) | type CreateAuthorParams struct method CreateAuthor (line 22) | func (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorPara... constant deleteAuthor (line 29) | deleteAuthor = `-- name: DeleteAuthor :one method DeleteAuthor (line 33) | func (q *Queries) DeleteAuthor(ctx context.Context, id int32) (Author, e... constant getAuthor (line 40) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 44) | func (q *Queries) GetAuthor(ctx context.Context, id int32) (Author, erro... constant listAuthors (line 51) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 55) | func (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) { constant updateAuthor (line 78) | updateAuthor = `-- name: UpdateAuthor :one type UpdateAuthorParams (line 82) | type UpdateAuthorParams struct method UpdateAuthor (line 88) | func (q *Queries) UpdateAuthor(ctx context.Context, arg UpdateAuthorPara... FILE: internal/endtoend/testdata/accurate_star_expansion/postgresql/stdlib/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/alias/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/alias/mysql/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/alias/mysql/go/query.sql.go constant aliasBar (line 12) | aliasBar = `-- name: AliasBar :exec method AliasBar (line 17) | func (q *Queries) AliasBar(ctx context.Context, id uint64) error { FILE: internal/endtoend/testdata/alias/mysql/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/alias/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/alias/postgresql/pgx/v4/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/alias/postgresql/pgx/v4/go/query.sql.go constant aliasBar (line 12) | aliasBar = `-- name: AliasBar :exec method AliasBar (line 17) | func (q *Queries) AliasBar(ctx context.Context, id int32) error { FILE: internal/endtoend/testdata/alias/postgresql/pgx/v4/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/alias/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/alias/postgresql/pgx/v5/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/alias/postgresql/pgx/v5/go/query.sql.go constant aliasBar (line 12) | aliasBar = `-- name: AliasBar :exec method AliasBar (line 17) | func (q *Queries) AliasBar(ctx context.Context, id int32) error { FILE: internal/endtoend/testdata/alias/postgresql/pgx/v5/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/alias/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/alias/postgresql/stdlib/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/alias/postgresql/stdlib/go/query.sql.go constant aliasBar (line 12) | aliasBar = `-- name: AliasBar :exec method AliasBar (line 17) | func (q *Queries) AliasBar(ctx context.Context, id int32) error { FILE: internal/endtoend/testdata/alias/postgresql/stdlib/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/alias/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/alias/sqlite/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/alias/sqlite/go/query.sql.go constant aliasBar (line 12) | aliasBar = `-- name: AliasBar :exec method AliasBar (line 17) | func (q *Queries) AliasBar(ctx context.Context, id int64) error { FILE: internal/endtoend/testdata/alias/sqlite/schema.sql type bar (line 1) | CREATE TABLE bar (id integer NOT NULL PRIMARY KEY AUTOINCREMENT) FILE: internal/endtoend/testdata/any/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/any/pgx/v4/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/any/pgx/v4/go/query.sql.go constant any (line 12) | any = `-- name: Any :many method Any (line 18) | func (q *Queries) Any(ctx context.Context, dollar_1 []int64) ([]int64, e... FILE: internal/endtoend/testdata/any/pgx/v4/schema.sql type bar (line 1) | CREATE TABLE bar (id bigserial not null) FILE: internal/endtoend/testdata/any/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/any/pgx/v5/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/any/pgx/v5/go/query.sql.go constant any (line 12) | any = `-- name: Any :many method Any (line 18) | func (q *Queries) Any(ctx context.Context, dollar_1 []int64) ([]int64, e... FILE: internal/endtoend/testdata/any/pgx/v5/schema.sql type bar (line 1) | CREATE TABLE bar (id bigserial not null) FILE: internal/endtoend/testdata/any/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/any/stdlib/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/any/stdlib/go/query.sql.go constant any (line 14) | any = `-- name: Any :many method Any (line 20) | func (q *Queries) Any(ctx context.Context, dollar_1 []int64) ([]int64, e... FILE: internal/endtoend/testdata/any/stdlib/schema.sql type bar (line 1) | CREATE TABLE bar (id bigserial not null) FILE: internal/endtoend/testdata/array_in/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/array_in/pgx/v4/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/array_in/pgx/v4/go/query.sql.go constant in (line 12) | in = `-- name: In :many type InParams (line 18) | type InParams struct method In (line 23) | func (q *Queries) In(ctx context.Context, arg InParams) ([]int32, error) { FILE: internal/endtoend/testdata/array_in/pgx/v4/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/array_in/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/array_in/pgx/v5/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/array_in/pgx/v5/go/query.sql.go constant in (line 12) | in = `-- name: In :many type InParams (line 18) | type InParams struct method In (line 23) | func (q *Queries) In(ctx context.Context, arg InParams) ([]int32, error) { FILE: internal/endtoend/testdata/array_in/pgx/v5/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/array_in/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/array_in/stdlib/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/array_in/stdlib/go/query.sql.go constant in (line 12) | in = `-- name: In :many type InParams (line 18) | type InParams struct method In (line 23) | func (q *Queries) In(ctx context.Context, arg InParams) ([]int32, error) { FILE: internal/endtoend/testdata/array_in/stdlib/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/array_text/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/array_text/pgx/v4/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/array_text/pgx/v4/go/query.sql.go constant textArray (line 12) | textArray = `-- name: TextArray :many method TextArray (line 16) | func (q *Queries) TextArray(ctx context.Context) ([][]string, error) { FILE: internal/endtoend/testdata/array_text/pgx/v4/schema.sql type bar (line 1) | CREATE TABLE bar (tags text[] not null) FILE: internal/endtoend/testdata/array_text/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/array_text/pgx/v5/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/array_text/pgx/v5/go/query.sql.go constant textArray (line 12) | textArray = `-- name: TextArray :many method TextArray (line 16) | func (q *Queries) TextArray(ctx context.Context) ([][]string, error) { FILE: internal/endtoend/testdata/array_text/pgx/v5/schema.sql type bar (line 1) | CREATE TABLE bar (tags text[] not null) FILE: internal/endtoend/testdata/array_text/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/array_text/stdlib/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/array_text/stdlib/go/query.sql.go constant textArray (line 14) | textArray = `-- name: TextArray :many method TextArray (line 18) | func (q *Queries) TextArray(ctx context.Context) ([][]string, error) { FILE: internal/endtoend/testdata/array_text/stdlib/schema.sql type bar (line 1) | CREATE TABLE bar (tags text[] not null) FILE: internal/endtoend/testdata/array_text_join/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/array_text_join/pgx/v4/go/models.go type Bar (line 7) | type Bar struct type Foo (line 12) | type Foo struct FILE: internal/endtoend/testdata/array_text_join/pgx/v4/go/query.sql.go constant joinTextArray (line 12) | joinTextArray = `-- name: JoinTextArray :many method JoinTextArray (line 18) | func (q *Queries) JoinTextArray(ctx context.Context) ([][]string, error) { FILE: internal/endtoend/testdata/array_text_join/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (id text not null, bar text not null) type bar (line 2) | CREATE TABLE bar (id text not null, info text[] not null) FILE: internal/endtoend/testdata/array_text_join/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/array_text_join/pgx/v5/go/models.go type Bar (line 7) | type Bar struct type Foo (line 12) | type Foo struct FILE: internal/endtoend/testdata/array_text_join/pgx/v5/go/query.sql.go constant joinTextArray (line 12) | joinTextArray = `-- name: JoinTextArray :many method JoinTextArray (line 18) | func (q *Queries) JoinTextArray(ctx context.Context) ([][]string, error) { FILE: internal/endtoend/testdata/array_text_join/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (id text not null, bar text not null) type bar (line 2) | CREATE TABLE bar (id text not null, info text[] not null) FILE: internal/endtoend/testdata/array_text_join/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/array_text_join/stdlib/go/models.go type Bar (line 7) | type Bar struct type Foo (line 12) | type Foo struct FILE: internal/endtoend/testdata/array_text_join/stdlib/go/query.sql.go constant joinTextArray (line 14) | joinTextArray = `-- name: JoinTextArray :many method JoinTextArray (line 20) | func (q *Queries) JoinTextArray(ctx context.Context) ([][]string, error) { FILE: internal/endtoend/testdata/array_text_join/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (id text not null, bar text not null) type bar (line 2) | CREATE TABLE bar (id text not null, info text[] not null) FILE: internal/endtoend/testdata/batch/postgresql/pgx/v4/go/batch.go constant getValues (line 20) | getValues = `-- name: GetValues :batchmany type GetValuesBatchResults (line 26) | type GetValuesBatchResults struct method Query (line 44) | func (b *GetValuesBatchResults) Query(f func(int, []MyschemaFoo, error... method Close (line 75) | func (b *GetValuesBatchResults) Close() error { method GetValues (line 32) | func (q *Queries) GetValues(ctx context.Context, b []sql.NullInt32) *Get... constant insertValues (line 80) | insertValues = `-- name: InsertValues :batchone type InsertValuesBatchResults (line 86) | type InsertValuesBatchResults struct method QueryRow (line 110) | func (b *InsertValuesBatchResults) QueryRow(f func(int, sql.NullString... method Close (line 128) | func (b *InsertValuesBatchResults) Close() error { type InsertValuesParams (line 92) | type InsertValuesParams struct method InsertValues (line 97) | func (q *Queries) InsertValues(ctx context.Context, arg []InsertValuesPa... constant updateValues (line 133) | updateValues = `-- name: UpdateValues :batchexec type UpdateValuesBatchResults (line 137) | type UpdateValuesBatchResults struct method Exec (line 161) | func (b *UpdateValuesBatchResults) Exec(f func(int, error)) { method Close (line 177) | func (b *UpdateValuesBatchResults) Close() error { type UpdateValuesParams (line 143) | type UpdateValuesParams struct method UpdateValues (line 148) | func (q *Queries) UpdateValues(ctx context.Context, arg []UpdateValuesPa... FILE: internal/endtoend/testdata/batch/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 21) | func New(db DBTX) *Queries { type Queries (line 25) | type Queries struct method WithTx (line 29) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/batch/postgresql/pgx/v4/go/models.go type MyschemaFoo (line 11) | type MyschemaFoo struct FILE: internal/endtoend/testdata/batch/postgresql/pgx/v4/schema.sql type myschema (line 2) | CREATE TABLE myschema.foo (a text, b integer) FILE: internal/endtoend/testdata/batch/postgresql/pgx/v5/go/batch.go constant getValues (line 20) | getValues = `-- name: GetValues :batchmany type GetValuesBatchResults (line 26) | type GetValuesBatchResults struct method Query (line 44) | func (b *GetValuesBatchResults) Query(f func(int, []MyschemaFoo, error... method Close (line 75) | func (b *GetValuesBatchResults) Close() error { method GetValues (line 32) | func (q *Queries) GetValues(ctx context.Context, b []pgtype.Int4) *GetVa... constant insertValues (line 80) | insertValues = `-- name: InsertValues :batchone type InsertValuesBatchResults (line 86) | type InsertValuesBatchResults struct method QueryRow (line 110) | func (b *InsertValuesBatchResults) QueryRow(f func(int, pgtype.Text, e... method Close (line 128) | func (b *InsertValuesBatchResults) Close() error { type InsertValuesParams (line 92) | type InsertValuesParams struct method InsertValues (line 97) | func (q *Queries) InsertValues(ctx context.Context, arg []InsertValuesPa... constant updateValues (line 133) | updateValues = `-- name: UpdateValues :batchexec type UpdateValuesBatchResults (line 137) | type UpdateValuesBatchResults struct method Exec (line 161) | func (b *UpdateValuesBatchResults) Exec(f func(int, error)) { method Close (line 177) | func (b *UpdateValuesBatchResults) Close() error { type UpdateValuesParams (line 143) | type UpdateValuesParams struct method UpdateValues (line 148) | func (q *Queries) UpdateValues(ctx context.Context, arg []UpdateValuesPa... FILE: internal/endtoend/testdata/batch/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 21) | func New(db DBTX) *Queries { type Queries (line 25) | type Queries struct method WithTx (line 29) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/batch/postgresql/pgx/v5/go/models.go type MyschemaFoo (line 11) | type MyschemaFoo struct FILE: internal/endtoend/testdata/batch/postgresql/pgx/v5/schema.sql type myschema (line 2) | CREATE TABLE myschema.foo (a text, b integer) FILE: internal/endtoend/testdata/batch_imports/postgresql/pgx/v4/go/batch.go constant getValues (line 20) | getValues = `-- name: GetValues :batchmany type GetValuesBatchResults (line 26) | type GetValuesBatchResults struct method Query (line 44) | func (b *GetValuesBatchResults) Query(f func(int, []MyschemaFoo, error... method Close (line 75) | func (b *GetValuesBatchResults) Close() error { method GetValues (line 32) | func (q *Queries) GetValues(ctx context.Context, b []sql.NullInt32) *Get... constant insertValues (line 80) | insertValues = `-- name: InsertValues :batchone type InsertValuesBatchResults (line 86) | type InsertValuesBatchResults struct method QueryRow (line 110) | func (b *InsertValuesBatchResults) QueryRow(f func(int, sql.NullString... method Close (line 128) | func (b *InsertValuesBatchResults) Close() error { type InsertValuesParams (line 92) | type InsertValuesParams struct method InsertValues (line 97) | func (q *Queries) InsertValues(ctx context.Context, arg []InsertValuesPa... FILE: internal/endtoend/testdata/batch_imports/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 21) | func New(db DBTX) *Queries { type Queries (line 25) | type Queries struct method WithTx (line 29) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/batch_imports/postgresql/pgx/v4/go/models.go type MyschemaFoo (line 11) | type MyschemaFoo struct FILE: internal/endtoend/testdata/batch_imports/postgresql/pgx/v4/go/query.sql.go constant updateValues (line 13) | updateValues = `-- name: UpdateValues :exec type UpdateValuesParams (line 17) | type UpdateValuesParams struct method UpdateValues (line 22) | func (q *Queries) UpdateValues(ctx context.Context, arg UpdateValuesPara... FILE: internal/endtoend/testdata/batch_imports/postgresql/pgx/v4/schema.sql type myschema (line 2) | CREATE TABLE myschema.foo (a text, b integer) FILE: internal/endtoend/testdata/batch_imports/postgresql/pgx/v5/go/batch.go constant getValues (line 20) | getValues = `-- name: GetValues :batchmany type GetValuesBatchResults (line 26) | type GetValuesBatchResults struct method Query (line 44) | func (b *GetValuesBatchResults) Query(f func(int, []MyschemaFoo, error... method Close (line 75) | func (b *GetValuesBatchResults) Close() error { method GetValues (line 32) | func (q *Queries) GetValues(ctx context.Context, b []pgtype.Int4) *GetVa... constant insertValues (line 80) | insertValues = `-- name: InsertValues :batchone type InsertValuesBatchResults (line 86) | type InsertValuesBatchResults struct method QueryRow (line 110) | func (b *InsertValuesBatchResults) QueryRow(f func(int, pgtype.Text, e... method Close (line 128) | func (b *InsertValuesBatchResults) Close() error { type InsertValuesParams (line 92) | type InsertValuesParams struct method InsertValues (line 97) | func (q *Queries) InsertValues(ctx context.Context, arg []InsertValuesPa... FILE: internal/endtoend/testdata/batch_imports/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 21) | func New(db DBTX) *Queries { type Queries (line 25) | type Queries struct method WithTx (line 29) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/batch_imports/postgresql/pgx/v5/go/models.go type MyschemaFoo (line 11) | type MyschemaFoo struct FILE: internal/endtoend/testdata/batch_imports/postgresql/pgx/v5/go/query.sql.go constant updateValues (line 14) | updateValues = `-- name: UpdateValues :exec type UpdateValuesParams (line 18) | type UpdateValuesParams struct method UpdateValues (line 23) | func (q *Queries) UpdateValues(ctx context.Context, arg UpdateValuesPara... FILE: internal/endtoend/testdata/batch_imports/postgresql/pgx/v5/schema.sql type myschema (line 2) | CREATE TABLE myschema.foo (a text, b integer) FILE: internal/endtoend/testdata/batch_parameter_limit/postgresql/pgx/go/batch.go constant createAuthors (line 20) | createAuthors = `-- name: CreateAuthors :batchexec type CreateAuthorsBatchResults (line 28) | type CreateAuthorsBatchResults struct method Exec (line 52) | func (b *CreateAuthorsBatchResults) Exec(f func(int, error)) { method Close (line 68) | func (b *CreateAuthorsBatchResults) Close() error { type CreateAuthorsParams (line 34) | type CreateAuthorsParams struct method CreateAuthors (line 39) | func (q *Queries) CreateAuthors(ctx context.Context, arg []CreateAuthors... FILE: internal/endtoend/testdata/batch_parameter_limit/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 21) | func New(db DBTX) *Queries { type Queries (line 25) | type Queries struct method WithTx (line 29) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/batch_parameter_limit/postgresql/pgx/go/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/batch_parameter_limit/postgresql/pgx/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/batch_parameter_type/postgresql/pgx/go/batch.go constant insertMappping (line 20) | insertMappping = `-- name: InsertMappping :batchexec type InsertMapppingBatchResults (line 54) | type InsertMapppingBatchResults struct method Exec (line 82) | func (b *InsertMapppingBatchResults) Exec(f func(int, error)) { method Close (line 98) | func (b *InsertMapppingBatchResults) Close() error { type InsertMapppingParams (line 60) | type InsertMapppingParams struct method InsertMappping (line 67) | func (q *Queries) InsertMappping(ctx context.Context, arg []InsertMapppi... FILE: internal/endtoend/testdata/batch_parameter_type/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 21) | func New(db DBTX) *Queries { type Queries (line 25) | type Queries struct method WithTx (line 29) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/batch_parameter_type/postgresql/pgx/go/models.go type SolarCommcardMapping (line 11) | type SolarCommcardMapping struct FILE: internal/endtoend/testdata/batch_parameter_type/postgresql/pgx/schema.sql type public (line 1) | CREATE TABLE public.solar_commcard_mapping ( FILE: internal/endtoend/testdata/between_args/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/between_args/mysql/go/models.go type Product (line 7) | type Product struct FILE: internal/endtoend/testdata/between_args/mysql/go/query.sql.go constant getBetweenPrices (line 12) | getBetweenPrices = `-- name: GetBetweenPrices :many type GetBetweenPricesParams (line 18) | type GetBetweenPricesParams struct method GetBetweenPrices (line 23) | func (q *Queries) GetBetweenPrices(ctx context.Context, arg GetBetweenPr... constant getBetweenPricesNamed (line 46) | getBetweenPricesNamed = `-- name: GetBetweenPricesNamed :many type GetBetweenPricesNamedParams (line 52) | type GetBetweenPricesNamedParams struct method GetBetweenPricesNamed (line 57) | func (q *Queries) GetBetweenPricesNamed(ctx context.Context, arg GetBetw... constant getBetweenPricesTable (line 80) | getBetweenPricesTable = `-- name: GetBetweenPricesTable :many type GetBetweenPricesTableParams (line 86) | type GetBetweenPricesTableParams struct method GetBetweenPricesTable (line 91) | func (q *Queries) GetBetweenPricesTable(ctx context.Context, arg GetBetw... constant getBetweenPricesTableAlias (line 114) | getBetweenPricesTableAlias = `-- name: GetBetweenPricesTableAlias :many type GetBetweenPricesTableAliasParams (line 120) | type GetBetweenPricesTableAliasParams struct method GetBetweenPricesTableAlias (line 125) | func (q *Queries) GetBetweenPricesTableAlias(ctx context.Context, arg Ge... FILE: internal/endtoend/testdata/between_args/mysql/schema.sql type products (line 1) | CREATE TABLE products ( FILE: internal/endtoend/testdata/between_args/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/between_args/sqlite/go/models.go type Product (line 7) | type Product struct FILE: internal/endtoend/testdata/between_args/sqlite/go/query.sql.go constant getBetweenPrices (line 12) | getBetweenPrices = `-- name: GetBetweenPrices :many type GetBetweenPricesParams (line 18) | type GetBetweenPricesParams struct method GetBetweenPrices (line 23) | func (q *Queries) GetBetweenPrices(ctx context.Context, arg GetBetweenPr... constant getBetweenPricesTable (line 46) | getBetweenPricesTable = `-- name: GetBetweenPricesTable :many type GetBetweenPricesTableParams (line 52) | type GetBetweenPricesTableParams struct method GetBetweenPricesTable (line 57) | func (q *Queries) GetBetweenPricesTable(ctx context.Context, arg GetBetw... constant getBetweenPricesTableAlias (line 80) | getBetweenPricesTableAlias = `-- name: GetBetweenPricesTableAlias :many type GetBetweenPricesTableAliasParams (line 86) | type GetBetweenPricesTableAliasParams struct method GetBetweenPricesTableAlias (line 91) | func (q *Queries) GetBetweenPricesTableAlias(ctx context.Context, arg Ge... FILE: internal/endtoend/testdata/between_args/sqlite/schema.sql type products (line 1) | CREATE TABLE products ( FILE: internal/endtoend/testdata/bit_string/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/bit_string/pgx/v4/go/models.go type TestTable (line 11) | type TestTable struct FILE: internal/endtoend/testdata/bit_string/pgx/v4/go/query.sql.go constant selectTest (line 12) | selectTest = `-- name: SelectTest :many method SelectTest (line 17) | func (q *Queries) SelectTest(ctx context.Context) ([]TestTable, error) { FILE: internal/endtoend/testdata/bit_string/pgx/v4/schema.sql type test_table (line 1) | CREATE TABLE test_table FILE: internal/endtoend/testdata/bit_string/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/bit_string/pgx/v5/go/models.go type TestTable (line 11) | type TestTable struct FILE: internal/endtoend/testdata/bit_string/pgx/v5/go/query.sql.go constant selectTest (line 12) | selectTest = `-- name: SelectTest :many method SelectTest (line 17) | func (q *Queries) SelectTest(ctx context.Context) ([]TestTable, error) { FILE: internal/endtoend/testdata/bit_string/pgx/v5/schema.sql type test_table (line 1) | CREATE TABLE test_table FILE: internal/endtoend/testdata/build_tags/postgresql/stdlib/go/db.go type DBTX (line 14) | type DBTX interface function New (line 21) | func New(db DBTX) *Queries { type Queries (line 25) | type Queries struct method WithTx (line 29) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/build_tags/postgresql/stdlib/go/models.go type Author (line 13) | type Author struct FILE: internal/endtoend/testdata/build_tags/postgresql/stdlib/go/querier.go type Querier (line 13) | type Querier interface FILE: internal/endtoend/testdata/build_tags/postgresql/stdlib/go/query.sql.go constant createAuthor (line 15) | createAuthor = `-- name: CreateAuthor :one type CreateAuthorParams (line 24) | type CreateAuthorParams struct method CreateAuthor (line 29) | func (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorPara... constant deleteAuthor (line 36) | deleteAuthor = `-- name: DeleteAuthor :exec method DeleteAuthor (line 41) | func (q *Queries) DeleteAuthor(ctx context.Context, id int64) error { constant getAuthor (line 46) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 51) | func (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, erro... constant listAuthors (line 58) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 63) | func (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) { FILE: internal/endtoend/testdata/build_tags/postgresql/stdlib/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/builtins/postgresql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/builtins/postgresql/go/query.sql.go constant abs (line 12) | abs = `-- name: Abs :one method Abs (line 16) | func (q *Queries) Abs(ctx context.Context) (int64, error) { constant cbrt (line 23) | cbrt = `-- name: Cbrt :one method Cbrt (line 27) | func (q *Queries) Cbrt(ctx context.Context) (float64, error) { constant ceil (line 34) | ceil = `-- name: Ceil :one method Ceil (line 38) | func (q *Queries) Ceil(ctx context.Context) (float64, error) { constant ceiling (line 45) | ceiling = `-- name: Ceiling :one method Ceiling (line 49) | func (q *Queries) Ceiling(ctx context.Context) (float64, error) { constant degrees (line 56) | degrees = `-- name: Degrees :one method Degrees (line 60) | func (q *Queries) Degrees(ctx context.Context) (float64, error) { constant div (line 67) | div = `-- name: Div :one method Div (line 71) | func (q *Queries) Div(ctx context.Context) (string, error) { constant exp (line 78) | exp = `-- name: Exp :one method Exp (line 82) | func (q *Queries) Exp(ctx context.Context) (float64, error) { constant floor (line 89) | floor = `-- name: Floor :one method Floor (line 93) | func (q *Queries) Floor(ctx context.Context) (float64, error) { constant ln (line 100) | ln = `-- name: Ln :one method Ln (line 104) | func (q *Queries) Ln(ctx context.Context) (float64, error) { constant log (line 111) | log = `-- name: Log :one method Log (line 115) | func (q *Queries) Log(ctx context.Context) (float64, error) { constant logs (line 122) | logs = `-- name: Logs :one method Logs (line 126) | func (q *Queries) Logs(ctx context.Context) (string, error) { constant mod (line 133) | mod = `-- name: Mod :one method Mod (line 137) | func (q *Queries) Mod(ctx context.Context) (int64, error) { constant pi (line 144) | pi = `-- name: Pi :one method Pi (line 148) | func (q *Queries) Pi(ctx context.Context) (float64, error) { constant power (line 155) | power = `-- name: Power :one method Power (line 159) | func (q *Queries) Power(ctx context.Context) (float64, error) { constant radians (line 166) | radians = `-- name: Radians :one method Radians (line 170) | func (q *Queries) Radians(ctx context.Context) (float64, error) { constant round (line 177) | round = `-- name: Round :one method Round (line 181) | func (q *Queries) Round(ctx context.Context) (float64, error) { constant rounds (line 188) | rounds = `-- name: Rounds :one method Rounds (line 192) | func (q *Queries) Rounds(ctx context.Context) (string, error) { constant scale (line 199) | scale = `-- name: Scale :one method Scale (line 203) | func (q *Queries) Scale(ctx context.Context) (int32, error) { constant sign (line 210) | sign = `-- name: Sign :one method Sign (line 214) | func (q *Queries) Sign(ctx context.Context) (float64, error) { constant sqrt (line 221) | sqrt = `-- name: Sqrt :one method Sqrt (line 225) | func (q *Queries) Sqrt(ctx context.Context) (float64, error) { constant trunc (line 232) | trunc = `-- name: Trunc :one method Trunc (line 236) | func (q *Queries) Trunc(ctx context.Context) (float64, error) { constant truncs (line 243) | truncs = `-- name: Truncs :one method Truncs (line 247) | func (q *Queries) Truncs(ctx context.Context) (string, error) { constant widthBucketNumerics (line 254) | widthBucketNumerics = `-- name: WidthBucketNumerics :one method WidthBucketNumerics (line 258) | func (q *Queries) WidthBucketNumerics(ctx context.Context) (int32, error) { constant widthBucketTimestamps (line 265) | widthBucketTimestamps = `-- name: WidthBucketTimestamps :one method WidthBucketTimestamps (line 269) | func (q *Queries) WidthBucketTimestamps(ctx context.Context) (int32, err... FILE: internal/endtoend/testdata/builtins/sqlite/go/aggfunc.sql.go constant getAvg (line 13) | getAvg = `-- name: GetAvg :one method GetAvg (line 17) | func (q *Queries) GetAvg(ctx context.Context) (sql.NullFloat64, error) { constant getCount (line 24) | getCount = `-- name: GetCount :one method GetCount (line 28) | func (q *Queries) GetCount(ctx context.Context) (int64, error) { constant getCountId (line 35) | getCountId = `-- name: GetCountId :one method GetCountId (line 39) | func (q *Queries) GetCountId(ctx context.Context) (int64, error) { constant getGroupConcatInt (line 46) | getGroupConcatInt = `-- name: GetGroupConcatInt :one method GetGroupConcatInt (line 50) | func (q *Queries) GetGroupConcatInt(ctx context.Context) (string, error) { constant getGroupConcatInt2 (line 57) | getGroupConcatInt2 = `-- name: GetGroupConcatInt2 :one method GetGroupConcatInt2 (line 61) | func (q *Queries) GetGroupConcatInt2(ctx context.Context) (string, error) { constant getGroupConcatText (line 68) | getGroupConcatText = `-- name: GetGroupConcatText :one method GetGroupConcatText (line 72) | func (q *Queries) GetGroupConcatText(ctx context.Context) (string, error) { constant getGroupConcatText2 (line 79) | getGroupConcatText2 = `-- name: GetGroupConcatText2 :one method GetGroupConcatText2 (line 83) | func (q *Queries) GetGroupConcatText2(ctx context.Context) (string, erro... constant getMaxInt (line 90) | getMaxInt = `-- name: GetMaxInt :one method GetMaxInt (line 94) | func (q *Queries) GetMaxInt(ctx context.Context) (interface{}, error) { constant getMaxText (line 101) | getMaxText = `-- name: GetMaxText :one method GetMaxText (line 105) | func (q *Queries) GetMaxText(ctx context.Context) (interface{}, error) { constant getMinInt (line 112) | getMinInt = `-- name: GetMinInt :one method GetMinInt (line 116) | func (q *Queries) GetMinInt(ctx context.Context) (interface{}, error) { constant getMinText (line 123) | getMinText = `-- name: GetMinText :one method GetMinText (line 127) | func (q *Queries) GetMinText(ctx context.Context) (interface{}, error) { constant getSumInt (line 134) | getSumInt = `-- name: GetSumInt :one method GetSumInt (line 138) | func (q *Queries) GetSumInt(ctx context.Context) (sql.NullFloat64, error) { constant getSumText (line 145) | getSumText = `-- name: GetSumText :one method GetSumText (line 149) | func (q *Queries) GetSumText(ctx context.Context) (sql.NullFloat64, erro... constant getTotalInt (line 156) | getTotalInt = `-- name: GetTotalInt :one method GetTotalInt (line 160) | func (q *Queries) GetTotalInt(ctx context.Context) (float64, error) { FILE: internal/endtoend/testdata/builtins/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/builtins/sqlite/go/mathfunc.sql.go constant getAcos (line 12) | getAcos = `-- name: GetAcos :one method GetAcos (line 16) | func (q *Queries) GetAcos(ctx context.Context) (float64, error) { constant getAcosh (line 23) | getAcosh = `-- name: GetAcosh :one method GetAcosh (line 27) | func (q *Queries) GetAcosh(ctx context.Context) (float64, error) { constant getAsin (line 34) | getAsin = `-- name: GetAsin :one method GetAsin (line 38) | func (q *Queries) GetAsin(ctx context.Context) (float64, error) { constant getAsinh (line 45) | getAsinh = `-- name: GetAsinh :one method GetAsinh (line 49) | func (q *Queries) GetAsinh(ctx context.Context) (float64, error) { constant getAtan (line 56) | getAtan = `-- name: GetAtan :one method GetAtan (line 60) | func (q *Queries) GetAtan(ctx context.Context) (float64, error) { constant getAtan2 (line 67) | getAtan2 = `-- name: GetAtan2 :one method GetAtan2 (line 71) | func (q *Queries) GetAtan2(ctx context.Context) (float64, error) { constant getAtanh (line 78) | getAtanh = `-- name: GetAtanh :one method GetAtanh (line 82) | func (q *Queries) GetAtanh(ctx context.Context) (float64, error) { constant getCeil (line 89) | getCeil = `-- name: GetCeil :one method GetCeil (line 93) | func (q *Queries) GetCeil(ctx context.Context) (int64, error) { constant getCeilin (line 100) | getCeilin = `-- name: GetCeilin :one method GetCeilin (line 104) | func (q *Queries) GetCeilin(ctx context.Context) (int64, error) { constant getCos (line 111) | getCos = `-- name: GetCos :one method GetCos (line 115) | func (q *Queries) GetCos(ctx context.Context) (float64, error) { constant getCosh (line 122) | getCosh = `-- name: GetCosh :one method GetCosh (line 126) | func (q *Queries) GetCosh(ctx context.Context) (float64, error) { constant getDegrees (line 133) | getDegrees = `-- name: GetDegrees :one method GetDegrees (line 137) | func (q *Queries) GetDegrees(ctx context.Context) (float64, error) { constant getExp (line 144) | getExp = `-- name: GetExp :one method GetExp (line 148) | func (q *Queries) GetExp(ctx context.Context) (float64, error) { constant getFloor (line 155) | getFloor = `-- name: GetFloor :one method GetFloor (line 159) | func (q *Queries) GetFloor(ctx context.Context) (int64, error) { constant getLn (line 166) | getLn = `-- name: GetLn :one method GetLn (line 170) | func (q *Queries) GetLn(ctx context.Context) (float64, error) { constant getLog (line 177) | getLog = `-- name: GetLog :one method GetLog (line 181) | func (q *Queries) GetLog(ctx context.Context) (float64, error) { constant getLog10 (line 188) | getLog10 = `-- name: GetLog10 :one method GetLog10 (line 192) | func (q *Queries) GetLog10(ctx context.Context) (float64, error) { constant getLog2 (line 199) | getLog2 = `-- name: GetLog2 :one method GetLog2 (line 203) | func (q *Queries) GetLog2(ctx context.Context) (float64, error) { constant getLogBase (line 210) | getLogBase = `-- name: GetLogBase :one method GetLogBase (line 214) | func (q *Queries) GetLogBase(ctx context.Context) (float64, error) { constant getMod (line 221) | getMod = `-- name: GetMod :one method GetMod (line 225) | func (q *Queries) GetMod(ctx context.Context) (float64, error) { constant getPi (line 232) | getPi = `-- name: GetPi :one method GetPi (line 236) | func (q *Queries) GetPi(ctx context.Context) (float64, error) { constant getPow (line 243) | getPow = `-- name: GetPow :one method GetPow (line 247) | func (q *Queries) GetPow(ctx context.Context) (float64, error) { constant getPower (line 254) | getPower = `-- name: GetPower :one method GetPower (line 258) | func (q *Queries) GetPower(ctx context.Context) (float64, error) { constant getRadians (line 265) | getRadians = `-- name: GetRadians :one method GetRadians (line 269) | func (q *Queries) GetRadians(ctx context.Context) (float64, error) { constant getSin (line 276) | getSin = `-- name: GetSin :one method GetSin (line 280) | func (q *Queries) GetSin(ctx context.Context) (float64, error) { constant getSinh (line 287) | getSinh = `-- name: GetSinh :one method GetSinh (line 291) | func (q *Queries) GetSinh(ctx context.Context) (float64, error) { constant getSqrt (line 298) | getSqrt = `-- name: GetSqrt :one method GetSqrt (line 302) | func (q *Queries) GetSqrt(ctx context.Context) (float64, error) { constant getTan (line 309) | getTan = `-- name: GetTan :one method GetTan (line 313) | func (q *Queries) GetTan(ctx context.Context) (float64, error) { constant getTrunc (line 320) | getTrunc = `-- name: GetTrunc :one method GetTrunc (line 324) | func (q *Queries) GetTrunc(ctx context.Context) (int64, error) { FILE: internal/endtoend/testdata/builtins/sqlite/go/models.go type Test (line 7) | type Test struct FILE: internal/endtoend/testdata/builtins/sqlite/go/scalarfunc.sql.go constant getAbs (line 13) | getAbs = `-- name: GetAbs :one method GetAbs (line 17) | func (q *Queries) GetAbs(ctx context.Context) (float64, error) { constant getChanges (line 24) | getChanges = `-- name: GetChanges :one method GetChanges (line 28) | func (q *Queries) GetChanges(ctx context.Context) (int64, error) { constant getChar1 (line 35) | getChar1 = `-- name: GetChar1 :one method GetChar1 (line 39) | func (q *Queries) GetChar1(ctx context.Context) (string, error) { constant getChar3 (line 46) | getChar3 = `-- name: GetChar3 :one method GetChar3 (line 50) | func (q *Queries) GetChar3(ctx context.Context) (string, error) { constant getCoalesce (line 57) | getCoalesce = `-- name: GetCoalesce :one method GetCoalesce (line 61) | func (q *Queries) GetCoalesce(ctx context.Context) (interface{}, error) { constant getFormat (line 68) | getFormat = `-- name: GetFormat :one method GetFormat (line 72) | func (q *Queries) GetFormat(ctx context.Context) (sql.NullString, error) { constant getGlob (line 79) | getGlob = `-- name: GetGlob :one method GetGlob (line 83) | func (q *Queries) GetGlob(ctx context.Context) (int64, error) { constant getHex (line 90) | getHex = `-- name: GetHex :one method GetHex (line 94) | func (q *Queries) GetHex(ctx context.Context) (string, error) { constant getIfnull (line 101) | getIfnull = `-- name: GetIfnull :one method GetIfnull (line 105) | func (q *Queries) GetIfnull(ctx context.Context) (interface{}, error) { constant getIif (line 112) | getIif = `-- name: GetIif :one method GetIif (line 116) | func (q *Queries) GetIif(ctx context.Context) (interface{}, error) { constant getInstr (line 123) | getInstr = `-- name: GetInstr :one method GetInstr (line 127) | func (q *Queries) GetInstr(ctx context.Context) (sql.NullInt64, error) { constant getLastInsertRowID (line 134) | getLastInsertRowID = `-- name: GetLastInsertRowID :one method GetLastInsertRowID (line 138) | func (q *Queries) GetLastInsertRowID(ctx context.Context) (int64, error) { constant getLength (line 145) | getLength = `-- name: GetLength :one method GetLength (line 149) | func (q *Queries) GetLength(ctx context.Context) (sql.NullInt64, error) { constant getLike2 (line 156) | getLike2 = `-- name: GetLike2 :one method GetLike2 (line 160) | func (q *Queries) GetLike2(ctx context.Context) (int64, error) { constant getLike3 (line 167) | getLike3 = `-- name: GetLike3 :one method GetLike3 (line 171) | func (q *Queries) GetLike3(ctx context.Context) (int64, error) { constant getLikelihood (line 178) | getLikelihood = `-- name: GetLikelihood :one method GetLikelihood (line 182) | func (q *Queries) GetLikelihood(ctx context.Context) (interface{}, error) { constant getLikely (line 189) | getLikely = `-- name: GetLikely :one method GetLikely (line 193) | func (q *Queries) GetLikely(ctx context.Context) (interface{}, error) { constant getLower (line 200) | getLower = `-- name: GetLower :one method GetLower (line 204) | func (q *Queries) GetLower(ctx context.Context) (string, error) { constant getLtrim (line 211) | getLtrim = `-- name: GetLtrim :one method GetLtrim (line 215) | func (q *Queries) GetLtrim(ctx context.Context) (string, error) { constant getLtrim2 (line 222) | getLtrim2 = `-- name: GetLtrim2 :one method GetLtrim2 (line 226) | func (q *Queries) GetLtrim2(ctx context.Context) (string, error) { constant getMax3 (line 233) | getMax3 = `-- name: GetMax3 :one method GetMax3 (line 237) | func (q *Queries) GetMax3(ctx context.Context) (interface{}, error) { constant getMin3 (line 244) | getMin3 = `-- name: GetMin3 :one method GetMin3 (line 248) | func (q *Queries) GetMin3(ctx context.Context) (interface{}, error) { constant getNullif (line 255) | getNullif = `-- name: GetNullif :one method GetNullif (line 259) | func (q *Queries) GetNullif(ctx context.Context) (interface{}, error) { constant getPrintf (line 266) | getPrintf = `-- name: GetPrintf :one method GetPrintf (line 270) | func (q *Queries) GetPrintf(ctx context.Context) (sql.NullString, error) { constant getQuote (line 277) | getQuote = `-- name: GetQuote :one method GetQuote (line 281) | func (q *Queries) GetQuote(ctx context.Context) (string, error) { constant getRandom (line 288) | getRandom = `-- name: GetRandom :one method GetRandom (line 292) | func (q *Queries) GetRandom(ctx context.Context) (interface{}, error) { constant getRandomBlob (line 299) | getRandomBlob = `-- name: GetRandomBlob :one method GetRandomBlob (line 303) | func (q *Queries) GetRandomBlob(ctx context.Context) (interface{}, error) { constant getReplace (line 310) | getReplace = `-- name: GetReplace :one method GetReplace (line 314) | func (q *Queries) GetReplace(ctx context.Context) (string, error) { constant getRound (line 321) | getRound = `-- name: GetRound :one method GetRound (line 325) | func (q *Queries) GetRound(ctx context.Context) (float64, error) { constant getRound2 (line 332) | getRound2 = `-- name: GetRound2 :one method GetRound2 (line 336) | func (q *Queries) GetRound2(ctx context.Context) (float64, error) { constant getRtrim (line 343) | getRtrim = `-- name: GetRtrim :one method GetRtrim (line 347) | func (q *Queries) GetRtrim(ctx context.Context) (string, error) { constant getRtrim2 (line 354) | getRtrim2 = `-- name: GetRtrim2 :one method GetRtrim2 (line 358) | func (q *Queries) GetRtrim2(ctx context.Context) (string, error) { constant getSQLiteCompileOptionGet (line 365) | getSQLiteCompileOptionGet = `-- name: GetSQLiteCompileOptionGet :one method GetSQLiteCompileOptionGet (line 369) | func (q *Queries) GetSQLiteCompileOptionGet(ctx context.Context) (sql.Nu... constant getSQLiteCompileOptionUsed (line 376) | getSQLiteCompileOptionUsed = `-- name: GetSQLiteCompileOptionUsed :one method GetSQLiteCompileOptionUsed (line 380) | func (q *Queries) GetSQLiteCompileOptionUsed(ctx context.Context) (int64... constant getSQLiteSourceID (line 387) | getSQLiteSourceID = `-- name: GetSQLiteSourceID :one method GetSQLiteSourceID (line 391) | func (q *Queries) GetSQLiteSourceID(ctx context.Context) (string, error) { constant getSQLiteVersion (line 398) | getSQLiteVersion = `-- name: GetSQLiteVersion :one method GetSQLiteVersion (line 402) | func (q *Queries) GetSQLiteVersion(ctx context.Context) (string, error) { constant getSign (line 409) | getSign = `-- name: GetSign :one method GetSign (line 413) | func (q *Queries) GetSign(ctx context.Context) (sql.NullInt64, error) { constant getSoundex (line 420) | getSoundex = `-- name: GetSoundex :one method GetSoundex (line 424) | func (q *Queries) GetSoundex(ctx context.Context) (string, error) { constant getSubstr2 (line 431) | getSubstr2 = `-- name: GetSubstr2 :one method GetSubstr2 (line 435) | func (q *Queries) GetSubstr2(ctx context.Context) (string, error) { constant getSubstr3 (line 442) | getSubstr3 = `-- name: GetSubstr3 :one method GetSubstr3 (line 446) | func (q *Queries) GetSubstr3(ctx context.Context) (string, error) { constant getSubstring2 (line 453) | getSubstring2 = `-- name: GetSubstring2 :one method GetSubstring2 (line 457) | func (q *Queries) GetSubstring2(ctx context.Context) (string, error) { constant getSusbstring3 (line 464) | getSusbstring3 = `-- name: GetSusbstring3 :one method GetSusbstring3 (line 468) | func (q *Queries) GetSusbstring3(ctx context.Context) (string, error) { constant getTotalChanges (line 475) | getTotalChanges = `-- name: GetTotalChanges :one method GetTotalChanges (line 479) | func (q *Queries) GetTotalChanges(ctx context.Context) (int64, error) { constant getTrim (line 486) | getTrim = `-- name: GetTrim :one method GetTrim (line 490) | func (q *Queries) GetTrim(ctx context.Context) (string, error) { constant getTrim2 (line 497) | getTrim2 = `-- name: GetTrim2 :one method GetTrim2 (line 501) | func (q *Queries) GetTrim2(ctx context.Context) (string, error) { constant getTypeof (line 508) | getTypeof = `-- name: GetTypeof :one method GetTypeof (line 512) | func (q *Queries) GetTypeof(ctx context.Context) (string, error) { constant getUnicode (line 519) | getUnicode = `-- name: GetUnicode :one method GetUnicode (line 523) | func (q *Queries) GetUnicode(ctx context.Context) (int64, error) { constant getUnlikely (line 530) | getUnlikely = `-- name: GetUnlikely :one method GetUnlikely (line 534) | func (q *Queries) GetUnlikely(ctx context.Context) (interface{}, error) { constant getUpper (line 541) | getUpper = `-- name: GetUpper :one method GetUpper (line 545) | func (q *Queries) GetUpper(ctx context.Context) (string, error) { constant getZeroblob (line 552) | getZeroblob = `-- name: GetZeroblob :one method GetZeroblob (line 556) | func (q *Queries) GetZeroblob(ctx context.Context) ([]byte, error) { FILE: internal/endtoend/testdata/builtins/sqlite/schema.sql type test (line 1) | CREATE TABLE test ( FILE: internal/endtoend/testdata/case_named_params/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/case_named_params/mysql/go/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/case_named_params/mysql/go/query.sql.go constant listAuthors (line 13) | listAuthors = `-- name: ListAuthors :one type ListAuthorsParams (line 21) | type ListAuthorsParams struct method ListAuthors (line 26) | func (q *Queries) ListAuthors(ctx context.Context, arg ListAuthorsParams... FILE: internal/endtoend/testdata/case_named_params/mysql/schema.sql type authors (line 3) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/case_named_params/postgresql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/case_named_params/postgresql/go/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/case_named_params/postgresql/go/query.sql.go constant listAuthors (line 12) | listAuthors = `-- name: ListAuthors :one type ListAuthorsParams (line 20) | type ListAuthorsParams struct method ListAuthors (line 25) | func (q *Queries) ListAuthors(ctx context.Context, arg ListAuthorsParams... FILE: internal/endtoend/testdata/case_named_params/postgresql/schema.sql type authors (line 3) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/case_named_params/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/case_named_params/sqlite/go/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/case_named_params/sqlite/go/query.sql.go constant listAuthors (line 12) | listAuthors = `-- name: ListAuthors :one type ListAuthorsParams (line 20) | type ListAuthorsParams struct method ListAuthors (line 25) | func (q *Queries) ListAuthors(ctx context.Context, arg ListAuthorsParams... FILE: internal/endtoend/testdata/case_named_params/sqlite/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/case_sensitive/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/case_sensitive/sqlite/go/models.go type Contact (line 11) | type Contact struct FILE: internal/endtoend/testdata/case_sensitive/sqlite/go/query.sql.go constant insertContact (line 13) | insertContact = `-- name: InsertContact :exec type InsertContactParams (line 21) | type InsertContactParams struct method InsertContact (line 26) | func (q *Queries) InsertContact(ctx context.Context, arg InsertContactPa... FILE: internal/endtoend/testdata/case_sensitive/sqlite/schema.sql type contacts (line 1) | CREATE TABLE contacts ( FILE: internal/endtoend/testdata/case_stmt_bool/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/case_stmt_bool/pgx/v4/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/case_stmt_bool/pgx/v4/go/query.sql.go constant caseStatementBoolean (line 12) | caseStatementBoolean = `-- name: CaseStatementBoolean :many method CaseStatementBoolean (line 20) | func (q *Queries) CaseStatementBoolean(ctx context.Context, id string) (... FILE: internal/endtoend/testdata/case_stmt_bool/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (id text not null) FILE: internal/endtoend/testdata/case_stmt_bool/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/case_stmt_bool/pgx/v5/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/case_stmt_bool/pgx/v5/go/query.sql.go constant caseStatementBoolean (line 12) | caseStatementBoolean = `-- name: CaseStatementBoolean :many method CaseStatementBoolean (line 20) | func (q *Queries) CaseStatementBoolean(ctx context.Context, id string) (... FILE: internal/endtoend/testdata/case_stmt_bool/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (id text not null) FILE: internal/endtoend/testdata/case_stmt_bool/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/case_stmt_bool/stdlib/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/case_stmt_bool/stdlib/go/query.sql.go constant caseStatementBoolean (line 12) | caseStatementBoolean = `-- name: CaseStatementBoolean :many method CaseStatementBoolean (line 20) | func (q *Queries) CaseStatementBoolean(ctx context.Context, id string) (... FILE: internal/endtoend/testdata/case_stmt_bool/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (id text not null) FILE: internal/endtoend/testdata/case_text/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/case_text/pgx/v4/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/case_text/pgx/v4/go/query.sql.go constant caseStatementText (line 12) | caseStatementText = `-- name: CaseStatementText :many method CaseStatementText (line 20) | func (q *Queries) CaseStatementText(ctx context.Context, id string) ([]s... FILE: internal/endtoend/testdata/case_text/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (id text not null) FILE: internal/endtoend/testdata/case_text/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/case_text/pgx/v5/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/case_text/pgx/v5/go/query.sql.go constant caseStatementText (line 12) | caseStatementText = `-- name: CaseStatementText :many method CaseStatementText (line 20) | func (q *Queries) CaseStatementText(ctx context.Context, id string) ([]s... FILE: internal/endtoend/testdata/case_text/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (id text not null) FILE: internal/endtoend/testdata/case_text/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/case_text/stdlib/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/case_text/stdlib/go/query.sql.go constant caseStatementText (line 12) | caseStatementText = `-- name: CaseStatementText :many method CaseStatementText (line 20) | func (q *Queries) CaseStatementText(ctx context.Context, id string) ([]s... FILE: internal/endtoend/testdata/case_text/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (id text not null) FILE: internal/endtoend/testdata/case_value_param/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/case_value_param/mysql/go/models.go type Testing (line 11) | type Testing struct FILE: internal/endtoend/testdata/case_value_param/mysql/go/query.sql.go constant update (line 13) | update = `-- name: Update :exec method Update (line 18) | func (q *Queries) Update(ctx context.Context, value sql.NullString) error { FILE: internal/endtoend/testdata/case_value_param/mysql/schema.sql type testing (line 1) | CREATE TABLE testing ( FILE: internal/endtoend/testdata/case_value_param/postgresql/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/case_value_param/postgresql/go/models.go type Testing (line 11) | type Testing struct FILE: internal/endtoend/testdata/case_value_param/postgresql/go/query.sql.go constant update (line 14) | update = `-- name: Update :exec method Update (line 19) | func (q *Queries) Update(ctx context.Context, value pgtype.Text) error { FILE: internal/endtoend/testdata/case_value_param/postgresql/schema.sql type testing (line 1) | CREATE TABLE testing ( FILE: internal/endtoend/testdata/cast_coalesce/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/cast_coalesce/pgx/v4/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/cast_coalesce/pgx/v4/go/query.sql.go constant castCoalesce (line 12) | castCoalesce = `-- name: CastCoalesce :many method CastCoalesce (line 17) | func (q *Queries) CastCoalesce(ctx context.Context) ([]string, error) { FILE: internal/endtoend/testdata/cast_coalesce/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/cast_coalesce/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/cast_coalesce/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/cast_coalesce/pgx/v5/go/query.sql.go constant castCoalesce (line 12) | castCoalesce = `-- name: CastCoalesce :many method CastCoalesce (line 17) | func (q *Queries) CastCoalesce(ctx context.Context) ([]string, error) { FILE: internal/endtoend/testdata/cast_coalesce/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/cast_coalesce/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/cast_coalesce/stdlib/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/cast_coalesce/stdlib/go/query.sql.go constant castCoalesce (line 12) | castCoalesce = `-- name: CastCoalesce :many method CastCoalesce (line 17) | func (q *Queries) CastCoalesce(ctx context.Context) ([]string, error) { FILE: internal/endtoend/testdata/cast_coalesce/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/cast_null/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/cast_null/pgx/v4/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/cast_null/pgx/v4/go/query.sql.go constant listNullable (line 13) | listNullable = `-- name: ListNullable :many type ListNullableRow (line 22) | type ListNullableRow struct method ListNullable (line 29) | func (q *Queries) ListNullable(ctx context.Context) ([]ListNullableRow, ... FILE: internal/endtoend/testdata/cast_null/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/cast_null/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/cast_null/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/cast_null/pgx/v5/go/query.sql.go constant listNullable (line 14) | listNullable = `-- name: ListNullable :many type ListNullableRow (line 23) | type ListNullableRow struct method ListNullable (line 30) | func (q *Queries) ListNullable(ctx context.Context) ([]ListNullableRow, ... FILE: internal/endtoend/testdata/cast_null/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/cast_null/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/cast_null/stdlib/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/cast_null/stdlib/go/query.sql.go constant listNullable (line 13) | listNullable = `-- name: ListNullable :many type ListNullableRow (line 22) | type ListNullableRow struct method ListNullable (line 29) | func (q *Queries) ListNullable(ctx context.Context) ([]ListNullableRow, ... FILE: internal/endtoend/testdata/cast_null/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/cast_param/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/cast_param/sqlite/go/models.go type MyTable (line 11) | type MyTable struct FILE: internal/endtoend/testdata/cast_param/sqlite/go/query.sql.go constant getData (line 12) | getData = `-- name: GetData :many method GetData (line 18) | func (q *Queries) GetData(ctx context.Context, allowInvalid bool) ([]MyT... FILE: internal/endtoend/testdata/cast_param/sqlite/schema.sql type my_table (line 1) | create table my_table FILE: internal/endtoend/testdata/cid_oid_tid_xid/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/cid_oid_tid_xid/pgx/v4/go/models.go type TestTable (line 11) | type TestTable struct FILE: internal/endtoend/testdata/cid_oid_tid_xid/pgx/v4/go/query.sql.go constant selectTest (line 12) | selectTest = `-- name: SelectTest :many method SelectTest (line 17) | func (q *Queries) SelectTest(ctx context.Context) ([]TestTable, error) { FILE: internal/endtoend/testdata/cid_oid_tid_xid/pgx/v4/schema.sql type test_table (line 1) | CREATE TABLE test_table FILE: internal/endtoend/testdata/cid_oid_tid_xid/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/cid_oid_tid_xid/pgx/v5/go/models.go type TestTable (line 11) | type TestTable struct FILE: internal/endtoend/testdata/cid_oid_tid_xid/pgx/v5/go/query.sql.go constant selectTest (line 12) | selectTest = `-- name: SelectTest :many method SelectTest (line 17) | func (q *Queries) SelectTest(ctx context.Context) ([]TestTable, error) { FILE: internal/endtoend/testdata/cid_oid_tid_xid/pgx/v5/schema.sql type test_table (line 1) | CREATE TABLE test_table FILE: internal/endtoend/testdata/citext/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/citext/pgx/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/citext/pgx/go/query.sql.go constant getCitexts (line 12) | getCitexts = `-- name: GetCitexts :many method GetCitexts (line 17) | func (q *Queries) GetCitexts(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/citext/pgx/schema.sql type foo (line 3) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/citext/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/citext/stdlib/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/citext/stdlib/go/query.sql.go constant getCitexts (line 12) | getCitexts = `-- name: GetCitexts :many method GetCitexts (line 17) | func (q *Queries) GetCitexts(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/citext/stdlib/schema.sql type foo (line 3) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/coalesce/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/coalesce/mysql/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/coalesce/mysql/go/query.sql.go constant coalesce (line 13) | coalesce = `-- name: Coalesce :many method Coalesce (line 18) | func (q *Queries) Coalesce(ctx context.Context) ([]string, error) { constant coalesceColumns (line 41) | coalesceColumns = `-- name: CoalesceColumns :many type CoalesceColumnsRow (line 46) | type CoalesceColumnsRow struct method CoalesceColumns (line 52) | func (q *Queries) CoalesceColumns(ctx context.Context) ([]CoalesceColumn... FILE: internal/endtoend/testdata/coalesce/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (bar text, bat text not null) FILE: internal/endtoend/testdata/coalesce/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/coalesce/postgresql/pgx/v4/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/coalesce/postgresql/pgx/v4/go/query.sql.go constant coalesceNumeric (line 13) | coalesceNumeric = `-- name: CoalesceNumeric :many method CoalesceNumeric (line 18) | func (q *Queries) CoalesceNumeric(ctx context.Context) ([]int64, error) { constant coalesceNumericColumns (line 38) | coalesceNumericColumns = `-- name: CoalesceNumericColumns :many type CoalesceNumericColumnsRow (line 43) | type CoalesceNumericColumnsRow struct method CoalesceNumericColumns (line 49) | func (q *Queries) CoalesceNumericColumns(ctx context.Context) ([]Coalesc... constant coalesceNumericNull (line 69) | coalesceNumericNull = `-- name: CoalesceNumericNull :many type CoalesceNumericNullRow (line 74) | type CoalesceNumericNullRow struct method CoalesceNumericNull (line 79) | func (q *Queries) CoalesceNumericNull(ctx context.Context) ([]CoalesceNu... constant coalesceString (line 99) | coalesceString = `-- name: CoalesceString :many method CoalesceString (line 104) | func (q *Queries) CoalesceString(ctx context.Context) ([]string, error) { constant coalesceStringColumns (line 124) | coalesceStringColumns = `-- name: CoalesceStringColumns :many type CoalesceStringColumnsRow (line 129) | type CoalesceStringColumnsRow struct method CoalesceStringColumns (line 135) | func (q *Queries) CoalesceStringColumns(ctx context.Context) ([]Coalesce... constant coalesceStringNull (line 155) | coalesceStringNull = `-- name: CoalesceStringNull :many type CoalesceStringNullRow (line 160) | type CoalesceStringNullRow struct method CoalesceStringNull (line 165) | func (q *Queries) CoalesceStringNull(ctx context.Context) ([]CoalesceStr... FILE: internal/endtoend/testdata/coalesce/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/coalesce/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/coalesce/postgresql/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/coalesce/postgresql/pgx/v5/go/query.sql.go constant coalesceNumeric (line 14) | coalesceNumeric = `-- name: CoalesceNumeric :many method CoalesceNumeric (line 19) | func (q *Queries) CoalesceNumeric(ctx context.Context) ([]int64, error) { constant coalesceNumericColumns (line 39) | coalesceNumericColumns = `-- name: CoalesceNumericColumns :many type CoalesceNumericColumnsRow (line 44) | type CoalesceNumericColumnsRow struct method CoalesceNumericColumns (line 50) | func (q *Queries) CoalesceNumericColumns(ctx context.Context) ([]Coalesc... constant coalesceNumericNull (line 70) | coalesceNumericNull = `-- name: CoalesceNumericNull :many type CoalesceNumericNullRow (line 75) | type CoalesceNumericNullRow struct method CoalesceNumericNull (line 80) | func (q *Queries) CoalesceNumericNull(ctx context.Context) ([]CoalesceNu... constant coalesceString (line 100) | coalesceString = `-- name: CoalesceString :many method CoalesceString (line 105) | func (q *Queries) CoalesceString(ctx context.Context) ([]string, error) { constant coalesceStringColumns (line 125) | coalesceStringColumns = `-- name: CoalesceStringColumns :many type CoalesceStringColumnsRow (line 130) | type CoalesceStringColumnsRow struct method CoalesceStringColumns (line 136) | func (q *Queries) CoalesceStringColumns(ctx context.Context) ([]Coalesce... constant coalesceStringNull (line 156) | coalesceStringNull = `-- name: CoalesceStringNull :many type CoalesceStringNullRow (line 161) | type CoalesceStringNullRow struct method CoalesceStringNull (line 166) | func (q *Queries) CoalesceStringNull(ctx context.Context) ([]CoalesceStr... FILE: internal/endtoend/testdata/coalesce/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/coalesce/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/coalesce/postgresql/stdlib/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/coalesce/postgresql/stdlib/go/query.sql.go constant coalesceNumeric (line 13) | coalesceNumeric = `-- name: CoalesceNumeric :many method CoalesceNumeric (line 18) | func (q *Queries) CoalesceNumeric(ctx context.Context) ([]int64, error) { constant coalesceNumericColumns (line 41) | coalesceNumericColumns = `-- name: CoalesceNumericColumns :many type CoalesceNumericColumnsRow (line 46) | type CoalesceNumericColumnsRow struct method CoalesceNumericColumns (line 52) | func (q *Queries) CoalesceNumericColumns(ctx context.Context) ([]Coalesc... constant coalesceNumericNull (line 75) | coalesceNumericNull = `-- name: CoalesceNumericNull :many type CoalesceNumericNullRow (line 80) | type CoalesceNumericNullRow struct method CoalesceNumericNull (line 85) | func (q *Queries) CoalesceNumericNull(ctx context.Context) ([]CoalesceNu... constant coalesceString (line 108) | coalesceString = `-- name: CoalesceString :many method CoalesceString (line 113) | func (q *Queries) CoalesceString(ctx context.Context) ([]string, error) { constant coalesceStringColumns (line 136) | coalesceStringColumns = `-- name: CoalesceStringColumns :many type CoalesceStringColumnsRow (line 141) | type CoalesceStringColumnsRow struct method CoalesceStringColumns (line 147) | func (q *Queries) CoalesceStringColumns(ctx context.Context) ([]Coalesce... constant coalesceStringNull (line 170) | coalesceStringNull = `-- name: CoalesceStringNull :many type CoalesceStringNullRow (line 175) | type CoalesceStringNullRow struct method CoalesceStringNull (line 180) | func (q *Queries) CoalesceStringNull(ctx context.Context) ([]CoalesceStr... FILE: internal/endtoend/testdata/coalesce/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/coalesce/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/coalesce/sqlite/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/coalesce/sqlite/go/query.sql.go constant coalesce (line 13) | coalesce = `-- name: Coalesce :many method Coalesce (line 18) | func (q *Queries) Coalesce(ctx context.Context) ([]string, error) { constant coalesceColumns (line 41) | coalesceColumns = `-- name: CoalesceColumns :many type CoalesceColumnsRow (line 46) | type CoalesceColumnsRow struct method CoalesceColumns (line 52) | func (q *Queries) CoalesceColumns(ctx context.Context) ([]CoalesceColumn... FILE: internal/endtoend/testdata/coalesce/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo (bar text, bat text not null) FILE: internal/endtoend/testdata/coalesce_as/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/coalesce_as/mysql/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/coalesce_as/mysql/go/query.sql.go constant sumBaz (line 13) | sumBaz = `-- name: SumBaz :many type SumBazRow (line 19) | type SumBazRow struct method SumBaz (line 24) | func (q *Queries) SumBaz(ctx context.Context) ([]SumBazRow, error) { FILE: internal/endtoend/testdata/coalesce_as/mysql/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/coalesce_as/postgresql/pganalyze/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/coalesce_as/postgresql/pganalyze/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/coalesce_as/postgresql/pganalyze/go/query.sql.go constant sumBaz (line 14) | sumBaz = `-- name: SumBaz :many type SumBazRow (line 20) | type SumBazRow struct method SumBaz (line 25) | func (q *Queries) SumBaz(ctx context.Context) ([]SumBazRow, error) { FILE: internal/endtoend/testdata/coalesce_as/postgresql/pganalyze/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/coalesce_as/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/coalesce_as/postgresql/pgx/v4/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/coalesce_as/postgresql/pgx/v4/go/query.sql.go constant sumBaz (line 13) | sumBaz = `-- name: SumBaz :many type SumBazRow (line 19) | type SumBazRow struct method SumBaz (line 24) | func (q *Queries) SumBaz(ctx context.Context) ([]SumBazRow, error) { FILE: internal/endtoend/testdata/coalesce_as/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/coalesce_as/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/coalesce_as/postgresql/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/coalesce_as/postgresql/pgx/v5/go/query.sql.go constant sumBaz (line 14) | sumBaz = `-- name: SumBaz :many type SumBazRow (line 20) | type SumBazRow struct method SumBaz (line 25) | func (q *Queries) SumBaz(ctx context.Context) ([]SumBazRow, error) { FILE: internal/endtoend/testdata/coalesce_as/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/coalesce_as/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/coalesce_as/postgresql/stdlib/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/coalesce_as/postgresql/stdlib/go/query.sql.go constant sumBaz (line 13) | sumBaz = `-- name: SumBaz :many type SumBazRow (line 19) | type SumBazRow struct method SumBaz (line 24) | func (q *Queries) SumBaz(ctx context.Context) ([]SumBazRow, error) { FILE: internal/endtoend/testdata/coalesce_as/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/coalesce_as/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/coalesce_as/sqlite/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/coalesce_as/sqlite/go/query.sql.go constant sumBaz (line 13) | sumBaz = `-- name: SumBaz :many type SumBazRow (line 19) | type SumBazRow struct method SumBaz (line 24) | func (q *Queries) SumBaz(ctx context.Context) ([]SumBazRow, error) { FILE: internal/endtoend/testdata/coalesce_as/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/coalesce_join/postgresql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/coalesce_join/postgresql/go/models.go type Bar (line 7) | type Bar struct type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/coalesce_join/postgresql/go/query.sql.go constant getBar (line 12) | getBar = `-- name: GetBar :many type GetBarRow (line 18) | type GetBarRow struct method GetBar (line 23) | func (q *Queries) GetBar(ctx context.Context) ([]GetBarRow, error) { FILE: internal/endtoend/testdata/coalesce_join/postgresql/schema.sql type foo (line 1) | CREATE TABLE foo(id bigserial primary key) type bar (line 2) | CREATE TABLE bar(id bigserial primary key) FILE: internal/endtoend/testdata/coalesce_params/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/coalesce_params/mysql/go/models.go type CalendarMaincalendar (line 14) | type CalendarMaincalendar method Scan (line 21) | func (e *CalendarMaincalendar) Scan(src interface{}) error { constant CalendarMaincalendarTrue (line 17) | CalendarMaincalendarTrue CalendarMaincalendar = "true" constant CalendarMaincalendarFalse (line 18) | CalendarMaincalendarFalse CalendarMaincalendar = "false" type NullCalendarMaincalendar (line 33) | type NullCalendarMaincalendar struct method Scan (line 39) | func (ns *NullCalendarMaincalendar) Scan(value interface{}) error { method Value (line 49) | func (ns NullCalendarMaincalendar) Value() (driver.Value, error) { type Author (line 56) | type Author struct type Calendar (line 63) | type Calendar struct type Event (line 77) | type Event struct FILE: internal/endtoend/testdata/coalesce_params/mysql/go/query.sql.go constant addAuthor (line 12) | addAuthor = `-- name: AddAuthor :execlastid type AddAuthorParams (line 24) | type AddAuthorParams struct method AddAuthor (line 30) | func (q *Queries) AddAuthor(ctx context.Context, arg AddAuthorParams) (i... constant addEvent (line 38) | addEvent = `-- name: AddEvent :execlastid type AddEventParams (line 46) | type AddEventParams struct method AddEvent (line 51) | func (q *Queries) AddEvent(ctx context.Context, arg AddEventParams) (int... FILE: internal/endtoend/testdata/coalesce_params/mysql/schema.sql type `Calendar` (line 1) | CREATE TABLE `Calendar` ( type `Event` (line 20) | CREATE TABLE `Event` ( type authors (line 38) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/codegen_json/postgresql/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/codegen_struct_field_names/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/codegen_struct_field_names/stdlib/go/models.go type Bar (line 11) | type Bar struct FILE: internal/endtoend/testdata/codegen_struct_field_names/stdlib/go/query.sql.go constant test (line 12) | test = `-- name: test :one method test (line 16) | func (q *Queries) test(ctx context.Context) (Bar, error) { FILE: internal/endtoend/testdata/codegen_struct_field_names/stdlib/schema.sql type bar (line 1) | CREATE TABLE bar ( FILE: internal/endtoend/testdata/column_alias/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/column_alias/stdlib/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/column_alias/stdlib/go/query.sql.go constant getUsers (line 14) | getUsers = `-- name: GetUsers :many type GetUsersRow (line 37) | type GetUsersRow struct method GetUsers (line 49) | func (q *Queries) GetUsers(ctx context.Context, searchTerm string) ([]Ge... FILE: internal/endtoend/testdata/column_alias/stdlib/schema.sql type users (line 4) | CREATE TABLE users( FILE: internal/endtoend/testdata/column_as/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/column_as/mysql/go/query.sql.go constant withAs (line 12) | withAs = `-- name: WithAs :one type WithAsRow (line 16) | type WithAsRow struct method WithAs (line 21) | func (q *Queries) WithAs(ctx context.Context) (WithAsRow, error) { constant withoutAs (line 28) | withoutAs = `-- name: WithoutAs :one type WithoutAsRow (line 32) | type WithoutAsRow struct method WithoutAs (line 37) | func (q *Queries) WithoutAs(ctx context.Context) (WithoutAsRow, error) { FILE: internal/endtoend/testdata/column_as/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/column_as/postgresql/pgx/v4/go/query.sql.go constant withAs (line 12) | withAs = `-- name: WithAs :one type WithAsRow (line 16) | type WithAsRow struct method WithAs (line 21) | func (q *Queries) WithAs(ctx context.Context) (WithAsRow, error) { constant withoutAs (line 28) | withoutAs = `-- name: WithoutAs :one type WithoutAsRow (line 32) | type WithoutAsRow struct method WithoutAs (line 37) | func (q *Queries) WithoutAs(ctx context.Context) (WithoutAsRow, error) { FILE: internal/endtoend/testdata/column_as/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/column_as/postgresql/pgx/v5/go/query.sql.go constant withAs (line 12) | withAs = `-- name: WithAs :one type WithAsRow (line 16) | type WithAsRow struct method WithAs (line 21) | func (q *Queries) WithAs(ctx context.Context) (WithAsRow, error) { constant withoutAs (line 28) | withoutAs = `-- name: WithoutAs :one type WithoutAsRow (line 32) | type WithoutAsRow struct method WithoutAs (line 37) | func (q *Queries) WithoutAs(ctx context.Context) (WithoutAsRow, error) { FILE: internal/endtoend/testdata/column_as/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/column_as/postgresql/stdlib/go/query.sql.go constant withAs (line 12) | withAs = `-- name: WithAs :one type WithAsRow (line 16) | type WithAsRow struct method WithAs (line 21) | func (q *Queries) WithAs(ctx context.Context) (WithAsRow, error) { constant withoutAs (line 28) | withoutAs = `-- name: WithoutAs :one type WithoutAsRow (line 32) | type WithoutAsRow struct method WithoutAs (line 37) | func (q *Queries) WithoutAs(ctx context.Context) (WithoutAsRow, error) { FILE: internal/endtoend/testdata/column_as/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/column_as/sqlite/go/query.sql.go constant withAs (line 12) | withAs = `-- name: WithAs :one type WithAsRow (line 16) | type WithAsRow struct method WithAs (line 21) | func (q *Queries) WithAs(ctx context.Context) (WithAsRow, error) { constant withoutAs (line 28) | withoutAs = `-- name: WithoutAs :one type WithoutAsRow (line 32) | type WithoutAsRow struct method WithoutAs (line 37) | func (q *Queries) WithoutAs(ctx context.Context) (WithoutAsRow, error) { FILE: internal/endtoend/testdata/comment_godoc/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/comment_godoc/postgresql/pgx/v4/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/comment_godoc/postgresql/pgx/v4/go/query.sql.go constant execFoo (line 15) | execFoo = `-- name: ExecFoo :exec method ExecFoo (line 20) | func (q *Queries) ExecFoo(ctx context.Context) error { constant execResultFoo (line 25) | execResultFoo = `-- name: ExecResultFoo :execresult method ExecResultFoo (line 30) | func (q *Queries) ExecResultFoo(ctx context.Context) (pgconn.CommandTag,... constant execRowFoo (line 34) | execRowFoo = `-- name: ExecRowFoo :execrows method ExecRowFoo (line 39) | func (q *Queries) ExecRowFoo(ctx context.Context) (int64, error) { constant manyFoo (line 47) | manyFoo = `-- name: ManyFoo :many method ManyFoo (line 52) | func (q *Queries) ManyFoo(ctx context.Context) ([]sql.NullString, error) { constant oneFoo (line 72) | oneFoo = `-- name: OneFoo :one method OneFoo (line 77) | func (q *Queries) OneFoo(ctx context.Context) (sql.NullString, error) { FILE: internal/endtoend/testdata/comment_godoc/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/comment_godoc/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/comment_godoc/postgresql/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/comment_godoc/postgresql/pgx/v5/go/query.sql.go constant execFoo (line 15) | execFoo = `-- name: ExecFoo :exec method ExecFoo (line 20) | func (q *Queries) ExecFoo(ctx context.Context) error { constant execResultFoo (line 25) | execResultFoo = `-- name: ExecResultFoo :execresult method ExecResultFoo (line 30) | func (q *Queries) ExecResultFoo(ctx context.Context) (pgconn.CommandTag,... constant execRowFoo (line 34) | execRowFoo = `-- name: ExecRowFoo :execrows method ExecRowFoo (line 39) | func (q *Queries) ExecRowFoo(ctx context.Context) (int64, error) { constant manyFoo (line 47) | manyFoo = `-- name: ManyFoo :many method ManyFoo (line 52) | func (q *Queries) ManyFoo(ctx context.Context) ([]pgtype.Text, error) { constant oneFoo (line 72) | oneFoo = `-- name: OneFoo :one method OneFoo (line 77) | func (q *Queries) OneFoo(ctx context.Context) (pgtype.Text, error) { FILE: internal/endtoend/testdata/comment_godoc/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/comment_godoc_db_argument/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New() *Queries { type Queries (line 24) | type Queries struct FILE: internal/endtoend/testdata/comment_godoc_db_argument/postgresql/pgx/v4/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/comment_godoc_db_argument/postgresql/pgx/v4/go/query.sql.go constant execFoo (line 15) | execFoo = `-- name: ExecFoo :exec method ExecFoo (line 20) | func (q *Queries) ExecFoo(ctx context.Context, db DBTX) error { constant execResultFoo (line 25) | execResultFoo = `-- name: ExecResultFoo :execresult method ExecResultFoo (line 30) | func (q *Queries) ExecResultFoo(ctx context.Context, db DBTX) (pgconn.Co... constant execRowFoo (line 34) | execRowFoo = `-- name: ExecRowFoo :execrows method ExecRowFoo (line 39) | func (q *Queries) ExecRowFoo(ctx context.Context, db DBTX) (int64, error) { constant manyFoo (line 47) | manyFoo = `-- name: ManyFoo :many method ManyFoo (line 52) | func (q *Queries) ManyFoo(ctx context.Context, db DBTX) ([]sql.NullStrin... constant oneFoo (line 72) | oneFoo = `-- name: OneFoo :one method OneFoo (line 77) | func (q *Queries) OneFoo(ctx context.Context, db DBTX) (sql.NullString, ... FILE: internal/endtoend/testdata/comment_godoc_db_argument/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/comment_godoc_db_argument/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New() *Queries { type Queries (line 24) | type Queries struct FILE: internal/endtoend/testdata/comment_godoc_db_argument/postgresql/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/comment_godoc_db_argument/postgresql/pgx/v5/go/query.sql.go constant execFoo (line 15) | execFoo = `-- name: ExecFoo :exec method ExecFoo (line 20) | func (q *Queries) ExecFoo(ctx context.Context, db DBTX) error { constant execResultFoo (line 25) | execResultFoo = `-- name: ExecResultFoo :execresult method ExecResultFoo (line 30) | func (q *Queries) ExecResultFoo(ctx context.Context, db DBTX) (pgconn.Co... constant execRowFoo (line 34) | execRowFoo = `-- name: ExecRowFoo :execrows method ExecRowFoo (line 39) | func (q *Queries) ExecRowFoo(ctx context.Context, db DBTX) (int64, error) { constant manyFoo (line 47) | manyFoo = `-- name: ManyFoo :many method ManyFoo (line 52) | func (q *Queries) ManyFoo(ctx context.Context, db DBTX) ([]pgtype.Text, ... constant oneFoo (line 72) | oneFoo = `-- name: OneFoo :one method OneFoo (line 77) | func (q *Queries) OneFoo(ctx context.Context, db DBTX) (pgtype.Text, err... FILE: internal/endtoend/testdata/comment_godoc_db_argument/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/comment_on/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/comment_on/postgresql/pgx/v4/go/models.go type FooMood (line 13) | type FooMood method Scan (line 21) | func (e *FooMood) Scan(src interface{}) error { constant FooMoodSad (line 16) | FooMoodSad FooMood = "sad" constant FooMoodOk (line 17) | FooMoodOk FooMood = "ok" constant FooMoodHappy (line 18) | FooMoodHappy FooMood = "happy" type NullFooMood (line 33) | type NullFooMood struct method Scan (line 39) | func (ns *NullFooMood) Scan(value interface{}) error { method Value (line 49) | func (ns NullFooMood) Value() (driver.Value, error) { type FooBar (line 57) | type FooBar struct type FooBat (line 63) | type FooBat struct FILE: internal/endtoend/testdata/comment_on/postgresql/pgx/v4/go/query.sql.go constant listBar (line 12) | listBar = `-- name: ListBar :many method ListBar (line 16) | func (q *Queries) ListBar(ctx context.Context) ([]string, error) { constant listBat (line 36) | listBat = `-- name: ListBat :many method ListBat (line 40) | func (q *Queries) ListBat(ctx context.Context) ([]string, error) { FILE: internal/endtoend/testdata/comment_on/postgresql/pgx/v4/schema.sql type foo (line 3) | CREATE TABLE foo.bar ( type foo (line 7) | CREATE VIEW foo.bat AS SELECT * FROM foo.bar FILE: internal/endtoend/testdata/comment_on/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/comment_on/postgresql/pgx/v5/go/models.go type FooMood (line 13) | type FooMood method Scan (line 21) | func (e *FooMood) Scan(src interface{}) error { constant FooMoodSad (line 16) | FooMoodSad FooMood = "sad" constant FooMoodOk (line 17) | FooMoodOk FooMood = "ok" constant FooMoodHappy (line 18) | FooMoodHappy FooMood = "happy" type NullFooMood (line 33) | type NullFooMood struct method Scan (line 39) | func (ns *NullFooMood) Scan(value interface{}) error { method Value (line 49) | func (ns NullFooMood) Value() (driver.Value, error) { type FooBar (line 57) | type FooBar struct type FooBat (line 63) | type FooBat struct FILE: internal/endtoend/testdata/comment_on/postgresql/pgx/v5/go/query.sql.go constant listBar (line 12) | listBar = `-- name: ListBar :many method ListBar (line 16) | func (q *Queries) ListBar(ctx context.Context) ([]string, error) { constant listBat (line 36) | listBat = `-- name: ListBat :many method ListBat (line 40) | func (q *Queries) ListBat(ctx context.Context) ([]string, error) { FILE: internal/endtoend/testdata/comment_on/postgresql/pgx/v5/schema.sql type foo (line 3) | CREATE TABLE foo.bar ( type foo (line 7) | CREATE VIEW foo.bat AS SELECT * FROM foo.bar FILE: internal/endtoend/testdata/comment_on/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/comment_on/postgresql/stdlib/go/models.go type FooMood (line 13) | type FooMood method Scan (line 21) | func (e *FooMood) Scan(src interface{}) error { constant FooMoodSad (line 16) | FooMoodSad FooMood = "sad" constant FooMoodOk (line 17) | FooMoodOk FooMood = "ok" constant FooMoodHappy (line 18) | FooMoodHappy FooMood = "happy" type NullFooMood (line 33) | type NullFooMood struct method Scan (line 39) | func (ns *NullFooMood) Scan(value interface{}) error { method Value (line 49) | func (ns NullFooMood) Value() (driver.Value, error) { type FooBar (line 57) | type FooBar struct type FooBat (line 63) | type FooBat struct FILE: internal/endtoend/testdata/comment_on/postgresql/stdlib/go/query.sql.go constant listBar (line 12) | listBar = `-- name: ListBar :many method ListBar (line 16) | func (q *Queries) ListBar(ctx context.Context) ([]string, error) { constant listBat (line 39) | listBat = `-- name: ListBat :many method ListBat (line 43) | func (q *Queries) ListBat(ctx context.Context) ([]string, error) { FILE: internal/endtoend/testdata/comment_on/postgresql/stdlib/schema.sql type foo (line 3) | CREATE TABLE foo.bar ( type foo (line 7) | CREATE VIEW foo.bat AS SELECT * FROM foo.bar FILE: internal/endtoend/testdata/comment_syntax/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/comment_syntax/mysql/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/comment_syntax/mysql/go/query.sql.go constant doubleDash (line 13) | doubleDash = `-- name: DoubleDash :one method DoubleDash (line 17) | func (q *Queries) DoubleDash(ctx context.Context) (sql.NullString, error) { constant hash (line 24) | hash = `-- name: Hash :one method Hash (line 28) | func (q *Queries) Hash(ctx context.Context) (sql.NullString, error) { constant slashStar (line 35) | slashStar = `-- name: SlashStar :one method SlashStar (line 39) | func (q *Queries) SlashStar(ctx context.Context) (sql.NullString, error) { FILE: internal/endtoend/testdata/comment_syntax/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/comment_syntax/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/comment_syntax/postgresql/pgx/v4/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/comment_syntax/postgresql/pgx/v4/go/query.sql.go constant doubleDash (line 13) | doubleDash = `-- name: DoubleDash :one method DoubleDash (line 17) | func (q *Queries) DoubleDash(ctx context.Context) (sql.NullString, error) { constant slashStar (line 24) | slashStar = `-- name: SlashStar :one method SlashStar (line 28) | func (q *Queries) SlashStar(ctx context.Context) (sql.NullString, error) { FILE: internal/endtoend/testdata/comment_syntax/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/comment_syntax/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/comment_syntax/postgresql/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/comment_syntax/postgresql/pgx/v5/go/query.sql.go constant doubleDash (line 14) | doubleDash = `-- name: DoubleDash :one method DoubleDash (line 18) | func (q *Queries) DoubleDash(ctx context.Context) (pgtype.Text, error) { constant slashStar (line 25) | slashStar = `-- name: SlashStar :one method SlashStar (line 29) | func (q *Queries) SlashStar(ctx context.Context) (pgtype.Text, error) { FILE: internal/endtoend/testdata/comment_syntax/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/comment_syntax/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/comment_syntax/postgresql/stdlib/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/comment_syntax/postgresql/stdlib/go/query.sql.go constant doubleDash (line 13) | doubleDash = `-- name: DoubleDash :one method DoubleDash (line 17) | func (q *Queries) DoubleDash(ctx context.Context) (sql.NullString, error) { constant slashStar (line 24) | slashStar = `-- name: SlashStar :one method SlashStar (line 28) | func (q *Queries) SlashStar(ctx context.Context) (sql.NullString, error) { FILE: internal/endtoend/testdata/comment_syntax/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/comment_syntax/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/comment_syntax/sqlite/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/comment_syntax/sqlite/go/query.sql.go constant doubleDash (line 13) | doubleDash = `-- name: DoubleDash :one method DoubleDash (line 17) | func (q *Queries) DoubleDash(ctx context.Context) (sql.NullString, error) { constant slashStar (line 24) | slashStar = `-- name: SlashStar :one method SlashStar (line 28) | func (q *Queries) SlashStar(ctx context.Context) (sql.NullString, error) { FILE: internal/endtoend/testdata/comment_syntax/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/comparisons/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/comparisons/mysql/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/comparisons/mysql/go/query.sql.go constant alsoNotEqual (line 12) | alsoNotEqual = `-- name: AlsoNotEqual :many method AlsoNotEqual (line 16) | func (q *Queries) AlsoNotEqual(ctx context.Context) ([]bool, error) { constant equal (line 39) | equal = `-- name: Equal :many method Equal (line 43) | func (q *Queries) Equal(ctx context.Context) ([]bool, error) { constant greaterThan (line 66) | greaterThan = `-- name: GreaterThan :many method GreaterThan (line 70) | func (q *Queries) GreaterThan(ctx context.Context) ([]bool, error) { constant greaterThanOrEqual (line 93) | greaterThanOrEqual = `-- name: GreaterThanOrEqual :many method GreaterThanOrEqual (line 97) | func (q *Queries) GreaterThanOrEqual(ctx context.Context) ([]bool, error) { constant isNotNull (line 120) | isNotNull = `-- name: IsNotNull :many method IsNotNull (line 124) | func (q *Queries) IsNotNull(ctx context.Context) ([]bool, error) { constant isNull (line 147) | isNull = `-- name: IsNull :many method IsNull (line 151) | func (q *Queries) IsNull(ctx context.Context) ([]bool, error) { constant lessThan (line 174) | lessThan = `-- name: LessThan :many method LessThan (line 178) | func (q *Queries) LessThan(ctx context.Context) ([]bool, error) { constant lessThanOrEqual (line 201) | lessThanOrEqual = `-- name: LessThanOrEqual :many method LessThanOrEqual (line 205) | func (q *Queries) LessThanOrEqual(ctx context.Context) ([]bool, error) { constant notEqual (line 228) | notEqual = `-- name: NotEqual :many method NotEqual (line 232) | func (q *Queries) NotEqual(ctx context.Context) ([]bool, error) { FILE: internal/endtoend/testdata/comparisons/mysql/schema.sql type bar (line 4) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/comparisons/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/comparisons/postgresql/pgx/v4/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/comparisons/postgresql/pgx/v4/go/query.sql.go constant alsoNotEqual (line 12) | alsoNotEqual = `-- name: AlsoNotEqual :many method AlsoNotEqual (line 16) | func (q *Queries) AlsoNotEqual(ctx context.Context) ([]bool, error) { constant equal (line 36) | equal = `-- name: Equal :many method Equal (line 40) | func (q *Queries) Equal(ctx context.Context) ([]bool, error) { constant greaterThan (line 60) | greaterThan = `-- name: GreaterThan :many method GreaterThan (line 64) | func (q *Queries) GreaterThan(ctx context.Context) ([]bool, error) { constant greaterThanOrEqual (line 84) | greaterThanOrEqual = `-- name: GreaterThanOrEqual :many method GreaterThanOrEqual (line 88) | func (q *Queries) GreaterThanOrEqual(ctx context.Context) ([]bool, error) { constant lessThan (line 108) | lessThan = `-- name: LessThan :many method LessThan (line 112) | func (q *Queries) LessThan(ctx context.Context) ([]bool, error) { constant lessThanOrEqual (line 132) | lessThanOrEqual = `-- name: LessThanOrEqual :many method LessThanOrEqual (line 136) | func (q *Queries) LessThanOrEqual(ctx context.Context) ([]bool, error) { constant notEqual (line 156) | notEqual = `-- name: NotEqual :many method NotEqual (line 160) | func (q *Queries) NotEqual(ctx context.Context) ([]bool, error) { FILE: internal/endtoend/testdata/comparisons/postgresql/pgx/v4/schema.sql type bar (line 4) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/comparisons/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/comparisons/postgresql/pgx/v5/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/comparisons/postgresql/pgx/v5/go/query.sql.go constant alsoNotEqual (line 12) | alsoNotEqual = `-- name: AlsoNotEqual :many method AlsoNotEqual (line 16) | func (q *Queries) AlsoNotEqual(ctx context.Context) ([]bool, error) { constant equal (line 36) | equal = `-- name: Equal :many method Equal (line 40) | func (q *Queries) Equal(ctx context.Context) ([]bool, error) { constant greaterThan (line 60) | greaterThan = `-- name: GreaterThan :many method GreaterThan (line 64) | func (q *Queries) GreaterThan(ctx context.Context) ([]bool, error) { constant greaterThanOrEqual (line 84) | greaterThanOrEqual = `-- name: GreaterThanOrEqual :many method GreaterThanOrEqual (line 88) | func (q *Queries) GreaterThanOrEqual(ctx context.Context) ([]bool, error) { constant lessThan (line 108) | lessThan = `-- name: LessThan :many method LessThan (line 112) | func (q *Queries) LessThan(ctx context.Context) ([]bool, error) { constant lessThanOrEqual (line 132) | lessThanOrEqual = `-- name: LessThanOrEqual :many method LessThanOrEqual (line 136) | func (q *Queries) LessThanOrEqual(ctx context.Context) ([]bool, error) { constant notEqual (line 156) | notEqual = `-- name: NotEqual :many method NotEqual (line 160) | func (q *Queries) NotEqual(ctx context.Context) ([]bool, error) { FILE: internal/endtoend/testdata/comparisons/postgresql/pgx/v5/schema.sql type bar (line 4) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/comparisons/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/comparisons/postgresql/stdlib/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/comparisons/postgresql/stdlib/go/query.sql.go constant alsoNotEqual (line 12) | alsoNotEqual = `-- name: AlsoNotEqual :many method AlsoNotEqual (line 16) | func (q *Queries) AlsoNotEqual(ctx context.Context) ([]bool, error) { constant equal (line 39) | equal = `-- name: Equal :many method Equal (line 43) | func (q *Queries) Equal(ctx context.Context) ([]bool, error) { constant greaterThan (line 66) | greaterThan = `-- name: GreaterThan :many method GreaterThan (line 70) | func (q *Queries) GreaterThan(ctx context.Context) ([]bool, error) { constant greaterThanOrEqual (line 93) | greaterThanOrEqual = `-- name: GreaterThanOrEqual :many method GreaterThanOrEqual (line 97) | func (q *Queries) GreaterThanOrEqual(ctx context.Context) ([]bool, error) { constant lessThan (line 120) | lessThan = `-- name: LessThan :many method LessThan (line 124) | func (q *Queries) LessThan(ctx context.Context) ([]bool, error) { constant lessThanOrEqual (line 147) | lessThanOrEqual = `-- name: LessThanOrEqual :many method LessThanOrEqual (line 151) | func (q *Queries) LessThanOrEqual(ctx context.Context) ([]bool, error) { constant notEqual (line 174) | notEqual = `-- name: NotEqual :many method NotEqual (line 178) | func (q *Queries) NotEqual(ctx context.Context) ([]bool, error) { FILE: internal/endtoend/testdata/comparisons/postgresql/stdlib/schema.sql type bar (line 4) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/comparisons/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/comparisons/sqlite/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/comparisons/sqlite/go/query.sql.go constant alsoNotEqual (line 12) | alsoNotEqual = `-- name: AlsoNotEqual :many method AlsoNotEqual (line 16) | func (q *Queries) AlsoNotEqual(ctx context.Context) ([]bool, error) { constant equal (line 39) | equal = `-- name: Equal :many method Equal (line 43) | func (q *Queries) Equal(ctx context.Context) ([]bool, error) { constant greaterThan (line 66) | greaterThan = `-- name: GreaterThan :many method GreaterThan (line 70) | func (q *Queries) GreaterThan(ctx context.Context) ([]bool, error) { constant greaterThanOrEqual (line 93) | greaterThanOrEqual = `-- name: GreaterThanOrEqual :many method GreaterThanOrEqual (line 97) | func (q *Queries) GreaterThanOrEqual(ctx context.Context) ([]bool, error) { constant lessThan (line 120) | lessThan = `-- name: LessThan :many method LessThan (line 124) | func (q *Queries) LessThan(ctx context.Context) ([]bool, error) { constant lessThanOrEqual (line 147) | lessThanOrEqual = `-- name: LessThanOrEqual :many method LessThanOrEqual (line 151) | func (q *Queries) LessThanOrEqual(ctx context.Context) ([]bool, error) { constant notEqual (line 174) | notEqual = `-- name: NotEqual :many method NotEqual (line 178) | func (q *Queries) NotEqual(ctx context.Context) ([]bool, error) { FILE: internal/endtoend/testdata/comparisons/sqlite/schema.sql type bar (line 4) | CREATE TABLE bar (id integer not null primary key autoincrement) FILE: internal/endtoend/testdata/composite_type/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/composite_type/pgx/v4/go/models.go type FooPath (line 11) | type FooPath struct FILE: internal/endtoend/testdata/composite_type/pgx/v4/go/query.sql.go constant listPaths (line 12) | listPaths = `-- name: ListPaths :many method ListPaths (line 16) | func (q *Queries) ListPaths(ctx context.Context) ([]FooPath, error) { FILE: internal/endtoend/testdata/composite_type/pgx/v4/schema.sql type foo (line 13) | CREATE TABLE foo.paths ( FILE: internal/endtoend/testdata/composite_type/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/composite_type/pgx/v5/go/models.go type FooPath (line 11) | type FooPath struct FILE: internal/endtoend/testdata/composite_type/pgx/v5/go/query.sql.go constant listPaths (line 12) | listPaths = `-- name: ListPaths :many method ListPaths (line 16) | func (q *Queries) ListPaths(ctx context.Context) ([]FooPath, error) { FILE: internal/endtoend/testdata/composite_type/pgx/v5/schema.sql type foo (line 13) | CREATE TABLE foo.paths ( FILE: internal/endtoend/testdata/composite_type/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/composite_type/stdlib/go/models.go type FooPath (line 11) | type FooPath struct FILE: internal/endtoend/testdata/composite_type/stdlib/go/query.sql.go constant listPaths (line 12) | listPaths = `-- name: ListPaths :many method ListPaths (line 16) | func (q *Queries) ListPaths(ctx context.Context) ([]FooPath, error) { FILE: internal/endtoend/testdata/composite_type/stdlib/schema.sql type foo (line 13) | CREATE TABLE foo.paths ( FILE: internal/endtoend/testdata/conflicted_arg_name/postgresql/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/conflicted_arg_name/postgresql/db/models.go type Foo (line 13) | type Foo struct FILE: internal/endtoend/testdata/conflicted_arg_name/postgresql/db/query.sql.go constant time2ByTime (line 15) | time2ByTime = `-- name: Time2ByTime :one method Time2ByTime (line 19) | func (q *Queries) Time2ByTime(ctx context.Context, argTime time.Time) (t... constant uuid2ByUuid (line 26) | uuid2ByUuid = `-- name: Uuid2ByUuid :one method Uuid2ByUuid (line 30) | func (q *Queries) Uuid2ByUuid(ctx context.Context, argUuid uuid.UUID) (u... FILE: internal/endtoend/testdata/conflicted_arg_name/postgresql/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/copyfrom/mysql/go/copyfrom.go function convertRowsForInsertSingleValue (line 21) | func convertRowsForInsertSingleValue(w *io.PipeWriter, a []sql.NullStrin... method InsertSingleValue (line 37) | func (q *Queries) InsertSingleValue(ctx context.Context, a []sql.NullStr... function convertRowsForInsertValues (line 55) | func convertRowsForInsertValues(w *io.PipeWriter, arg []InsertValuesPara... method InsertValues (line 74) | func (q *Queries) InsertValues(ctx context.Context, arg []InsertValuesPa... FILE: internal/endtoend/testdata/copyfrom/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/copyfrom/mysql/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/copyfrom/mysql/go/query.sql.go constant insertSingleValue (line 12) | insertSingleValue = `-- name: InsertSingleValue :copyfrom constant insertValues (line 16) | insertValues = `-- name: InsertValues :copyfrom type InsertValuesParams (line 20) | type InsertValuesParams struct FILE: internal/endtoend/testdata/copyfrom/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b integer, c DATETIME, d DATE) FILE: internal/endtoend/testdata/copyfrom/postgresql/pgx/v4/go/copyfrom.go type iteratorForInsertSingleValue (line 14) | type iteratorForInsertSingleValue struct method Next (line 19) | func (r *iteratorForInsertSingleValue) Next() bool { method Values (line 31) | func (r iteratorForInsertSingleValue) Values() ([]interface{}, error) { method Err (line 37) | func (r iteratorForInsertSingleValue) Err() error { method InsertSingleValue (line 42) | func (q *Queries) InsertSingleValue(ctx context.Context, a []sql.NullStr... type iteratorForInsertValues (line 47) | type iteratorForInsertValues struct method Next (line 52) | func (r *iteratorForInsertValues) Next() bool { method Values (line 64) | func (r iteratorForInsertValues) Values() ([]interface{}, error) { method Err (line 71) | func (r iteratorForInsertValues) Err() error { method InsertValues (line 76) | func (q *Queries) InsertValues(ctx context.Context, arg []InsertValuesPa... FILE: internal/endtoend/testdata/copyfrom/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 21) | func New(db DBTX) *Queries { type Queries (line 25) | type Queries struct method WithTx (line 29) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/copyfrom/postgresql/pgx/v4/go/models.go type MyschemaFoo (line 11) | type MyschemaFoo struct FILE: internal/endtoend/testdata/copyfrom/postgresql/pgx/v4/go/querier.go type Querier (line 12) | type Querier interface FILE: internal/endtoend/testdata/copyfrom/postgresql/pgx/v4/go/query.sql.go type InsertValuesParams (line 12) | type InsertValuesParams struct FILE: internal/endtoend/testdata/copyfrom/postgresql/pgx/v4/schema.sql type myschema (line 2) | CREATE TABLE myschema.foo (a text, b integer) FILE: internal/endtoend/testdata/copyfrom/postgresql/pgx/v5/go/copyfrom.go type iteratorForInsertSingleValue (line 15) | type iteratorForInsertSingleValue struct method Next (line 20) | func (r *iteratorForInsertSingleValue) Next() bool { method Values (line 32) | func (r iteratorForInsertSingleValue) Values() ([]interface{}, error) { method Err (line 38) | func (r iteratorForInsertSingleValue) Err() error { method InsertSingleValue (line 43) | func (q *Queries) InsertSingleValue(ctx context.Context, a []pgtype.Text... type iteratorForInsertValues (line 48) | type iteratorForInsertValues struct method Next (line 53) | func (r *iteratorForInsertValues) Next() bool { method Values (line 65) | func (r iteratorForInsertValues) Values() ([]interface{}, error) { method Err (line 72) | func (r iteratorForInsertValues) Err() error { method InsertValues (line 77) | func (q *Queries) InsertValues(ctx context.Context, arg []InsertValuesPa... FILE: internal/endtoend/testdata/copyfrom/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 21) | func New(db DBTX) *Queries { type Queries (line 25) | type Queries struct method WithTx (line 29) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/copyfrom/postgresql/pgx/v5/go/models.go type MyschemaFoo (line 11) | type MyschemaFoo struct FILE: internal/endtoend/testdata/copyfrom/postgresql/pgx/v5/go/querier.go type Querier (line 13) | type Querier interface FILE: internal/endtoend/testdata/copyfrom/postgresql/pgx/v5/go/query.sql.go type InsertValuesParams (line 12) | type InsertValuesParams struct FILE: internal/endtoend/testdata/copyfrom/postgresql/pgx/v5/schema.sql type myschema (line 2) | CREATE TABLE myschema.foo (a text, b integer) FILE: internal/endtoend/testdata/copyfrom_imports/postgresql/pgx/v4/go/copyfrom.go type iteratorForInsertValues (line 13) | type iteratorForInsertValues struct method Next (line 18) | func (r *iteratorForInsertValues) Next() bool { method Values (line 30) | func (r iteratorForInsertValues) Values() ([]interface{}, error) { method Err (line 37) | func (r iteratorForInsertValues) Err() error { method InsertValues (line 41) | func (q *Queries) InsertValues(ctx context.Context, arg []InsertValuesPa... FILE: internal/endtoend/testdata/copyfrom_imports/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 21) | func New(db DBTX) *Queries { type Queries (line 25) | type Queries struct method WithTx (line 29) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/copyfrom_imports/postgresql/pgx/v4/go/models.go type MyschemaFoo (line 11) | type MyschemaFoo struct FILE: internal/endtoend/testdata/copyfrom_imports/postgresql/pgx/v4/go/query.sql.go constant deleteValues (line 15) | deleteValues = `-- name: DeleteValues :execresult method DeleteValues (line 20) | func (q *Queries) DeleteValues(ctx context.Context) (pgconn.CommandTag, ... constant insertSingleValue (line 24) | insertSingleValue = `-- name: InsertSingleValue :exec method InsertSingleValue (line 28) | func (q *Queries) InsertSingleValue(ctx context.Context, a sql.NullStrin... type InsertValuesParams (line 33) | type InsertValuesParams struct FILE: internal/endtoend/testdata/copyfrom_imports/postgresql/pgx/v4/schema.sql type myschema (line 2) | CREATE TABLE myschema.foo (a text, b integer) FILE: internal/endtoend/testdata/copyfrom_imports/postgresql/pgx/v5/go/copyfrom.go type iteratorForInsertValues (line 13) | type iteratorForInsertValues struct method Next (line 18) | func (r *iteratorForInsertValues) Next() bool { method Values (line 30) | func (r iteratorForInsertValues) Values() ([]interface{}, error) { method Err (line 37) | func (r iteratorForInsertValues) Err() error { method InsertValues (line 41) | func (q *Queries) InsertValues(ctx context.Context, arg []InsertValuesPa... FILE: internal/endtoend/testdata/copyfrom_imports/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 21) | func New(db DBTX) *Queries { type Queries (line 25) | type Queries struct method WithTx (line 29) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/copyfrom_imports/postgresql/pgx/v5/go/models.go type MyschemaFoo (line 11) | type MyschemaFoo struct FILE: internal/endtoend/testdata/copyfrom_imports/postgresql/pgx/v5/go/query.sql.go constant deleteValues (line 15) | deleteValues = `-- name: DeleteValues :execresult method DeleteValues (line 20) | func (q *Queries) DeleteValues(ctx context.Context) (pgconn.CommandTag, ... constant insertSingleValue (line 24) | insertSingleValue = `-- name: InsertSingleValue :exec method InsertSingleValue (line 28) | func (q *Queries) InsertSingleValue(ctx context.Context, a pgtype.Text) ... type InsertValuesParams (line 33) | type InsertValuesParams struct FILE: internal/endtoend/testdata/copyfrom_imports/postgresql/pgx/v5/schema.sql type myschema (line 2) | CREATE TABLE myschema.foo (a text, b integer) FILE: internal/endtoend/testdata/copyfrom_multicolumn_parameter_limit/mysql/go/copyfrom.go function convertRowsForInsertMultipleValues (line 20) | func convertRowsForInsertMultipleValues(w *io.PipeWriter, arg []InsertMu... method InsertMultipleValues (line 37) | func (q *Queries) InsertMultipleValues(ctx context.Context, arg []Insert... FILE: internal/endtoend/testdata/copyfrom_multicolumn_parameter_limit/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/copyfrom_multicolumn_parameter_limit/mysql/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/copyfrom_multicolumn_parameter_limit/mysql/go/query.sql.go constant insertMultipleValues (line 12) | insertMultipleValues = `-- name: InsertMultipleValues :copyfrom type InsertMultipleValuesParams (line 16) | type InsertMultipleValuesParams struct FILE: internal/endtoend/testdata/copyfrom_multicolumn_parameter_limit/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) FILE: internal/endtoend/testdata/copyfrom_named_params/postgresql/pgx/go/copyfrom.go type iteratorForStageUserData (line 13) | type iteratorForStageUserData struct method Next (line 18) | func (r *iteratorForStageUserData) Next() bool { method Values (line 30) | func (r iteratorForStageUserData) Values() ([]interface{}, error) { method Err (line 37) | func (r iteratorForStageUserData) Err() error { method StageUserData (line 41) | func (q *Queries) StageUserData(ctx context.Context, arg []StageUserData... FILE: internal/endtoend/testdata/copyfrom_named_params/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 21) | func New(db DBTX) *Queries { type Queries (line 25) | type Queries struct method WithTx (line 29) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/copyfrom_named_params/postgresql/pgx/go/models.go type UserDatum (line 7) | type UserDatum struct FILE: internal/endtoend/testdata/copyfrom_named_params/postgresql/pgx/go/query.sql.go type StageUserDataParams (line 8) | type StageUserDataParams struct FILE: internal/endtoend/testdata/copyfrom_named_params/postgresql/pgx/schema.sql type "user_data" (line 1) | create table "user_data" ( FILE: internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/go/copyfrom.go type iteratorForCreateAuthors (line 13) | type iteratorForCreateAuthors struct method Next (line 18) | func (r *iteratorForCreateAuthors) Next() bool { method Values (line 30) | func (r iteratorForCreateAuthors) Values() ([]interface{}, error) { method Err (line 36) | func (r iteratorForCreateAuthors) Err() error { method CreateAuthors (line 40) | func (q *Queries) CreateAuthors(ctx context.Context, authorID []int32) (... FILE: internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 21) | func New(db DBTX) *Queries { type Queries (line 25) | type Queries struct method WithTx (line 29) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/go/models.go type Author (line 7) | type Author struct FILE: internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/go/querier.go type Querier (line 11) | type Querier interface FILE: internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/go/copyfrom.go type iteratorForCreateAuthors (line 13) | type iteratorForCreateAuthors struct method Next (line 18) | func (r *iteratorForCreateAuthors) Next() bool { method Values (line 30) | func (r iteratorForCreateAuthors) Values() ([]interface{}, error) { method Err (line 36) | func (r iteratorForCreateAuthors) Err() error { method CreateAuthors (line 40) | func (q *Queries) CreateAuthors(ctx context.Context, authorID []int32) (... FILE: internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 21) | func New(db DBTX) *Queries { type Queries (line 25) | type Queries struct method WithTx (line 29) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/go/models.go type Author (line 7) | type Author struct FILE: internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/go/querier.go type Querier (line 11) | type Querier interface FILE: internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/copyfrom_singlecolumn_struct_only/mysql/go/copyfrom.go function convertRowsForInsertSingleValue (line 20) | func convertRowsForInsertSingleValue(w *io.PipeWriter, arg []InsertSingl... method InsertSingleValue (line 36) | func (q *Queries) InsertSingleValue(ctx context.Context, arg []InsertSin... FILE: internal/endtoend/testdata/copyfrom_singlecolumn_struct_only/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/copyfrom_singlecolumn_struct_only/mysql/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/copyfrom_singlecolumn_struct_only/mysql/go/query.sql.go constant insertSingleValue (line 12) | insertSingleValue = `-- name: InsertSingleValue :copyfrom type InsertSingleValueParams (line 16) | type InsertSingleValueParams struct FILE: internal/endtoend/testdata/copyfrom_singlecolumn_struct_only/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (a text) FILE: internal/endtoend/testdata/count_star/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/count_star/mysql/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/count_star/mysql/go/query.sql.go constant countStarLower (line 12) | countStarLower = `-- name: CountStarLower :one method CountStarLower (line 16) | func (q *Queries) CountStarLower(ctx context.Context) (int64, error) { constant countStarUpper (line 23) | countStarUpper = `-- name: CountStarUpper :one method CountStarUpper (line 27) | func (q *Queries) CountStarUpper(ctx context.Context) (int64, error) { FILE: internal/endtoend/testdata/count_star/mysql/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/count_star/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/count_star/postgresql/pgx/v4/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/count_star/postgresql/pgx/v4/go/query.sql.go constant countStarLower (line 12) | countStarLower = `-- name: CountStarLower :one method CountStarLower (line 16) | func (q *Queries) CountStarLower(ctx context.Context) (int64, error) { constant countStarUpper (line 23) | countStarUpper = `-- name: CountStarUpper :one method CountStarUpper (line 27) | func (q *Queries) CountStarUpper(ctx context.Context) (int64, error) { FILE: internal/endtoend/testdata/count_star/postgresql/pgx/v4/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/count_star/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/count_star/postgresql/pgx/v5/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/count_star/postgresql/pgx/v5/go/query.sql.go constant countStarLower (line 12) | countStarLower = `-- name: CountStarLower :one method CountStarLower (line 16) | func (q *Queries) CountStarLower(ctx context.Context) (int64, error) { constant countStarUpper (line 23) | countStarUpper = `-- name: CountStarUpper :one method CountStarUpper (line 27) | func (q *Queries) CountStarUpper(ctx context.Context) (int64, error) { FILE: internal/endtoend/testdata/count_star/postgresql/pgx/v5/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/count_star/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/count_star/postgresql/stdlib/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/count_star/postgresql/stdlib/go/query.sql.go constant countStarLower (line 12) | countStarLower = `-- name: CountStarLower :one method CountStarLower (line 16) | func (q *Queries) CountStarLower(ctx context.Context) (int64, error) { constant countStarUpper (line 23) | countStarUpper = `-- name: CountStarUpper :one method CountStarUpper (line 27) | func (q *Queries) CountStarUpper(ctx context.Context) (int64, error) { FILE: internal/endtoend/testdata/count_star/postgresql/stdlib/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/count_star/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/count_star/sqlite/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/count_star/sqlite/go/query.sql.go constant countStarLower (line 12) | countStarLower = `-- name: CountStarLower :one method CountStarLower (line 16) | func (q *Queries) CountStarLower(ctx context.Context) (int64, error) { constant countStarUpper (line 23) | countStarUpper = `-- name: CountStarUpper :one method CountStarUpper (line 27) | func (q *Queries) CountStarUpper(ctx context.Context) (int64, error) { FILE: internal/endtoend/testdata/count_star/sqlite/schema.sql type bar (line 1) | CREATE TABLE bar (id BIGINT not null) FILE: internal/endtoend/testdata/create_materialized_view/postgresql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/create_materialized_view/postgresql/go/models.go type Foo (line 7) | type Foo struct type MatFirstView (line 11) | type MatFirstView struct FILE: internal/endtoend/testdata/create_materialized_view/postgresql/go/query.sql.go constant getFirst (line 12) | getFirst = `-- name: GetFirst :many method GetFirst (line 16) | func (q *Queries) GetFirst(ctx context.Context) ([]string, error) { FILE: internal/endtoend/testdata/create_materialized_view/postgresql/schema.sql type foo (line 1) | CREATE TABLE foo (val text not null) FILE: internal/endtoend/testdata/create_table_as/postgresql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/create_table_as/postgresql/go/models.go type Foo (line 7) | type Foo struct type SecondTable (line 11) | type SecondTable struct FILE: internal/endtoend/testdata/create_table_as/postgresql/go/query.sql.go constant getFirst (line 12) | getFirst = `-- name: GetFirst :many method GetFirst (line 16) | func (q *Queries) GetFirst(ctx context.Context) ([]string, error) { FILE: internal/endtoend/testdata/create_table_as/postgresql/schema.sql type foo (line 1) | CREATE TABLE foo (val text not null) type second_table (line 3) | CREATE TABLE second_table AS SELECT * FROM foo FILE: internal/endtoend/testdata/create_table_like/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/create_table_like/mysql/go/models.go type SuperUser (line 11) | type SuperUser struct type User (line 18) | type User struct FILE: internal/endtoend/testdata/create_table_like/mysql/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context) ([]SuperUser, error) { FILE: internal/endtoend/testdata/create_table_like/mysql/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/create_table_like/postgresql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/create_table_like/postgresql/go/models.go type SuperUser (line 11) | type SuperUser struct type User (line 18) | type User struct FILE: internal/endtoend/testdata/create_table_like/postgresql/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context) ([]SuperUser, error) { FILE: internal/endtoend/testdata/create_table_like/postgresql/schema.sql type users (line 1) | CREATE TABLE users ( type super_users (line 9) | CREATE TABLE super_users ( LIKE users ) FILE: internal/endtoend/testdata/create_view/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/create_view/mysql/go/models.go type FirstView (line 11) | type FirstView struct type Foo (line 15) | type Foo struct type SecondView (line 20) | type SecondView struct FILE: internal/endtoend/testdata/create_view/mysql/go/query.sql.go constant getFirst (line 12) | getFirst = `-- name: GetFirst :many method GetFirst (line 16) | func (q *Queries) GetFirst(ctx context.Context) ([]string, error) { constant getSecond (line 39) | getSecond = `-- name: GetSecond :many method GetSecond (line 43) | func (q *Queries) GetSecond(ctx context.Context) ([]SecondView, error) { FILE: internal/endtoend/testdata/create_view/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (val text not null) type first_view (line 3) | CREATE VIEW first_view AS SELECT * FROM foo type second_view (line 4) | CREATE VIEW second_view AS SELECT * FROM foo type third_view (line 5) | CREATE VIEW third_view AS SELECT * FROM foo type second_view (line 8) | CREATE OR REPLACE VIEW second_view AS SELECT * FROM foo FILE: internal/endtoend/testdata/create_view/postgresql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/create_view/postgresql/go/models.go type FirstView (line 11) | type FirstView struct type Foo (line 15) | type Foo struct type SecondView (line 20) | type SecondView struct FILE: internal/endtoend/testdata/create_view/postgresql/go/query.sql.go constant getFirst (line 13) | getFirst = `-- name: GetFirst :many method GetFirst (line 17) | func (q *Queries) GetFirst(ctx context.Context) ([]string, error) { constant getSecond (line 40) | getSecond = `-- name: GetSecond :many method GetSecond (line 44) | func (q *Queries) GetSecond(ctx context.Context, val2 sql.NullInt32) ([]... FILE: internal/endtoend/testdata/create_view/postgresql/schema.sql type foo (line 1) | CREATE TABLE foo (val text not null) type first_view (line 3) | CREATE VIEW first_view AS SELECT * FROM foo type second_view (line 4) | CREATE VIEW second_view AS SELECT * FROM foo type third_view (line 5) | CREATE VIEW third_view AS SELECT * FROM foo type second_view (line 8) | CREATE OR REPLACE VIEW second_view AS SELECT * FROM foo FILE: internal/endtoend/testdata/create_view/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/create_view/sqlite/go/models.go type FirstView (line 11) | type FirstView struct type Foo (line 15) | type Foo struct type SecondView (line 20) | type SecondView struct FILE: internal/endtoend/testdata/create_view/sqlite/go/query.sql.go constant getFirst (line 13) | getFirst = `-- name: GetFirst :many method GetFirst (line 17) | func (q *Queries) GetFirst(ctx context.Context) ([]string, error) { constant getSecond (line 40) | getSecond = `-- name: GetSecond :many method GetSecond (line 44) | func (q *Queries) GetSecond(ctx context.Context, val2 sql.NullInt64) ([]... FILE: internal/endtoend/testdata/create_view/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo (val text not null) type first_view (line 3) | CREATE VIEW first_view AS SELECT * FROM foo type second_view (line 4) | CREATE VIEW second_view AS SELECT * FROM foo type third_view (line 5) | CREATE VIEW third_view AS SELECT * FROM foo type second_view (line 9) | CREATE VIEW second_view AS SELECT * FROM foo FILE: internal/endtoend/testdata/cte_count/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/cte_count/mysql/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/cte_count/mysql/go/query.sql.go constant cTECount (line 12) | cTECount = `-- name: CTECount :many type CTECountRow (line 22) | type CTECountRow struct method CTECount (line 27) | func (q *Queries) CTECount(ctx context.Context) ([]CTECountRow, error) { FILE: internal/endtoend/testdata/cte_count/mysql/schema.sql type bar (line 1) | CREATE TABLE bar (ready bool not null) FILE: internal/endtoend/testdata/cte_count/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/cte_count/pgx/v4/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/cte_count/pgx/v4/go/query.sql.go constant cTECount (line 12) | cTECount = `-- name: CTECount :many type CTECountRow (line 22) | type CTECountRow struct method CTECount (line 27) | func (q *Queries) CTECount(ctx context.Context) ([]CTECountRow, error) { FILE: internal/endtoend/testdata/cte_count/pgx/v4/schema.sql type bar (line 1) | CREATE TABLE bar (ready bool not null) FILE: internal/endtoend/testdata/cte_count/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/cte_count/pgx/v5/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/cte_count/pgx/v5/go/query.sql.go constant cTECount (line 12) | cTECount = `-- name: CTECount :many type CTECountRow (line 22) | type CTECountRow struct method CTECount (line 27) | func (q *Queries) CTECount(ctx context.Context) ([]CTECountRow, error) { FILE: internal/endtoend/testdata/cte_count/pgx/v5/schema.sql type bar (line 1) | CREATE TABLE bar (ready bool not null) FILE: internal/endtoend/testdata/cte_count/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/cte_count/stdlib/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/cte_count/stdlib/go/query.sql.go constant cTECount (line 12) | cTECount = `-- name: CTECount :many type CTECountRow (line 22) | type CTECountRow struct method CTECount (line 27) | func (q *Queries) CTECount(ctx context.Context) ([]CTECountRow, error) { FILE: internal/endtoend/testdata/cte_count/stdlib/schema.sql type bar (line 1) | CREATE TABLE bar (ready bool not null) FILE: internal/endtoend/testdata/cte_filter/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/cte_filter/mysql/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/cte_filter/mysql/go/query.sql.go constant cTEFilter (line 12) | cTEFilter = `-- name: CTEFilter :many method CTEFilter (line 20) | func (q *Queries) CTEFilter(ctx context.Context, ready bool) ([]int64, e... FILE: internal/endtoend/testdata/cte_filter/mysql/schema.sql type bar (line 1) | CREATE TABLE bar (ready bool not null) FILE: internal/endtoend/testdata/cte_filter/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/cte_filter/pgx/v4/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/cte_filter/pgx/v4/go/query.sql.go constant cTEFilter (line 12) | cTEFilter = `-- name: CTEFilter :many method CTEFilter (line 20) | func (q *Queries) CTEFilter(ctx context.Context, ready bool) ([]int64, e... FILE: internal/endtoend/testdata/cte_filter/pgx/v4/schema.sql type bar (line 1) | CREATE TABLE bar (ready bool not null) FILE: internal/endtoend/testdata/cte_filter/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/cte_filter/pgx/v5/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/cte_filter/pgx/v5/go/query.sql.go constant cTEFilter (line 12) | cTEFilter = `-- name: CTEFilter :many method CTEFilter (line 20) | func (q *Queries) CTEFilter(ctx context.Context, ready bool) ([]int64, e... FILE: internal/endtoend/testdata/cte_filter/pgx/v5/schema.sql type bar (line 1) | CREATE TABLE bar (ready bool not null) FILE: internal/endtoend/testdata/cte_filter/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/cte_filter/stdlib/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/cte_filter/stdlib/go/query.sql.go constant cTEFilter (line 12) | cTEFilter = `-- name: CTEFilter :many method CTEFilter (line 20) | func (q *Queries) CTEFilter(ctx context.Context, ready bool) ([]int64, e... FILE: internal/endtoend/testdata/cte_filter/stdlib/schema.sql type bar (line 1) | CREATE TABLE bar (ready bool not null) FILE: internal/endtoend/testdata/cte_in_delete/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/cte_in_delete/mysql/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/cte_in_delete/mysql/go/query.sql.go constant deleteReadyWithCTE (line 12) | deleteReadyWithCTE = `-- name: DeleteReadyWithCTE :exec method DeleteReadyWithCTE (line 19) | func (q *Queries) DeleteReadyWithCTE(ctx context.Context) error { FILE: internal/endtoend/testdata/cte_in_delete/mysql/schema.sql type bar (line 1) | CREATE TABLE bar (id integer NOT NULL AUTO_INCREMENT PRIMARY KEY, ready ... FILE: internal/endtoend/testdata/cte_in_delete/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/cte_in_delete/pgx/v4/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/cte_in_delete/pgx/v4/go/query.sql.go constant deleteReadyWithCTE (line 12) | deleteReadyWithCTE = `-- name: DeleteReadyWithCTE :many method DeleteReadyWithCTE (line 20) | func (q *Queries) DeleteReadyWithCTE(ctx context.Context) ([]int32, erro... FILE: internal/endtoend/testdata/cte_in_delete/pgx/v4/schema.sql type bar (line 1) | CREATE TABLE bar (id serial primary key not null, ready bool not null) FILE: internal/endtoend/testdata/cte_in_delete/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/cte_in_delete/pgx/v5/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/cte_in_delete/pgx/v5/go/query.sql.go constant deleteReadyWithCTE (line 12) | deleteReadyWithCTE = `-- name: DeleteReadyWithCTE :many method DeleteReadyWithCTE (line 20) | func (q *Queries) DeleteReadyWithCTE(ctx context.Context) ([]int32, erro... FILE: internal/endtoend/testdata/cte_in_delete/pgx/v5/schema.sql type bar (line 1) | CREATE TABLE bar (id serial primary key not null, ready bool not null) FILE: internal/endtoend/testdata/cte_in_delete/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/cte_in_delete/stdlib/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/cte_in_delete/stdlib/go/query.sql.go constant deleteReadyWithCTE (line 12) | deleteReadyWithCTE = `-- name: DeleteReadyWithCTE :many method DeleteReadyWithCTE (line 20) | func (q *Queries) DeleteReadyWithCTE(ctx context.Context) ([]int32, erro... FILE: internal/endtoend/testdata/cte_in_delete/stdlib/schema.sql type bar (line 1) | CREATE TABLE bar (id serial primary key not null, ready bool not null) FILE: internal/endtoend/testdata/cte_join_self/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/cte_join_self/postgresql/pgx/go/query.sql.go constant listItems (line 12) | listItems = `-- name: ListItems :one type ListItemsRow (line 24) | type ListItemsRow struct method ListItems (line 29) | func (q *Queries) ListItems(ctx context.Context) (ListItemsRow, error) { FILE: internal/endtoend/testdata/cte_left_join/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/cte_left_join/postgresql/pgx/go/models.go type Author (line 11) | type Author struct type Fake (line 17) | type Fake struct FILE: internal/endtoend/testdata/cte_left_join/postgresql/pgx/go/query.sql.go constant badQuery (line 14) | badQuery = `-- name: BadQuery :exec method BadQuery (line 31) | func (q *Queries) BadQuery(ctx context.Context, dollar_1 pgtype.Text) er... FILE: internal/endtoend/testdata/cte_left_join/postgresql/pgx/schema.sql type authors (line 1) | CREATE TABLE authors ( type fake (line 7) | CREATE TABLE fake ( FILE: internal/endtoend/testdata/cte_multiple_alias/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/cte_multiple_alias/postgresql/pgx/go/models.go type Author (line 11) | type Author struct type Fake (line 17) | type Fake struct FILE: internal/endtoend/testdata/cte_multiple_alias/postgresql/pgx/go/query.sql.go constant badQuery (line 14) | badQuery = `-- name: BadQuery :one type BadQueryRow (line 31) | type BadQueryRow struct method BadQuery (line 38) | func (q *Queries) BadQuery(ctx context.Context) (BadQueryRow, error) { FILE: internal/endtoend/testdata/cte_multiple_alias/postgresql/pgx/schema.sql type authors (line 1) | CREATE TABLE authors ( type fake (line 7) | CREATE TABLE fake ( FILE: internal/endtoend/testdata/cte_nested_with/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/cte_nested_with/postgresql/pgx/go/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/cte_nested_with/postgresql/pgx/go/query.sql.go constant getAuthor (line 14) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 33) | func (q *Queries) GetAuthor(ctx context.Context) (pgtype.Int8, error) { FILE: internal/endtoend/testdata/cte_nested_with/postgresql/pgx/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/cte_recursive/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/cte_recursive/mysql/go/models.go type Bar (line 11) | type Bar struct FILE: internal/endtoend/testdata/cte_recursive/mysql/go/query.sql.go constant cTERecursive (line 13) | cTERecursive = `-- name: CTERecursive :many type CTERecursiveRow (line 24) | type CTERecursiveRow struct method CTERecursive (line 29) | func (q *Queries) CTERecursive(ctx context.Context, id int32) ([]CTERecu... FILE: internal/endtoend/testdata/cte_recursive/mysql/schema.sql type bar (line 1) | CREATE TABLE bar (id INT NOT NULL, parent_id INT) FILE: internal/endtoend/testdata/cte_recursive/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/cte_recursive/pgx/v4/go/models.go type Bar (line 11) | type Bar struct FILE: internal/endtoend/testdata/cte_recursive/pgx/v4/go/query.sql.go constant cTERecursive (line 13) | cTERecursive = `-- name: CTERecursive :many type CTERecursiveRow (line 24) | type CTERecursiveRow struct method CTERecursive (line 29) | func (q *Queries) CTERecursive(ctx context.Context, id int32) ([]CTERecu... FILE: internal/endtoend/testdata/cte_recursive/pgx/v4/schema.sql type bar (line 1) | CREATE TABLE bar (id INT NOT NULL, parent_id INT) FILE: internal/endtoend/testdata/cte_recursive/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/cte_recursive/pgx/v5/go/models.go type Bar (line 11) | type Bar struct FILE: internal/endtoend/testdata/cte_recursive/pgx/v5/go/query.sql.go constant cTERecursive (line 14) | cTERecursive = `-- name: CTERecursive :many type CTERecursiveRow (line 25) | type CTERecursiveRow struct method CTERecursive (line 30) | func (q *Queries) CTERecursive(ctx context.Context, id int32) ([]CTERecu... FILE: internal/endtoend/testdata/cte_recursive/pgx/v5/schema.sql type bar (line 1) | CREATE TABLE bar (id INT NOT NULL, parent_id INT) FILE: internal/endtoend/testdata/cte_recursive/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/cte_recursive/stdlib/go/models.go type Bar (line 11) | type Bar struct FILE: internal/endtoend/testdata/cte_recursive/stdlib/go/query.sql.go constant cTERecursive (line 13) | cTERecursive = `-- name: CTERecursive :many type CTERecursiveRow (line 24) | type CTERecursiveRow struct method CTERecursive (line 29) | func (q *Queries) CTERecursive(ctx context.Context, id int32) ([]CTERecu... FILE: internal/endtoend/testdata/cte_recursive/stdlib/schema.sql type bar (line 1) | CREATE TABLE bar (id INT NOT NULL, parent_id INT) FILE: internal/endtoend/testdata/cte_recursive_employees/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/cte_recursive_employees/postgresql/pgx/go/models.go type Employee (line 11) | type Employee struct FILE: internal/endtoend/testdata/cte_recursive_employees/postgresql/pgx/go/query.sql.go constant getSubordinates (line 14) | getSubordinates = `-- name: GetSubordinates :many method GetSubordinates (line 38) | func (q *Queries) GetSubordinates(ctx context.Context, name pgtype.Text)... FILE: internal/endtoend/testdata/cte_recursive_employees/postgresql/pgx/schema.sql type employees (line 1) | CREATE TABLE employees ( FILE: internal/endtoend/testdata/cte_recursive_star/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/cte_recursive_star/postgresql/pgx/go/models.go type Dict (line 11) | type Dict struct FILE: internal/endtoend/testdata/cte_recursive_star/postgresql/pgx/go/query.sql.go constant getDictTree (line 14) | getDictTree = `-- name: GetDictTree :many type GetDictTreeRow (line 23) | type GetDictTreeRow struct method GetDictTree (line 33) | func (q *Queries) GetDictTree(ctx context.Context) ([]GetDictTreeRow, er... FILE: internal/endtoend/testdata/cte_recursive_star/postgresql/pgx/schema.sql type dict (line 1) | create table dict( FILE: internal/endtoend/testdata/cte_recursive_subquery/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/cte_recursive_subquery/postgresql/pgx/go/models.go type Version (line 11) | type Version struct FILE: internal/endtoend/testdata/cte_recursive_subquery/postgresql/pgx/go/query.sql.go constant getLatestVersion (line 12) | getLatestVersion = `-- name: GetLatestVersion :one method GetLatestVersion (line 28) | func (q *Queries) GetLatestVersion(ctx context.Context) (int64, error) { constant getLatestVersionWithSubquery (line 35) | getLatestVersionWithSubquery = `-- name: GetLatestVersionWithSubquery :one method GetLatestVersionWithSubquery (line 55) | func (q *Queries) GetLatestVersionWithSubquery(ctx context.Context) (int... FILE: internal/endtoend/testdata/cte_recursive_subquery/postgresql/pgx/schema.sql type versions (line 1) | CREATE TABLE versions ( FILE: internal/endtoend/testdata/cte_recursive_union/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/cte_recursive_union/postgresql/pgx/go/models.go type CaseIntent (line 11) | type CaseIntent struct type CaseIntentParentJoin (line 18) | type CaseIntentParentJoin struct type CaseIntentVersion (line 23) | type CaseIntentVersion struct type CaseIntentVersionJoin (line 29) | type CaseIntentVersionJoin struct FILE: internal/endtoend/testdata/cte_recursive_union/postgresql/pgx/go/query.sql.go constant listCaseIntentHistory (line 14) | listCaseIntentHistory = `-- name: ListCaseIntentHistory :many type ListCaseIntentHistoryRow (line 34) | type ListCaseIntentHistoryRow struct method ListCaseIntentHistory (line 39) | func (q *Queries) ListCaseIntentHistory(ctx context.Context, caseIntentI... FILE: internal/endtoend/testdata/cte_recursive_union/postgresql/pgx/schema.sql type case_intent_version (line 1) | CREATE TABLE case_intent_version type case_intent (line 7) | CREATE TABLE case_intent type case_intent_parent_join (line 14) | CREATE TABLE case_intent_parent_join type case_intent_version_join (line 21) | CREATE TABLE case_intent_version_join FILE: internal/endtoend/testdata/cte_select_one/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/cte_select_one/postgresql/pgx/go/query.sql.go constant testRecursive (line 12) | testRecursive = `-- name: TestRecursive :one method TestRecursive (line 19) | func (q *Queries) TestRecursive(ctx context.Context) (int32, error) { FILE: internal/endtoend/testdata/cte_update/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/cte_update/postgresql/pgx/go/models.go type Attribute (line 7) | type Attribute struct type AttributeValue (line 12) | type AttributeValue struct FILE: internal/endtoend/testdata/cte_update/postgresql/pgx/go/query.sql.go constant updateAttribute (line 14) | updateAttribute = `-- name: UpdateAttribute :one type UpdateAttributeParams (line 25) | type UpdateAttributeParams struct type UpdateAttributeRow (line 31) | type UpdateAttributeRow struct method UpdateAttribute (line 37) | func (q *Queries) UpdateAttribute(ctx context.Context, arg UpdateAttribu... FILE: internal/endtoend/testdata/cte_update/postgresql/pgx/schema.sql type attribute_value (line 1) | create table attribute_value type attribute (line 8) | create table attribute FILE: internal/endtoend/testdata/cte_update_multiple/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/cte_update_multiple/postgresql/pgx/go/models.go type Address (line 11) | type Address struct type User (line 20) | type User struct type UserAddress (line 31) | type UserAddress struct FILE: internal/endtoend/testdata/cte_update_multiple/postgresql/pgx/go/query.sql.go constant updateUserAddressWithAddress (line 14) | updateUserAddressWithAddress = `-- name: UpdateUserAddressWithAddress :one type UpdateUserAddressWithAddressParams (line 44) | type UpdateUserAddressWithAddressParams struct type UpdateUserAddressWithAddressRow (line 54) | type UpdateUserAddressWithAddressRow struct method UpdateUserAddressWithAddress (line 63) | func (q *Queries) UpdateUserAddressWithAddress(ctx context.Context, arg ... FILE: internal/endtoend/testdata/cte_update_multiple/postgresql/pgx/schema.sql type "user" (line 1) | CREATE TABLE "user" ( type "address" (line 12) | CREATE TABLE "address" ( type "user_address" (line 21) | CREATE TABLE "user_address" ( FILE: internal/endtoend/testdata/cte_with_in/postgresql/pganalyze/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/cte_with_in/postgresql/pganalyze/go/models.go type L (line 11) | type L struct type T (line 16) | type T struct FILE: internal/endtoend/testdata/cte_with_in/postgresql/pganalyze/go/query.sql.go constant getAll (line 14) | getAll = `-- name: GetAll :many method GetAll (line 18) | func (q *Queries) GetAll(ctx context.Context) ([]L, error) { constant getAll1 (line 38) | getAll1 = `-- name: GetAll1 :many type GetAll1Row (line 46) | type GetAll1Row struct method GetAll1 (line 52) | func (q *Queries) GetAll1(ctx context.Context, lID pgtype.Int4) ([]GetAl... constant getAll2 (line 72) | getAll2 = `-- name: GetAll2 :many type GetAll2Row (line 80) | type GetAll2Row struct method GetAll2 (line 86) | func (q *Queries) GetAll2(ctx context.Context, lID pgtype.Int4) ([]GetAl... constant getAll3 (line 106) | getAll3 = `-- name: GetAll3 :many method GetAll3 (line 116) | func (q *Queries) GetAll3(ctx context.Context, dollar_1 pgtype.Int4) ([]... constant getAll4 (line 136) | getAll4 = `-- name: GetAll4 :many method GetAll4 (line 146) | func (q *Queries) GetAll4(ctx context.Context, lID pgtype.Int4) ([]int64... FILE: internal/endtoend/testdata/cte_with_in/postgresql/pganalyze/schema.sql type L (line 3) | CREATE TABLE L ( type T (line 8) | CREATE TABLE T ( FILE: internal/endtoend/testdata/data_type_boolean/mysql/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/data_type_boolean/mysql/db/models.go type Bar (line 11) | type Bar struct type Foo (line 17) | type Foo struct FILE: internal/endtoend/testdata/data_type_boolean/mysql/db/query.sql.go constant listBar (line 12) | listBar = `-- name: ListBar :many method ListBar (line 16) | func (q *Queries) ListBar(ctx context.Context) ([]Bar, error) { constant listFoo (line 39) | listFoo = `-- name: ListFoo :many method ListFoo (line 43) | func (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/data_type_boolean/mysql/schema.sql type foo (line 1) | CREATE TABLE foo type bar (line 8) | CREATE TABLE bar FILE: internal/endtoend/testdata/data_type_boolean/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/data_type_boolean/postgresql/pgx/v4/go/models.go type Bar (line 11) | type Bar struct type Foo (line 16) | type Foo struct FILE: internal/endtoend/testdata/data_type_boolean/postgresql/pgx/v4/go/query.sql.go constant listBar (line 12) | listBar = `-- name: ListBar :many method ListBar (line 16) | func (q *Queries) ListBar(ctx context.Context) ([]Bar, error) { constant listFoo (line 36) | listFoo = `-- name: ListFoo :many method ListFoo (line 40) | func (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/data_type_boolean/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo type bar (line 7) | CREATE TABLE bar FILE: internal/endtoend/testdata/data_type_boolean/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/data_type_boolean/postgresql/pgx/v5/go/models.go type Bar (line 11) | type Bar struct type Foo (line 16) | type Foo struct FILE: internal/endtoend/testdata/data_type_boolean/postgresql/pgx/v5/go/query.sql.go constant listBar (line 12) | listBar = `-- name: ListBar :many method ListBar (line 16) | func (q *Queries) ListBar(ctx context.Context) ([]Bar, error) { constant listFoo (line 36) | listFoo = `-- name: ListFoo :many method ListFoo (line 40) | func (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/data_type_boolean/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo type bar (line 7) | CREATE TABLE bar FILE: internal/endtoend/testdata/data_type_boolean/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/data_type_boolean/postgresql/stdlib/go/models.go type Bar (line 11) | type Bar struct type Foo (line 16) | type Foo struct FILE: internal/endtoend/testdata/data_type_boolean/postgresql/stdlib/go/query.sql.go constant listBar (line 12) | listBar = `-- name: ListBar :many method ListBar (line 16) | func (q *Queries) ListBar(ctx context.Context) ([]Bar, error) { constant listFoo (line 39) | listFoo = `-- name: ListFoo :many method ListFoo (line 43) | func (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/data_type_boolean/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo type bar (line 7) | CREATE TABLE bar FILE: internal/endtoend/testdata/data_type_boolean/sqlite/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/data_type_boolean/sqlite/db/models.go type Bar (line 11) | type Bar struct type Foo (line 16) | type Foo struct FILE: internal/endtoend/testdata/data_type_boolean/sqlite/db/query.sql.go constant listBar (line 12) | listBar = `-- name: ListBar :many method ListBar (line 16) | func (q *Queries) ListBar(ctx context.Context) ([]Bar, error) { constant listFoo (line 39) | listFoo = `-- name: ListFoo :many method ListFoo (line 43) | func (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/data_type_boolean/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo type bar (line 7) | CREATE TABLE bar FILE: internal/endtoend/testdata/datatype/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/datatype/mysql/go/models.go type DtCharacter (line 12) | type DtCharacter struct type DtCharacterNotNull (line 27) | type DtCharacterNotNull struct type DtDatetime (line 42) | type DtDatetime struct type DtDatetimeNotNull (line 48) | type DtDatetimeNotNull struct type DtNumeric (line 54) | type DtNumeric struct type DtNumericNotNull (line 69) | type DtNumericNotNull struct type DtNumericUnsigned (line 84) | type DtNumericUnsigned struct FILE: internal/endtoend/testdata/datatype/mysql/go/query.sql.go constant test (line 12) | test = `-- name: Test :one method Test (line 16) | func (q *Queries) Test(ctx context.Context) (int32, error) { FILE: internal/endtoend/testdata/datatype/mysql/sql/character.sql type dt_character (line 3) | CREATE TABLE dt_character ( type dt_character_not_null (line 18) | CREATE TABLE dt_character_not_null ( FILE: internal/endtoend/testdata/datatype/mysql/sql/datetime.sql type dt_datetime (line 3) | CREATE TABLE dt_datetime ( type dt_datetime_not_null (line 9) | CREATE TABLE dt_datetime_not_null ( FILE: internal/endtoend/testdata/datatype/mysql/sql/numeric.sql type dt_numeric (line 3) | CREATE TABLE dt_numeric ( type dt_numeric_unsigned (line 18) | CREATE TABLE dt_numeric_unsigned ( type dt_numeric_not_null (line 27) | CREATE TABLE dt_numeric_not_null ( FILE: internal/endtoend/testdata/datatype/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/datatype/pgx/v4/go/models.go type DtCharacter (line 14) | type DtCharacter struct type DtCharacterNotNull (line 22) | type DtCharacterNotNull struct type DtDatetime (line 30) | type DtDatetime struct type DtDatetimeNotNull (line 41) | type DtDatetimeNotNull struct type DtNetType (line 52) | type DtNetType struct type DtNetTypesNotNull (line 58) | type DtNetTypesNotNull struct type DtNumeric (line 64) | type DtNumeric struct type DtNumericNotNull (line 80) | type DtNumericNotNull struct type DtRange (line 96) | type DtRange struct type DtRangeNotNull (line 105) | type DtRangeNotNull struct FILE: internal/endtoend/testdata/datatype/pgx/v4/go/query.sql.go constant test (line 12) | test = `-- name: Test :one method Test (line 16) | func (q *Queries) Test(ctx context.Context) (int32, error) { FILE: internal/endtoend/testdata/datatype/pgx/v4/sql/character.sql type dt_character (line 3) | CREATE TABLE dt_character ( type dt_character_not_null (line 11) | CREATE TABLE dt_character_not_null ( FILE: internal/endtoend/testdata/datatype/pgx/v4/sql/datetime.sql type dt_datetime (line 3) | CREATE TABLE dt_datetime ( type dt_datetime_not_null (line 14) | CREATE TABLE dt_datetime_not_null ( FILE: internal/endtoend/testdata/datatype/pgx/v4/sql/net-types.sql type dt_net_types (line 3) | CREATE TABLE dt_net_types ( type dt_net_types_not_null (line 9) | CREATE TABLE dt_net_types_not_null ( FILE: internal/endtoend/testdata/datatype/pgx/v4/sql/numeric.sql type dt_numeric (line 3) | CREATE TABLE dt_numeric ( type dt_numeric_not_null (line 22) | CREATE TABLE dt_numeric_not_null ( FILE: internal/endtoend/testdata/datatype/pgx/v4/sql/rangetypes.sql type dt_range (line 3) | CREATE TABLE dt_range ( type dt_range_not_null (line 12) | CREATE TABLE dt_range_not_null ( FILE: internal/endtoend/testdata/datatype/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/datatype/pgx/v5/go/models.go type DtCharacter (line 16) | type DtCharacter struct type DtCharacterNotNull (line 24) | type DtCharacterNotNull struct type DtDatetime (line 32) | type DtDatetime struct type DtDatetimeNotNull (line 43) | type DtDatetimeNotNull struct type DtNetType (line 54) | type DtNetType struct type DtNetTypesNotNull (line 60) | type DtNetTypesNotNull struct type DtNumeric (line 66) | type DtNumeric struct type DtNumericNotNull (line 82) | type DtNumericNotNull struct type DtRange (line 98) | type DtRange struct type DtRangeNotNull (line 107) | type DtRangeNotNull struct FILE: internal/endtoend/testdata/datatype/pgx/v5/go/query.sql.go constant test (line 12) | test = `-- name: Test :one method Test (line 16) | func (q *Queries) Test(ctx context.Context) (int32, error) { FILE: internal/endtoend/testdata/datatype/pgx/v5/sql/character.sql type dt_character (line 3) | CREATE TABLE dt_character ( type dt_character_not_null (line 11) | CREATE TABLE dt_character_not_null ( FILE: internal/endtoend/testdata/datatype/pgx/v5/sql/datetime.sql type dt_datetime (line 3) | CREATE TABLE dt_datetime ( type dt_datetime_not_null (line 14) | CREATE TABLE dt_datetime_not_null ( FILE: internal/endtoend/testdata/datatype/pgx/v5/sql/net-types.sql type dt_net_types (line 3) | CREATE TABLE dt_net_types ( type dt_net_types_not_null (line 9) | CREATE TABLE dt_net_types_not_null ( FILE: internal/endtoend/testdata/datatype/pgx/v5/sql/numeric.sql type dt_numeric (line 3) | CREATE TABLE dt_numeric ( type dt_numeric_not_null (line 22) | CREATE TABLE dt_numeric_not_null ( FILE: internal/endtoend/testdata/datatype/pgx/v5/sql/rangetypes.sql type dt_range (line 3) | CREATE TABLE dt_range ( type dt_range_not_null (line 12) | CREATE TABLE dt_range_not_null ( FILE: internal/endtoend/testdata/datatype/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/datatype/sqlite/go/models.go type DtCharacter (line 12) | type DtCharacter struct type DtCharacterNotNull (line 23) | type DtCharacterNotNull struct type DtDatetime (line 34) | type DtDatetime struct type DtDatetimeNotNull (line 40) | type DtDatetimeNotNull struct type DtNumeric (line 46) | type DtNumeric struct type DtNumericNotNull (line 64) | type DtNumericNotNull struct FILE: internal/endtoend/testdata/datatype/sqlite/go/query.sql.go constant test (line 12) | test = `-- name: Test :one method Test (line 16) | func (q *Queries) Test(ctx context.Context) (int64, error) { FILE: internal/endtoend/testdata/datatype/sqlite/sql/character.sql type dt_character (line 3) | CREATE TABLE dt_character ( type dt_character_not_null (line 14) | CREATE TABLE dt_character_not_null ( FILE: internal/endtoend/testdata/datatype/sqlite/sql/datetime.sql type dt_datetime (line 3) | CREATE TABLE dt_datetime ( type dt_datetime_not_null (line 9) | CREATE TABLE dt_datetime_not_null ( FILE: internal/endtoend/testdata/datatype/sqlite/sql/numeric.sql type dt_numeric (line 3) | CREATE TABLE dt_numeric ( type dt_numeric_not_null (line 21) | CREATE TABLE dt_numeric_not_null ( FILE: internal/endtoend/testdata/datatype/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/datatype/stdlib/go/models.go type DtCharacter (line 14) | type DtCharacter struct type DtCharacterNotNull (line 22) | type DtCharacterNotNull struct type DtDatetime (line 30) | type DtDatetime struct type DtDatetimeNotNull (line 41) | type DtDatetimeNotNull struct type DtNetType (line 52) | type DtNetType struct type DtNetTypesNotNull (line 58) | type DtNetTypesNotNull struct type DtNumeric (line 64) | type DtNumeric struct type DtNumericNotNull (line 80) | type DtNumericNotNull struct type DtRange (line 96) | type DtRange struct type DtRangeNotNull (line 105) | type DtRangeNotNull struct FILE: internal/endtoend/testdata/datatype/stdlib/go/query.sql.go constant test (line 12) | test = `-- name: Test :one method Test (line 16) | func (q *Queries) Test(ctx context.Context) (int32, error) { FILE: internal/endtoend/testdata/datatype/stdlib/sql/character.sql type dt_character (line 3) | CREATE TABLE dt_character ( type dt_character_not_null (line 11) | CREATE TABLE dt_character_not_null ( FILE: internal/endtoend/testdata/datatype/stdlib/sql/datetime.sql type dt_datetime (line 3) | CREATE TABLE dt_datetime ( type dt_datetime_not_null (line 14) | CREATE TABLE dt_datetime_not_null ( FILE: internal/endtoend/testdata/datatype/stdlib/sql/net-types.sql type dt_net_types (line 3) | CREATE TABLE dt_net_types ( type dt_net_types_not_null (line 9) | CREATE TABLE dt_net_types_not_null ( FILE: internal/endtoend/testdata/datatype/stdlib/sql/numeric.sql type dt_numeric (line 3) | CREATE TABLE dt_numeric ( type dt_numeric_not_null (line 22) | CREATE TABLE dt_numeric_not_null ( FILE: internal/endtoend/testdata/datatype/stdlib/sql/rangetypes.sql type dt_range (line 3) | CREATE TABLE dt_range ( type dt_range_not_null (line 12) | CREATE TABLE dt_range_not_null ( FILE: internal/endtoend/testdata/ddl_alter_materialized_views_set_schema/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_materialized_views_set_schema/postgresql/pgx/go/models.go type ComputedTablesSomething (line 11) | type ComputedTablesSomething struct type Event (line 17) | type Event struct FILE: internal/endtoend/testdata/ddl_alter_materialized_views_set_schema/postgresql/pgx/go/query.sql.go constant someQuery (line 14) | someQuery = `-- name: SomeQuery :many method SomeQuery (line 18) | func (q *Queries) SomeQuery(ctx context.Context) ([]pgtype.Int4, error) { FILE: internal/endtoend/testdata/ddl_alter_materialized_views_set_schema/postgresql/pgx/schema.sql type events (line 1) | create table events ( FILE: internal/endtoend/testdata/ddl_alter_table_add_column/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_add_column/mysql/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_add_column/mysql/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_add_column/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (bar text NOT NULL) FILE: internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/pgx/v4/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (bar text NOT NULL) FILE: internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (bar text NOT NULL) FILE: internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/stdlib/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (bar text NOT NULL) FILE: internal/endtoend/testdata/ddl_alter_table_add_column/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_add_column/sqlite/go/models.go type Venue (line 11) | type Venue struct FILE: internal/endtoend/testdata/ddl_alter_table_add_column/sqlite/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :many method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) ([]Venue, error) { FILE: internal/endtoend/testdata/ddl_alter_table_add_column/sqlite/schema.sql type venues (line 1) | CREATE TABLE venues (name text) FILE: internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/pgx/v4/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (bar text NOT NULL, baz text NOT NULL) FILE: internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/pgx/v5/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (bar text NOT NULL, baz text NOT NULL) FILE: internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/stdlib/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (bar text NOT NULL, baz text NOT NULL) FILE: internal/endtoend/testdata/ddl_alter_table_alter_type/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_alter_type/mysql/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_alter_type/mysql/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_alter_type/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (bar text NOT NULL, baz text NOT NULL) FILE: internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/pgx/v4/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (bar TEXT) FILE: internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/pgx/v5/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (bar TEXT) FILE: internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/stdlib/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (bar TEXT) FILE: internal/endtoend/testdata/ddl_alter_table_case_sensitivity/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_case_sensitivity/sqlite/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/ddl_alter_table_case_sensitivity/sqlite/go/query.sql.go constant insertUser (line 13) | insertUser = `-- name: InsertUser :exec type InsertUserParams (line 18) | type InsertUserParams struct method InsertUser (line 24) | func (q *Queries) InsertUser(ctx context.Context, arg InsertUserParams) ... constant selectUsers (line 29) | selectUsers = `-- name: SelectUsers :many method SelectUsers (line 34) | func (q *Queries) SelectUsers(ctx context.Context) ([]User, error) { FILE: internal/endtoend/testdata/ddl_alter_table_case_sensitivity/sqlite/schema.sql type Users (line 3) | CREATE TABLE Users (id integer primary key, name text, "Email" text) FILE: internal/endtoend/testdata/ddl_alter_table_change_column/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_change_column/mysql/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_change_column/mysql/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_change_column/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/pgx/v4/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (bar text NOT NULL) FILE: internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/pgx/v5/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (bar text NOT NULL) FILE: internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/stdlib/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (bar text NOT NULL) FILE: internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/mysql/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/mysql/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (bar text NOT NULL, baz text NOT NULL) FILE: internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/pgx/v4/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (bar text NOT NULL, baz text NOT NULL) FILE: internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (bar text NOT NULL, baz text NOT NULL) FILE: internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/stdlib/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (bar text NOT NULL, baz text NOT NULL) FILE: internal/endtoend/testdata/ddl_alter_table_drop_column/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_drop_column/mysql/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_drop_column/mysql/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_drop_column/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (bar text, baz text) FILE: internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/pgx/v4/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (bar text, baz text) FILE: internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (bar text, baz text) FILE: internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/stdlib/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (bar text, baz text) FILE: internal/endtoend/testdata/ddl_alter_table_drop_column/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_drop_column/sqlite/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_drop_column/sqlite/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_drop_column/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo (bar text, baz text) FILE: internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/mysql/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/mysql/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/pgx/v4/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/pgx/v5/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/stdlib/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/ddl_alter_table_drop_constraint/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_drop_constraint/mysql/go/models.go type Venue (line 7) | type Venue struct FILE: internal/endtoend/testdata/ddl_alter_table_drop_constraint/mysql/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_drop_constraint/mysql/schema.sql type venues (line 1) | CREATE TABLE venues (id SERIAL PRIMARY KEY) FILE: internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/pgx/v4/go/models.go type Venue (line 7) | type Venue struct FILE: internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/pgx/v4/schema.sql type venues (line 1) | CREATE TABLE venues (id SERIAL PRIMARY KEY) FILE: internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/pgx/v5/go/models.go type Venue (line 7) | type Venue struct FILE: internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/pgx/v5/schema.sql type venues (line 1) | CREATE TABLE venues (id SERIAL PRIMARY KEY) FILE: internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/stdlib/go/models.go type Venue (line 7) | type Venue struct FILE: internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/stdlib/schema.sql type venues (line 1) | CREATE TABLE venues (id SERIAL PRIMARY KEY) FILE: internal/endtoend/testdata/ddl_alter_table_if_exists/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_if_exists/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_if_exists/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_if_exists/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_if_exists/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_if_exists/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_index/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_index/postgresql/pgx/v4/go/models.go type Measurement (line 12) | type Measurement struct type MeasurementY2006m02 (line 19) | type MeasurementY2006m02 struct FILE: internal/endtoend/testdata/ddl_alter_table_index/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_index/postgresql/pgx/v4/schema.sql type measurement (line 1) | CREATE TABLE measurement ( type measurement_usls_idx (line 11) | CREATE INDEX measurement_usls_idx ON ONLY measurement (unitsales) type measurement_usls_200602_idx (line 13) | CREATE INDEX measurement_usls_200602_idx FILE: internal/endtoend/testdata/ddl_alter_table_index/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_index/postgresql/pgx/v5/go/models.go type Measurement (line 11) | type Measurement struct type MeasurementY2006m02 (line 18) | type MeasurementY2006m02 struct FILE: internal/endtoend/testdata/ddl_alter_table_index/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_index/postgresql/pgx/v5/schema.sql type measurement (line 1) | CREATE TABLE measurement ( type measurement_usls_idx (line 11) | CREATE INDEX measurement_usls_idx ON ONLY measurement (unitsales) type measurement_usls_200602_idx (line 13) | CREATE INDEX measurement_usls_200602_idx FILE: internal/endtoend/testdata/ddl_alter_table_index/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_index/postgresql/stdlib/go/models.go type Measurement (line 12) | type Measurement struct type MeasurementY2006m02 (line 19) | type MeasurementY2006m02 struct FILE: internal/endtoend/testdata/ddl_alter_table_index/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_index/postgresql/stdlib/schema.sql type measurement (line 1) | CREATE TABLE measurement ( type measurement_usls_idx (line 11) | CREATE INDEX measurement_usls_idx ON ONLY measurement (unitsales) type measurement_usls_200602_idx (line 13) | CREATE INDEX measurement_usls_200602_idx FILE: internal/endtoend/testdata/ddl_alter_table_rename/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_rename/mysql/go/models.go type Arena (line 11) | type Arena struct type Location (line 15) | type Location struct FILE: internal/endtoend/testdata/ddl_alter_table_rename/mysql/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_rename/mysql/schema.sql type venues (line 1) | CREATE TABLE venues (name text) type cities (line 4) | CREATE TABLE cities (name text) FILE: internal/endtoend/testdata/ddl_alter_table_rename/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_rename/postgresql/pgx/v4/go/models.go type Arena (line 11) | type Arena struct FILE: internal/endtoend/testdata/ddl_alter_table_rename/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_rename/postgresql/pgx/v4/schema.sql type venues (line 1) | CREATE TABLE venues (name text) FILE: internal/endtoend/testdata/ddl_alter_table_rename/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_rename/postgresql/pgx/v5/go/models.go type Arena (line 11) | type Arena struct FILE: internal/endtoend/testdata/ddl_alter_table_rename/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_rename/postgresql/pgx/v5/schema.sql type venues (line 1) | CREATE TABLE venues (name text) FILE: internal/endtoend/testdata/ddl_alter_table_rename/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_rename/postgresql/stdlib/go/models.go type Arena (line 11) | type Arena struct FILE: internal/endtoend/testdata/ddl_alter_table_rename/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_rename/postgresql/stdlib/schema.sql type venues (line 1) | CREATE TABLE venues (name text) FILE: internal/endtoend/testdata/ddl_alter_table_rename/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_rename/sqlite/go/models.go type Arena (line 11) | type Arena struct FILE: internal/endtoend/testdata/ddl_alter_table_rename/sqlite/go/query.sql.go constant placeholder (line 13) | placeholder = `-- name: Placeholder :many method Placeholder (line 17) | func (q *Queries) Placeholder(ctx context.Context) ([]sql.NullString, er... FILE: internal/endtoend/testdata/ddl_alter_table_rename/sqlite/schema.sql type venues (line 1) | CREATE TABLE venues (name text) FILE: internal/endtoend/testdata/ddl_alter_table_rename_column/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_rename_column/mysql/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_rename_column/mysql/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_rename_column/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/pgx/v4/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/stdlib/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/ddl_alter_table_rename_column/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_rename_column/sqlite/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_rename_column/sqlite/go/query.sql.go constant placeholder (line 13) | placeholder = `-- name: Placeholder :many method Placeholder (line 17) | func (q *Queries) Placeholder(ctx context.Context) ([]sql.NullString, er... FILE: internal/endtoend/testdata/ddl_alter_table_rename_column/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/ddl_alter_table_set_data_type/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_set_data_type/mysql/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_set_data_type/mysql/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_set_data_type/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/pgx/v4/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/stdlib/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/ddl_alter_table_set_not_null/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_set_not_null/mysql/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_set_not_null/mysql/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_set_not_null/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/pgx/v4/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/pgx/v5/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/stdlib/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/pgx/v4/go/models.go type FooBar (line 11) | type FooBar struct FILE: internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/pgx/v4/go/query.sql.go constant getFooBar (line 13) | getFooBar = `-- name: GetFooBar :exec method GetFooBar (line 17) | func (q *Queries) GetFooBar(ctx context.Context) error { constant updateFooBar (line 22) | updateFooBar = `-- name: UpdateFooBar :exec method UpdateFooBar (line 26) | func (q *Queries) UpdateFooBar(ctx context.Context, name sql.NullString)... FILE: internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/pgx/v4/schema.sql type bar (line 2) | CREATE TABLE bar (name text) FILE: internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/pgx/v5/go/models.go type FooBar (line 11) | type FooBar struct FILE: internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/pgx/v5/go/query.sql.go constant getFooBar (line 14) | getFooBar = `-- name: GetFooBar :exec method GetFooBar (line 18) | func (q *Queries) GetFooBar(ctx context.Context) error { constant updateFooBar (line 23) | updateFooBar = `-- name: UpdateFooBar :exec method UpdateFooBar (line 27) | func (q *Queries) UpdateFooBar(ctx context.Context, name pgtype.Text) er... FILE: internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/pgx/v5/schema.sql type bar (line 2) | CREATE TABLE bar (name text) FILE: internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/stdlib/go/models.go type FooBar (line 11) | type FooBar struct FILE: internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/stdlib/go/query.sql.go constant getFooBar (line 13) | getFooBar = `-- name: GetFooBar :exec method GetFooBar (line 17) | func (q *Queries) GetFooBar(ctx context.Context) error { constant updateFooBar (line 22) | updateFooBar = `-- name: UpdateFooBar :exec method UpdateFooBar (line 26) | func (q *Queries) UpdateFooBar(ctx context.Context, name sql.NullString)... FILE: internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/stdlib/schema.sql type bar (line 2) | CREATE TABLE bar (name text) FILE: internal/endtoend/testdata/ddl_alter_type_add_value/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_type_add_value/postgresql/pgx/v4/go/models.go type Status (line 12) | type Status method Scan (line 20) | func (e *Status) Scan(src interface{}) error { constant StatusOpen (line 15) | StatusOpen Status = "open" constant StatusClosed (line 16) | StatusClosed Status = "closed" constant StatusUnknown (line 17) | StatusUnknown Status = "unknown" type NullStatus (line 32) | type NullStatus struct method Scan (line 38) | func (ns *NullStatus) Scan(value interface{}) error { method Value (line 48) | func (ns NullStatus) Value() (driver.Value, error) { FILE: internal/endtoend/testdata/ddl_alter_type_add_value/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_type_add_value/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_type_add_value/postgresql/pgx/v5/go/models.go type Status (line 12) | type Status method Scan (line 20) | func (e *Status) Scan(src interface{}) error { constant StatusOpen (line 15) | StatusOpen Status = "open" constant StatusClosed (line 16) | StatusClosed Status = "closed" constant StatusUnknown (line 17) | StatusUnknown Status = "unknown" type NullStatus (line 32) | type NullStatus struct method Scan (line 38) | func (ns *NullStatus) Scan(value interface{}) error { method Value (line 48) | func (ns NullStatus) Value() (driver.Value, error) { FILE: internal/endtoend/testdata/ddl_alter_type_add_value/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_type_add_value/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_type_add_value/postgresql/stdlib/go/models.go type Status (line 12) | type Status method Scan (line 20) | func (e *Status) Scan(src interface{}) error { constant StatusOpen (line 15) | StatusOpen Status = "open" constant StatusClosed (line 16) | StatusClosed Status = "closed" constant StatusUnknown (line 17) | StatusUnknown Status = "unknown" type NullStatus (line 32) | type NullStatus struct method Scan (line 38) | func (ns *NullStatus) Scan(value interface{}) error { method Value (line 48) | func (ns NullStatus) Value() (driver.Value, error) { FILE: internal/endtoend/testdata/ddl_alter_type_add_value/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_type_rename/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_type_rename/postgresql/pgx/v4/go/models.go type NewEvent (line 12) | type NewEvent method Scan (line 19) | func (e *NewEvent) Scan(src interface{}) error { constant NewEventSTART (line 15) | NewEventSTART NewEvent = "START" constant NewEventSTOP (line 16) | NewEventSTOP NewEvent = "STOP" type NullNewEvent (line 31) | type NullNewEvent struct method Scan (line 37) | func (ns *NullNewEvent) Scan(value interface{}) error { method Value (line 47) | func (ns NullNewEvent) Value() (driver.Value, error) { type LogLine (line 54) | type LogLine struct FILE: internal/endtoend/testdata/ddl_alter_type_rename/postgresql/pgx/v4/go/query.sql.go constant listAuthors (line 12) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 16) | func (q *Queries) ListAuthors(ctx context.Context) ([]LogLine, error) { FILE: internal/endtoend/testdata/ddl_alter_type_rename/postgresql/pgx/v4/schema.sql type log_lines (line 5) | CREATE TABLE log_lines ( FILE: internal/endtoend/testdata/ddl_alter_type_rename/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_type_rename/postgresql/pgx/v5/go/models.go type NewEvent (line 12) | type NewEvent method Scan (line 19) | func (e *NewEvent) Scan(src interface{}) error { constant NewEventSTART (line 15) | NewEventSTART NewEvent = "START" constant NewEventSTOP (line 16) | NewEventSTOP NewEvent = "STOP" type NullNewEvent (line 31) | type NullNewEvent struct method Scan (line 37) | func (ns *NullNewEvent) Scan(value interface{}) error { method Value (line 47) | func (ns NullNewEvent) Value() (driver.Value, error) { type LogLine (line 54) | type LogLine struct FILE: internal/endtoend/testdata/ddl_alter_type_rename/postgresql/pgx/v5/go/query.sql.go constant listAuthors (line 12) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 16) | func (q *Queries) ListAuthors(ctx context.Context) ([]LogLine, error) { FILE: internal/endtoend/testdata/ddl_alter_type_rename/postgresql/pgx/v5/schema.sql type log_lines (line 5) | CREATE TABLE log_lines ( FILE: internal/endtoend/testdata/ddl_alter_type_rename/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_type_rename/postgresql/stdlib/go/models.go type NewEvent (line 12) | type NewEvent method Scan (line 19) | func (e *NewEvent) Scan(src interface{}) error { constant NewEventSTART (line 15) | NewEventSTART NewEvent = "START" constant NewEventSTOP (line 16) | NewEventSTOP NewEvent = "STOP" type NullNewEvent (line 31) | type NullNewEvent struct method Scan (line 37) | func (ns *NullNewEvent) Scan(value interface{}) error { method Value (line 47) | func (ns NullNewEvent) Value() (driver.Value, error) { type LogLine (line 54) | type LogLine struct FILE: internal/endtoend/testdata/ddl_alter_type_rename/postgresql/stdlib/go/query.sql.go constant listAuthors (line 12) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 16) | func (q *Queries) ListAuthors(ctx context.Context) ([]LogLine, error) { FILE: internal/endtoend/testdata/ddl_alter_type_rename/postgresql/stdlib/schema.sql type log_lines (line 5) | CREATE TABLE log_lines ( FILE: internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/pgx/v4/go/models.go type NewEvent (line 12) | type NewEvent method Scan (line 19) | func (e *NewEvent) Scan(src interface{}) error { constant NewEventSTART (line 15) | NewEventSTART NewEvent = "START" constant NewEventSTOP (line 16) | NewEventSTOP NewEvent = "STOP" type NullNewEvent (line 31) | type NullNewEvent struct method Scan (line 37) | func (ns *NullNewEvent) Scan(value interface{}) error { method Value (line 47) | func (ns NullNewEvent) Value() (driver.Value, error) { type LogLine (line 54) | type LogLine struct FILE: internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/pgx/v4/go/query.sql.go constant listAuthors (line 12) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 16) | func (q *Queries) ListAuthors(ctx context.Context) ([]LogLine, error) { FILE: internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/pgx/v4/schema.sql type log_lines (line 3) | CREATE TABLE log_lines ( FILE: internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/pgx/v5/go/models.go type NewEvent (line 12) | type NewEvent method Scan (line 19) | func (e *NewEvent) Scan(src interface{}) error { constant NewEventSTART (line 15) | NewEventSTART NewEvent = "START" constant NewEventSTOP (line 16) | NewEventSTOP NewEvent = "STOP" type NullNewEvent (line 31) | type NullNewEvent struct method Scan (line 37) | func (ns *NullNewEvent) Scan(value interface{}) error { method Value (line 47) | func (ns NullNewEvent) Value() (driver.Value, error) { type LogLine (line 54) | type LogLine struct FILE: internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/pgx/v5/go/query.sql.go constant listAuthors (line 12) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 16) | func (q *Queries) ListAuthors(ctx context.Context) ([]LogLine, error) { FILE: internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/pgx/v5/schema.sql type log_lines (line 3) | CREATE TABLE log_lines ( FILE: internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/stdlib/go/models.go type NewEvent (line 12) | type NewEvent method Scan (line 19) | func (e *NewEvent) Scan(src interface{}) error { constant NewEventSTART (line 15) | NewEventSTART NewEvent = "START" constant NewEventSTOP (line 16) | NewEventSTOP NewEvent = "STOP" type NullNewEvent (line 31) | type NullNewEvent struct method Scan (line 37) | func (ns *NullNewEvent) Scan(value interface{}) error { method Value (line 47) | func (ns NullNewEvent) Value() (driver.Value, error) { type LogLine (line 54) | type LogLine struct FILE: internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/stdlib/go/query.sql.go constant listAuthors (line 12) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 16) | func (q *Queries) ListAuthors(ctx context.Context) ([]LogLine, error) { FILE: internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/stdlib/schema.sql type log_lines (line 3) | CREATE TABLE log_lines ( FILE: internal/endtoend/testdata/ddl_alter_type_rename_value/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_type_rename_value/postgresql/pgx/v4/go/models.go type Status (line 12) | type Status method Scan (line 19) | func (e *Status) Scan(src interface{}) error { constant StatusOpen (line 15) | StatusOpen Status = "open" constant StatusShut (line 16) | StatusShut Status = "shut" type NullStatus (line 31) | type NullStatus struct method Scan (line 37) | func (ns *NullStatus) Scan(value interface{}) error { method Value (line 47) | func (ns NullStatus) Value() (driver.Value, error) { FILE: internal/endtoend/testdata/ddl_alter_type_rename_value/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_type_rename_value/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_type_rename_value/postgresql/pgx/v5/go/models.go type Status (line 12) | type Status method Scan (line 19) | func (e *Status) Scan(src interface{}) error { constant StatusOpen (line 15) | StatusOpen Status = "open" constant StatusShut (line 16) | StatusShut Status = "shut" type NullStatus (line 31) | type NullStatus struct method Scan (line 37) | func (ns *NullStatus) Scan(value interface{}) error { method Value (line 47) | func (ns NullStatus) Value() (driver.Value, error) { FILE: internal/endtoend/testdata/ddl_alter_type_rename_value/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_type_rename_value/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_type_rename_value/postgresql/stdlib/go/models.go type Status (line 12) | type Status method Scan (line 19) | func (e *Status) Scan(src interface{}) error { constant StatusOpen (line 15) | StatusOpen Status = "open" constant StatusShut (line 16) | StatusShut Status = "shut" type NullStatus (line 31) | type NullStatus struct method Scan (line 37) | func (ns *NullStatus) Scan(value interface{}) error { method Value (line 47) | func (ns NullStatus) Value() (driver.Value, error) { FILE: internal/endtoend/testdata/ddl_alter_type_rename_value/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/pgx/v4/go/models.go type Level (line 12) | type Level method Scan (line 22) | func (e *Level) Scan(src interface{}) error { constant LevelDEBUG (line 15) | LevelDEBUG Level = "DEBUG" constant LevelINFO (line 16) | LevelINFO Level = "INFO" constant LevelWARN (line 17) | LevelWARN Level = "WARN" constant LevelERROR (line 18) | LevelERROR Level = "ERROR" constant LevelFATAL (line 19) | LevelFATAL Level = "FATAL" type NullLevel (line 34) | type NullLevel struct method Scan (line 40) | func (ns *NullLevel) Scan(value interface{}) error { method Value (line 50) | func (ns NullLevel) Value() (driver.Value, error) { type NewEvent (line 57) | type NewEvent method Scan (line 64) | func (e *NewEvent) Scan(src interface{}) error { constant NewEventSTART (line 60) | NewEventSTART NewEvent = "START" constant NewEventSTOP (line 61) | NewEventSTOP NewEvent = "STOP" type NullNewEvent (line 76) | type NullNewEvent struct method Scan (line 82) | func (ns *NullNewEvent) Scan(value interface{}) error { method Value (line 92) | func (ns NullNewEvent) Value() (driver.Value, error) { type LogLine (line 99) | type LogLine struct FILE: internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/pgx/v4/go/query.sql.go constant listAuthors (line 12) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 16) | func (q *Queries) ListAuthors(ctx context.Context) ([]LogLine, error) { FILE: internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/pgx/v4/schema.sql type log_lines (line 7) | CREATE TABLE log_lines ( FILE: internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/pgx/v5/go/models.go type Level (line 12) | type Level method Scan (line 22) | func (e *Level) Scan(src interface{}) error { constant LevelDEBUG (line 15) | LevelDEBUG Level = "DEBUG" constant LevelINFO (line 16) | LevelINFO Level = "INFO" constant LevelWARN (line 17) | LevelWARN Level = "WARN" constant LevelERROR (line 18) | LevelERROR Level = "ERROR" constant LevelFATAL (line 19) | LevelFATAL Level = "FATAL" type NullLevel (line 34) | type NullLevel struct method Scan (line 40) | func (ns *NullLevel) Scan(value interface{}) error { method Value (line 50) | func (ns NullLevel) Value() (driver.Value, error) { type NewEvent (line 57) | type NewEvent method Scan (line 64) | func (e *NewEvent) Scan(src interface{}) error { constant NewEventSTART (line 60) | NewEventSTART NewEvent = "START" constant NewEventSTOP (line 61) | NewEventSTOP NewEvent = "STOP" type NullNewEvent (line 76) | type NullNewEvent struct method Scan (line 82) | func (ns *NullNewEvent) Scan(value interface{}) error { method Value (line 92) | func (ns NullNewEvent) Value() (driver.Value, error) { type LogLine (line 99) | type LogLine struct FILE: internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/pgx/v5/go/query.sql.go constant listAuthors (line 12) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 16) | func (q *Queries) ListAuthors(ctx context.Context) ([]LogLine, error) { FILE: internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/pgx/v5/schema.sql type log_lines (line 7) | CREATE TABLE log_lines ( FILE: internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/stdlib/go/models.go type Level (line 12) | type Level method Scan (line 22) | func (e *Level) Scan(src interface{}) error { constant LevelDEBUG (line 15) | LevelDEBUG Level = "DEBUG" constant LevelINFO (line 16) | LevelINFO Level = "INFO" constant LevelWARN (line 17) | LevelWARN Level = "WARN" constant LevelERROR (line 18) | LevelERROR Level = "ERROR" constant LevelFATAL (line 19) | LevelFATAL Level = "FATAL" type NullLevel (line 34) | type NullLevel struct method Scan (line 40) | func (ns *NullLevel) Scan(value interface{}) error { method Value (line 50) | func (ns NullLevel) Value() (driver.Value, error) { type NewEvent (line 57) | type NewEvent method Scan (line 64) | func (e *NewEvent) Scan(src interface{}) error { constant NewEventSTART (line 60) | NewEventSTART NewEvent = "START" constant NewEventSTOP (line 61) | NewEventSTOP NewEvent = "STOP" type NullNewEvent (line 76) | type NullNewEvent struct method Scan (line 82) | func (ns *NullNewEvent) Scan(value interface{}) error { method Value (line 92) | func (ns NullNewEvent) Value() (driver.Value, error) { type LogLine (line 99) | type LogLine struct FILE: internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/stdlib/go/query.sql.go constant listAuthors (line 12) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 16) | func (q *Queries) ListAuthors(ctx context.Context) ([]LogLine, error) { FILE: internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/stdlib/schema.sql type log_lines (line 7) | CREATE TABLE log_lines ( FILE: internal/endtoend/testdata/ddl_comment/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_comment/mysql/go/models.go type Bar (line 12) | type Bar struct FILE: internal/endtoend/testdata/ddl_comment/mysql/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_comment/mysql/schema.sql type bar (line 1) | CREATE TABLE bar ( FILE: internal/endtoend/testdata/ddl_comment/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_comment/postgresql/pgx/v4/go/models.go type FooBat (line 14) | type FooBat method Scan (line 20) | func (e *FooBat) Scan(src interface{}) error { constant FooBatBat (line 17) | FooBatBat FooBat = "bat" type NullFooBat (line 32) | type NullFooBat struct method Scan (line 38) | func (ns *NullFooBat) Scan(value interface{}) error { method Value (line 48) | func (ns NullFooBat) Value() (driver.Value, error) { type FooBar (line 56) | type FooBar struct FILE: internal/endtoend/testdata/ddl_comment/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_comment/postgresql/pgx/v4/schema.sql type foo (line 2) | CREATE TABLE foo.bar (baz text) FILE: internal/endtoend/testdata/ddl_comment/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_comment/postgresql/pgx/v5/go/models.go type FooBat (line 15) | type FooBat method Scan (line 21) | func (e *FooBat) Scan(src interface{}) error { constant FooBatBat (line 18) | FooBatBat FooBat = "bat" type NullFooBat (line 33) | type NullFooBat struct method Scan (line 39) | func (ns *NullFooBat) Scan(value interface{}) error { method Value (line 49) | func (ns NullFooBat) Value() (driver.Value, error) { type FooBar (line 57) | type FooBar struct FILE: internal/endtoend/testdata/ddl_comment/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_comment/postgresql/pgx/v5/schema.sql type foo (line 2) | CREATE TABLE foo.bar (baz text) FILE: internal/endtoend/testdata/ddl_comment/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_comment/postgresql/stdlib/go/models.go type FooBat (line 14) | type FooBat method Scan (line 20) | func (e *FooBat) Scan(src interface{}) error { constant FooBatBat (line 17) | FooBatBat FooBat = "bat" type NullFooBat (line 32) | type NullFooBat struct method Scan (line 38) | func (ns *NullFooBat) Scan(value interface{}) error { method Value (line 48) | func (ns NullFooBat) Value() (driver.Value, error) { type FooBar (line 56) | type FooBar struct FILE: internal/endtoend/testdata/ddl_comment/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_comment/postgresql/stdlib/schema.sql type foo (line 2) | CREATE TABLE foo.bar (baz text) FILE: internal/endtoend/testdata/ddl_create_enum/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_enum/mysql/go/models.go type FooDigit (line 12) | type FooDigit method Scan (line 29) | func (e *FooDigit) Scan(src interface{}) error { constant FooDigit0 (line 15) | FooDigit0 FooDigit = "0" constant FooDigit1 (line 16) | FooDigit1 FooDigit = "1" constant FooDigit2 (line 17) | FooDigit2 FooDigit = "2" constant FooDigit3 (line 18) | FooDigit3 FooDigit = "3" constant FooDigit4 (line 19) | FooDigit4 FooDigit = "4" constant FooDigit5 (line 20) | FooDigit5 FooDigit = "5" constant FooDigit6 (line 21) | FooDigit6 FooDigit = "6" constant FooDigit7 (line 22) | FooDigit7 FooDigit = "7" constant FooDigit8 (line 23) | FooDigit8 FooDigit = "8" constant FooDigit9 (line 24) | FooDigit9 FooDigit = "9" constant FooDigitValue10 (line 25) | FooDigitValue10 FooDigit = "#" constant FooDigitValue11 (line 26) | FooDigitValue11 FooDigit = "*" type NullFooDigit (line 41) | type NullFooDigit struct method Scan (line 47) | func (ns *NullFooDigit) Scan(value interface{}) error { method Value (line 57) | func (ns NullFooDigit) Value() (driver.Value, error) { type FooFoobar (line 64) | type FooFoobar method Scan (line 76) | func (e *FooFoobar) Scan(src interface{}) error { constant FooFoobarFooA (line 67) | FooFoobarFooA FooFoobar = "foo-a" constant FooFoobarFooB (line 68) | FooFoobarFooB FooFoobar = "foo_b" constant FooFoobarFooC (line 69) | FooFoobarFooC FooFoobar = "foo:c" constant FooFoobarFooD (line 70) | FooFoobarFooD FooFoobar = "foo/d" constant FooFoobarFooe (line 71) | FooFoobarFooe FooFoobar = "foo@e" constant FooFoobarFoof (line 72) | FooFoobarFoof FooFoobar = "foo+f" constant FooFoobarFoog (line 73) | FooFoobarFoog FooFoobar = "foo!g" type NullFooFoobar (line 88) | type NullFooFoobar struct method Scan (line 94) | func (ns *NullFooFoobar) Scan(value interface{}) error { method Value (line 104) | func (ns NullFooFoobar) Value() (driver.Value, error) { type Foo (line 111) | type Foo struct FILE: internal/endtoend/testdata/ddl_create_enum/mysql/go/query.sql.go constant listFoo (line 12) | listFoo = `-- name: ListFoo :many method ListFoo (line 16) | func (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/ddl_create_enum/mysql/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/ddl_create_enum/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_enum/postgresql/pgx/v4/go/models.go type Digit (line 12) | type Digit method Scan (line 29) | func (e *Digit) Scan(src interface{}) error { constant Digit0 (line 15) | Digit0 Digit = "0" constant Digit1 (line 16) | Digit1 Digit = "1" constant Digit2 (line 17) | Digit2 Digit = "2" constant Digit3 (line 18) | Digit3 Digit = "3" constant Digit4 (line 19) | Digit4 Digit = "4" constant Digit5 (line 20) | Digit5 Digit = "5" constant Digit6 (line 21) | Digit6 Digit = "6" constant Digit7 (line 22) | Digit7 Digit = "7" constant Digit8 (line 23) | Digit8 Digit = "8" constant Digit9 (line 24) | Digit9 Digit = "9" constant DigitValue10 (line 25) | DigitValue10 Digit = "#" constant DigitValue11 (line 26) | DigitValue11 Digit = "*" type NullDigit (line 41) | type NullDigit struct method Scan (line 47) | func (ns *NullDigit) Scan(value interface{}) error { method Value (line 57) | func (ns NullDigit) Value() (driver.Value, error) { type Foobar (line 64) | type Foobar method Scan (line 76) | func (e *Foobar) Scan(src interface{}) error { constant FoobarFooA (line 67) | FoobarFooA Foobar = "foo-a" constant FoobarFooB (line 68) | FoobarFooB Foobar = "foo_b" constant FoobarFooC (line 69) | FoobarFooC Foobar = "foo:c" constant FoobarFooD (line 70) | FoobarFooD Foobar = "foo/d" constant FoobarFooe (line 71) | FoobarFooe Foobar = "foo@e" constant FoobarFoof (line 72) | FoobarFoof Foobar = "foo+f" constant FoobarFoog (line 73) | FoobarFoog Foobar = "foo!g" type NullFoobar (line 88) | type NullFoobar struct method Scan (line 94) | func (ns *NullFoobar) Scan(value interface{}) error { method Value (line 104) | func (ns NullFoobar) Value() (driver.Value, error) { type Foo (line 111) | type Foo struct FILE: internal/endtoend/testdata/ddl_create_enum/postgresql/pgx/v4/go/query.sql.go constant listFoo (line 12) | listFoo = `-- name: ListFoo :many method ListFoo (line 16) | func (q *Queries) ListFoo(ctx context.Context) ([]Foobar, error) { FILE: internal/endtoend/testdata/ddl_create_enum/postgresql/pgx/v4/schema.sql type foo (line 28) | CREATE TABLE foo (val foobar NOT NULL) FILE: internal/endtoend/testdata/ddl_create_enum/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_enum/postgresql/pgx/v5/go/models.go type Digit (line 12) | type Digit method Scan (line 29) | func (e *Digit) Scan(src interface{}) error { constant Digit0 (line 15) | Digit0 Digit = "0" constant Digit1 (line 16) | Digit1 Digit = "1" constant Digit2 (line 17) | Digit2 Digit = "2" constant Digit3 (line 18) | Digit3 Digit = "3" constant Digit4 (line 19) | Digit4 Digit = "4" constant Digit5 (line 20) | Digit5 Digit = "5" constant Digit6 (line 21) | Digit6 Digit = "6" constant Digit7 (line 22) | Digit7 Digit = "7" constant Digit8 (line 23) | Digit8 Digit = "8" constant Digit9 (line 24) | Digit9 Digit = "9" constant DigitValue10 (line 25) | DigitValue10 Digit = "#" constant DigitValue11 (line 26) | DigitValue11 Digit = "*" type NullDigit (line 41) | type NullDigit struct method Scan (line 47) | func (ns *NullDigit) Scan(value interface{}) error { method Value (line 57) | func (ns NullDigit) Value() (driver.Value, error) { type Foobar (line 64) | type Foobar method Scan (line 76) | func (e *Foobar) Scan(src interface{}) error { constant FoobarFooA (line 67) | FoobarFooA Foobar = "foo-a" constant FoobarFooB (line 68) | FoobarFooB Foobar = "foo_b" constant FoobarFooC (line 69) | FoobarFooC Foobar = "foo:c" constant FoobarFooD (line 70) | FoobarFooD Foobar = "foo/d" constant FoobarFooe (line 71) | FoobarFooe Foobar = "foo@e" constant FoobarFoof (line 72) | FoobarFoof Foobar = "foo+f" constant FoobarFoog (line 73) | FoobarFoog Foobar = "foo!g" type NullFoobar (line 88) | type NullFoobar struct method Scan (line 94) | func (ns *NullFoobar) Scan(value interface{}) error { method Value (line 104) | func (ns NullFoobar) Value() (driver.Value, error) { type Foo (line 111) | type Foo struct FILE: internal/endtoend/testdata/ddl_create_enum/postgresql/pgx/v5/go/query.sql.go constant listFoo (line 12) | listFoo = `-- name: ListFoo :many method ListFoo (line 16) | func (q *Queries) ListFoo(ctx context.Context) ([]Foobar, error) { FILE: internal/endtoend/testdata/ddl_create_enum/postgresql/pgx/v5/schema.sql type foo (line 28) | CREATE TABLE foo (val foobar NOT NULL) FILE: internal/endtoend/testdata/ddl_create_enum/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_enum/postgresql/stdlib/go/models.go type Digit (line 12) | type Digit method Scan (line 29) | func (e *Digit) Scan(src interface{}) error { constant Digit0 (line 15) | Digit0 Digit = "0" constant Digit1 (line 16) | Digit1 Digit = "1" constant Digit2 (line 17) | Digit2 Digit = "2" constant Digit3 (line 18) | Digit3 Digit = "3" constant Digit4 (line 19) | Digit4 Digit = "4" constant Digit5 (line 20) | Digit5 Digit = "5" constant Digit6 (line 21) | Digit6 Digit = "6" constant Digit7 (line 22) | Digit7 Digit = "7" constant Digit8 (line 23) | Digit8 Digit = "8" constant Digit9 (line 24) | Digit9 Digit = "9" constant DigitValue10 (line 25) | DigitValue10 Digit = "#" constant DigitValue11 (line 26) | DigitValue11 Digit = "*" type NullDigit (line 41) | type NullDigit struct method Scan (line 47) | func (ns *NullDigit) Scan(value interface{}) error { method Value (line 57) | func (ns NullDigit) Value() (driver.Value, error) { type Foobar (line 64) | type Foobar method Scan (line 76) | func (e *Foobar) Scan(src interface{}) error { constant FoobarFooA (line 67) | FoobarFooA Foobar = "foo-a" constant FoobarFooB (line 68) | FoobarFooB Foobar = "foo_b" constant FoobarFooC (line 69) | FoobarFooC Foobar = "foo:c" constant FoobarFooD (line 70) | FoobarFooD Foobar = "foo/d" constant FoobarFooe (line 71) | FoobarFooe Foobar = "foo@e" constant FoobarFoof (line 72) | FoobarFoof Foobar = "foo+f" constant FoobarFoog (line 73) | FoobarFoog Foobar = "foo!g" type NullFoobar (line 88) | type NullFoobar struct method Scan (line 94) | func (ns *NullFoobar) Scan(value interface{}) error { method Value (line 104) | func (ns NullFoobar) Value() (driver.Value, error) { type Foo (line 111) | type Foo struct FILE: internal/endtoend/testdata/ddl_create_enum/postgresql/stdlib/go/query.sql.go constant listFoo (line 12) | listFoo = `-- name: ListFoo :many method ListFoo (line 16) | func (q *Queries) ListFoo(ctx context.Context) ([]Foobar, error) { FILE: internal/endtoend/testdata/ddl_create_enum/postgresql/stdlib/schema.sql type foo (line 28) | CREATE TABLE foo (val foobar NOT NULL) FILE: internal/endtoend/testdata/ddl_create_func_exists/query.sql function f (line 1) | CREATE FUNCTION f(x TIMESTAMPTZ) RETURNS void AS '' LANGUAGE sql function f (line 2) | CREATE FUNCTION f(x timestamp with time zone) RETURNS void AS '' LANGUAG... FILE: internal/endtoend/testdata/ddl_create_function/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_function/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_function/postgresql/pgx/v4/schema.sql function foo (line 1) | CREATE FUNCTION foo(TEXT) RETURNS bool AS $$ SELECT true $$ LANGUAGE sql FILE: internal/endtoend/testdata/ddl_create_function/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_function/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_function/postgresql/pgx/v5/schema.sql function foo (line 1) | CREATE FUNCTION foo(TEXT) RETURNS bool AS $$ SELECT true $$ LANGUAGE sql FILE: internal/endtoend/testdata/ddl_create_function/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_function/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_function/postgresql/stdlib/schema.sql function foo (line 1) | CREATE FUNCTION foo(TEXT) RETURNS bool AS $$ SELECT true $$ LANGUAGE sql FILE: internal/endtoend/testdata/ddl_create_function_args/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_function_args/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_function_args/postgresql/pgx/v4/schema.sql function foo (line 1) | CREATE FUNCTION foo(bar TEXT) RETURNS bool AS $$ SELECT true $$ LANGUAGE... function foo (line 2) | CREATE FUNCTION foo(bar TEXT, baz TEXT) RETURNS TEXT AS $$ SELECT "baz" ... FILE: internal/endtoend/testdata/ddl_create_function_args/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_function_args/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_function_args/postgresql/pgx/v5/schema.sql function foo (line 1) | CREATE FUNCTION foo(bar TEXT) RETURNS bool AS $$ SELECT true $$ LANGUAGE... function foo (line 2) | CREATE FUNCTION foo(bar TEXT, baz TEXT) RETURNS TEXT AS $$ SELECT "baz" ... FILE: internal/endtoend/testdata/ddl_create_function_args/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_function_args/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_function_args/postgresql/stdlib/schema.sql function foo (line 1) | CREATE FUNCTION foo(bar TEXT) RETURNS bool AS $$ SELECT true $$ LANGUAGE... function foo (line 2) | CREATE FUNCTION foo(bar TEXT, baz TEXT) RETURNS TEXT AS $$ SELECT "baz" ... FILE: internal/endtoend/testdata/ddl_create_function_return/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_function_return/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_function_return/postgresql/pgx/v4/schema.sql function foo (line 1) | CREATE FUNCTION foo(bar TEXT, baz TEXT='baz') RETURNS bool AS $$ SELECT ... FILE: internal/endtoend/testdata/ddl_create_function_return/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_function_return/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_function_return/postgresql/pgx/v5/schema.sql function foo (line 1) | CREATE FUNCTION foo(bar TEXT, baz TEXT='baz') RETURNS bool AS $$ SELECT ... FILE: internal/endtoend/testdata/ddl_create_function_return/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_function_return/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_function_return/postgresql/stdlib/schema.sql function foo (line 1) | CREATE FUNCTION foo(bar TEXT, baz TEXT='baz') RETURNS bool AS $$ SELECT ... FILE: internal/endtoend/testdata/ddl_create_function_types/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_function_types/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_function_types/postgresql/pgx/v4/schema.sql function foo (line 1) | CREATE FUNCTION foo(bar TEXT) RETURNS bool AS $$ SELECT true $$ LANGUAGE... function foo (line 2) | CREATE FUNCTION foo(bar INTEGER) RETURNS TEXT AS $$ SELECT 'baz' $$ LANG... FILE: internal/endtoend/testdata/ddl_create_function_types/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_function_types/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_function_types/postgresql/pgx/v5/schema.sql function foo (line 1) | CREATE FUNCTION foo(bar TEXT) RETURNS bool AS $$ SELECT true $$ LANGUAGE... function foo (line 2) | CREATE FUNCTION foo(bar INTEGER) RETURNS TEXT AS $$ SELECT 'baz' $$ LANG... FILE: internal/endtoend/testdata/ddl_create_function_types/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_function_types/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_function_types/postgresql/stdlib/schema.sql function foo (line 1) | CREATE FUNCTION foo(bar TEXT) RETURNS bool AS $$ SELECT true $$ LANGUAGE... function foo (line 2) | CREATE FUNCTION foo(bar INTEGER) RETURNS TEXT AS $$ SELECT 'baz' $$ LANG... FILE: internal/endtoend/testdata/ddl_create_procedure/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_procedure/mysql/go/models.go type Tbl (line 11) | type Tbl struct FILE: internal/endtoend/testdata/ddl_create_procedure/mysql/go/query.sql.go constant callInsertData (line 12) | callInsertData = `-- name: CallInsertData :exec type CallInsertDataParams (line 16) | type CallInsertDataParams struct method CallInsertData (line 21) | func (q *Queries) CallInsertData(ctx context.Context, arg CallInsertData... constant callInsertDataNoArgs (line 26) | callInsertDataNoArgs = `-- name: CallInsertDataNoArgs :exec method CallInsertDataNoArgs (line 30) | func (q *Queries) CallInsertDataNoArgs(ctx context.Context) error { constant callInsertDataSqlcArgs (line 35) | callInsertDataSqlcArgs = `-- name: CallInsertDataSqlcArgs :exec type CallInsertDataSqlcArgsParams (line 39) | type CallInsertDataSqlcArgsParams struct method CallInsertDataSqlcArgs (line 44) | func (q *Queries) CallInsertDataSqlcArgs(ctx context.Context, arg CallIn... FILE: internal/endtoend/testdata/ddl_create_procedure/mysql/schema.sql type tbl (line 1) | CREATE TABLE tbl ( FILE: internal/endtoend/testdata/ddl_create_procedure/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_procedure/postgresql/pgx/v4/go/models.go type Tbl (line 11) | type Tbl struct FILE: internal/endtoend/testdata/ddl_create_procedure/postgresql/pgx/v4/go/query.sql.go constant callInsertData (line 12) | callInsertData = `-- name: CallInsertData :exec type CallInsertDataParams (line 16) | type CallInsertDataParams struct method CallInsertData (line 21) | func (q *Queries) CallInsertData(ctx context.Context, arg CallInsertData... constant callInsertDataNamed (line 26) | callInsertDataNamed = `-- name: CallInsertDataNamed :exec type CallInsertDataNamedParams (line 30) | type CallInsertDataNamedParams struct method CallInsertDataNamed (line 35) | func (q *Queries) CallInsertDataNamed(ctx context.Context, arg CallInser... constant callInsertDataNoArgs (line 40) | callInsertDataNoArgs = `-- name: CallInsertDataNoArgs :exec method CallInsertDataNoArgs (line 44) | func (q *Queries) CallInsertDataNoArgs(ctx context.Context) error { constant callInsertDataSqlcArgs (line 49) | callInsertDataSqlcArgs = `-- name: CallInsertDataSqlcArgs :exec type CallInsertDataSqlcArgsParams (line 53) | type CallInsertDataSqlcArgsParams struct method CallInsertDataSqlcArgs (line 58) | func (q *Queries) CallInsertDataSqlcArgs(ctx context.Context, arg CallIn... FILE: internal/endtoend/testdata/ddl_create_procedure/postgresql/pgx/v4/schema.sql type tbl (line 1) | CREATE TABLE tbl ( FILE: internal/endtoend/testdata/ddl_create_procedure/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_procedure/postgresql/pgx/v5/go/models.go type Tbl (line 11) | type Tbl struct FILE: internal/endtoend/testdata/ddl_create_procedure/postgresql/pgx/v5/go/query.sql.go constant callInsertData (line 12) | callInsertData = `-- name: CallInsertData :exec type CallInsertDataParams (line 16) | type CallInsertDataParams struct method CallInsertData (line 21) | func (q *Queries) CallInsertData(ctx context.Context, arg CallInsertData... constant callInsertDataNamed (line 26) | callInsertDataNamed = `-- name: CallInsertDataNamed :exec type CallInsertDataNamedParams (line 30) | type CallInsertDataNamedParams struct method CallInsertDataNamed (line 35) | func (q *Queries) CallInsertDataNamed(ctx context.Context, arg CallInser... constant callInsertDataNoArgs (line 40) | callInsertDataNoArgs = `-- name: CallInsertDataNoArgs :exec method CallInsertDataNoArgs (line 44) | func (q *Queries) CallInsertDataNoArgs(ctx context.Context) error { constant callInsertDataSqlcArgs (line 49) | callInsertDataSqlcArgs = `-- name: CallInsertDataSqlcArgs :exec type CallInsertDataSqlcArgsParams (line 53) | type CallInsertDataSqlcArgsParams struct method CallInsertDataSqlcArgs (line 58) | func (q *Queries) CallInsertDataSqlcArgs(ctx context.Context, arg CallIn... FILE: internal/endtoend/testdata/ddl_create_procedure/postgresql/pgx/v5/schema.sql type tbl (line 1) | CREATE TABLE tbl ( FILE: internal/endtoend/testdata/ddl_create_procedure/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_procedure/postgresql/stdlib/go/models.go type Tbl (line 11) | type Tbl struct FILE: internal/endtoend/testdata/ddl_create_procedure/postgresql/stdlib/go/query.sql.go constant callInsertData (line 12) | callInsertData = `-- name: CallInsertData :exec type CallInsertDataParams (line 16) | type CallInsertDataParams struct method CallInsertData (line 21) | func (q *Queries) CallInsertData(ctx context.Context, arg CallInsertData... constant callInsertDataNamed (line 26) | callInsertDataNamed = `-- name: CallInsertDataNamed :exec type CallInsertDataNamedParams (line 30) | type CallInsertDataNamedParams struct method CallInsertDataNamed (line 35) | func (q *Queries) CallInsertDataNamed(ctx context.Context, arg CallInser... constant callInsertDataNoArgs (line 40) | callInsertDataNoArgs = `-- name: CallInsertDataNoArgs :exec method CallInsertDataNoArgs (line 44) | func (q *Queries) CallInsertDataNoArgs(ctx context.Context) error { constant callInsertDataSqlcArgs (line 49) | callInsertDataSqlcArgs = `-- name: CallInsertDataSqlcArgs :exec type CallInsertDataSqlcArgsParams (line 53) | type CallInsertDataSqlcArgsParams struct method CallInsertDataSqlcArgs (line 58) | func (q *Queries) CallInsertDataSqlcArgs(ctx context.Context, arg CallIn... FILE: internal/endtoend/testdata/ddl_create_procedure/postgresql/stdlib/schema.sql type tbl (line 1) | CREATE TABLE tbl ( FILE: internal/endtoend/testdata/ddl_create_table/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_table/mysql/go/models.go type Venue (line 11) | type Venue struct FILE: internal/endtoend/testdata/ddl_create_table/mysql/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_table/mysql/schema.sql type venues (line 1) | CREATE TABLE venues (name text) FILE: internal/endtoend/testdata/ddl_create_table/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_table/postgresql/pgx/v4/go/models.go type Venue (line 11) | type Venue struct FILE: internal/endtoend/testdata/ddl_create_table/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_table/postgresql/pgx/v4/schema.sql type venues (line 1) | CREATE TABLE venues (name text) FILE: internal/endtoend/testdata/ddl_create_table/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_table/postgresql/pgx/v5/go/models.go type Venue (line 11) | type Venue struct FILE: internal/endtoend/testdata/ddl_create_table/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_table/postgresql/pgx/v5/schema.sql type venues (line 1) | CREATE TABLE venues (name text) FILE: internal/endtoend/testdata/ddl_create_table/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_table/postgresql/stdlib/go/models.go type Venue (line 11) | type Venue struct FILE: internal/endtoend/testdata/ddl_create_table/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_table/postgresql/stdlib/schema.sql type venues (line 1) | CREATE TABLE venues (name text) FILE: internal/endtoend/testdata/ddl_create_table/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_table/sqlite/go/models.go type Venue (line 11) | type Venue struct FILE: internal/endtoend/testdata/ddl_create_table/sqlite/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_table/sqlite/schema.sql type venues (line 1) | CREATE TABLE venues (name text) FILE: internal/endtoend/testdata/ddl_create_table_include/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_table_include/postgresql/pgx/v4/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/ddl_create_table_include/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_table_include/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/ddl_create_table_include/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_table_include/postgresql/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/ddl_create_table_include/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_table_include/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/ddl_create_table_include/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_table_include/postgresql/stdlib/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/ddl_create_table_include/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_table_include/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/ddl_create_table_inherits/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_table_inherits/postgresql/pgx/v4/go/models.go type Llc (line 13) | type Llc struct type Organisation (line 20) | type Organisation struct type Party (line 26) | type Party struct type Person (line 31) | type Person struct FILE: internal/endtoend/testdata/ddl_create_table_inherits/postgresql/pgx/v4/go/query.sql.go constant getAllOrganisations (line 12) | getAllOrganisations = `-- name: GetAllOrganisations :many method GetAllOrganisations (line 16) | func (q *Queries) GetAllOrganisations(ctx context.Context) ([]Organisati... constant getAllParties (line 36) | getAllParties = `-- name: GetAllParties :many method GetAllParties (line 40) | func (q *Queries) GetAllParties(ctx context.Context) ([]Party, error) { constant getAllPeople (line 60) | getAllPeople = `-- name: GetAllPeople :many method GetAllPeople (line 64) | func (q *Queries) GetAllPeople(ctx context.Context) ([]Person, error) { FILE: internal/endtoend/testdata/ddl_create_table_inherits/postgresql/pgx/v4/schema.sql type party (line 1) | CREATE TABLE party ( type person (line 6) | CREATE TABLE person ( type organisation (line 11) | CREATE TABLE organisation ( type llc (line 15) | CREATE TABLE llc ( FILE: internal/endtoend/testdata/ddl_create_table_inherits/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_table_inherits/postgresql/pgx/v5/go/models.go type Llc (line 11) | type Llc struct type Organisation (line 18) | type Organisation struct type Party (line 24) | type Party struct type Person (line 29) | type Person struct FILE: internal/endtoend/testdata/ddl_create_table_inherits/postgresql/pgx/v5/go/query.sql.go constant getAllOrganisations (line 12) | getAllOrganisations = `-- name: GetAllOrganisations :many method GetAllOrganisations (line 16) | func (q *Queries) GetAllOrganisations(ctx context.Context) ([]Organisati... constant getAllParties (line 36) | getAllParties = `-- name: GetAllParties :many method GetAllParties (line 40) | func (q *Queries) GetAllParties(ctx context.Context) ([]Party, error) { constant getAllPeople (line 60) | getAllPeople = `-- name: GetAllPeople :many method GetAllPeople (line 64) | func (q *Queries) GetAllPeople(ctx context.Context) ([]Person, error) { FILE: internal/endtoend/testdata/ddl_create_table_inherits/postgresql/pgx/v5/schema.sql type party (line 1) | CREATE TABLE party ( type person (line 6) | CREATE TABLE person ( type organisation (line 11) | CREATE TABLE organisation ( type llc (line 15) | CREATE TABLE llc ( FILE: internal/endtoend/testdata/ddl_create_table_inherits/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_table_inherits/postgresql/stdlib/go/models.go type Llc (line 13) | type Llc struct type Organisation (line 20) | type Organisation struct type Party (line 26) | type Party struct type Person (line 31) | type Person struct FILE: internal/endtoend/testdata/ddl_create_table_inherits/postgresql/stdlib/go/query.sql.go constant getAllOrganisations (line 12) | getAllOrganisations = `-- name: GetAllOrganisations :many method GetAllOrganisations (line 16) | func (q *Queries) GetAllOrganisations(ctx context.Context) ([]Organisati... constant getAllParties (line 39) | getAllParties = `-- name: GetAllParties :many method GetAllParties (line 43) | func (q *Queries) GetAllParties(ctx context.Context) ([]Party, error) { constant getAllPeople (line 66) | getAllPeople = `-- name: GetAllPeople :many method GetAllPeople (line 70) | func (q *Queries) GetAllPeople(ctx context.Context) ([]Person, error) { FILE: internal/endtoend/testdata/ddl_create_table_inherits/postgresql/stdlib/schema.sql type party (line 1) | CREATE TABLE party ( type person (line 6) | CREATE TABLE person ( type organisation (line 11) | CREATE TABLE organisation ( type llc (line 15) | CREATE TABLE llc ( FILE: internal/endtoend/testdata/ddl_create_table_invalid_inherits/postgresql/stdlib/schema.sql type party (line 1) | CREATE TABLE party ( type organisation (line 5) | CREATE TABLE organisation ( FILE: internal/endtoend/testdata/ddl_create_table_like/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_table_like/postgresql/pgx/go/models.go type Change (line 7) | type Change struct type ChangesRanked (line 11) | type ChangesRanked struct FILE: internal/endtoend/testdata/ddl_create_table_like/postgresql/pgx/go/query.sql.go constant allRanked (line 12) | allRanked = `-- name: AllRanked :many method AllRanked (line 16) | func (q *Queries) AllRanked(ctx context.Context) ([]ChangesRanked, error) { FILE: internal/endtoend/testdata/ddl_create_table_like/postgresql/pgx/schema.sql type changes (line 1) | CREATE TABLE changes ( type changes_ranked (line 5) | CREATE TABLE changes_ranked ( FILE: internal/endtoend/testdata/ddl_create_table_partition/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_table_partition/postgresql/pgx/v4/go/models.go type Foo (line 11) | type Foo struct type Foo1 (line 16) | type Foo1 struct FILE: internal/endtoend/testdata/ddl_create_table_partition/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_table_partition/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/ddl_create_table_partition/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_table_partition/postgresql/pgx/v5/go/models.go type Foo (line 11) | type Foo struct type Foo1 (line 16) | type Foo1 struct FILE: internal/endtoend/testdata/ddl_create_table_partition/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_table_partition/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/ddl_create_table_partition/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_table_partition/postgresql/stdlib/go/models.go type Foo (line 11) | type Foo struct type Foo1 (line 16) | type Foo1 struct FILE: internal/endtoend/testdata/ddl_create_table_partition/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_table_partition/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/ddl_create_table_reserved/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_table_reserved/mysql/go/models.go type XVenue (line 11) | type XVenue struct FILE: internal/endtoend/testdata/ddl_create_table_reserved/mysql/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_table_reserved/mysql/schema.sql type `x-venues` (line 1) | CREATE TABLE `x-venues` (name text) FILE: internal/endtoend/testdata/ddl_create_table_reserved/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_table_reserved/postgresql/pgx/v4/go/models.go type XVenue (line 11) | type XVenue struct FILE: internal/endtoend/testdata/ddl_create_table_reserved/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_table_reserved/postgresql/pgx/v4/schema.sql type "x-venues" (line 1) | CREATE TABLE "x-venues" (name text) FILE: internal/endtoend/testdata/ddl_create_table_reserved/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_table_reserved/postgresql/pgx/v5/go/models.go type XVenue (line 11) | type XVenue struct FILE: internal/endtoend/testdata/ddl_create_table_reserved/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_table_reserved/postgresql/pgx/v5/schema.sql type "x-venues" (line 1) | CREATE TABLE "x-venues" (name text) FILE: internal/endtoend/testdata/ddl_create_table_reserved/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_table_reserved/postgresql/stdlib/go/models.go type XVenue (line 11) | type XVenue struct FILE: internal/endtoend/testdata/ddl_create_table_reserved/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_table_reserved/postgresql/stdlib/schema.sql type "x-venues" (line 1) | CREATE TABLE "x-venues" (name text) FILE: internal/endtoend/testdata/ddl_create_table_strict/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_table_strict/sqlite/go/models.go type Venue (line 11) | type Venue struct FILE: internal/endtoend/testdata/ddl_create_table_strict/sqlite/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_table_strict/sqlite/schema.sql type venues (line 1) | CREATE TABLE venues (name text) FILE: internal/endtoend/testdata/ddl_create_table_unknown_type/postgresql/pgx/schema.sql type test_table (line 1) | CREATE TABLE test_table ( FILE: internal/endtoend/testdata/ddl_create_table_without_rowid/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_table_without_rowid/sqlite/go/models.go type Arena (line 11) | type Arena struct FILE: internal/endtoend/testdata/ddl_create_table_without_rowid/sqlite/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_table_without_rowid/sqlite/schema.sql type arenas (line 1) | CREATE TABLE IF NOT EXISTS arenas (name text PRIMARY KEY, location text,... FILE: internal/endtoend/testdata/ddl_create_trigger/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_trigger/postgresql/pgx/v4/go/models.go type TddTest (line 13) | type TddTest struct FILE: internal/endtoend/testdata/ddl_create_trigger/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_trigger/postgresql/pgx/v4/schema.sql function tdd (line 8) | CREATE FUNCTION tdd.trigger_set_timestamp() RETURNS trigger type tdd (line 16) | CREATE TABLE tdd.tests ( FILE: internal/endtoend/testdata/ddl_create_trigger/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_trigger/postgresql/pgx/v5/go/models.go type TddTest (line 11) | type TddTest struct FILE: internal/endtoend/testdata/ddl_create_trigger/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_trigger/postgresql/pgx/v5/schema.sql function tdd (line 8) | CREATE FUNCTION tdd.trigger_set_timestamp() RETURNS trigger type tdd (line 16) | CREATE TABLE tdd.tests ( FILE: internal/endtoend/testdata/ddl_create_trigger/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_trigger/postgresql/stdlib/go/models.go type TddTest (line 13) | type TddTest struct FILE: internal/endtoend/testdata/ddl_create_trigger/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_trigger/postgresql/stdlib/schema.sql function tdd (line 8) | CREATE FUNCTION tdd.trigger_set_timestamp() RETURNS trigger type tdd (line 16) | CREATE TABLE tdd.tests ( FILE: internal/endtoend/testdata/ddl_create_trigger/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_create_trigger/sqlite/go/models.go type Customer (line 11) | type Customer struct type CustomerAddress (line 17) | type CustomerAddress struct type TriggerCustomer (line 22) | type TriggerCustomer struct type TriggerOrder (line 27) | type TriggerOrder struct FILE: internal/endtoend/testdata/ddl_create_trigger/sqlite/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_create_trigger/sqlite/schema.sql type trigger_customers (line 4) | CREATE TABLE trigger_customers ( type trigger_orders (line 9) | CREATE TABLE trigger_orders ( type customer (line 20) | CREATE TABLE customer( type customer_address (line 25) | CREATE VIEW customer_address AS FILE: internal/endtoend/testdata/ddl_drop_function/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_function/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_function/postgresql/pgx/v4/schema.sql function foo (line 1) | CREATE FUNCTION foo(bar text) RETURNS bool AS $$ SELECT true $$ LANGUAGE... FILE: internal/endtoend/testdata/ddl_drop_function/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_function/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_function/postgresql/pgx/v5/schema.sql function foo (line 1) | CREATE FUNCTION foo(bar text) RETURNS bool AS $$ SELECT true $$ LANGUAGE... FILE: internal/endtoend/testdata/ddl_drop_function/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_function/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_function/postgresql/stdlib/schema.sql function foo (line 1) | CREATE FUNCTION foo(bar text) RETURNS bool AS $$ SELECT true $$ LANGUAGE... FILE: internal/endtoend/testdata/ddl_drop_function_args/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_function_args/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_function_args/postgresql/pgx/v4/schema.sql function foo (line 1) | CREATE FUNCTION foo(bar text) RETURNS bool AS $$ SELECT true $$ LANGUAGE... FILE: internal/endtoend/testdata/ddl_drop_function_args/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_function_args/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_function_args/postgresql/pgx/v5/schema.sql function foo (line 1) | CREATE FUNCTION foo(bar text) RETURNS bool AS $$ SELECT true $$ LANGUAGE... FILE: internal/endtoend/testdata/ddl_drop_function_args/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_function_args/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_function_args/postgresql/stdlib/schema.sql function foo (line 1) | CREATE FUNCTION foo(bar text) RETURNS bool AS $$ SELECT true $$ LANGUAGE... FILE: internal/endtoend/testdata/ddl_drop_function_if_exists/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_function_if_exists/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_function_if_exists/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_function_if_exists/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_function_if_exists/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_function_if_exists/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_schema/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_schema/mysql/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_schema/mysql/schema.sql type foo (line 2) | CREATE TABLE foo.bar (baz text) FILE: internal/endtoend/testdata/ddl_drop_schema/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_schema/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_schema/postgresql/pgx/v4/schema.sql type foo (line 2) | CREATE TABLE foo.bar (baz text) FILE: internal/endtoend/testdata/ddl_drop_schema/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_schema/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_schema/postgresql/pgx/v5/schema.sql type foo (line 2) | CREATE TABLE foo.bar (baz text) FILE: internal/endtoend/testdata/ddl_drop_schema/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_schema/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_schema/postgresql/stdlib/schema.sql type foo (line 2) | CREATE TABLE foo.bar (baz text) FILE: internal/endtoend/testdata/ddl_drop_schema_if_exists/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_schema_if_exists/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_schema_if_exists/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_schema_if_exists/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_schema_if_exists/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_schema_if_exists/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_table/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_table/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_table/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_table/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_table/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_table/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_table/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_table/sqlite/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_table/sqlite/schema.sql type venues (line 1) | CREATE TABLE venues (hi text) type Authors (line 4) | CREATE TABLE Authors (id integer) type "Books" (line 7) | CREATE TABLE "Books" (id integer) FILE: internal/endtoend/testdata/ddl_drop_table_if_exists/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_table_if_exists/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_table_if_exists/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_table_if_exists/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_table_if_exists/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_table_if_exists/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_table_if_exists/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_table_if_exists/sqlite/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_table_if_exists/sqlite/schema.sql type venues (line 1) | CREATE TABLE venues (hi text) FILE: internal/endtoend/testdata/ddl_drop_table_in_schema/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_table_in_schema/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_table_in_schema/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_table_in_schema/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_table_in_schema/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_table_in_schema/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_type/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_type/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_type/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_type/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_type/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_type/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_type_if_exists/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_type_if_exists/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_type_if_exists/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_type_if_exists/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_type_if_exists/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_type_if_exists/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_type_in_schema/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_type_in_schema/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_type_in_schema/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_type_in_schema/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_drop_type_in_schema/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_drop_type_in_schema/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_generated_columns/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_generated_columns/postgresql/pgx/v4/go/models.go type Description (line 11) | type Description struct FILE: internal/endtoend/testdata/ddl_generated_columns/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_generated_columns/postgresql/pgx/v4/schema.sql type descriptions (line 1) | create table descriptions ( FILE: internal/endtoend/testdata/ddl_generated_columns/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_generated_columns/postgresql/pgx/v5/go/models.go type Description (line 11) | type Description struct FILE: internal/endtoend/testdata/ddl_generated_columns/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_generated_columns/postgresql/pgx/v5/schema.sql type descriptions (line 1) | create table descriptions ( FILE: internal/endtoend/testdata/ddl_generated_columns/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_generated_columns/postgresql/stdlib/go/models.go type Description (line 11) | type Description struct FILE: internal/endtoend/testdata/ddl_generated_columns/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_generated_columns/postgresql/stdlib/schema.sql type descriptions (line 1) | create table descriptions ( FILE: internal/endtoend/testdata/ddl_materialized_views_invalid/postgresql/pgx/schema.sql type kpis (line 1) | CREATE TABLE kpis ( FILE: internal/endtoend/testdata/ddl_pg_temp/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_pg_temp/postgresql/pgx/v4/go/models.go type NewTable (line 11) | type NewTable struct type OldTable (line 15) | type OldTable struct type PgTempMigrate (line 19) | type PgTempMigrate struct FILE: internal/endtoend/testdata/ddl_pg_temp/postgresql/pgx/v4/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_pg_temp/postgresql/pgx/v4/schema.sql type old_table (line 1) | CREATE TABLE old_table (val SERIAL) type new_table (line 2) | CREATE TABLE new_table (val SERIAL) type pg_temp (line 3) | CREATE TABLE pg_temp.migrate (val SERIAL) FILE: internal/endtoend/testdata/ddl_pg_temp/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_pg_temp/postgresql/pgx/v5/go/models.go type NewTable (line 11) | type NewTable struct type OldTable (line 15) | type OldTable struct type PgTempMigrate (line 19) | type PgTempMigrate struct FILE: internal/endtoend/testdata/ddl_pg_temp/postgresql/pgx/v5/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_pg_temp/postgresql/pgx/v5/schema.sql type old_table (line 1) | CREATE TABLE old_table (val SERIAL) type new_table (line 2) | CREATE TABLE new_table (val SERIAL) type pg_temp (line 3) | CREATE TABLE pg_temp.migrate (val SERIAL) FILE: internal/endtoend/testdata/ddl_pg_temp/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_pg_temp/postgresql/stdlib/go/models.go type NewTable (line 11) | type NewTable struct type OldTable (line 15) | type OldTable struct type PgTempMigrate (line 19) | type PgTempMigrate struct FILE: internal/endtoend/testdata/ddl_pg_temp/postgresql/stdlib/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/ddl_pg_temp/postgresql/stdlib/schema.sql type old_table (line 1) | CREATE TABLE old_table (val SERIAL) type new_table (line 2) | CREATE TABLE new_table (val SERIAL) type pg_temp (line 3) | CREATE TABLE pg_temp.migrate (val SERIAL) FILE: internal/endtoend/testdata/ddl_rename_drop_materialized_views/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_rename_drop_materialized_views/postgresql/pgx/v4/go/models.go type Author (line 11) | type Author struct type AuthorsMv (line 17) | type AuthorsMv struct FILE: internal/endtoend/testdata/ddl_rename_drop_materialized_views/postgresql/pgx/v4/go/query.sql.go constant getAuthorMv (line 12) | getAuthorMv = `-- name: GetAuthorMv :one method GetAuthorMv (line 17) | func (q *Queries) GetAuthorMv(ctx context.Context, id int64) (AuthorsMv,... FILE: internal/endtoend/testdata/ddl_rename_drop_materialized_views/postgresql/pgx/v4/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/ddl_rename_drop_materialized_views/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ddl_rename_drop_materialized_views/postgresql/pgx/v5/go/models.go type Author (line 11) | type Author struct type AuthorsMv (line 17) | type AuthorsMv struct FILE: internal/endtoend/testdata/ddl_rename_drop_materialized_views/postgresql/pgx/v5/go/query.sql.go constant getAuthorMv (line 12) | getAuthorMv = `-- name: GetAuthorMv :one method GetAuthorMv (line 17) | func (q *Queries) GetAuthorMv(ctx context.Context, id int64) (AuthorsMv,... FILE: internal/endtoend/testdata/ddl_rename_drop_materialized_views/postgresql/pgx/v5/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/delete_from/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/delete_from/mysql/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/delete_from/mysql/go/query.sql.go constant deleteFrom (line 12) | deleteFrom = `-- name: DeleteFrom :exec method DeleteFrom (line 16) | func (q *Queries) DeleteFrom(ctx context.Context, id string) error { FILE: internal/endtoend/testdata/delete_from/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (id text not null) FILE: internal/endtoend/testdata/delete_from/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/delete_from/postgresql/pgx/v4/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/delete_from/postgresql/pgx/v4/go/query.sql.go constant deleteFrom (line 12) | deleteFrom = `-- name: DeleteFrom :exec method DeleteFrom (line 16) | func (q *Queries) DeleteFrom(ctx context.Context, id string) error { FILE: internal/endtoend/testdata/delete_from/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (id text not null) FILE: internal/endtoend/testdata/delete_from/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/delete_from/postgresql/pgx/v5/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/delete_from/postgresql/pgx/v5/go/query.sql.go constant deleteFrom (line 12) | deleteFrom = `-- name: DeleteFrom :exec method DeleteFrom (line 16) | func (q *Queries) DeleteFrom(ctx context.Context, id string) error { FILE: internal/endtoend/testdata/delete_from/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (id text not null) FILE: internal/endtoend/testdata/delete_from/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/delete_from/postgresql/stdlib/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/delete_from/postgresql/stdlib/go/query.sql.go constant deleteFrom (line 12) | deleteFrom = `-- name: DeleteFrom :exec method DeleteFrom (line 16) | func (q *Queries) DeleteFrom(ctx context.Context, id string) error { FILE: internal/endtoend/testdata/delete_from/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (id text not null) FILE: internal/endtoend/testdata/delete_from/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/delete_from/sqlite/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/delete_from/sqlite/go/query.sql.go constant deleteFrom (line 12) | deleteFrom = `-- name: DeleteFrom :exec method DeleteFrom (line 16) | func (q *Queries) DeleteFrom(ctx context.Context, id string) error { FILE: internal/endtoend/testdata/delete_from/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo (id text not null) FILE: internal/endtoend/testdata/delete_inner_join/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/delete_inner_join/mysql/go/models.go type Author (line 7) | type Author struct type AuthorBook (line 12) | type AuthorBook struct type Book (line 17) | type Book struct FILE: internal/endtoend/testdata/delete_inner_join/mysql/go/query.sql.go constant removeAllAuthorsFromTheGreatGatsby (line 12) | removeAllAuthorsFromTheGreatGatsby = `-- name: RemoveAllAuthorsFromTheGr... method RemoveAllAuthorsFromTheGreatGatsby (line 21) | func (q *Queries) RemoveAllAuthorsFromTheGreatGatsby(ctx context.Context... FILE: internal/endtoend/testdata/delete_inner_join/mysql/schema.sql type author (line 1) | CREATE TABLE author ( type book (line 6) | CREATE TABLE book ( type author_book (line 11) | CREATE TABLE author_book ( FILE: internal/endtoend/testdata/delete_join/mysql/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/delete_join/mysql/db/models.go type JoinTable (line 7) | type JoinTable struct type PrimaryTable (line 14) | type PrimaryTable struct FILE: internal/endtoend/testdata/delete_join/mysql/db/query.sql.go constant deleteJoin (line 12) | deleteJoin = `-- name: DeleteJoin :exec type DeleteJoinParams (line 23) | type DeleteJoinParams struct method DeleteJoin (line 28) | func (q *Queries) DeleteJoin(ctx context.Context, arg DeleteJoinParams) ... constant deleteJoinWithSubquery (line 33) | deleteJoinWithSubquery = `-- name: DeleteJoinWithSubquery :exec method DeleteJoinWithSubquery (line 39) | func (q *Queries) DeleteJoinWithSubquery(ctx context.Context) error { constant deleteLeftJoin (line 44) | deleteLeftJoin = `-- name: DeleteLeftJoin :exec type DeleteLeftJoinParams (line 55) | type DeleteLeftJoinParams struct method DeleteLeftJoin (line 60) | func (q *Queries) DeleteLeftJoin(ctx context.Context, arg DeleteLeftJoin... constant deleteRightJoin (line 65) | deleteRightJoin = `-- name: DeleteRightJoin :exec type DeleteRightJoinParams (line 76) | type DeleteRightJoinParams struct method DeleteRightJoin (line 81) | func (q *Queries) DeleteRightJoin(ctx context.Context, arg DeleteRightJo... FILE: internal/endtoend/testdata/delete_join/mysql/schema.sql type primary_table (line 1) | CREATE TABLE primary_table ( type join_table (line 7) | CREATE TABLE join_table ( FILE: internal/endtoend/testdata/delete_using/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/delete_using/postgresql/pgx/go/models.go type A (line 11) | type A struct type B (line 16) | type B struct FILE: internal/endtoend/testdata/delete_using/postgresql/pgx/go/query.sql.go constant getSomeDeletedNotOk (line 14) | getSomeDeletedNotOk = `-- name: GetSomeDeletedNotOk :many method GetSomeDeletedNotOk (line 21) | func (q *Queries) GetSomeDeletedNotOk(ctx context.Context) ([]pgtype.Tex... FILE: internal/endtoend/testdata/delete_using/postgresql/pgx/schema.sql type a (line 1) | CREATE TABLE a type b (line 6) | CREATE TABLE b FILE: internal/endtoend/testdata/diff_no_output/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/diff_no_output/go/models.go type Author (line 11) | type Author struct type Book (line 17) | type Book struct FILE: internal/endtoend/testdata/diff_no_output/go/query.sql.go constant createAuthor (line 13) | createAuthor = `-- name: CreateAuthor :one type CreateAuthorParams (line 22) | type CreateAuthorParams struct method CreateAuthor (line 27) | func (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorPara... constant getAuthor (line 34) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 39) | func (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, erro... constant listAuthors (line 46) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 51) | func (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) { constant selectOne (line 74) | selectOne = `-- name: SelectOne :one method SelectOne (line 78) | func (q *Queries) SelectOne(ctx context.Context) (int32, error) { FILE: internal/endtoend/testdata/diff_no_output/schema.sql type authors (line 1) | CREATE TABLE authors ( type books (line 7) | CREATE TABLE books ( FILE: internal/endtoend/testdata/diff_output/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/diff_output/go/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/diff_output/go/query.sql.go constant createAuthor (line 13) | createAuthor = `-- name: CreateAuthor :one type CreateAuthorParams (line 22) | type CreateAuthorParams struct method CreateAuthor (line 27) | func (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorPara... constant deleteAuthor (line 34) | deleteAuthor = `-- name: DeleteAuthor :exec method DeleteAuthor (line 39) | func (q *Queries) DeleteAuthor(ctx context.Context, id int64) error { constant getAuthor (line 44) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 49) | func (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, erro... constant listAuthors (line 56) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 61) | func (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) { FILE: internal/endtoend/testdata/diff_output/schema.sql type authors (line 1) | CREATE TABLE authors ( type books (line 7) | CREATE TABLE books ( FILE: internal/endtoend/testdata/do/postgresql/pgx/db/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/do/postgresql/pgx/db/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/do/postgresql/pgx/db/query.sql.go constant doStuff (line 12) | doStuff = `-- name: DoStuff :exec method DoStuff (line 21) | func (q *Queries) DoStuff(ctx context.Context) error { FILE: internal/endtoend/testdata/do/postgresql/pgx/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/do/postgresql/pq/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/do/postgresql/pq/db/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/do/postgresql/pq/db/query.sql.go constant doStuff (line 12) | doStuff = `-- name: DoStuff :exec method DoStuff (line 21) | func (q *Queries) DoStuff(ctx context.Context) error { FILE: internal/endtoend/testdata/do/postgresql/pq/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/emit_db_and_json_tags/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/emit_db_and_json_tags/mysql/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/emit_db_and_json_tags/mysql/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context) ([]User, error) { FILE: internal/endtoend/testdata/emit_db_and_json_tags/mysql/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/emit_db_and_json_tags/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/emit_db_and_json_tags/postgresql/pgx/v4/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/emit_db_and_json_tags/postgresql/pgx/v4/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context) ([]User, error) { FILE: internal/endtoend/testdata/emit_db_and_json_tags/postgresql/pgx/v4/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/emit_db_and_json_tags/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/emit_db_and_json_tags/postgresql/pgx/v5/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/emit_db_and_json_tags/postgresql/pgx/v5/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context) ([]User, error) { FILE: internal/endtoend/testdata/emit_db_and_json_tags/postgresql/pgx/v5/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/emit_db_and_json_tags/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/emit_db_and_json_tags/postgresql/stdlib/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/emit_db_and_json_tags/postgresql/stdlib/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context) ([]User, error) { FILE: internal/endtoend/testdata/emit_db_and_json_tags/postgresql/stdlib/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/emit_db_and_json_tags/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/emit_db_and_json_tags/sqlite/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/emit_db_and_json_tags/sqlite/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context) ([]User, error) { FILE: internal/endtoend/testdata/emit_db_and_json_tags/sqlite/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/emit_db_tags/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/emit_db_tags/mysql/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/emit_db_tags/mysql/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context) ([]User, error) { FILE: internal/endtoend/testdata/emit_db_tags/mysql/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/emit_db_tags/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/emit_db_tags/postgresql/pgx/v4/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/emit_db_tags/postgresql/pgx/v4/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context) ([]User, error) { FILE: internal/endtoend/testdata/emit_db_tags/postgresql/pgx/v4/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/emit_db_tags/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/emit_db_tags/postgresql/pgx/v5/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/emit_db_tags/postgresql/pgx/v5/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context) ([]User, error) { FILE: internal/endtoend/testdata/emit_db_tags/postgresql/pgx/v5/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/emit_db_tags/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/emit_db_tags/postgresql/stdlib/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/emit_db_tags/postgresql/stdlib/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context) ([]User, error) { FILE: internal/endtoend/testdata/emit_db_tags/postgresql/stdlib/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/emit_db_tags/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/emit_db_tags/sqlite/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/emit_db_tags/sqlite/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context) ([]User, error) { FILE: internal/endtoend/testdata/emit_db_tags/sqlite/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/emit_empty_slices/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/emit_empty_slices/pgx/v4/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/emit_empty_slices/pgx/v4/go/query.sql.go constant listBar (line 12) | listBar = `-- name: ListBar :many method ListBar (line 16) | func (q *Queries) ListBar(ctx context.Context) ([]int32, error) { FILE: internal/endtoend/testdata/emit_empty_slices/pgx/v4/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/emit_empty_slices/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/emit_empty_slices/pgx/v5/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/emit_empty_slices/pgx/v5/go/query.sql.go constant listBar (line 12) | listBar = `-- name: ListBar :many method ListBar (line 16) | func (q *Queries) ListBar(ctx context.Context) ([]int32, error) { FILE: internal/endtoend/testdata/emit_empty_slices/pgx/v5/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/emit_empty_slices/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/emit_empty_slices/stdlib/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/emit_empty_slices/stdlib/go/query.sql.go constant listBar (line 12) | listBar = `-- name: ListBar :many method ListBar (line 16) | func (q *Queries) ListBar(ctx context.Context) ([]int32, error) { FILE: internal/endtoend/testdata/emit_empty_slices/stdlib/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/emit_enum_valid_and_values/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/emit_enum_valid_and_values/go/models.go type IPProtocol (line 12) | type IPProtocol method Scan (line 20) | func (e *IPProtocol) Scan(src interface{}) error { method Valid (line 55) | func (e IPProtocol) Valid() bool { constant IPProtocolTCP (line 15) | IPProtocolTCP IPProtocol = "tcp" constant IpProtocolIp (line 16) | IpProtocolIp IPProtocol = "ip" constant IpProtocolIcmp (line 17) | IpProtocolIcmp IPProtocol = "icmp" type NullIPProtocol (line 32) | type NullIPProtocol struct method Scan (line 38) | func (ns *NullIPProtocol) Scan(value interface{}) error { method Value (line 48) | func (ns NullIPProtocol) Value() (driver.Value, error) { function AllIPProtocolValues (line 65) | func AllIPProtocolValues() []IPProtocol { type BarNew (line 73) | type BarNew struct FILE: internal/endtoend/testdata/emit_enum_valid_and_values/go/query.sql.go constant listBar (line 12) | listBar = `-- name: ListBar :many method ListBar (line 16) | func (q *Queries) ListBar(ctx context.Context) ([]BarNew, error) { constant listFoo (line 36) | listFoo = `-- name: ListFoo :many type ListFooParams (line 42) | type ListFooParams struct type ListFooRow (line 47) | type ListFooRow struct method ListFoo (line 52) | func (q *Queries) ListFoo(ctx context.Context, arg ListFooParams) ([]Lis... FILE: internal/endtoend/testdata/emit_enum_valid_and_values/schema.sql type bar_old (line 3) | CREATE TABLE bar_old (id_old serial not null, ip_old ip_protocol NOT NULL) FILE: internal/endtoend/testdata/emit_exported_queries/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/emit_exported_queries/pgx/v4/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/emit_exported_queries/pgx/v4/go/query.sql.go constant UpdateBarID (line 12) | UpdateBarID = `-- name: UpdateBarID :exec type UpdateBarIDParams (line 16) | type UpdateBarIDParams struct method UpdateBarID (line 21) | func (q *Queries) UpdateBarID(ctx context.Context, arg UpdateBarIDParams... FILE: internal/endtoend/testdata/emit_exported_queries/pgx/v4/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/emit_exported_queries/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/emit_exported_queries/pgx/v5/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/emit_exported_queries/pgx/v5/go/query.sql.go constant UpdateBarID (line 12) | UpdateBarID = `-- name: UpdateBarID :exec type UpdateBarIDParams (line 16) | type UpdateBarIDParams struct method UpdateBarID (line 21) | func (q *Queries) UpdateBarID(ctx context.Context, arg UpdateBarIDParams... FILE: internal/endtoend/testdata/emit_exported_queries/pgx/v5/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/emit_exported_queries/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/emit_exported_queries/stdlib/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/emit_exported_queries/stdlib/go/query.sql.go constant UpdateBarID (line 12) | UpdateBarID = `-- name: UpdateBarID :exec type UpdateBarIDParams (line 16) | type UpdateBarIDParams struct method UpdateBarID (line 21) | func (q *Queries) UpdateBarID(ctx context.Context, arg UpdateBarIDParams... FILE: internal/endtoend/testdata/emit_exported_queries/stdlib/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/emit_methods_with_db_argument/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New() *Queries { type Queries (line 23) | type Queries struct FILE: internal/endtoend/testdata/emit_methods_with_db_argument/mysql/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/emit_methods_with_db_argument/mysql/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context, db DBTX) ([]User, error) { FILE: internal/endtoend/testdata/emit_methods_with_db_argument/mysql/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New() *Queries { type Queries (line 24) | type Queries struct FILE: internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/pgx/v4/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/pgx/v4/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context, db DBTX) ([]User, error) { FILE: internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/pgx/v4/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New() *Queries { type Queries (line 24) | type Queries struct FILE: internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/pgx/v5/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/pgx/v5/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context, db DBTX) ([]User, error) { FILE: internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/pgx/v5/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New() *Queries { type Queries (line 23) | type Queries struct FILE: internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/stdlib/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/stdlib/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context, db DBTX) ([]User, error) { FILE: internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/stdlib/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/emit_methods_with_db_argument/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New() *Queries { type Queries (line 23) | type Queries struct FILE: internal/endtoend/testdata/emit_methods_with_db_argument/sqlite/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/emit_methods_with_db_argument/sqlite/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context, db DBTX) ([]User, error) { FILE: internal/endtoend/testdata/emit_methods_with_db_argument/sqlite/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v4/go/models.go type DtCharacter (line 13) | type DtCharacter struct type DtCharacterNotNull (line 21) | type DtCharacterNotNull struct type DtDatetime (line 29) | type DtDatetime struct type DtDatetimeNotNull (line 40) | type DtDatetimeNotNull struct type DtNetType (line 51) | type DtNetType struct type DtNetTypesNotNull (line 57) | type DtNetTypesNotNull struct type DtNumeric (line 63) | type DtNumeric struct type DtNumericNotNull (line 79) | type DtNumericNotNull struct type DtRange (line 95) | type DtRange struct type DtRangeNotNull (line 104) | type DtRangeNotNull struct FILE: internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v4/go/query.sql.go constant test (line 12) | test = `-- name: Test :one method Test (line 16) | func (q *Queries) Test(ctx context.Context) (int32, error) { FILE: internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v4/sql/character.sql type dt_character (line 3) | CREATE TABLE dt_character ( type dt_character_not_null (line 11) | CREATE TABLE dt_character_not_null ( FILE: internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v4/sql/datetime.sql type dt_datetime (line 3) | CREATE TABLE dt_datetime ( type dt_datetime_not_null (line 14) | CREATE TABLE dt_datetime_not_null ( FILE: internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v4/sql/net-types.sql type dt_net_types (line 3) | CREATE TABLE dt_net_types ( type dt_net_types_not_null (line 9) | CREATE TABLE dt_net_types_not_null ( FILE: internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v4/sql/numeric.sql type dt_numeric (line 3) | CREATE TABLE dt_numeric ( type dt_numeric_not_null (line 22) | CREATE TABLE dt_numeric_not_null ( FILE: internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v4/sql/rangetypes.sql type dt_range (line 3) | CREATE TABLE dt_range ( type dt_range_not_null (line 12) | CREATE TABLE dt_range_not_null ( FILE: internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v5/go/models.go type DtCharacter (line 15) | type DtCharacter struct type DtCharacterNotNull (line 23) | type DtCharacterNotNull struct type DtDatetime (line 31) | type DtDatetime struct type DtDatetimeNotNull (line 42) | type DtDatetimeNotNull struct type DtNetType (line 53) | type DtNetType struct type DtNetTypesNotNull (line 59) | type DtNetTypesNotNull struct type DtNumeric (line 65) | type DtNumeric struct type DtNumericNotNull (line 81) | type DtNumericNotNull struct type DtRange (line 97) | type DtRange struct type DtRangeNotNull (line 106) | type DtRangeNotNull struct FILE: internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v5/go/query.sql.go constant test (line 12) | test = `-- name: Test :one method Test (line 16) | func (q *Queries) Test(ctx context.Context) (int32, error) { FILE: internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v5/sql/character.sql type dt_character (line 3) | CREATE TABLE dt_character ( type dt_character_not_null (line 11) | CREATE TABLE dt_character_not_null ( FILE: internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v5/sql/datetime.sql type dt_datetime (line 3) | CREATE TABLE dt_datetime ( type dt_datetime_not_null (line 14) | CREATE TABLE dt_datetime_not_null ( FILE: internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v5/sql/net-types.sql type dt_net_types (line 3) | CREATE TABLE dt_net_types ( type dt_net_types_not_null (line 9) | CREATE TABLE dt_net_types_not_null ( FILE: internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v5/sql/numeric.sql type dt_numeric (line 3) | CREATE TABLE dt_numeric ( type dt_numeric_not_null (line 22) | CREATE TABLE dt_numeric_not_null ( FILE: internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v5/sql/rangetypes.sql type dt_range (line 3) | CREATE TABLE dt_range ( type dt_range_not_null (line 12) | CREATE TABLE dt_range_not_null ( FILE: internal/endtoend/testdata/emit_pointers_for_null_types/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/emit_pointers_for_null_types/sqlite/go/models.go type DtType (line 11) | type DtType struct type DtTypesNotNull (line 20) | type DtTypesNotNull struct FILE: internal/endtoend/testdata/emit_pointers_for_null_types/sqlite/go/query.sql.go constant noop (line 12) | noop = `-- name: Noop :one method Noop (line 16) | func (q *Queries) Noop(ctx context.Context) (int64, error) { FILE: internal/endtoend/testdata/emit_pointers_for_null_types/sqlite/sql/types.sql type dt_types (line 2) | CREATE TABLE dt_types ( type dt_types_not_null (line 11) | CREATE TABLE dt_types_not_null ( FILE: internal/endtoend/testdata/emit_pointers_for_null_types/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/emit_pointers_for_null_types/stdlib/go/models.go type DtCharacter (line 14) | type DtCharacter struct type DtCharacterNotNull (line 22) | type DtCharacterNotNull struct type DtDatetime (line 30) | type DtDatetime struct type DtDatetimeNotNull (line 41) | type DtDatetimeNotNull struct type DtNetType (line 52) | type DtNetType struct type DtNetTypesNotNull (line 58) | type DtNetTypesNotNull struct type DtNumeric (line 64) | type DtNumeric struct type DtNumericNotNull (line 80) | type DtNumericNotNull struct type DtRange (line 96) | type DtRange struct type DtRangeNotNull (line 105) | type DtRangeNotNull struct FILE: internal/endtoend/testdata/emit_pointers_for_null_types/stdlib/go/query.sql.go constant test (line 12) | test = `-- name: Test :one method Test (line 16) | func (q *Queries) Test(ctx context.Context) (int32, error) { FILE: internal/endtoend/testdata/emit_pointers_for_null_types/stdlib/sql/character.sql type dt_character (line 3) | CREATE TABLE dt_character ( type dt_character_not_null (line 11) | CREATE TABLE dt_character_not_null ( FILE: internal/endtoend/testdata/emit_pointers_for_null_types/stdlib/sql/datetime.sql type dt_datetime (line 3) | CREATE TABLE dt_datetime ( type dt_datetime_not_null (line 14) | CREATE TABLE dt_datetime_not_null ( FILE: internal/endtoend/testdata/emit_pointers_for_null_types/stdlib/sql/net-types.sql type dt_net_types (line 3) | CREATE TABLE dt_net_types ( type dt_net_types_not_null (line 9) | CREATE TABLE dt_net_types_not_null ( FILE: internal/endtoend/testdata/emit_pointers_for_null_types/stdlib/sql/numeric.sql type dt_numeric (line 3) | CREATE TABLE dt_numeric ( type dt_numeric_not_null (line 22) | CREATE TABLE dt_numeric_not_null ( FILE: internal/endtoend/testdata/emit_pointers_for_null_types/stdlib/sql/rangetypes.sql type dt_range (line 3) | CREATE TABLE dt_range ( type dt_range_not_null (line 12) | CREATE TABLE dt_range_not_null ( FILE: internal/endtoend/testdata/emit_result_and_params_struct_pointers/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/emit_result_and_params_struct_pointers/mysql/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/emit_result_and_params_struct_pointers/mysql/go/querier.go type Querier (line 12) | type Querier interface FILE: internal/endtoend/testdata/emit_result_and_params_struct_pointers/mysql/go/query.sql.go constant getAll (line 13) | getAll = `-- name: GetAll :many method GetAll (line 17) | func (q *Queries) GetAll(ctx context.Context) ([]*Foo, error) { constant getAllAByB (line 40) | getAllAByB = `-- name: GetAllAByB :many method GetAllAByB (line 44) | func (q *Queries) GetAllAByB(ctx context.Context, b sql.NullInt32) ([]sq... constant getOne (line 67) | getOne = `-- name: GetOne :one type GetOneParams (line 71) | type GetOneParams struct method GetOne (line 76) | func (q *Queries) GetOne(ctx context.Context, arg *GetOneParams) (*Foo, ... FILE: internal/endtoend/testdata/emit_result_and_params_struct_pointers/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (a integer, b integer) FILE: internal/endtoend/testdata/emit_result_and_params_struct_pointers/postgresql/pgx/v4/go/batch.go constant insertValues (line 20) | insertValues = `-- name: InsertValues :batchone type InsertValuesBatchResults (line 27) | type InsertValuesBatchResults struct method QueryRow (line 51) | func (b *InsertValuesBatchResults) QueryRow(f func(int, *Foo, error)) { method Close (line 69) | func (b *InsertValuesBatchResults) Close() error { type InsertValuesParams (line 33) | type InsertValuesParams struct method InsertValues (line 38) | func (q *Queries) InsertValues(ctx context.Context, arg []*InsertValuesP... FILE: internal/endtoend/testdata/emit_result_and_params_struct_pointers/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 21) | func New(db DBTX) *Queries { type Queries (line 25) | type Queries struct method WithTx (line 29) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/emit_result_and_params_struct_pointers/postgresql/pgx/v4/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/emit_result_and_params_struct_pointers/postgresql/pgx/v4/go/query.sql.go constant getAll (line 13) | getAll = `-- name: GetAll :many method GetAll (line 17) | func (q *Queries) GetAll(ctx context.Context) ([]*Foo, error) { constant getAllAByB (line 37) | getAllAByB = `-- name: GetAllAByB :many method GetAllAByB (line 41) | func (q *Queries) GetAllAByB(ctx context.Context, b sql.NullInt32) ([]sq... constant getOne (line 61) | getOne = `-- name: GetOne :one type GetOneParams (line 65) | type GetOneParams struct method GetOne (line 70) | func (q *Queries) GetOne(ctx context.Context, arg *GetOneParams) (*Foo, ... FILE: internal/endtoend/testdata/emit_result_and_params_struct_pointers/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (a integer, b integer) FILE: internal/endtoend/testdata/emit_result_and_params_struct_pointers/postgresql/pgx/v5/go/batch.go constant insertValues (line 20) | insertValues = `-- name: InsertValues :batchone type InsertValuesBatchResults (line 27) | type InsertValuesBatchResults struct method QueryRow (line 51) | func (b *InsertValuesBatchResults) QueryRow(f func(int, *Foo, error)) { method Close (line 69) | func (b *InsertValuesBatchResults) Close() error { type InsertValuesParams (line 33) | type InsertValuesParams struct method InsertValues (line 38) | func (q *Queries) InsertValues(ctx context.Context, arg []*InsertValuesP... FILE: internal/endtoend/testdata/emit_result_and_params_struct_pointers/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 21) | func New(db DBTX) *Queries { type Queries (line 25) | type Queries struct method WithTx (line 29) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/emit_result_and_params_struct_pointers/postgresql/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/emit_result_and_params_struct_pointers/postgresql/pgx/v5/go/query.sql.go constant getAll (line 14) | getAll = `-- name: GetAll :many method GetAll (line 18) | func (q *Queries) GetAll(ctx context.Context) ([]*Foo, error) { constant getAllAByB (line 38) | getAllAByB = `-- name: GetAllAByB :many method GetAllAByB (line 42) | func (q *Queries) GetAllAByB(ctx context.Context, b pgtype.Int4) ([]pgty... constant getOne (line 62) | getOne = `-- name: GetOne :one type GetOneParams (line 66) | type GetOneParams struct method GetOne (line 71) | func (q *Queries) GetOne(ctx context.Context, arg *GetOneParams) (*Foo, ... FILE: internal/endtoend/testdata/emit_result_and_params_struct_pointers/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (a integer, b integer) FILE: internal/endtoend/testdata/emit_sql_as_comment/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/emit_sql_as_comment/stdlib/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/emit_sql_as_comment/stdlib/go/query.sql.go constant listBar (line 12) | listBar = `-- name: ListBar :many method ListBar (line 23) | func (q *Queries) ListBar(ctx context.Context) ([]int32, error) { constant removeBar (line 46) | removeBar = `-- name: RemoveBar :exec method RemoveBar (line 53) | func (q *Queries) RemoveBar(ctx context.Context, id int32) error { FILE: internal/endtoend/testdata/emit_sql_as_comment/stdlib/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/enum/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New() *Queries { type Queries (line 23) | type Queries struct FILE: internal/endtoend/testdata/enum/mysql/go/models.go type UsersShirtSize (line 13) | type UsersShirtSize method Scan (line 23) | func (e *UsersShirtSize) Scan(src interface{}) error { constant UsersShirtSizeXSmall (line 16) | UsersShirtSizeXSmall UsersShirtSize = "x-small" constant UsersShirtSizeSmall (line 17) | UsersShirtSizeSmall UsersShirtSize = "small" constant UsersShirtSizeMedium (line 18) | UsersShirtSizeMedium UsersShirtSize = "medium" constant UsersShirtSizeLarge (line 19) | UsersShirtSizeLarge UsersShirtSize = "large" constant UsersShirtSizeXLarge (line 20) | UsersShirtSizeXLarge UsersShirtSize = "x-large" type NullUsersShirtSize (line 35) | type NullUsersShirtSize struct method Scan (line 41) | func (ns *NullUsersShirtSize) Scan(value interface{}) error { method Value (line 51) | func (ns NullUsersShirtSize) Value() (driver.Value, error) { type UsersShoeSize (line 58) | type UsersShoeSize method Scan (line 68) | func (e *UsersShoeSize) Scan(src interface{}) error { constant UsersShoeSizeXSmall (line 61) | UsersShoeSizeXSmall UsersShoeSize = "x-small" constant UsersShoeSizeSmall (line 62) | UsersShoeSizeSmall UsersShoeSize = "small" constant UsersShoeSizeMedium (line 63) | UsersShoeSizeMedium UsersShoeSize = "medium" constant UsersShoeSizeLarge (line 64) | UsersShoeSizeLarge UsersShoeSize = "large" constant UsersShoeSizeXLarge (line 65) | UsersShoeSizeXLarge UsersShoeSize = "x-large" type NullUsersShoeSize (line 80) | type NullUsersShoeSize struct method Scan (line 86) | func (ns *NullUsersShoeSize) Scan(value interface{}) error { method Value (line 96) | func (ns NullUsersShoeSize) Value() (driver.Value, error) { type User (line 103) | type User struct FILE: internal/endtoend/testdata/enum/mysql/go/query.sql.go constant deleteBySize (line 13) | deleteBySize = `-- name: DeleteBySize :exec type DeleteBySizeParams (line 18) | type DeleteBySizeParams struct method DeleteBySize (line 23) | func (q *Queries) DeleteBySize(ctx context.Context, db DBTX, arg DeleteB... constant getAll (line 28) | getAll = `-- name: GetAll :many method GetAll (line 32) | func (q *Queries) GetAll(ctx context.Context, db DBTX) ([]User, error) { constant newUser (line 62) | newUser = `-- name: NewUser :exec type NewUserParams (line 74) | type NewUserParams struct method NewUser (line 83) | func (q *Queries) NewUser(ctx context.Context, db DBTX, arg NewUserParam... constant updateSizes (line 95) | updateSizes = `-- name: UpdateSizes :exec type UpdateSizesParams (line 101) | type UpdateSizesParams struct method UpdateSizes (line 107) | func (q *Queries) UpdateSizes(ctx context.Context, db DBTX, arg UpdateSi... FILE: internal/endtoend/testdata/enum/mysql/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/enum/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New() *Queries { type Queries (line 24) | type Queries struct FILE: internal/endtoend/testdata/enum/postgresql/pgx/v4/go/models.go type Size (line 13) | type Size method Scan (line 23) | func (e *Size) Scan(src interface{}) error { constant SizeXSmall (line 16) | SizeXSmall Size = "x-small" constant SizeSmall (line 17) | SizeSmall Size = "small" constant SizeMedium (line 18) | SizeMedium Size = "medium" constant SizeLarge (line 19) | SizeLarge Size = "large" constant SizeXLarge (line 20) | SizeXLarge Size = "x-large" type NullSize (line 35) | type NullSize struct method Scan (line 41) | func (ns *NullSize) Scan(value interface{}) error { method Value (line 51) | func (ns NullSize) Value() (driver.Value, error) { type User (line 58) | type User struct FILE: internal/endtoend/testdata/enum/postgresql/pgx/v4/go/query.sql.go constant deleteBySize (line 13) | deleteBySize = `-- name: DeleteBySize :exec type DeleteBySizeParams (line 18) | type DeleteBySizeParams struct method DeleteBySize (line 23) | func (q *Queries) DeleteBySize(ctx context.Context, db DBTX, arg DeleteB... constant getAll (line 28) | getAll = `-- name: GetAll :many method GetAll (line 32) | func (q *Queries) GetAll(ctx context.Context, db DBTX) ([]User, error) { constant newUser (line 59) | newUser = `-- name: NewUser :exec type NewUserParams (line 70) | type NewUserParams struct method NewUser (line 78) | func (q *Queries) NewUser(ctx context.Context, db DBTX, arg NewUserParam... constant updateSizes (line 89) | updateSizes = `-- name: UpdateSizes :exec type UpdateSizesParams (line 95) | type UpdateSizesParams struct method UpdateSizes (line 101) | func (q *Queries) UpdateSizes(ctx context.Context, db DBTX, arg UpdateSi... FILE: internal/endtoend/testdata/enum/postgresql/pgx/v4/schema.sql type users (line 4) | CREATE TABLE users ( FILE: internal/endtoend/testdata/enum/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New() *Queries { type Queries (line 24) | type Queries struct FILE: internal/endtoend/testdata/enum/postgresql/pgx/v5/go/models.go type Size (line 14) | type Size method Scan (line 24) | func (e *Size) Scan(src interface{}) error { constant SizeXSmall (line 17) | SizeXSmall Size = "x-small" constant SizeSmall (line 18) | SizeSmall Size = "small" constant SizeMedium (line 19) | SizeMedium Size = "medium" constant SizeLarge (line 20) | SizeLarge Size = "large" constant SizeXLarge (line 21) | SizeXLarge Size = "x-large" type NullSize (line 36) | type NullSize struct method Scan (line 42) | func (ns *NullSize) Scan(value interface{}) error { method Value (line 52) | func (ns NullSize) Value() (driver.Value, error) { type User (line 59) | type User struct FILE: internal/endtoend/testdata/enum/postgresql/pgx/v5/go/query.sql.go constant deleteBySize (line 14) | deleteBySize = `-- name: DeleteBySize :exec type DeleteBySizeParams (line 19) | type DeleteBySizeParams struct method DeleteBySize (line 24) | func (q *Queries) DeleteBySize(ctx context.Context, db DBTX, arg DeleteB... constant getAll (line 29) | getAll = `-- name: GetAll :many method GetAll (line 33) | func (q *Queries) GetAll(ctx context.Context, db DBTX) ([]User, error) { constant newUser (line 60) | newUser = `-- name: NewUser :exec type NewUserParams (line 71) | type NewUserParams struct method NewUser (line 79) | func (q *Queries) NewUser(ctx context.Context, db DBTX, arg NewUserParam... constant updateSizes (line 90) | updateSizes = `-- name: UpdateSizes :exec type UpdateSizesParams (line 96) | type UpdateSizesParams struct method UpdateSizes (line 102) | func (q *Queries) UpdateSizes(ctx context.Context, db DBTX, arg UpdateSi... FILE: internal/endtoend/testdata/enum/postgresql/pgx/v5/schema.sql type users (line 4) | CREATE TABLE users ( FILE: internal/endtoend/testdata/enum/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New() *Queries { type Queries (line 23) | type Queries struct FILE: internal/endtoend/testdata/enum/postgresql/stdlib/go/models.go type Size (line 13) | type Size method Scan (line 23) | func (e *Size) Scan(src interface{}) error { constant SizeXSmall (line 16) | SizeXSmall Size = "x-small" constant SizeSmall (line 17) | SizeSmall Size = "small" constant SizeMedium (line 18) | SizeMedium Size = "medium" constant SizeLarge (line 19) | SizeLarge Size = "large" constant SizeXLarge (line 20) | SizeXLarge Size = "x-large" type NullSize (line 35) | type NullSize struct method Scan (line 41) | func (ns *NullSize) Scan(value interface{}) error { method Value (line 51) | func (ns NullSize) Value() (driver.Value, error) { type User (line 58) | type User struct FILE: internal/endtoend/testdata/enum/postgresql/stdlib/go/query.sql.go constant deleteBySize (line 13) | deleteBySize = `-- name: DeleteBySize :exec type DeleteBySizeParams (line 18) | type DeleteBySizeParams struct method DeleteBySize (line 23) | func (q *Queries) DeleteBySize(ctx context.Context, db DBTX, arg DeleteB... constant getAll (line 28) | getAll = `-- name: GetAll :many method GetAll (line 32) | func (q *Queries) GetAll(ctx context.Context, db DBTX) ([]User, error) { constant newUser (line 62) | newUser = `-- name: NewUser :exec type NewUserParams (line 73) | type NewUserParams struct method NewUser (line 81) | func (q *Queries) NewUser(ctx context.Context, db DBTX, arg NewUserParam... constant updateSizes (line 92) | updateSizes = `-- name: UpdateSizes :exec type UpdateSizesParams (line 98) | type UpdateSizesParams struct method UpdateSizes (line 104) | func (q *Queries) UpdateSizes(ctx context.Context, db DBTX, arg UpdateSi... FILE: internal/endtoend/testdata/enum/postgresql/stdlib/schema.sql type users (line 3) | CREATE TABLE users ( FILE: internal/endtoend/testdata/enum_column/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/enum_column/mysql/go/models.go type AuthorsAddItem (line 12) | type AuthorsAddItem method Scan (line 19) | func (e *AuthorsAddItem) Scan(src interface{}) error { constant AuthorsAddItemOk (line 15) | AuthorsAddItemOk AuthorsAddItem = "ok" constant AuthorsAddItemAdded (line 16) | AuthorsAddItemAdded AuthorsAddItem = "added" type NullAuthorsAddItem (line 31) | type NullAuthorsAddItem struct method Scan (line 37) | func (ns *NullAuthorsAddItem) Scan(value interface{}) error { method Value (line 47) | func (ns NullAuthorsAddItem) Value() (driver.Value, error) { type AuthorsAdded (line 54) | type AuthorsAdded method Scan (line 60) | func (e *AuthorsAdded) Scan(src interface{}) error { constant AuthorsAddedOk (line 57) | AuthorsAddedOk AuthorsAdded = "ok" type NullAuthorsAdded (line 72) | type NullAuthorsAdded struct method Scan (line 78) | func (ns *NullAuthorsAdded) Scan(value interface{}) error { method Value (line 88) | func (ns NullAuthorsAdded) Value() (driver.Value, error) { type AuthorsBar (line 95) | type AuthorsBar method Scan (line 101) | func (e *AuthorsBar) Scan(src interface{}) error { constant AuthorsBarOk (line 98) | AuthorsBarOk AuthorsBar = "ok" type NullAuthorsBar (line 113) | type NullAuthorsBar struct method Scan (line 119) | func (ns *NullAuthorsBar) Scan(value interface{}) error { method Value (line 129) | func (ns NullAuthorsBar) Value() (driver.Value, error) { type AuthorsFoo (line 136) | type AuthorsFoo method Scan (line 142) | func (e *AuthorsFoo) Scan(src interface{}) error { constant AuthorsFooOk (line 139) | AuthorsFooOk AuthorsFoo = "ok" type NullAuthorsFoo (line 154) | type NullAuthorsFoo struct method Scan (line 160) | func (ns *NullAuthorsFoo) Scan(value interface{}) error { method Value (line 170) | func (ns NullAuthorsFoo) Value() (driver.Value, error) { type AuthorsRemoveItem (line 177) | type AuthorsRemoveItem method Scan (line 183) | func (e *AuthorsRemoveItem) Scan(src interface{}) error { constant AuthorsRemoveItemOk (line 180) | AuthorsRemoveItemOk AuthorsRemoveItem = "ok" type NullAuthorsRemoveItem (line 195) | type NullAuthorsRemoveItem struct method Scan (line 201) | func (ns *NullAuthorsRemoveItem) Scan(value interface{}) error { method Value (line 211) | func (ns NullAuthorsRemoveItem) Value() (driver.Value, error) { type BooksFoo (line 218) | type BooksFoo method Scan (line 224) | func (e *BooksFoo) Scan(src interface{}) error { constant BooksFooOk (line 221) | BooksFooOk BooksFoo = "ok" type NullBooksFoo (line 236) | type NullBooksFoo struct method Scan (line 242) | func (ns *NullBooksFoo) Scan(value interface{}) error { method Value (line 252) | func (ns NullBooksFoo) Value() (driver.Value, error) { type Author (line 259) | type Author struct type Book (line 268) | type Book struct FILE: internal/endtoend/testdata/enum_column/mysql/go/query.sql.go constant listAuthors (line 12) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 16) | func (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) { constant listBooks (line 46) | listBooks = `-- name: ListBooks :many method ListBooks (line 50) | func (q *Queries) ListBooks(ctx context.Context) ([]Book, error) { FILE: internal/endtoend/testdata/enum_column/mysql/schema.sql type authors (line 1) | CREATE TABLE authors ( type renamed (line 10) | CREATE TABLE renamed ( type removed (line 15) | CREATE TABLE removed ( FILE: internal/endtoend/testdata/enum_ordering/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/enum_ordering/postgresql/stdlib/go/models.go type EnumType (line 12) | type EnumType method Scan (line 25) | func (e *EnumType) Scan(src interface{}) error { method Valid (line 60) | func (e EnumType) Valid() bool { constant EnumTypeBeforefirst (line 15) | EnumTypeBeforefirst EnumType = "beforefirst" constant EnumTypeFirst (line 16) | EnumTypeFirst EnumType = "first" constant EnumTypeSecond (line 17) | EnumTypeSecond EnumType = "second" constant EnumTypeThird (line 18) | EnumTypeThird EnumType = "third" constant EnumTypeFourth (line 19) | EnumTypeFourth EnumType = "fourth" constant EnumTypeFifth (line 20) | EnumTypeFifth EnumType = "fifth" constant EnumTypeLast (line 21) | EnumTypeLast EnumType = "last" constant EnumTypeAfterlast (line 22) | EnumTypeAfterlast EnumType = "afterlast" type NullEnumType (line 37) | type NullEnumType struct method Scan (line 43) | func (ns *NullEnumType) Scan(value interface{}) error { method Value (line 53) | func (ns NullEnumType) Value() (driver.Value, error) { function AllEnumTypeValues (line 75) | func AllEnumTypeValues() []EnumType { type Foo (line 88) | type Foo struct FILE: internal/endtoend/testdata/enum_ordering/postgresql/stdlib/go/querier.go type Querier (line 11) | type Querier interface FILE: internal/endtoend/testdata/enum_ordering/postgresql/stdlib/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context) ([]int32, error) { FILE: internal/endtoend/testdata/enum_ordering/postgresql/stdlib/schema.sql type foo (line 9) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/exec_create_table/mysql/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/exec_create_table/mysql/db/mysql.query.sql.go constant createTable (line 12) | createTable = `-- name: CreateTable :exec method CreateTable (line 16) | func (q *Queries) CreateTable(ctx context.Context) error { FILE: internal/endtoend/testdata/exec_create_table/mysql/mysql.query.sql type test (line 2) | CREATE TABLE test (id INTEGER NOT NULL) FILE: internal/endtoend/testdata/exec_create_table/postgresql/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/exec_create_table/postgresql/db/postgresql.query.sql.go constant createTable (line 12) | createTable = `-- name: CreateTable :exec method CreateTable (line 16) | func (q *Queries) CreateTable(ctx context.Context) error { FILE: internal/endtoend/testdata/exec_create_table/postgresql/postgresql.query.sql type test (line 2) | CREATE TABLE test (id INTEGER NOT NULL) FILE: internal/endtoend/testdata/exec_create_table/sqlite/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/exec_create_table/sqlite/db/sqlite.query.sql.go constant createTable (line 12) | createTable = `-- name: CreateTable :exec method CreateTable (line 16) | func (q *Queries) CreateTable(ctx context.Context) error { FILE: internal/endtoend/testdata/exec_create_table/sqlite/sqlite.query.sql type test (line 2) | CREATE TABLE test (id INTEGER NOT NULL) FILE: internal/endtoend/testdata/exec_imports/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/exec_imports/pgx/v4/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/exec_imports/pgx/v4/go/querier.go type Querier (line 11) | type Querier interface FILE: internal/endtoend/testdata/exec_imports/pgx/v4/go/query.sql.go constant bar (line 12) | bar = `-- name: Bar :exec method Bar (line 17) | func (q *Queries) Bar(ctx context.Context) error { constant bars (line 22) | bars = `-- name: Bars :exec method Bars (line 27) | func (q *Queries) Bars(ctx context.Context) error { FILE: internal/endtoend/testdata/exec_imports/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (bar int, bars int[] not null) FILE: internal/endtoend/testdata/exec_imports/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/exec_imports/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/exec_imports/pgx/v5/go/querier.go type Querier (line 11) | type Querier interface FILE: internal/endtoend/testdata/exec_imports/pgx/v5/go/query.sql.go constant bar (line 12) | bar = `-- name: Bar :exec method Bar (line 17) | func (q *Queries) Bar(ctx context.Context) error { constant bars (line 22) | bars = `-- name: Bars :exec method Bars (line 27) | func (q *Queries) Bars(ctx context.Context) error { FILE: internal/endtoend/testdata/exec_imports/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (bar int, bars int[] not null) FILE: internal/endtoend/testdata/exec_imports/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/exec_imports/stdlib/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/exec_imports/stdlib/go/querier.go type Querier (line 11) | type Querier interface FILE: internal/endtoend/testdata/exec_imports/stdlib/go/query.sql.go constant bar (line 12) | bar = `-- name: Bar :exec method Bar (line 17) | func (q *Queries) Bar(ctx context.Context) error { constant bars (line 22) | bars = `-- name: Bars :exec method Bars (line 27) | func (q *Queries) Bars(ctx context.Context) error { FILE: internal/endtoend/testdata/exec_imports/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (bar int, bars int[] not null) FILE: internal/endtoend/testdata/exec_lastid/go_postgresql_stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/exec_lastid/go_postgresql_stdlib/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/exec_lastid/go_postgresql_stdlib/go/querier.go type Querier (line 11) | type Querier interface FILE: internal/endtoend/testdata/exec_lastid/go_postgresql_stdlib/go/query.sql.go constant insertBar (line 12) | insertBar = `-- name: InsertBar :execlastid method InsertBar (line 16) | func (q *Queries) InsertBar(ctx context.Context) (int64, error) { FILE: internal/endtoend/testdata/exec_lastid/go_postgresql_stdlib/schema.sql type bar (line 1) | CREATE TABLE bar (id integer(10) NOT NULL AUTO_INCREMENT PRIMARY KEY) FILE: internal/endtoend/testdata/exec_no_return_struct/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/exec_no_return_struct/postgresql/pgx/go/models.go type Job (line 11) | type Job struct FILE: internal/endtoend/testdata/exec_no_return_struct/postgresql/pgx/go/query.sql.go constant resetTaskRun (line 12) | resetTaskRun = `-- name: ResetTaskRun :exec method ResetTaskRun (line 27) | func (q *Queries) ResetTaskRun(ctx context.Context, taskName string) err... FILE: internal/endtoend/testdata/exec_no_return_struct/postgresql/pgx/schema.sql type job (line 1) | CREATE TABLE IF NOT EXISTS job FILE: internal/endtoend/testdata/exec_result/go_postgresql_pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/exec_result/go_postgresql_pgx/v4/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/exec_result/go_postgresql_pgx/v4/go/querier.go type Querier (line 13) | type Querier interface FILE: internal/endtoend/testdata/exec_result/go_postgresql_pgx/v4/go/query.sql.go constant deleteBarByID (line 14) | deleteBarByID = `-- name: DeleteBarByID :execresult method DeleteBarByID (line 18) | func (q *Queries) DeleteBarByID(ctx context.Context, id int32) (pgconn.C... FILE: internal/endtoend/testdata/exec_result/go_postgresql_pgx/v4/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/exec_result/go_postgresql_pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/exec_result/go_postgresql_pgx/v5/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/exec_result/go_postgresql_pgx/v5/go/querier.go type Querier (line 13) | type Querier interface FILE: internal/endtoend/testdata/exec_result/go_postgresql_pgx/v5/go/query.sql.go constant deleteBarByID (line 14) | deleteBarByID = `-- name: DeleteBarByID :execresult method DeleteBarByID (line 18) | func (q *Queries) DeleteBarByID(ctx context.Context, id int32) (pgconn.C... FILE: internal/endtoend/testdata/exec_result/go_postgresql_pgx/v5/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/exec_result/go_postgresql_stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/exec_result/go_postgresql_stdlib/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/exec_result/go_postgresql_stdlib/go/querier.go type Querier (line 12) | type Querier interface FILE: internal/endtoend/testdata/exec_result/go_postgresql_stdlib/go/query.sql.go constant deleteBarByID (line 13) | deleteBarByID = `-- name: DeleteBarByID :execresult method DeleteBarByID (line 17) | func (q *Queries) DeleteBarByID(ctx context.Context, id int32) (sql.Resu... FILE: internal/endtoend/testdata/exec_result/go_postgresql_stdlib/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/exec_rows/go_postgresql_pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/exec_rows/go_postgresql_pgx/v4/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/exec_rows/go_postgresql_pgx/v4/go/querier.go type Querier (line 11) | type Querier interface FILE: internal/endtoend/testdata/exec_rows/go_postgresql_pgx/v4/go/query.sql.go constant deleteBarByID (line 12) | deleteBarByID = `-- name: DeleteBarByID :execrows method DeleteBarByID (line 16) | func (q *Queries) DeleteBarByID(ctx context.Context, id int32) (int64, e... FILE: internal/endtoend/testdata/exec_rows/go_postgresql_pgx/v4/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/exec_rows/go_postgresql_pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/exec_rows/go_postgresql_pgx/v5/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/exec_rows/go_postgresql_pgx/v5/go/querier.go type Querier (line 11) | type Querier interface FILE: internal/endtoend/testdata/exec_rows/go_postgresql_pgx/v5/go/query.sql.go constant deleteBarByID (line 12) | deleteBarByID = `-- name: DeleteBarByID :execrows method DeleteBarByID (line 16) | func (q *Queries) DeleteBarByID(ctx context.Context, id int32) (int64, e... FILE: internal/endtoend/testdata/exec_rows/go_postgresql_pgx/v5/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/exec_rows/go_postgresql_stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/exec_rows/go_postgresql_stdlib/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/exec_rows/go_postgresql_stdlib/go/querier.go type Querier (line 11) | type Querier interface FILE: internal/endtoend/testdata/exec_rows/go_postgresql_stdlib/go/query.sql.go constant deleteBarByID (line 12) | deleteBarByID = `-- name: DeleteBarByID :execrows method DeleteBarByID (line 16) | func (q *Queries) DeleteBarByID(ctx context.Context, id int32) (int64, e... FILE: internal/endtoend/testdata/exec_rows/go_postgresql_stdlib/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/full_outer_join/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/full_outer_join/sqlite/go/models.go type Author (line 7) | type Author struct type Book (line 12) | type Book struct FILE: internal/endtoend/testdata/full_outer_join/sqlite/go/query.sql.go constant getAuthor (line 13) | getAuthor = `-- name: GetAuthor :one type GetAuthorRow (line 20) | type GetAuthorRow struct method GetAuthor (line 27) | func (q *Queries) GetAuthor(ctx context.Context, id int64) (GetAuthorRow... FILE: internal/endtoend/testdata/full_outer_join/sqlite/schema.sql type authors (line 2) | CREATE TABLE authors ( type books (line 7) | CREATE TABLE books ( FILE: internal/endtoend/testdata/func_aggregate/pganalyze/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/func_aggregate/pganalyze/go/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/func_aggregate/pganalyze/go/query.sql.go constant percentile (line 12) | percentile = `-- name: Percentile :one method Percentile (line 17) | func (q *Queries) Percentile(ctx context.Context) (string, error) { FILE: internal/endtoend/testdata/func_aggregate/pganalyze/schema.sql type authors (line 2) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/func_aggregate/postgresql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/func_aggregate/postgresql/go/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/func_aggregate/postgresql/go/query.sql.go constant percentile (line 12) | percentile = `-- name: Percentile :one method Percentile (line 17) | func (q *Queries) Percentile(ctx context.Context) (interface{}, error) { FILE: internal/endtoend/testdata/func_aggregate/postgresql/schema.sql type authors (line 2) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/func_args/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/func_args/pgx/v4/go/query.sql.go constant makeIntervalDays (line 12) | makeIntervalDays = `-- name: MakeIntervalDays :one method MakeIntervalDays (line 16) | func (q *Queries) MakeIntervalDays(ctx context.Context, dollar_1 int32) ... constant makeIntervalMonths (line 23) | makeIntervalMonths = `-- name: MakeIntervalMonths :one method MakeIntervalMonths (line 27) | func (q *Queries) MakeIntervalMonths(ctx context.Context, months int32) ... constant makeIntervalSecs (line 34) | makeIntervalSecs = `-- name: MakeIntervalSecs :one method MakeIntervalSecs (line 38) | func (q *Queries) MakeIntervalSecs(ctx context.Context, secs float64) (i... constant plus (line 45) | plus = `-- name: Plus :one type PlusParams (line 49) | type PlusParams struct method Plus (line 54) | func (q *Queries) Plus(ctx context.Context, arg PlusParams) (int32, erro... constant tableArgs (line 61) | tableArgs = `-- name: TableArgs :one method TableArgs (line 65) | func (q *Queries) TableArgs(ctx context.Context, x int32) (int32, error) { FILE: internal/endtoend/testdata/func_args/pgx/v4/schema.sql function plus (line 1) | CREATE FUNCTION plus(a integer, b integer) RETURNS integer AS $$ function table_args (line 7) | CREATE FUNCTION table_args(x INT) RETURNS TABLE (y INT) AS 'SELECT x' LA... FILE: internal/endtoend/testdata/func_args/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/func_args/pgx/v5/go/query.sql.go constant makeIntervalDays (line 14) | makeIntervalDays = `-- name: MakeIntervalDays :one method MakeIntervalDays (line 18) | func (q *Queries) MakeIntervalDays(ctx context.Context, dollar_1 int32) ... constant makeIntervalMonths (line 25) | makeIntervalMonths = `-- name: MakeIntervalMonths :one method MakeIntervalMonths (line 29) | func (q *Queries) MakeIntervalMonths(ctx context.Context, months int32) ... constant makeIntervalSecs (line 36) | makeIntervalSecs = `-- name: MakeIntervalSecs :one method MakeIntervalSecs (line 40) | func (q *Queries) MakeIntervalSecs(ctx context.Context, secs float64) (p... constant plus (line 47) | plus = `-- name: Plus :one type PlusParams (line 51) | type PlusParams struct method Plus (line 56) | func (q *Queries) Plus(ctx context.Context, arg PlusParams) (int32, erro... constant tableArgs (line 63) | tableArgs = `-- name: TableArgs :one method TableArgs (line 67) | func (q *Queries) TableArgs(ctx context.Context, x int32) (int32, error) { FILE: internal/endtoend/testdata/func_args/pgx/v5/schema.sql function plus (line 1) | CREATE FUNCTION plus(a integer, b integer) RETURNS integer AS $$ function table_args (line 7) | CREATE FUNCTION table_args(x INT) RETURNS TABLE (y INT) AS 'SELECT x' LA... FILE: internal/endtoend/testdata/func_args/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/func_args/stdlib/go/query.sql.go constant makeIntervalDays (line 12) | makeIntervalDays = `-- name: MakeIntervalDays :one method MakeIntervalDays (line 16) | func (q *Queries) MakeIntervalDays(ctx context.Context, dollar_1 int32) ... constant makeIntervalMonths (line 23) | makeIntervalMonths = `-- name: MakeIntervalMonths :one method MakeIntervalMonths (line 27) | func (q *Queries) MakeIntervalMonths(ctx context.Context, months int32) ... constant makeIntervalSecs (line 34) | makeIntervalSecs = `-- name: MakeIntervalSecs :one method MakeIntervalSecs (line 38) | func (q *Queries) MakeIntervalSecs(ctx context.Context, secs float64) (i... constant plus (line 45) | plus = `-- name: Plus :one type PlusParams (line 49) | type PlusParams struct method Plus (line 54) | func (q *Queries) Plus(ctx context.Context, arg PlusParams) (int32, erro... constant tableArgs (line 61) | tableArgs = `-- name: TableArgs :one method TableArgs (line 65) | func (q *Queries) TableArgs(ctx context.Context, x int32) (int32, error) { FILE: internal/endtoend/testdata/func_args/stdlib/schema.sql function plus (line 1) | CREATE FUNCTION plus(a integer, b integer) RETURNS integer AS $$ function table_args (line 7) | CREATE FUNCTION table_args(x INT) RETURNS TABLE (y INT) AS 'SELECT x' LA... FILE: internal/endtoend/testdata/func_args_typecast/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/func_args_typecast/pgx/v4/go/query.sql.go constant plusPositionalCast (line 12) | plusPositionalCast = `-- name: PlusPositionalCast :one type PlusPositionalCastParams (line 16) | type PlusPositionalCastParams struct method PlusPositionalCast (line 21) | func (q *Queries) PlusPositionalCast(ctx context.Context, arg PlusPositi... FILE: internal/endtoend/testdata/func_args_typecast/pgx/v4/schema.sql function plus (line 1) | CREATE FUNCTION plus(a integer, b integer) RETURNS integer AS $$ FILE: internal/endtoend/testdata/func_args_typecast/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/func_args_typecast/pgx/v5/go/query.sql.go constant plusPositionalCast (line 12) | plusPositionalCast = `-- name: PlusPositionalCast :one type PlusPositionalCastParams (line 16) | type PlusPositionalCastParams struct method PlusPositionalCast (line 21) | func (q *Queries) PlusPositionalCast(ctx context.Context, arg PlusPositi... FILE: internal/endtoend/testdata/func_args_typecast/pgx/v5/schema.sql function plus (line 1) | CREATE FUNCTION plus(a integer, b integer) RETURNS integer AS $$ FILE: internal/endtoend/testdata/func_args_typecast/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/func_args_typecast/stdlib/go/query.sql.go constant plusPositionalCast (line 12) | plusPositionalCast = `-- name: PlusPositionalCast :one type PlusPositionalCastParams (line 16) | type PlusPositionalCastParams struct method PlusPositionalCast (line 21) | func (q *Queries) PlusPositionalCast(ctx context.Context, arg PlusPositi... FILE: internal/endtoend/testdata/func_args_typecast/stdlib/schema.sql function plus (line 1) | CREATE FUNCTION plus(a integer, b integer) RETURNS integer AS $$ FILE: internal/endtoend/testdata/func_call_cast/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/func_call_cast/mysql/go/query.sql.go constant demo (line 12) | demo = `-- name: Demo :one method Demo (line 16) | func (q *Queries) Demo(ctx context.Context) (int64, error) { FILE: internal/endtoend/testdata/func_call_cast/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/func_call_cast/postgresql/pgx/v4/go/query.sql.go constant demo (line 14) | demo = `-- name: Demo :one method Demo (line 18) | func (q *Queries) Demo(ctx context.Context, name string) (uuid.UUID, err... FILE: internal/endtoend/testdata/func_call_cast/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/func_call_cast/postgresql/pgx/v5/go/query.sql.go constant demo (line 14) | demo = `-- name: Demo :one method Demo (line 18) | func (q *Queries) Demo(ctx context.Context, name string) (pgtype.UUID, e... FILE: internal/endtoend/testdata/func_call_cast/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/func_call_cast/postgresql/stdlib/go/query.sql.go constant demo (line 14) | demo = `-- name: Demo :one method Demo (line 18) | func (q *Queries) Demo(ctx context.Context, name string) (uuid.UUID, err... FILE: internal/endtoend/testdata/func_call_cast/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/func_call_cast/sqlite/go/query.sql.go constant demo (line 12) | demo = `-- name: Demo :one method Demo (line 16) | func (q *Queries) Demo(ctx context.Context) ([]byte, error) { FILE: internal/endtoend/testdata/func_match_types/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/func_match_types/mysql/go/models.go type Book (line 7) | type Book struct FILE: internal/endtoend/testdata/func_match_types/mysql/go/query.sql.go constant authorPages (line 12) | authorPages = `-- name: AuthorPages :many type AuthorPagesRow (line 18) | type AuthorPagesRow struct method AuthorPages (line 24) | func (q *Queries) AuthorPages(ctx context.Context) ([]AuthorPagesRow, er... FILE: internal/endtoend/testdata/func_match_types/mysql/schema.sql type books (line 1) | CREATE TABLE books ( FILE: internal/endtoend/testdata/func_match_types/postgresql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/func_match_types/postgresql/go/models.go type Book (line 7) | type Book struct FILE: internal/endtoend/testdata/func_match_types/postgresql/go/query.sql.go constant authorPages (line 12) | authorPages = `-- name: AuthorPages :many type AuthorPagesRow (line 18) | type AuthorPagesRow struct method AuthorPages (line 24) | func (q *Queries) AuthorPages(ctx context.Context) ([]AuthorPagesRow, er... FILE: internal/endtoend/testdata/func_match_types/postgresql/schema.sql type books (line 1) | CREATE TABLE books ( FILE: internal/endtoend/testdata/func_match_types/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/func_match_types/sqlite/go/models.go type Book (line 7) | type Book struct FILE: internal/endtoend/testdata/func_match_types/sqlite/go/query.sql.go constant authorPages (line 13) | authorPages = `-- name: AuthorPages :many type AuthorPagesRow (line 19) | type AuthorPagesRow struct method AuthorPages (line 25) | func (q *Queries) AuthorPages(ctx context.Context) ([]AuthorPagesRow, er... FILE: internal/endtoend/testdata/func_match_types/sqlite/schema.sql type books (line 1) | CREATE TABLE books ( FILE: internal/endtoend/testdata/func_out_param/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/func_out_param/pgx/go/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/func_out_param/pgx/go/query.sql.go constant createAuthor (line 14) | createAuthor = `-- name: CreateAuthor :one type CreateAuthorParams (line 20) | type CreateAuthorParams struct method CreateAuthor (line 25) | func (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorPara... FILE: internal/endtoend/testdata/func_out_param/pgx/schema.sql type authors (line 2) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/func_return_date/postgresql/pganalyze/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/func_return_date/postgresql/pganalyze/go/query.sql.go constant getDate (line 14) | getDate = `-- name: GetDate :one method GetDate (line 18) | func (q *Queries) GetDate(ctx context.Context) (pgtype.Timestamptz, erro... FILE: internal/endtoend/testdata/func_return_date/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/func_return_date/postgresql/pgx/v5/go/query.sql.go constant getDate (line 12) | getDate = `-- name: GetDate :one type GetDateRow (line 16) | type GetDateRow struct method GetDate (line 19) | func (q *Queries) GetDate(ctx context.Context) (GetDateRow, error) { FILE: internal/endtoend/testdata/func_return_date/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/func_return_date/postgresql/stdlib/go/query.sql.go constant getDate (line 12) | getDate = `-- name: GetDate :one type GetDateRow (line 16) | type GetDateRow struct method GetDate (line 19) | func (q *Queries) GetDate(ctx context.Context) (GetDateRow, error) { FILE: internal/endtoend/testdata/func_return_record/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/func_return_record/postgresql/pgx/go/models.go type MyTable (line 7) | type MyTable struct FILE: internal/endtoend/testdata/func_return_record/postgresql/pgx/go/query.sql.go constant getData (line 14) | getData = `-- name: GetData :one type GetDataRow (line 20) | type GetDataRow struct method GetData (line 25) | func (q *Queries) GetData(ctx context.Context) (GetDataRow, error) { FILE: internal/endtoend/testdata/func_return_record/postgresql/pgx/schema.sql type my_table (line 1) | CREATE TABLE my_table ( FILE: internal/endtoend/testdata/func_return_series/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/func_return_series/postgresql/pgx/v4/go/query.sql.go constant generateSeries (line 12) | generateSeries = `-- name: GenerateSeries :many type GenerateSeriesParams (line 18) | type GenerateSeriesParams struct method GenerateSeries (line 23) | func (q *Queries) GenerateSeries(ctx context.Context, arg GenerateSeries... FILE: internal/endtoend/testdata/func_return_series/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/func_return_series/postgresql/pgx/v5/go/query.sql.go constant generateSeries (line 12) | generateSeries = `-- name: GenerateSeries :many type GenerateSeriesParams (line 18) | type GenerateSeriesParams struct method GenerateSeries (line 23) | func (q *Queries) GenerateSeries(ctx context.Context, arg GenerateSeries... FILE: internal/endtoend/testdata/func_return_series/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/func_return_series/postgresql/stdlib/go/query.sql.go constant generateSeries (line 12) | generateSeries = `-- name: GenerateSeries :many type GenerateSeriesParams (line 18) | type GenerateSeriesParams struct method GenerateSeries (line 23) | func (q *Queries) GenerateSeries(ctx context.Context, arg GenerateSeries... FILE: internal/endtoend/testdata/func_return_table/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/func_return_table/postgresql/pgx/go/models.go type Account (line 7) | type Account struct FILE: internal/endtoend/testdata/func_return_table/postgresql/pgx/go/query.sql.go constant foo (line 14) | foo = `-- name: Foo :one method Foo (line 18) | func (q *Queries) Foo(ctx context.Context) (pgtype.Int4, error) { FILE: internal/endtoend/testdata/func_return_table/postgresql/pgx/schema.sql type accounts (line 1) | CREATE TABLE accounts ( function register_account (line 9) | CREATE OR REPLACE FUNCTION register_account( FILE: internal/endtoend/testdata/func_return_table_columns/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/func_return_table_columns/postgresql/pgx/go/models.go type Blog (line 7) | type Blog struct FILE: internal/endtoend/testdata/func_return_table_columns/postgresql/pgx/go/query.sql.go constant testFuncSelectBlog (line 14) | testFuncSelectBlog = `-- name: TestFuncSelectBlog :many type TestFuncSelectBlogRow (line 18) | type TestFuncSelectBlogRow struct method TestFuncSelectBlog (line 23) | func (q *Queries) TestFuncSelectBlog(ctx context.Context, pID int32) ([]... FILE: internal/endtoend/testdata/func_return_table_columns/postgresql/pgx/schema.sql type blog (line 1) | create table blog ( function test_select_blog (line 6) | create function test_select_blog(in p_id int) FILE: internal/endtoend/testdata/func_star_expansion/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/func_star_expansion/postgresql/pgx/go/query.sql.go constant testFuncGetTime (line 14) | testFuncGetTime = `-- name: TestFuncGetTime :one method TestFuncGetTime (line 18) | func (q *Queries) TestFuncGetTime(ctx context.Context) (pgtype.Timestamp... constant testFuncSelectBlog (line 25) | testFuncSelectBlog = `-- name: TestFuncSelectBlog :one method TestFuncSelectBlog (line 29) | func (q *Queries) TestFuncSelectBlog(ctx context.Context, pID int32) (in... constant testFuncSelectString (line 36) | testFuncSelectString = `-- name: TestFuncSelectString :one method TestFuncSelectString (line 40) | func (q *Queries) TestFuncSelectString(ctx context.Context, pString stri... FILE: internal/endtoend/testdata/func_star_expansion/postgresql/pgx/schema.sql function test_func_get_time (line 1) | create function test_func_get_time () function test_func_select_string (line 8) | create function test_func_select_string (in p_string text) function test_func_select_blog (line 15) | create function test_func_select_blog(in p_id int) FILE: internal/endtoend/testdata/func_variadic/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/func_variadic/postgresql/stdlib/go/models.go type Test (line 12) | type Test struct FILE: internal/endtoend/testdata/func_variadic/postgresql/stdlib/go/query.sql.go constant updateJ (line 13) | updateJ = `-- name: UpdateJ :exec type UpdateJParams (line 22) | type UpdateJParams struct method UpdateJ (line 30) | func (q *Queries) UpdateJ(ctx context.Context, arg UpdateJParams) error { FILE: internal/endtoend/testdata/func_variadic/postgresql/stdlib/schema.sql type test (line 1) | CREATE TABLE test ( FILE: internal/endtoend/testdata/geometric/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/geometric/pgx/v4/go/models.go type TestTable (line 11) | type TestTable struct FILE: internal/endtoend/testdata/geometric/pgx/v4/go/query.sql.go constant selectTest (line 12) | selectTest = `-- name: SelectTest :many method SelectTest (line 17) | func (q *Queries) SelectTest(ctx context.Context) ([]TestTable, error) { FILE: internal/endtoend/testdata/geometric/pgx/v4/schema.sql type test_table (line 1) | CREATE TABLE test_table FILE: internal/endtoend/testdata/geometric/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/geometric/pgx/v5/go/models.go type TestTable (line 11) | type TestTable struct FILE: internal/endtoend/testdata/geometric/pgx/v5/go/query.sql.go constant selectTest (line 12) | selectTest = `-- name: SelectTest :many method SelectTest (line 17) | func (q *Queries) SelectTest(ctx context.Context) ([]TestTable, error) { FILE: internal/endtoend/testdata/geometric/pgx/v5/schema.sql type test_table (line 1) | CREATE TABLE test_table FILE: internal/endtoend/testdata/golang_initialisms_empty/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/golang_initialisms_empty/db/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/golang_initialisms_empty/db/query.sql.go constant selectFoo (line 13) | selectFoo = `-- name: SelectFoo :many method SelectFoo (line 17) | func (q *Queries) SelectFoo(ctx context.Context) ([]sql.NullString, erro... FILE: internal/endtoend/testdata/golang_initialisms_empty/schema.sql type foo (line 1) | CREATE TABLE foo( FILE: internal/endtoend/testdata/golang_initialisms_url/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/golang_initialisms_url/db/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/golang_initialisms_url/db/query.sql.go constant selectFoo (line 12) | selectFoo = `-- name: SelectFoo :many method SelectFoo (line 16) | func (q *Queries) SelectFoo(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/golang_initialisms_url/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/golang_invalid_sql_driver/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/golang_invalid_sql_driver/db/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/golang_invalid_sql_driver/db/query.sql.go constant selectFoo (line 13) | selectFoo = `-- name: SelectFoo :many method SelectFoo (line 17) | func (q *Queries) SelectFoo(ctx context.Context) ([]sql.NullString, erro... FILE: internal/endtoend/testdata/golang_invalid_sql_driver/schema.sql type foo (line 1) | CREATE TABLE foo( FILE: internal/endtoend/testdata/golang_invalid_sql_package/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/golang_invalid_sql_package/db/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/golang_invalid_sql_package/db/query.sql.go constant selectFoo (line 13) | selectFoo = `-- name: SelectFoo :many method SelectFoo (line 17) | func (q *Queries) SelectFoo(ctx context.Context) ([]sql.NullString, erro... FILE: internal/endtoend/testdata/golang_invalid_sql_package/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/having/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/having/mysql/go/models.go type Weather (line 7) | type Weather struct FILE: internal/endtoend/testdata/having/mysql/go/query.sql.go constant coldCities (line 12) | coldCities = `-- name: ColdCities :many method ColdCities (line 19) | func (q *Queries) ColdCities(ctx context.Context, tempLo int32) ([]strin... FILE: internal/endtoend/testdata/having/mysql/schema.sql type weather (line 1) | CREATE TABLE weather ( FILE: internal/endtoend/testdata/having/postgresql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/having/postgresql/go/models.go type Weather (line 7) | type Weather struct FILE: internal/endtoend/testdata/having/postgresql/go/query.sql.go constant coldCities (line 12) | coldCities = `-- name: ColdCities :many method ColdCities (line 19) | func (q *Queries) ColdCities(ctx context.Context, tempLo int32) ([]strin... FILE: internal/endtoend/testdata/having/postgresql/schema.sql type weather (line 1) | CREATE TABLE weather ( FILE: internal/endtoend/testdata/hstore/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/hstore/pgx/v4/go/hstore.sql.go constant listBar (line 14) | listBar = `-- name: ListBar :many method ListBar (line 18) | func (q *Queries) ListBar(ctx context.Context) ([]pgtype.Hstore, error) { constant listBaz (line 38) | listBaz = `-- name: ListBaz :many method ListBaz (line 42) | func (q *Queries) ListBaz(ctx context.Context) ([]pgtype.Hstore, error) { FILE: internal/endtoend/testdata/hstore/pgx/v4/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/hstore/pgx/v4/hstore.sql type foo (line 3) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/hstore/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/hstore/pgx/v5/go/hstore.sql.go constant listBar (line 14) | listBar = `-- name: ListBar :many method ListBar (line 18) | func (q *Queries) ListBar(ctx context.Context) ([]pgtype.Hstore, error) { constant listBaz (line 38) | listBaz = `-- name: ListBaz :many method ListBaz (line 42) | func (q *Queries) ListBaz(ctx context.Context) ([]pgtype.Hstore, error) { FILE: internal/endtoend/testdata/hstore/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/hstore/pgx/v5/hstore.sql type foo (line 3) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/hstore/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/hstore/stdlib/go/hstore.sql.go constant listBar (line 12) | listBar = `-- name: ListBar :many method ListBar (line 16) | func (q *Queries) ListBar(ctx context.Context) ([]interface{}, error) { constant listBaz (line 39) | listBaz = `-- name: ListBaz :many method ListBaz (line 43) | func (q *Queries) ListBaz(ctx context.Context) ([]interface{}, error) { FILE: internal/endtoend/testdata/hstore/stdlib/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/hstore/stdlib/hstore.sql type foo (line 3) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/identical_tables/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/identical_tables/mysql/go/models.go type Bar (line 7) | type Bar struct type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/identical_tables/mysql/go/query.sql.go constant identicalTable (line 12) | identicalTable = `-- name: IdenticalTable :many method IdenticalTable (line 16) | func (q *Queries) IdenticalTable(ctx context.Context) ([]string, error) { FILE: internal/endtoend/testdata/identical_tables/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (id text not null) type bar (line 2) | CREATE TABLE bar (id text not null) FILE: internal/endtoend/testdata/identical_tables/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/identical_tables/postgresql/pgx/v4/go/models.go type Bar (line 7) | type Bar struct type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/identical_tables/postgresql/pgx/v4/go/query.sql.go constant identicalTable (line 12) | identicalTable = `-- name: IdenticalTable :many method IdenticalTable (line 16) | func (q *Queries) IdenticalTable(ctx context.Context) ([]string, error) { FILE: internal/endtoend/testdata/identical_tables/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (id text not null) type bar (line 2) | CREATE TABLE bar (id text not null) FILE: internal/endtoend/testdata/identical_tables/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/identical_tables/postgresql/pgx/v5/go/models.go type Bar (line 7) | type Bar struct type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/identical_tables/postgresql/pgx/v5/go/query.sql.go constant identicalTable (line 12) | identicalTable = `-- name: IdenticalTable :many method IdenticalTable (line 16) | func (q *Queries) IdenticalTable(ctx context.Context) ([]string, error) { FILE: internal/endtoend/testdata/identical_tables/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (id text not null) type bar (line 2) | CREATE TABLE bar (id text not null) FILE: internal/endtoend/testdata/identical_tables/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/identical_tables/postgresql/stdlib/go/models.go type Bar (line 7) | type Bar struct type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/identical_tables/postgresql/stdlib/go/query.sql.go constant identicalTable (line 12) | identicalTable = `-- name: IdenticalTable :many method IdenticalTable (line 16) | func (q *Queries) IdenticalTable(ctx context.Context) ([]string, error) { FILE: internal/endtoend/testdata/identical_tables/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (id text not null) type bar (line 2) | CREATE TABLE bar (id text not null) FILE: internal/endtoend/testdata/identical_tables/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/identical_tables/sqlite/go/models.go type Bar (line 7) | type Bar struct type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/identical_tables/sqlite/go/query.sql.go constant identicalTable (line 12) | identicalTable = `-- name: IdenticalTable :many method IdenticalTable (line 16) | func (q *Queries) IdenticalTable(ctx context.Context) ([]string, error) { FILE: internal/endtoend/testdata/identical_tables/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo (id text not null) type bar (line 2) | CREATE TABLE bar (id text not null) FILE: internal/endtoend/testdata/identifier_case_sensitivity/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/identifier_case_sensitivity/db/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/identifier_case_sensitivity/db/query.sql.go constant createAuthor (line 13) | createAuthor = `-- name: CreateAuthor :execresult type CreateAuthorParams (line 21) | type CreateAuthorParams struct method CreateAuthor (line 26) | func (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorPara... constant deleteAuthor (line 30) | deleteAuthor = `-- name: DeleteAuthor :exec method DeleteAuthor (line 35) | func (q *Queries) DeleteAuthor(ctx context.Context, id int64) error { constant getAuthor (line 40) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 45) | func (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, erro... constant listAuthors (line 52) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 57) | func (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) { FILE: internal/endtoend/testdata/identifier_case_sensitivity/schema.sql type Authors (line 1) | CREATE TABLE Authors ( FILE: internal/endtoend/testdata/identifier_dollar_sign/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/identifier_dollar_sign/db/query.sql.go constant fn (line 12) | fn = `-- name: Fn :one method Fn (line 16) | func (q *Queries) Fn(ctx context.Context) (int32, error) { FILE: internal/endtoend/testdata/identifier_dollar_sign/schema.sql function f (line 1) | CREATE FUNCTION f$n() RETURNS integer FILE: internal/endtoend/testdata/in_union/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/in_union/mysql/go/models.go type Author (line 11) | type Author struct type Book1 (line 17) | type Book1 struct type Book2 (line 22) | type Book2 struct FILE: internal/endtoend/testdata/in_union/mysql/go/query.sql.go constant getAuthors (line 12) | getAuthors = `-- name: GetAuthors :many method GetAuthors (line 17) | func (q *Queries) GetAuthors(ctx context.Context) ([]Author, error) { FILE: internal/endtoend/testdata/in_union/mysql/schema.sql type authors (line 1) | CREATE TABLE authors ( type book1 (line 6) | CREATE TABLE book1 ( type book2 (line 11) | CREATE TABLE book2 ( FILE: internal/endtoend/testdata/inflection/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/inflection/mysql/go/models.go type Calorie (line 7) | type Calorie struct type Campus (line 11) | type Campus struct type ProductMetadatum (line 15) | type ProductMetadatum struct type ProductMetum (line 19) | type ProductMetum struct type Student (line 23) | type Student struct FILE: internal/endtoend/testdata/inflection/mysql/go/query.sql.go constant getProductMetadata (line 12) | getProductMetadata = `-- name: GetProductMetadata :many method GetProductMetadata (line 16) | func (q *Queries) GetProductMetadata(ctx context.Context) ([]string, err... constant listCalories (line 39) | listCalories = `-- name: ListCalories :many method ListCalories (line 43) | func (q *Queries) ListCalories(ctx context.Context) ([]string, error) { constant listCampuses (line 66) | listCampuses = `-- name: ListCampuses :many method ListCampuses (line 70) | func (q *Queries) ListCampuses(ctx context.Context) ([]string, error) { constant listMetadata (line 93) | listMetadata = `-- name: ListMetadata :many method ListMetadata (line 97) | func (q *Queries) ListMetadata(ctx context.Context) ([]string, error) { constant listStudents (line 120) | listStudents = `-- name: ListStudents :many method ListStudents (line 124) | func (q *Queries) ListStudents(ctx context.Context) ([]string, error) { FILE: internal/endtoend/testdata/inflection/mysql/schema.sql type campus (line 1) | CREATE TABLE campus (id text not null) type students (line 2) | CREATE TABLE students (id text not null) type product_meta (line 3) | CREATE TABLE product_meta (id text not null) type calories (line 4) | CREATE TABLE calories (id text not null) type product_metadata (line 5) | CREATE TABLE product_metadata (id text not null) FILE: internal/endtoend/testdata/inflection/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/inflection/postgresql/pgx/v4/go/models.go type Calorie (line 7) | type Calorie struct type Campus (line 11) | type Campus struct type ProductMetadatum (line 15) | type ProductMetadatum struct type ProductMetum (line 19) | type ProductMetum struct type Student (line 23) | type Student struct FILE: internal/endtoend/testdata/inflection/postgresql/pgx/v4/go/query.sql.go constant getProductMetadata (line 12) | getProductMetadata = `-- name: GetProductMetadata :many method GetProductMetadata (line 16) | func (q *Queries) GetProductMetadata(ctx context.Context) ([]string, err... constant listCalories (line 36) | listCalories = `-- name: ListCalories :many method ListCalories (line 40) | func (q *Queries) ListCalories(ctx context.Context) ([]string, error) { constant listCampuses (line 60) | listCampuses = `-- name: ListCampuses :many method ListCampuses (line 64) | func (q *Queries) ListCampuses(ctx context.Context) ([]string, error) { constant listMetadata (line 84) | listMetadata = `-- name: ListMetadata :many method ListMetadata (line 88) | func (q *Queries) ListMetadata(ctx context.Context) ([]string, error) { constant listStudents (line 108) | listStudents = `-- name: ListStudents :many method ListStudents (line 112) | func (q *Queries) ListStudents(ctx context.Context) ([]string, error) { FILE: internal/endtoend/testdata/inflection/postgresql/pgx/v4/schema.sql type campus (line 1) | CREATE TABLE campus (id text not null) type students (line 2) | CREATE TABLE students (id text not null) type product_meta (line 3) | CREATE TABLE product_meta (id text not null) type calories (line 4) | CREATE TABLE calories (id text not null) type product_metadata (line 5) | CREATE TABLE product_metadata (id text not null) FILE: internal/endtoend/testdata/inflection/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/inflection/postgresql/pgx/v5/go/models.go type Calorie (line 7) | type Calorie struct type Campus (line 11) | type Campus struct type ProductMetadatum (line 15) | type ProductMetadatum struct type ProductMetum (line 19) | type ProductMetum struct type Student (line 23) | type Student struct FILE: internal/endtoend/testdata/inflection/postgresql/pgx/v5/go/query.sql.go constant getProductMetadata (line 12) | getProductMetadata = `-- name: GetProductMetadata :many method GetProductMetadata (line 16) | func (q *Queries) GetProductMetadata(ctx context.Context) ([]string, err... constant listCalories (line 36) | listCalories = `-- name: ListCalories :many method ListCalories (line 40) | func (q *Queries) ListCalories(ctx context.Context) ([]string, error) { constant listCampuses (line 60) | listCampuses = `-- name: ListCampuses :many method ListCampuses (line 64) | func (q *Queries) ListCampuses(ctx context.Context) ([]string, error) { constant listMetadata (line 84) | listMetadata = `-- name: ListMetadata :many method ListMetadata (line 88) | func (q *Queries) ListMetadata(ctx context.Context) ([]string, error) { constant listStudents (line 108) | listStudents = `-- name: ListStudents :many method ListStudents (line 112) | func (q *Queries) ListStudents(ctx context.Context) ([]string, error) { FILE: internal/endtoend/testdata/inflection/postgresql/pgx/v5/schema.sql type campus (line 1) | CREATE TABLE campus (id text not null) type students (line 2) | CREATE TABLE students (id text not null) type product_meta (line 3) | CREATE TABLE product_meta (id text not null) type calories (line 4) | CREATE TABLE calories (id text not null) type product_metadata (line 5) | CREATE TABLE product_metadata (id text not null) FILE: internal/endtoend/testdata/inflection/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/inflection/postgresql/stdlib/go/models.go type Calorie (line 7) | type Calorie struct type Campus (line 11) | type Campus struct type ProductMetadatum (line 15) | type ProductMetadatum struct type ProductMetum (line 19) | type ProductMetum struct type Student (line 23) | type Student struct FILE: internal/endtoend/testdata/inflection/postgresql/stdlib/go/query.sql.go constant getProductMetadata (line 12) | getProductMetadata = `-- name: GetProductMetadata :many method GetProductMetadata (line 16) | func (q *Queries) GetProductMetadata(ctx context.Context) ([]string, err... constant listCalories (line 39) | listCalories = `-- name: ListCalories :many method ListCalories (line 43) | func (q *Queries) ListCalories(ctx context.Context) ([]string, error) { constant listCampuses (line 66) | listCampuses = `-- name: ListCampuses :many method ListCampuses (line 70) | func (q *Queries) ListCampuses(ctx context.Context) ([]string, error) { constant listMetadata (line 93) | listMetadata = `-- name: ListMetadata :many method ListMetadata (line 97) | func (q *Queries) ListMetadata(ctx context.Context) ([]string, error) { constant listStudents (line 120) | listStudents = `-- name: ListStudents :many method ListStudents (line 124) | func (q *Queries) ListStudents(ctx context.Context) ([]string, error) { FILE: internal/endtoend/testdata/inflection/postgresql/stdlib/schema.sql type campus (line 1) | CREATE TABLE campus (id text not null) type students (line 2) | CREATE TABLE students (id text not null) type product_meta (line 3) | CREATE TABLE product_meta (id text not null) type calories (line 4) | CREATE TABLE calories (id text not null) type product_metadata (line 5) | CREATE TABLE product_metadata (id text not null) FILE: internal/endtoend/testdata/inflection/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/inflection/sqlite/go/models.go type Calorie (line 7) | type Calorie struct type Campus (line 11) | type Campus struct type ProductMetadatum (line 15) | type ProductMetadatum struct type ProductMetum (line 19) | type ProductMetum struct type Student (line 23) | type Student struct FILE: internal/endtoend/testdata/inflection/sqlite/go/query.sql.go constant getProductMetadata (line 12) | getProductMetadata = `-- name: GetProductMetadata :many method GetProductMetadata (line 16) | func (q *Queries) GetProductMetadata(ctx context.Context) ([]string, err... constant listCalories (line 39) | listCalories = `-- name: ListCalories :many method ListCalories (line 43) | func (q *Queries) ListCalories(ctx context.Context) ([]string, error) { constant listCampuses (line 66) | listCampuses = `-- name: ListCampuses :many method ListCampuses (line 70) | func (q *Queries) ListCampuses(ctx context.Context) ([]string, error) { constant listMetadata (line 93) | listMetadata = `-- name: ListMetadata :many method ListMetadata (line 97) | func (q *Queries) ListMetadata(ctx context.Context) ([]string, error) { constant listStudents (line 120) | listStudents = `-- name: ListStudents :many method ListStudents (line 124) | func (q *Queries) ListStudents(ctx context.Context) ([]string, error) { FILE: internal/endtoend/testdata/inflection/sqlite/schema.sql type campus (line 1) | CREATE TABLE campus (id text not null) type students (line 2) | CREATE TABLE students (id text not null) type product_meta (line 3) | CREATE TABLE product_meta (id text not null) type calories (line 4) | CREATE TABLE calories (id text not null) type product_metadata (line 5) | CREATE TABLE product_metadata (id text not null) FILE: internal/endtoend/testdata/inflection_exclude_table_names/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/inflection_exclude_table_names/postgresql/pgx/v4/go/models.go type Bar (line 7) | type Bar struct type Exclusions (line 12) | type Exclusions struct type MyData (line 17) | type MyData struct FILE: internal/endtoend/testdata/inflection_exclude_table_names/postgresql/pgx/v4/go/query.sql.go constant deleteBarByID (line 12) | deleteBarByID = `-- name: DeleteBarByID :one method DeleteBarByID (line 16) | func (q *Queries) DeleteBarByID(ctx context.Context, id int32) (Bar, err... constant deleteExclusionByID (line 23) | deleteExclusionByID = `-- name: DeleteExclusionByID :one method DeleteExclusionByID (line 27) | func (q *Queries) DeleteExclusionByID(ctx context.Context, id int32) (Ex... constant deleteMyDataByID (line 34) | deleteMyDataByID = `-- name: DeleteMyDataByID :one method DeleteMyDataByID (line 38) | func (q *Queries) DeleteMyDataByID(ctx context.Context, id int32) (MyDat... FILE: internal/endtoend/testdata/inflection_exclude_table_names/postgresql/pgx/v4/schema.sql type bars (line 1) | CREATE TABLE bars (id serial not null, name text not null, primary key (... type my_data (line 2) | CREATE TABLE my_data (id serial not null, name text not null, primary ke... type exclusions (line 3) | CREATE TABLE exclusions (id serial not null, name text not null, primary... FILE: internal/endtoend/testdata/inflection_exclude_table_names/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/inflection_exclude_table_names/postgresql/pgx/v5/go/models.go type Bar (line 7) | type Bar struct type Exclusions (line 12) | type Exclusions struct type MyData (line 17) | type MyData struct FILE: internal/endtoend/testdata/inflection_exclude_table_names/postgresql/pgx/v5/go/query.sql.go constant deleteBarByID (line 12) | deleteBarByID = `-- name: DeleteBarByID :one method DeleteBarByID (line 16) | func (q *Queries) DeleteBarByID(ctx context.Context, id int32) (Bar, err... constant deleteExclusionByID (line 23) | deleteExclusionByID = `-- name: DeleteExclusionByID :one method DeleteExclusionByID (line 27) | func (q *Queries) DeleteExclusionByID(ctx context.Context, id int32) (Ex... constant deleteMyDataByID (line 34) | deleteMyDataByID = `-- name: DeleteMyDataByID :one method DeleteMyDataByID (line 38) | func (q *Queries) DeleteMyDataByID(ctx context.Context, id int32) (MyDat... FILE: internal/endtoend/testdata/inflection_exclude_table_names/postgresql/pgx/v5/schema.sql type bars (line 1) | CREATE TABLE bars (id serial not null, name text not null, primary key (... type my_data (line 2) | CREATE TABLE my_data (id serial not null, name text not null, primary ke... type exclusions (line 3) | CREATE TABLE exclusions (id serial not null, name text not null, primary... FILE: internal/endtoend/testdata/insert_cte/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/insert_cte/pgx/v4/go/models.go type Td3Code (line 12) | type Td3Code struct type Td3TestCode (line 23) | type Td3TestCode struct FILE: internal/endtoend/testdata/insert_cte/pgx/v4/go/query.sql.go constant insertCode (line 13) | insertCode = `-- name: InsertCode :one type InsertCodeParams (line 26) | type InsertCodeParams struct method InsertCode (line 33) | func (q *Queries) InsertCode(ctx context.Context, arg InsertCodeParams) ... FILE: internal/endtoend/testdata/insert_cte/pgx/v4/schema.sql type td3 (line 6) | CREATE TABLE td3.codes ( type td3 (line 19) | CREATE TABLE td3.test_codes ( FILE: internal/endtoend/testdata/insert_cte/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/insert_cte/pgx/v5/go/models.go type Td3Code (line 11) | type Td3Code struct type Td3TestCode (line 22) | type Td3TestCode struct FILE: internal/endtoend/testdata/insert_cte/pgx/v5/go/query.sql.go constant insertCode (line 14) | insertCode = `-- name: InsertCode :one type InsertCodeParams (line 27) | type InsertCodeParams struct method InsertCode (line 34) | func (q *Queries) InsertCode(ctx context.Context, arg InsertCodeParams) ... FILE: internal/endtoend/testdata/insert_cte/pgx/v5/schema.sql type td3 (line 6) | CREATE TABLE td3.codes ( type td3 (line 19) | CREATE TABLE td3.test_codes ( FILE: internal/endtoend/testdata/insert_cte/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/insert_cte/stdlib/go/models.go type Td3Code (line 12) | type Td3Code struct type Td3TestCode (line 23) | type Td3TestCode struct FILE: internal/endtoend/testdata/insert_cte/stdlib/go/query.sql.go constant insertCode (line 13) | insertCode = `-- name: InsertCode :one type InsertCodeParams (line 26) | type InsertCodeParams struct method InsertCode (line 33) | func (q *Queries) InsertCode(ctx context.Context, arg InsertCodeParams) ... FILE: internal/endtoend/testdata/insert_cte/stdlib/schema.sql type td3 (line 6) | CREATE TABLE td3.codes ( type td3 (line 19) | CREATE TABLE td3.test_codes ( FILE: internal/endtoend/testdata/insert_default_values/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/insert_default_values/sqlite/go/models.go type Workspace (line 7) | type Workspace struct FILE: internal/endtoend/testdata/insert_default_values/sqlite/go/query.sql.go constant insertWorkspace (line 12) | insertWorkspace = `-- name: InsertWorkspace :exec method InsertWorkspace (line 16) | func (q *Queries) InsertWorkspace(ctx context.Context) error { FILE: internal/endtoend/testdata/insert_default_values/sqlite/schema.sql type workspace (line 1) | CREATE TABLE workspace ( FILE: internal/endtoend/testdata/insert_select/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/insert_select/mysql/go/models.go type Bar (line 7) | type Bar struct type Foo (line 12) | type Foo struct FILE: internal/endtoend/testdata/insert_select/mysql/go/query.sql.go constant insertSelect (line 12) | insertSelect = `-- name: InsertSelect :exec type InsertSelectParams (line 18) | type InsertSelectParams struct method InsertSelect (line 23) | func (q *Queries) InsertSelect(ctx context.Context, arg InsertSelectPara... FILE: internal/endtoend/testdata/insert_select/mysql/schema.sql type bar (line 1) | CREATE TABLE bar (name text not null, ready bool not null) type foo (line 2) | CREATE TABLE foo (name text not null, meta text not null) FILE: internal/endtoend/testdata/insert_select/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/insert_select/postgresql/pgx/v4/go/models.go type Bar (line 7) | type Bar struct type Foo (line 12) | type Foo struct FILE: internal/endtoend/testdata/insert_select/postgresql/pgx/v4/go/query.sql.go constant insertSelect (line 12) | insertSelect = `-- name: InsertSelect :exec type InsertSelectParams (line 18) | type InsertSelectParams struct method InsertSelect (line 23) | func (q *Queries) InsertSelect(ctx context.Context, arg InsertSelectPara... FILE: internal/endtoend/testdata/insert_select/postgresql/pgx/v4/schema.sql type bar (line 1) | CREATE TABLE bar (name text not null, ready bool not null) type foo (line 2) | CREATE TABLE foo (name text not null, meta text not null) FILE: internal/endtoend/testdata/insert_select/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/insert_select/postgresql/pgx/v5/go/models.go type Bar (line 7) | type Bar struct type Foo (line 12) | type Foo struct FILE: internal/endtoend/testdata/insert_select/postgresql/pgx/v5/go/query.sql.go constant insertSelect (line 12) | insertSelect = `-- name: InsertSelect :exec type InsertSelectParams (line 18) | type InsertSelectParams struct method InsertSelect (line 23) | func (q *Queries) InsertSelect(ctx context.Context, arg InsertSelectPara... FILE: internal/endtoend/testdata/insert_select/postgresql/pgx/v5/schema.sql type bar (line 1) | CREATE TABLE bar (name text not null, ready bool not null) type foo (line 2) | CREATE TABLE foo (name text not null, meta text not null) FILE: internal/endtoend/testdata/insert_select/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/insert_select/postgresql/stdlib/go/models.go type Bar (line 7) | type Bar struct type Foo (line 12) | type Foo struct FILE: internal/endtoend/testdata/insert_select/postgresql/stdlib/go/query.sql.go constant insertSelect (line 12) | insertSelect = `-- name: InsertSelect :exec type InsertSelectParams (line 18) | type InsertSelectParams struct method InsertSelect (line 23) | func (q *Queries) InsertSelect(ctx context.Context, arg InsertSelectPara... FILE: internal/endtoend/testdata/insert_select/postgresql/stdlib/schema.sql type bar (line 1) | CREATE TABLE bar (name text not null, ready bool not null) type foo (line 2) | CREATE TABLE foo (name text not null, meta text not null) FILE: internal/endtoend/testdata/insert_select/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/insert_select/sqlite/go/models.go type Bar (line 7) | type Bar struct type Foo (line 12) | type Foo struct FILE: internal/endtoend/testdata/insert_select/sqlite/go/query.sql.go constant insertSelect (line 12) | insertSelect = `-- name: InsertSelect :exec type InsertSelectParams (line 18) | type InsertSelectParams struct method InsertSelect (line 23) | func (q *Queries) InsertSelect(ctx context.Context, arg InsertSelectPara... FILE: internal/endtoend/testdata/insert_select/sqlite/schema.sql type bar (line 1) | CREATE TABLE bar (name text not null, ready bool not null) type foo (line 2) | CREATE TABLE foo (name text not null, meta text not null) FILE: internal/endtoend/testdata/insert_select_case/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/insert_select_case/postgresql/pgx/go/models.go type Order (line 11) | type Order struct FILE: internal/endtoend/testdata/insert_select_case/postgresql/pgx/go/query.sql.go constant insertOrders (line 14) | insertOrders = `-- name: InsertOrders :exec type InsertOrdersParams (line 20) | type InsertOrdersParams struct method InsertOrders (line 25) | func (q *Queries) InsertOrders(ctx context.Context, arg InsertOrdersPara... FILE: internal/endtoend/testdata/insert_select_case/postgresql/pgx/schema.sql type orders (line 1) | CREATE TABLE orders( FILE: internal/endtoend/testdata/insert_select_invalid/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/insert_select_invalid/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/insert_select_invalid/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/insert_select_invalid/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/insert_select_invalid/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo (bar text) FILE: internal/endtoend/testdata/insert_select_param/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/insert_select_param/postgresql/pgx/go/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/insert_select_param/postgresql/pgx/go/query.sql.go constant insertSelect (line 14) | insertSelect = `-- name: InsertSelect :exec type InsertSelectParams (line 21) | type InsertSelectParams struct method InsertSelect (line 26) | func (q *Queries) InsertSelect(ctx context.Context, arg InsertSelectPara... FILE: internal/endtoend/testdata/insert_select_param/postgresql/pgx/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/insert_values/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/insert_values/mysql/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/insert_values/mysql/go/query.sql.go constant insertMultipleValues (line 13) | insertMultipleValues = `-- name: InsertMultipleValues :exec type InsertMultipleValuesParams (line 17) | type InsertMultipleValuesParams struct method InsertMultipleValues (line 24) | func (q *Queries) InsertMultipleValues(ctx context.Context, arg InsertMu... constant insertValues (line 34) | insertValues = `-- name: InsertValues :exec type InsertValuesParams (line 38) | type InsertValuesParams struct method InsertValues (line 43) | func (q *Queries) InsertValues(ctx context.Context, arg InsertValuesPara... FILE: internal/endtoend/testdata/insert_values/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b integer) FILE: internal/endtoend/testdata/insert_values/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/insert_values/postgresql/pgx/v4/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/insert_values/postgresql/pgx/v4/go/query.sql.go constant insertMultipleValues (line 13) | insertMultipleValues = `-- name: InsertMultipleValues :exec type InsertMultipleValuesParams (line 17) | type InsertMultipleValuesParams struct method InsertMultipleValues (line 24) | func (q *Queries) InsertMultipleValues(ctx context.Context, arg InsertMu... constant insertValues (line 34) | insertValues = `-- name: InsertValues :exec type InsertValuesParams (line 38) | type InsertValuesParams struct method InsertValues (line 43) | func (q *Queries) InsertValues(ctx context.Context, arg InsertValuesPara... FILE: internal/endtoend/testdata/insert_values/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b integer) FILE: internal/endtoend/testdata/insert_values/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/insert_values/postgresql/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/insert_values/postgresql/pgx/v5/go/query.sql.go constant insertMultipleValues (line 14) | insertMultipleValues = `-- name: InsertMultipleValues :exec type InsertMultipleValuesParams (line 18) | type InsertMultipleValuesParams struct method InsertMultipleValues (line 25) | func (q *Queries) InsertMultipleValues(ctx context.Context, arg InsertMu... constant insertValues (line 35) | insertValues = `-- name: InsertValues :exec type InsertValuesParams (line 39) | type InsertValuesParams struct method InsertValues (line 44) | func (q *Queries) InsertValues(ctx context.Context, arg InsertValuesPara... FILE: internal/endtoend/testdata/insert_values/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b integer) FILE: internal/endtoend/testdata/insert_values/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/insert_values/postgresql/stdlib/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/insert_values/postgresql/stdlib/go/query.sql.go constant insertMultipleValues (line 13) | insertMultipleValues = `-- name: InsertMultipleValues :exec type InsertMultipleValuesParams (line 17) | type InsertMultipleValuesParams struct method InsertMultipleValues (line 24) | func (q *Queries) InsertMultipleValues(ctx context.Context, arg InsertMu... constant insertValues (line 34) | insertValues = `-- name: InsertValues :exec type InsertValuesParams (line 38) | type InsertValuesParams struct method InsertValues (line 43) | func (q *Queries) InsertValues(ctx context.Context, arg InsertValuesPara... FILE: internal/endtoend/testdata/insert_values/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b integer) FILE: internal/endtoend/testdata/insert_values/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/insert_values/sqlite/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/insert_values/sqlite/go/query.sql.go constant insertMultipleValues (line 13) | insertMultipleValues = `-- name: InsertMultipleValues :exec type InsertMultipleValuesParams (line 17) | type InsertMultipleValuesParams struct method InsertMultipleValues (line 24) | func (q *Queries) InsertMultipleValues(ctx context.Context, arg InsertMu... constant insertValues (line 34) | insertValues = `-- name: InsertValues :exec type InsertValuesParams (line 38) | type InsertValuesParams struct method InsertValues (line 43) | func (q *Queries) InsertValues(ctx context.Context, arg InsertValuesPara... FILE: internal/endtoend/testdata/insert_values/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b integer) FILE: internal/endtoend/testdata/insert_values_only/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/insert_values_only/postgresql/pgx/go/models.go type Status (line 7) | type Status struct FILE: internal/endtoend/testdata/insert_values_only/postgresql/pgx/go/query.sql.go constant insertStatus (line 14) | insertStatus = `-- name: InsertStatus :exec type InsertStatusParams (line 18) | type InsertStatusParams struct method InsertStatus (line 23) | func (q *Queries) InsertStatus(ctx context.Context, arg InsertStatusPara... FILE: internal/endtoend/testdata/insert_values_only/postgresql/pgx/schema.sql type status (line 1) | CREATE TABLE status FILE: internal/endtoend/testdata/insert_values_public/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/insert_values_public/mysql/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/insert_values_public/mysql/go/query.sql.go constant insertValues (line 13) | insertValues = `-- name: InsertValues :exec type InsertValuesParams (line 17) | type InsertValuesParams struct method InsertValues (line 22) | func (q *Queries) InsertValues(ctx context.Context, arg InsertValuesPara... FILE: internal/endtoend/testdata/insert_values_public/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b integer) FILE: internal/endtoend/testdata/insert_values_public/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/insert_values_public/postgresql/pgx/v4/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/insert_values_public/postgresql/pgx/v4/go/query.sql.go constant insertValues (line 13) | insertValues = `-- name: InsertValues :exec type InsertValuesParams (line 17) | type InsertValuesParams struct method InsertValues (line 22) | func (q *Queries) InsertValues(ctx context.Context, arg InsertValuesPara... FILE: internal/endtoend/testdata/insert_values_public/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b integer) FILE: internal/endtoend/testdata/insert_values_public/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/insert_values_public/postgresql/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/insert_values_public/postgresql/pgx/v5/go/query.sql.go constant insertValues (line 14) | insertValues = `-- name: InsertValues :exec type InsertValuesParams (line 18) | type InsertValuesParams struct method InsertValues (line 23) | func (q *Queries) InsertValues(ctx context.Context, arg InsertValuesPara... FILE: internal/endtoend/testdata/insert_values_public/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b integer) FILE: internal/endtoend/testdata/insert_values_public/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/insert_values_public/postgresql/stdlib/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/insert_values_public/postgresql/stdlib/go/query.sql.go constant insertValues (line 13) | insertValues = `-- name: InsertValues :exec type InsertValuesParams (line 17) | type InsertValuesParams struct method InsertValues (line 22) | func (q *Queries) InsertValues(ctx context.Context, arg InsertValuesPara... FILE: internal/endtoend/testdata/insert_values_public/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b integer) FILE: internal/endtoend/testdata/interval/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/interval/pgx/v4/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/interval/pgx/v4/go/query.sql.go constant get (line 12) | get = `-- name: Get :many method Get (line 16) | func (q *Queries) Get(ctx context.Context, limit int32) ([]Foo, error) { FILE: internal/endtoend/testdata/interval/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (bar bool not null, "interval" interval not null) FILE: internal/endtoend/testdata/interval/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/interval/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/interval/pgx/v5/go/query.sql.go constant get (line 12) | get = `-- name: Get :many method Get (line 16) | func (q *Queries) Get(ctx context.Context, limit int32) ([]Foo, error) { FILE: internal/endtoend/testdata/interval/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (bar bool not null, "interval" interval not null) FILE: internal/endtoend/testdata/interval/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/interval/stdlib/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/interval/stdlib/go/query.sql.go constant get (line 12) | get = `-- name: Get :many method Get (line 16) | func (q *Queries) Get(ctx context.Context, limit int32) ([]Foo, error) { FILE: internal/endtoend/testdata/interval/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (bar bool not null, "interval" interval not null) FILE: internal/endtoend/testdata/invalid_group_by_reference/mysql/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/invalid_group_by_reference/postgresql/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/invalid_group_by_reference/sqlite/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/invalid_insert_unknown_column/postgresql/pgx/db/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/invalid_insert_unknown_column/postgresql/pgx/db/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/invalid_insert_unknown_column/postgresql/pgx/db/query.sql.go constant createAuthor (line 14) | createAuthor = `-- name: CreateAuthor :one type CreateAuthorParams (line 23) | type CreateAuthorParams struct method CreateAuthor (line 28) | func (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorPara... FILE: internal/endtoend/testdata/invalid_insert_unknown_column/postgresql/pgx/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/invalid_named_params/mysql/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/invalid_params/pgx/v4/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/invalid_params/pgx/v5/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/invalid_params/stdlib/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/invalid_params_type_mismatch/postgresql/pgx/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/invalid_queries_bar/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (bar text not null, baz text not null) FILE: internal/endtoend/testdata/invalid_queries_bar/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (bar text not null, baz text not null) FILE: internal/endtoend/testdata/invalid_queries_bar/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (bar text not null, baz text not null) FILE: internal/endtoend/testdata/invalid_queries_foo/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (id text not null) FILE: internal/endtoend/testdata/invalid_queries_foo/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (id text not null) FILE: internal/endtoend/testdata/invalid_queries_foo/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (id text not null) FILE: internal/endtoend/testdata/invalid_table_alias/mysql/schema.sql type authors (line 2) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/invalid_table_alias/postgresql/schema.sql type authors (line 2) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/invalid_table_alias/sqlite/schema.sql type authors (line 2) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/invalid_update_unknown_column/postgresql/pgx/schema.sql type public (line 1) | CREATE TABLE public.articles ( FILE: internal/endtoend/testdata/join_alias/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/join_alias/mysql/go/models.go type Bar (line 11) | type Bar struct type Foo (line 16) | type Foo struct FILE: internal/endtoend/testdata/join_alias/mysql/go/query.sql.go constant aliasExpand (line 13) | aliasExpand = `-- name: AliasExpand :many type AliasExpandRow (line 20) | type AliasExpandRow struct method AliasExpand (line 26) | func (q *Queries) AliasExpand(ctx context.Context, id uint64) ([]AliasEx... constant aliasJoin (line 49) | aliasJoin = `-- name: AliasJoin :many type AliasJoinRow (line 56) | type AliasJoinRow struct method AliasJoin (line 61) | func (q *Queries) AliasJoin(ctx context.Context, id uint64) ([]AliasJoin... FILE: internal/endtoend/testdata/join_alias/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (id serial not null) type bar (line 2) | CREATE TABLE bar (id serial not null references foo(id), title text) FILE: internal/endtoend/testdata/join_alias/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/join_alias/postgresql/pgx/v4/go/models.go type Bar (line 11) | type Bar struct type Foo (line 16) | type Foo struct FILE: internal/endtoend/testdata/join_alias/postgresql/pgx/v4/go/query.sql.go constant aliasExpand (line 13) | aliasExpand = `-- name: AliasExpand :many type AliasExpandRow (line 20) | type AliasExpandRow struct method AliasExpand (line 26) | func (q *Queries) AliasExpand(ctx context.Context, id int32) ([]AliasExp... constant aliasJoin (line 46) | aliasJoin = `-- name: AliasJoin :many type AliasJoinRow (line 53) | type AliasJoinRow struct method AliasJoin (line 58) | func (q *Queries) AliasJoin(ctx context.Context, id int32) ([]AliasJoinR... FILE: internal/endtoend/testdata/join_alias/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (id serial not null unique) type bar (line 2) | CREATE TABLE bar (id serial not null references foo(id), title text) FILE: internal/endtoend/testdata/join_alias/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/join_alias/postgresql/pgx/v5/go/models.go type Bar (line 11) | type Bar struct type Foo (line 16) | type Foo struct FILE: internal/endtoend/testdata/join_alias/postgresql/pgx/v5/go/query.sql.go constant aliasExpand (line 14) | aliasExpand = `-- name: AliasExpand :many type AliasExpandRow (line 21) | type AliasExpandRow struct method AliasExpand (line 27) | func (q *Queries) AliasExpand(ctx context.Context, id int32) ([]AliasExp... constant aliasJoin (line 47) | aliasJoin = `-- name: AliasJoin :many type AliasJoinRow (line 54) | type AliasJoinRow struct method AliasJoin (line 59) | func (q *Queries) AliasJoin(ctx context.Context, id int32) ([]AliasJoinR... FILE: internal/endtoend/testdata/join_alias/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (id serial not null unique) type bar (line 2) | CREATE TABLE bar (id serial not null references foo(id), title text) FILE: internal/endtoend/testdata/join_alias/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/join_alias/postgresql/stdlib/go/models.go type Bar (line 11) | type Bar struct type Foo (line 16) | type Foo struct FILE: internal/endtoend/testdata/join_alias/postgresql/stdlib/go/query.sql.go constant aliasExpand (line 13) | aliasExpand = `-- name: AliasExpand :many type AliasExpandRow (line 20) | type AliasExpandRow struct method AliasExpand (line 26) | func (q *Queries) AliasExpand(ctx context.Context, id int32) ([]AliasExp... constant aliasJoin (line 49) | aliasJoin = `-- name: AliasJoin :many type AliasJoinRow (line 56) | type AliasJoinRow struct method AliasJoin (line 61) | func (q *Queries) AliasJoin(ctx context.Context, id int32) ([]AliasJoinR... FILE: internal/endtoend/testdata/join_alias/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (id serial not null unique) type bar (line 2) | CREATE TABLE bar (id serial not null references foo(id), title text) FILE: internal/endtoend/testdata/join_alias/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/join_alias/sqlite/go/models.go type Bar (line 11) | type Bar struct type Foo (line 16) | type Foo struct FILE: internal/endtoend/testdata/join_alias/sqlite/go/query.sql.go constant aliasExpand (line 13) | aliasExpand = `-- name: AliasExpand :many type AliasExpandRow (line 20) | type AliasExpandRow struct method AliasExpand (line 26) | func (q *Queries) AliasExpand(ctx context.Context, id int64) ([]AliasExp... constant aliasJoin (line 49) | aliasJoin = `-- name: AliasJoin :many type AliasJoinRow (line 56) | type AliasJoinRow struct method AliasJoin (line 61) | func (q *Queries) AliasJoin(ctx context.Context, id int64) ([]AliasJoinR... FILE: internal/endtoend/testdata/join_alias/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo (id integer not null) type bar (line 2) | CREATE TABLE bar (id integer not null references foo(id), title text) FILE: internal/endtoend/testdata/join_clauses_order/postgresql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/join_clauses_order/postgresql/go/models.go type A (line 7) | type A struct type B (line 12) | type B struct type C (line 18) | type C struct type D (line 24) | type D struct type E (line 30) | type E struct FILE: internal/endtoend/testdata/join_clauses_order/postgresql/go/query.sql.go constant testInnerLeft (line 13) | testInnerLeft = `-- name: TestInnerLeft :many type TestInnerLeftRow (line 20) | type TestInnerLeftRow struct method TestInnerLeft (line 26) | func (q *Queries) TestInnerLeft(ctx context.Context) ([]TestInnerLeftRow... constant testInnerLeftInnerLeft (line 49) | testInnerLeftInnerLeft = `-- name: TestInnerLeftInnerLeft :many type TestInnerLeftInnerLeftRow (line 58) | type TestInnerLeftInnerLeftRow struct method TestInnerLeftInnerLeft (line 66) | func (q *Queries) TestInnerLeftInnerLeft(ctx context.Context) ([]TestInn... constant testLeftInner (line 95) | testLeftInner = `-- name: TestLeftInner :many type TestLeftInnerRow (line 102) | type TestLeftInnerRow struct method TestLeftInner (line 108) | func (q *Queries) TestLeftInner(ctx context.Context) ([]TestLeftInnerRow... constant testLeftInnerLeftInner (line 131) | testLeftInnerLeftInner = `-- name: TestLeftInnerLeftInner :many type TestLeftInnerLeftInnerRow (line 140) | type TestLeftInnerLeftInnerRow struct method TestLeftInnerLeftInner (line 148) | func (q *Queries) TestLeftInnerLeftInner(ctx context.Context) ([]TestLef... FILE: internal/endtoend/testdata/join_clauses_order/postgresql/schema.sql type a (line 1) | CREATE TABLE a ( type b (line 6) | CREATE TABLE b ( type c (line 12) | CREATE TABLE c ( type d (line 18) | CREATE TABLE d ( type e (line 24) | CREATE TABLE e ( FILE: internal/endtoend/testdata/join_from/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/join_from/mysql/go/models.go type Bar (line 7) | type Bar struct type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/join_from/mysql/go/query.sql.go constant multiFrom (line 12) | multiFrom = `-- name: MultiFrom :many method MultiFrom (line 16) | func (q *Queries) MultiFrom(ctx context.Context, login string) ([]string... FILE: internal/endtoend/testdata/join_from/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (email text not null) type bar (line 2) | CREATE TABLE bar (login text not null) FILE: internal/endtoend/testdata/join_from/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/join_from/postgresql/pgx/v4/go/models.go type Bar (line 7) | type Bar struct type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/join_from/postgresql/pgx/v4/go/query.sql.go constant multiFrom (line 12) | multiFrom = `-- name: MultiFrom :many method MultiFrom (line 16) | func (q *Queries) MultiFrom(ctx context.Context, login string) ([]string... FILE: internal/endtoend/testdata/join_from/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (email text not null) type bar (line 2) | CREATE TABLE bar (login text not null) FILE: internal/endtoend/testdata/join_from/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/join_from/postgresql/pgx/v5/go/models.go type Bar (line 7) | type Bar struct type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/join_from/postgresql/pgx/v5/go/query.sql.go constant multiFrom (line 12) | multiFrom = `-- name: MultiFrom :many method MultiFrom (line 16) | func (q *Queries) MultiFrom(ctx context.Context, login string) ([]string... FILE: internal/endtoend/testdata/join_from/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (email text not null) type bar (line 2) | CREATE TABLE bar (login text not null) FILE: internal/endtoend/testdata/join_from/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/join_from/postgresql/stdlib/go/models.go type Bar (line 7) | type Bar struct type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/join_from/postgresql/stdlib/go/query.sql.go constant multiFrom (line 12) | multiFrom = `-- name: MultiFrom :many method MultiFrom (line 16) | func (q *Queries) MultiFrom(ctx context.Context, login string) ([]string... FILE: internal/endtoend/testdata/join_from/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (email text not null) type bar (line 2) | CREATE TABLE bar (login text not null) FILE: internal/endtoend/testdata/join_from/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/join_from/sqlite/go/models.go type Bar (line 7) | type Bar struct type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/join_from/sqlite/go/query.sql.go constant multiFrom (line 12) | multiFrom = `-- name: MultiFrom :many method MultiFrom (line 16) | func (q *Queries) MultiFrom(ctx context.Context, login string) ([]string... FILE: internal/endtoend/testdata/join_from/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo (email text not null) type bar (line 2) | CREATE TABLE bar (login text not null) FILE: internal/endtoend/testdata/join_full/postgresql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/join_full/postgresql/go/models.go type Bar (line 11) | type Bar struct type Foo (line 15) | type Foo struct FILE: internal/endtoend/testdata/join_full/postgresql/go/query.sql.go constant fullJoin (line 13) | fullJoin = `-- name: FullJoin :many type FullJoinRow (line 20) | type FullJoinRow struct method FullJoin (line 26) | func (q *Queries) FullJoin(ctx context.Context, id int32) ([]FullJoinRow... FILE: internal/endtoend/testdata/join_full/postgresql/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null unique) type foo (line 2) | CREATE TABLE foo (id serial not null, bar_id int references bar(id)) FILE: internal/endtoend/testdata/join_group_by_alias/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/join_group_by_alias/postgresql/stdlib/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/join_group_by_alias/postgresql/stdlib/go/query.sql.go constant columnAsGroupBy (line 12) | columnAsGroupBy = `-- name: ColumnAsGroupBy :many method ColumnAsGroupBy (line 18) | func (q *Queries) ColumnAsGroupBy(ctx context.Context) ([]string, error) { FILE: internal/endtoend/testdata/join_group_by_alias/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (email text not null) FILE: internal/endtoend/testdata/join_inner/postgresql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/join_inner/postgresql/go/models.go type Event (line 11) | type Event struct type HandledEvent (line 15) | type HandledEvent struct FILE: internal/endtoend/testdata/join_inner/postgresql/go/query.sql.go constant selectAllJoined (line 13) | selectAllJoined = `-- name: SelectAllJoined :many method SelectAllJoined (line 21) | func (q *Queries) SelectAllJoined(ctx context.Context, handler sql.NullS... constant selectAllJoinedAlias (line 44) | selectAllJoinedAlias = `-- name: SelectAllJoinedAlias :many method SelectAllJoinedAlias (line 52) | func (q *Queries) SelectAllJoinedAlias(ctx context.Context, handler sql.... FILE: internal/endtoend/testdata/join_inner/postgresql/schema.sql type events (line 1) | create table events type handled_events (line 6) | create table handled_events FILE: internal/endtoend/testdata/join_left/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/join_left/mysql/go/models.go type Author (line 12) | type Author struct type City (line 18) | type City struct type Mayor (line 23) | type Mayor struct type Medium (line 28) | type Medium struct type SuperAuthor (line 38) | type SuperAuthor struct type User (line 44) | type User struct type Users2 (line 49) | type Users2 struct FILE: internal/endtoend/testdata/join_left/mysql/go/query.sql.go constant allAuthors (line 14) | allAuthors = `-- name: AllAuthors :many type AllAuthorsRow (line 21) | type AllAuthorsRow struct method AllAuthors (line 30) | func (q *Queries) AllAuthors(ctx context.Context) ([]AllAuthorsRow, erro... constant allAuthorsAliases (line 60) | allAuthorsAliases = `-- name: AllAuthorsAliases :many type AllAuthorsAliasesRow (line 67) | type AllAuthorsAliasesRow struct method AllAuthorsAliases (line 76) | func (q *Queries) AllAuthorsAliases(ctx context.Context) ([]AllAuthorsAl... constant allAuthorsAliases2 (line 106) | allAuthorsAliases2 = `-- name: AllAuthorsAliases2 :many type AllAuthorsAliases2Row (line 113) | type AllAuthorsAliases2Row struct method AllAuthorsAliases2 (line 122) | func (q *Queries) AllAuthorsAliases2(ctx context.Context) ([]AllAuthorsA... constant allSuperAuthors (line 152) | allSuperAuthors = `-- name: AllSuperAuthors :many type AllSuperAuthorsRow (line 159) | type AllSuperAuthorsRow struct method AllSuperAuthors (line 168) | func (q *Queries) AllSuperAuthors(ctx context.Context) ([]AllSuperAuthor... constant allSuperAuthorsAliases (line 198) | allSuperAuthorsAliases = `-- name: AllSuperAuthorsAliases :many type AllSuperAuthorsAliasesRow (line 205) | type AllSuperAuthorsAliasesRow struct method AllSuperAuthorsAliases (line 214) | func (q *Queries) AllSuperAuthorsAliases(ctx context.Context) ([]AllSupe... constant allSuperAuthorsAliases2 (line 244) | allSuperAuthorsAliases2 = `-- name: AllSuperAuthorsAliases2 :many type AllSuperAuthorsAliases2Row (line 251) | type AllSuperAuthorsAliases2Row struct method AllSuperAuthorsAliases2 (line 260) | func (q *Queries) AllSuperAuthorsAliases2(ctx context.Context) ([]AllSup... constant getMayors (line 290) | getMayors = `-- name: GetMayors :many type GetMayorsRow (line 299) | type GetMayorsRow struct method GetMayors (line 304) | func (q *Queries) GetMayors(ctx context.Context) ([]GetMayorsRow, error) { constant getMayorsOptional (line 327) | getMayorsOptional = `-- name: GetMayorsOptional :many type GetMayorsOptionalRow (line 337) | type GetMayorsOptionalRow struct method GetMayorsOptional (line 343) | func (q *Queries) GetMayorsOptional(ctx context.Context) ([]GetMayorsOpt... constant getSuggestedUsersByID (line 366) | getSuggestedUsersByID = `-- name: GetSuggestedUsersByID :many type GetSuggestedUsersByIDRow (line 374) | type GetSuggestedUsersByIDRow struct method GetSuggestedUsersByID (line 394) | func (q *Queries) GetSuggestedUsersByID(ctx context.Context) ([]GetSugge... FILE: internal/endtoend/testdata/join_left/mysql/schema.sql type users (line 2) | CREATE TABLE users ( type cities (line 6) | CREATE TABLE cities ( type mayors (line 10) | CREATE TABLE mayors ( type authors (line 15) | CREATE TABLE authors ( type super_authors (line 21) | CREATE TABLE super_authors ( type users_2 (line 28) | CREATE TABLE users_2 ( type media (line 41) | CREATE TABLE media ( FILE: internal/endtoend/testdata/join_left/postgresql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/join_left/postgresql/go/models.go type Author (line 14) | type Author struct type City (line 20) | type City struct type Mayor (line 25) | type Mayor struct type Medium (line 30) | type Medium struct type SuperAuthor (line 40) | type SuperAuthor struct type User (line 46) | type User struct type Users2 (line 51) | type Users2 struct FILE: internal/endtoend/testdata/join_left/postgresql/go/query.sql.go constant allAuthors (line 16) | allAuthors = `-- name: AllAuthors :many type AllAuthorsRow (line 23) | type AllAuthorsRow struct method AllAuthors (line 32) | func (q *Queries) AllAuthors(ctx context.Context) ([]AllAuthorsRow, erro... constant allAuthorsAliases (line 62) | allAuthorsAliases = `-- name: AllAuthorsAliases :many type AllAuthorsAliasesRow (line 69) | type AllAuthorsAliasesRow struct method AllAuthorsAliases (line 78) | func (q *Queries) AllAuthorsAliases(ctx context.Context) ([]AllAuthorsAl... constant allAuthorsAliases2 (line 108) | allAuthorsAliases2 = `-- name: AllAuthorsAliases2 :many type AllAuthorsAliases2Row (line 115) | type AllAuthorsAliases2Row struct method AllAuthorsAliases2 (line 124) | func (q *Queries) AllAuthorsAliases2(ctx context.Context) ([]AllAuthorsA... constant allSuperAuthors (line 154) | allSuperAuthors = `-- name: AllSuperAuthors :many type AllSuperAuthorsRow (line 161) | type AllSuperAuthorsRow struct method AllSuperAuthors (line 170) | func (q *Queries) AllSuperAuthors(ctx context.Context) ([]AllSuperAuthor... constant allSuperAuthorsAliases (line 200) | allSuperAuthorsAliases = `-- name: AllSuperAuthorsAliases :many type AllSuperAuthorsAliasesRow (line 207) | type AllSuperAuthorsAliasesRow struct method AllSuperAuthorsAliases (line 216) | func (q *Queries) AllSuperAuthorsAliases(ctx context.Context) ([]AllSupe... constant allSuperAuthorsAliases2 (line 246) | allSuperAuthorsAliases2 = `-- name: AllSuperAuthorsAliases2 :many type AllSuperAuthorsAliases2Row (line 253) | type AllSuperAuthorsAliases2Row struct method AllSuperAuthorsAliases2 (line 262) | func (q *Queries) AllSuperAuthorsAliases2(ctx context.Context) ([]AllSup... constant getMayors (line 292) | getMayors = `-- name: GetMayors :many type GetMayorsRow (line 301) | type GetMayorsRow struct method GetMayors (line 306) | func (q *Queries) GetMayors(ctx context.Context) ([]GetMayorsRow, error) { constant getMayorsOptional (line 329) | getMayorsOptional = `-- name: GetMayorsOptional :many type GetMayorsOptionalRow (line 338) | type GetMayorsOptionalRow struct method GetMayorsOptional (line 343) | func (q *Queries) GetMayorsOptional(ctx context.Context) ([]GetMayorsOpt... constant getSuggestedUsersByID (line 366) | getSuggestedUsersByID = `-- name: GetSuggestedUsersByID :many type GetSuggestedUsersByIDParams (line 375) | type GetSuggestedUsersByIDParams struct type GetSuggestedUsersByIDRow (line 380) | type GetSuggestedUsersByIDRow struct method GetSuggestedUsersByID (line 400) | func (q *Queries) GetSuggestedUsersByID(ctx context.Context, arg GetSugg... FILE: internal/endtoend/testdata/join_left/postgresql/schema.sql type users (line 2) | CREATE TABLE users ( type cities (line 6) | CREATE TABLE cities ( type mayors (line 10) | CREATE TABLE mayors ( type authors (line 16) | CREATE TABLE authors ( type super_authors (line 22) | CREATE TABLE super_authors ( type "users_2" (line 29) | CREATE TABLE "users_2" ( type "media" (line 42) | CREATE TABLE "media" ( FILE: internal/endtoend/testdata/join_left/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/join_left/sqlite/go/models.go type Author (line 12) | type Author struct type City (line 18) | type City struct type Mayor (line 23) | type Mayor struct type Medium (line 28) | type Medium struct type SuperAuthor (line 38) | type SuperAuthor struct type User (line 44) | type User struct type Users2 (line 49) | type Users2 struct FILE: internal/endtoend/testdata/join_left/sqlite/go/query.sql.go constant allAuthors (line 14) | allAuthors = `-- name: AllAuthors :many type AllAuthorsRow (line 21) | type AllAuthorsRow struct method AllAuthors (line 30) | func (q *Queries) AllAuthors(ctx context.Context) ([]AllAuthorsRow, erro... constant allAuthorsAliases (line 60) | allAuthorsAliases = `-- name: AllAuthorsAliases :many type AllAuthorsAliasesRow (line 67) | type AllAuthorsAliasesRow struct method AllAuthorsAliases (line 76) | func (q *Queries) AllAuthorsAliases(ctx context.Context) ([]AllAuthorsAl... constant allAuthorsAliases2 (line 106) | allAuthorsAliases2 = `-- name: AllAuthorsAliases2 :many type AllAuthorsAliases2Row (line 113) | type AllAuthorsAliases2Row struct method AllAuthorsAliases2 (line 122) | func (q *Queries) AllAuthorsAliases2(ctx context.Context) ([]AllAuthorsA... constant allSuperAuthors (line 152) | allSuperAuthors = `-- name: AllSuperAuthors :many type AllSuperAuthorsRow (line 159) | type AllSuperAuthorsRow struct method AllSuperAuthors (line 168) | func (q *Queries) AllSuperAuthors(ctx context.Context) ([]AllSuperAuthor... constant allSuperAuthorsAliases (line 198) | allSuperAuthorsAliases = `-- name: AllSuperAuthorsAliases :many type AllSuperAuthorsAliasesRow (line 205) | type AllSuperAuthorsAliasesRow struct method AllSuperAuthorsAliases (line 214) | func (q *Queries) AllSuperAuthorsAliases(ctx context.Context) ([]AllSupe... constant allSuperAuthorsAliases2 (line 244) | allSuperAuthorsAliases2 = `-- name: AllSuperAuthorsAliases2 :many type AllSuperAuthorsAliases2Row (line 251) | type AllSuperAuthorsAliases2Row struct method AllSuperAuthorsAliases2 (line 260) | func (q *Queries) AllSuperAuthorsAliases2(ctx context.Context) ([]AllSup... constant getMayors (line 290) | getMayors = `-- name: GetMayors :many type GetMayorsRow (line 299) | type GetMayorsRow struct method GetMayors (line 304) | func (q *Queries) GetMayors(ctx context.Context) ([]GetMayorsRow, error) { constant getMayorsOptional (line 327) | getMayorsOptional = `-- name: GetMayorsOptional :many type GetMayorsOptionalRow (line 337) | type GetMayorsOptionalRow struct method GetMayorsOptional (line 343) | func (q *Queries) GetMayorsOptional(ctx context.Context) ([]GetMayorsOpt... constant getSuggestedUsersByID (line 366) | getSuggestedUsersByID = `-- name: GetSuggestedUsersByID :many type GetSuggestedUsersByIDRow (line 374) | type GetSuggestedUsersByIDRow struct method GetSuggestedUsersByID (line 394) | func (q *Queries) GetSuggestedUsersByID(ctx context.Context, userID int6... constant getSuggestedUsersByID2 (line 435) | getSuggestedUsersByID2 = `-- name: GetSuggestedUsersByID2 :many method GetSuggestedUsersByID2 (line 443) | func (q *Queries) GetSuggestedUsersByID2(ctx context.Context, userID int... FILE: internal/endtoend/testdata/join_left/sqlite/schema.sql type users (line 2) | CREATE TABLE users ( type cities (line 6) | CREATE TABLE cities ( type mayors (line 10) | CREATE TABLE mayors ( type authors (line 16) | CREATE TABLE authors ( type super_authors (line 22) | CREATE TABLE super_authors ( type users_2 (line 29) | CREATE TABLE users_2 ( type media (line 42) | CREATE TABLE media ( FILE: internal/endtoend/testdata/join_left_same_table/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/join_left_same_table/mysql/go/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/join_left_same_table/mysql/go/query.sql.go constant allAuthors (line 13) | allAuthors = `-- name: AllAuthors :many type AllAuthorsRow (line 23) | type AllAuthorsRow struct method AllAuthors (line 30) | func (q *Queries) AllAuthors(ctx context.Context) ([]AllAuthorsRow, erro... FILE: internal/endtoend/testdata/join_left_same_table/mysql/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/join_left_same_table/postgres/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/join_left_same_table/postgres/go/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/join_left_same_table/postgres/go/query.sql.go constant allAuthors (line 13) | allAuthors = `-- name: AllAuthors :many type AllAuthorsRow (line 22) | type AllAuthorsRow struct method AllAuthors (line 29) | func (q *Queries) AllAuthors(ctx context.Context) ([]AllAuthorsRow, erro... FILE: internal/endtoend/testdata/join_left_same_table/postgres/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/join_left_same_table/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/join_left_same_table/sqlite/go/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/join_left_same_table/sqlite/go/query.sql.go constant allAuthors (line 13) | allAuthors = `-- name: AllAuthors :many type AllAuthorsRow (line 23) | type AllAuthorsRow struct method AllAuthors (line 30) | func (q *Queries) AllAuthors(ctx context.Context) ([]AllAuthorsRow, erro... FILE: internal/endtoend/testdata/join_left_same_table/sqlite/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/join_left_table_alias/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/join_left_table_alias/postgresql/pgx/go/models.go type Bar (line 7) | type Bar struct type Foo (line 12) | type Foo struct FILE: internal/endtoend/testdata/join_left_table_alias/postgresql/pgx/go/query.sql.go constant joinBar (line 14) | joinBar = `-- name: JoinBar :one type JoinBarRow (line 20) | type JoinBarRow struct method JoinBar (line 25) | func (q *Queries) JoinBar(ctx context.Context) (JoinBarRow, error) { constant joinBarAlias (line 32) | joinBarAlias = `-- name: JoinBarAlias :one type JoinBarAliasRow (line 38) | type JoinBarAliasRow struct method JoinBarAlias (line 43) | func (q *Queries) JoinBarAlias(ctx context.Context) (JoinBarAliasRow, er... FILE: internal/endtoend/testdata/join_left_table_alias/postgresql/pgx/schema.sql type foo (line 1) | CREATE TABLE foo ( type bar (line 5) | CREATE TABLE bar FILE: internal/endtoend/testdata/join_order_by/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/join_order_by/postgresql/pgx/go/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/join_order_by/postgresql/pgx/go/query.sql.go constant getAuthor (line 12) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 18) | func (q *Queries) GetAuthor(ctx context.Context) (string, error) { FILE: internal/endtoend/testdata/join_order_by/postgresql/pgx/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/join_order_by_alias/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/join_order_by_alias/postgresql/stdlib/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/join_order_by_alias/postgresql/stdlib/go/query.sql.go constant columnAsOrderBy (line 12) | columnAsOrderBy = `-- name: ColumnAsOrderBy :many method ColumnAsOrderBy (line 18) | func (q *Queries) ColumnAsOrderBy(ctx context.Context) ([]string, error) { FILE: internal/endtoend/testdata/join_order_by_alias/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (email text not null) FILE: internal/endtoend/testdata/join_right/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/join_right/mysql/go/models.go type Bar (line 11) | type Bar struct type Foo (line 15) | type Foo struct FILE: internal/endtoend/testdata/join_right/mysql/go/query.sql.go constant rightJoin (line 13) | rightJoin = `-- name: RightJoin :many type RightJoinRow (line 20) | type RightJoinRow struct method RightJoin (line 26) | func (q *Queries) RightJoin(ctx context.Context, id int32) ([]RightJoinR... FILE: internal/endtoend/testdata/join_right/mysql/schema.sql type bar (line 1) | CREATE TABLE bar ( type foo (line 6) | CREATE TABLE foo (id integer not null, bar_id integer references bar(id)) FILE: internal/endtoend/testdata/join_right/postgresql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/join_right/postgresql/go/models.go type Bar (line 11) | type Bar struct type Foo (line 15) | type Foo struct FILE: internal/endtoend/testdata/join_right/postgresql/go/query.sql.go constant rightJoin (line 13) | rightJoin = `-- name: RightJoin :many type RightJoinRow (line 20) | type RightJoinRow struct method RightJoin (line 26) | func (q *Queries) RightJoin(ctx context.Context, id int32) ([]RightJoinR... FILE: internal/endtoend/testdata/join_right/postgresql/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null unique) type foo (line 2) | CREATE TABLE foo (id serial not null, bar_id int references bar(id)) FILE: internal/endtoend/testdata/join_table_name/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/join_table_name/mysql/go/models.go type Bar (line 11) | type Bar struct type Foo (line 15) | type Foo struct FILE: internal/endtoend/testdata/join_table_name/mysql/go/query.sql.go constant tableName (line 12) | tableName = `-- name: TableName :one type TableNameParams (line 19) | type TableNameParams struct method TableName (line 24) | func (q *Queries) TableName(ctx context.Context, arg TableNameParams) (i... FILE: internal/endtoend/testdata/join_table_name/mysql/schema.sql type bar (line 1) | CREATE TABLE bar ( type foo (line 6) | CREATE TABLE foo (id integer not null, bar integer references bar(id)) FILE: internal/endtoend/testdata/join_table_name/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/join_table_name/postgresql/pgx/v4/go/models.go type Bar (line 11) | type Bar struct type Foo (line 15) | type Foo struct FILE: internal/endtoend/testdata/join_table_name/postgresql/pgx/v4/go/query.sql.go constant tableName (line 12) | tableName = `-- name: TableName :one type TableNameParams (line 19) | type TableNameParams struct method TableName (line 24) | func (q *Queries) TableName(ctx context.Context, arg TableNameParams) (i... FILE: internal/endtoend/testdata/join_table_name/postgresql/pgx/v4/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) type foo (line 2) | CREATE TABLE foo (id serial not null, bar serial) FILE: internal/endtoend/testdata/join_table_name/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/join_table_name/postgresql/pgx/v5/go/models.go type Bar (line 11) | type Bar struct type Foo (line 15) | type Foo struct FILE: internal/endtoend/testdata/join_table_name/postgresql/pgx/v5/go/query.sql.go constant tableName (line 12) | tableName = `-- name: TableName :one type TableNameParams (line 19) | type TableNameParams struct method TableName (line 24) | func (q *Queries) TableName(ctx context.Context, arg TableNameParams) (i... FILE: internal/endtoend/testdata/join_table_name/postgresql/pgx/v5/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) type foo (line 2) | CREATE TABLE foo (id serial not null, bar serial) FILE: internal/endtoend/testdata/join_table_name/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/join_table_name/postgresql/stdlib/go/models.go type Bar (line 11) | type Bar struct type Foo (line 15) | type Foo struct FILE: internal/endtoend/testdata/join_table_name/postgresql/stdlib/go/query.sql.go constant tableName (line 12) | tableName = `-- name: TableName :one type TableNameParams (line 19) | type TableNameParams struct method TableName (line 24) | func (q *Queries) TableName(ctx context.Context, arg TableNameParams) (i... FILE: internal/endtoend/testdata/join_table_name/postgresql/stdlib/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) type foo (line 2) | CREATE TABLE foo (id serial not null, bar serial) FILE: internal/endtoend/testdata/join_table_name/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/join_table_name/sqlite/go/models.go type Bar (line 11) | type Bar struct type Foo (line 15) | type Foo struct FILE: internal/endtoend/testdata/join_table_name/sqlite/go/query.sql.go constant tableName (line 12) | tableName = `-- name: TableName :one type TableNameParams (line 19) | type TableNameParams struct method TableName (line 24) | func (q *Queries) TableName(ctx context.Context, arg TableNameParams) (i... FILE: internal/endtoend/testdata/join_table_name/sqlite/schema.sql type bar (line 1) | CREATE TABLE bar (id integer not null) type foo (line 2) | CREATE TABLE foo (id integer not null, bar integer references bar(id)) FILE: internal/endtoend/testdata/join_two_tables/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/join_two_tables/mysql/go/models.go type Bar (line 7) | type Bar struct type Baz (line 11) | type Baz struct type Foo (line 15) | type Foo struct FILE: internal/endtoend/testdata/join_two_tables/mysql/go/query.sql.go constant twoJoins (line 12) | twoJoins = `-- name: TwoJoins :many method TwoJoins (line 19) | func (q *Queries) TwoJoins(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/join_two_tables/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (bar_id serial not null, baz_id integer not null) type bar (line 2) | CREATE TABLE bar (id serial not null) type baz (line 3) | CREATE TABLE baz (id serial not null) FILE: internal/endtoend/testdata/join_two_tables/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/join_two_tables/postgresql/pgx/v4/go/models.go type Bar (line 7) | type Bar struct type Baz (line 11) | type Baz struct type Foo (line 15) | type Foo struct FILE: internal/endtoend/testdata/join_two_tables/postgresql/pgx/v4/go/query.sql.go constant twoJoins (line 12) | twoJoins = `-- name: TwoJoins :many method TwoJoins (line 19) | func (q *Queries) TwoJoins(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/join_two_tables/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (bar_id serial not null, baz_id serial not null) type bar (line 2) | CREATE TABLE bar (id serial not null) type baz (line 3) | CREATE TABLE baz (id serial not null) FILE: internal/endtoend/testdata/join_two_tables/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/join_two_tables/postgresql/pgx/v5/go/models.go type Bar (line 7) | type Bar struct type Baz (line 11) | type Baz struct type Foo (line 15) | type Foo struct FILE: internal/endtoend/testdata/join_two_tables/postgresql/pgx/v5/go/query.sql.go constant twoJoins (line 12) | twoJoins = `-- name: TwoJoins :many method TwoJoins (line 19) | func (q *Queries) TwoJoins(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/join_two_tables/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (bar_id serial not null, baz_id serial not null) type bar (line 2) | CREATE TABLE bar (id serial not null) type baz (line 3) | CREATE TABLE baz (id serial not null) FILE: internal/endtoend/testdata/join_two_tables/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/join_two_tables/postgresql/stdlib/go/models.go type Bar (line 7) | type Bar struct type Baz (line 11) | type Baz struct type Foo (line 15) | type Foo struct FILE: internal/endtoend/testdata/join_two_tables/postgresql/stdlib/go/query.sql.go constant twoJoins (line 12) | twoJoins = `-- name: TwoJoins :many method TwoJoins (line 19) | func (q *Queries) TwoJoins(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/join_two_tables/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (bar_id serial not null, baz_id serial not null) type bar (line 2) | CREATE TABLE bar (id serial not null) type baz (line 3) | CREATE TABLE baz (id serial not null) FILE: internal/endtoend/testdata/join_two_tables/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/join_two_tables/sqlite/go/models.go type Bar (line 7) | type Bar struct type Baz (line 11) | type Baz struct type Foo (line 15) | type Foo struct FILE: internal/endtoend/testdata/join_two_tables/sqlite/go/query.sql.go constant twoJoins (line 12) | twoJoins = `-- name: TwoJoins :many method TwoJoins (line 19) | func (q *Queries) TwoJoins(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/join_two_tables/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo (bar_id integer not null, baz_id integer not null) type bar (line 2) | CREATE TABLE bar (id integer not null) type baz (line 3) | CREATE TABLE baz (id integer not null) FILE: internal/endtoend/testdata/join_update/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/join_update/postgresql/pgx/go/models.go type GroupCalcTotal (line 11) | type GroupCalcTotal struct type NpnExternalMap (line 16) | type NpnExternalMap struct type ProducerGroupAttribute (line 21) | type ProducerGroupAttribute struct FILE: internal/endtoend/testdata/join_update/postgresql/pgx/go/query.sql.go constant percentile (line 12) | percentile = `-- name: Percentile :exec method Percentile (line 20) | func (q *Queries) Percentile(ctx context.Context) error { FILE: internal/endtoend/testdata/join_update/postgresql/pgx/schema.sql type group_calc_totals (line 1) | CREATE TABLE group_calc_totals ( type producer_group_attribute (line 6) | CREATE TABLE producer_group_attribute ( type npn_external_map (line 11) | CREATE TABLE npn_external_map ( FILE: internal/endtoend/testdata/join_using/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/join_using/postgresql/pgx/go/models.go type T1 (line 7) | type T1 struct type T2 (line 11) | type T2 struct FILE: internal/endtoend/testdata/join_using/postgresql/pgx/go/query.sql.go constant selectJoinUsing (line 14) | selectJoinUsing = `-- name: SelectJoinUsing :many type SelectJoinUsingRow (line 18) | type SelectJoinUsingRow struct method SelectJoinUsing (line 23) | func (q *Queries) SelectJoinUsing(ctx context.Context) ([]SelectJoinUsin... FILE: internal/endtoend/testdata/join_using/postgresql/pgx/schema.sql type t1 (line 1) | create table t1 ( type t2 (line 4) | create table t2 ( FILE: internal/endtoend/testdata/join_validate_columns/postgresql/pgx/schema.sql type authors (line 1) | CREATE TABLE authors ( type books (line 6) | CREATE TABLE books ( FILE: internal/endtoend/testdata/join_where_clause/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/join_where_clause/mysql/go/models.go type Bar (line 7) | type Bar struct type Foo (line 12) | type Foo struct FILE: internal/endtoend/testdata/join_where_clause/mysql/go/query.sql.go constant joinNoConstraints (line 12) | joinNoConstraints = `-- name: JoinNoConstraints :many type JoinNoConstraintsParams (line 19) | type JoinNoConstraintsParams struct method JoinNoConstraints (line 24) | func (q *Queries) JoinNoConstraints(ctx context.Context, arg JoinNoConst... constant joinParamWhereClause (line 47) | joinParamWhereClause = `-- name: JoinParamWhereClause :many type JoinParamWhereClauseParams (line 54) | type JoinParamWhereClauseParams struct method JoinParamWhereClause (line 59) | func (q *Queries) JoinParamWhereClause(ctx context.Context, arg JoinPara... constant joinWhereClause (line 82) | joinWhereClause = `-- name: JoinWhereClause :many method JoinWhereClause (line 89) | func (q *Queries) JoinWhereClause(ctx context.Context, owner string) ([]... FILE: internal/endtoend/testdata/join_where_clause/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (barid serial not null) type bar (line 2) | CREATE TABLE bar (id serial not null, owner text not null) FILE: internal/endtoend/testdata/join_where_clause/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/join_where_clause/postgresql/pgx/v4/go/models.go type Bar (line 7) | type Bar struct type Foo (line 12) | type Foo struct FILE: internal/endtoend/testdata/join_where_clause/postgresql/pgx/v4/go/query.sql.go constant joinNoConstraints (line 12) | joinNoConstraints = `-- name: JoinNoConstraints :many type JoinNoConstraintsParams (line 19) | type JoinNoConstraintsParams struct method JoinNoConstraints (line 24) | func (q *Queries) JoinNoConstraints(ctx context.Context, arg JoinNoConst... constant joinParamWhereClause (line 44) | joinParamWhereClause = `-- name: JoinParamWhereClause :many type JoinParamWhereClauseParams (line 51) | type JoinParamWhereClauseParams struct method JoinParamWhereClause (line 56) | func (q *Queries) JoinParamWhereClause(ctx context.Context, arg JoinPara... constant joinWhereClause (line 76) | joinWhereClause = `-- name: JoinWhereClause :many method JoinWhereClause (line 83) | func (q *Queries) JoinWhereClause(ctx context.Context, owner string) ([]... FILE: internal/endtoend/testdata/join_where_clause/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (barid serial not null) type bar (line 2) | CREATE TABLE bar (id serial not null, owner text not null) FILE: internal/endtoend/testdata/join_where_clause/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/join_where_clause/postgresql/pgx/v5/go/models.go type Bar (line 7) | type Bar struct type Foo (line 12) | type Foo struct FILE: internal/endtoend/testdata/join_where_clause/postgresql/pgx/v5/go/query.sql.go constant joinNoConstraints (line 12) | joinNoConstraints = `-- name: JoinNoConstraints :many type JoinNoConstraintsParams (line 19) | type JoinNoConstraintsParams struct method JoinNoConstraints (line 24) | func (q *Queries) JoinNoConstraints(ctx context.Context, arg JoinNoConst... constant joinParamWhereClause (line 44) | joinParamWhereClause = `-- name: JoinParamWhereClause :many type JoinParamWhereClauseParams (line 51) | type JoinParamWhereClauseParams struct method JoinParamWhereClause (line 56) | func (q *Queries) JoinParamWhereClause(ctx context.Context, arg JoinPara... constant joinWhereClause (line 76) | joinWhereClause = `-- name: JoinWhereClause :many method JoinWhereClause (line 83) | func (q *Queries) JoinWhereClause(ctx context.Context, owner string) ([]... FILE: internal/endtoend/testdata/join_where_clause/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (barid serial not null) type bar (line 2) | CREATE TABLE bar (id serial not null, owner text not null) FILE: internal/endtoend/testdata/join_where_clause/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/join_where_clause/postgresql/stdlib/go/models.go type Bar (line 7) | type Bar struct type Foo (line 12) | type Foo struct FILE: internal/endtoend/testdata/join_where_clause/postgresql/stdlib/go/query.sql.go constant joinNoConstraints (line 12) | joinNoConstraints = `-- name: JoinNoConstraints :many type JoinNoConstraintsParams (line 19) | type JoinNoConstraintsParams struct method JoinNoConstraints (line 24) | func (q *Queries) JoinNoConstraints(ctx context.Context, arg JoinNoConst... constant joinParamWhereClause (line 47) | joinParamWhereClause = `-- name: JoinParamWhereClause :many type JoinParamWhereClauseParams (line 54) | type JoinParamWhereClauseParams struct method JoinParamWhereClause (line 59) | func (q *Queries) JoinParamWhereClause(ctx context.Context, arg JoinPara... constant joinWhereClause (line 82) | joinWhereClause = `-- name: JoinWhereClause :many method JoinWhereClause (line 89) | func (q *Queries) JoinWhereClause(ctx context.Context, owner string) ([]... FILE: internal/endtoend/testdata/join_where_clause/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (barid serial not null) type bar (line 2) | CREATE TABLE bar (id serial not null, owner text not null) FILE: internal/endtoend/testdata/join_where_clause/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/join_where_clause/sqlite/go/models.go type Bar (line 7) | type Bar struct type Foo (line 12) | type Foo struct FILE: internal/endtoend/testdata/join_where_clause/sqlite/go/query.sql.go constant joinNoConstraints (line 12) | joinNoConstraints = `-- name: JoinNoConstraints :many type JoinNoConstraintsParams (line 19) | type JoinNoConstraintsParams struct method JoinNoConstraints (line 24) | func (q *Queries) JoinNoConstraints(ctx context.Context, arg JoinNoConst... constant joinParamWhereClause (line 47) | joinParamWhereClause = `-- name: JoinParamWhereClause :many type JoinParamWhereClauseParams (line 54) | type JoinParamWhereClauseParams struct method JoinParamWhereClause (line 59) | func (q *Queries) JoinParamWhereClause(ctx context.Context, arg JoinPara... constant joinWhereClause (line 82) | joinWhereClause = `-- name: JoinWhereClause :many method JoinWhereClause (line 89) | func (q *Queries) JoinWhereClause(ctx context.Context, owner string) ([]... FILE: internal/endtoend/testdata/join_where_clause/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo (barid integer not null) type bar (line 2) | CREATE TABLE bar (id integer not null, owner text not null) FILE: internal/endtoend/testdata/json/mysql/go/copyfrom.go function convertRowsForBulkInsert (line 20) | func convertRowsForBulkInsert(w *io.PipeWriter, arg []BulkInsertParams) { method BulkInsert (line 37) | func (q *Queries) BulkInsert(ctx context.Context, arg []BulkInsertParams... FILE: internal/endtoend/testdata/json/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/json/mysql/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/json/mysql/go/query.sql.go constant bulkInsert (line 13) | bulkInsert = `-- name: BulkInsert :copyfrom type BulkInsertParams (line 17) | type BulkInsertParams struct constant selectFoo (line 22) | selectFoo = `-- name: SelectFoo :exec method SelectFoo (line 26) | func (q *Queries) SelectFoo(ctx context.Context) error { FILE: internal/endtoend/testdata/json/mysql/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/json/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/json/postgresql/pgx/v4/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/json/postgresql/pgx/v4/go/query.sql.go constant selectFoo (line 12) | selectFoo = `-- name: SelectFoo :exec method SelectFoo (line 16) | func (q *Queries) SelectFoo(ctx context.Context) error { FILE: internal/endtoend/testdata/json/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/json/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/json/postgresql/pgx/v5/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/json/postgresql/pgx/v5/go/query.sql.go constant selectFoo (line 12) | selectFoo = `-- name: SelectFoo :exec method SelectFoo (line 16) | func (q *Queries) SelectFoo(ctx context.Context) error { FILE: internal/endtoend/testdata/json/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/json/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/json/postgresql/stdlib/go/models.go type Foo (line 13) | type Foo struct FILE: internal/endtoend/testdata/json/postgresql/stdlib/go/query.sql.go constant selectFoo (line 12) | selectFoo = `-- name: SelectFoo :exec method SelectFoo (line 16) | func (q *Queries) SelectFoo(ctx context.Context) error { FILE: internal/endtoend/testdata/json/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/json_array_elements/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/json_array_elements/postgresql/pgx/go/models.go type SysAction (line 7) | type SysAction struct FILE: internal/endtoend/testdata/json_array_elements/postgresql/pgx/go/query.sql.go constant getActionCodeByResource (line 14) | getActionCodeByResource = `-- name: GetActionCodeByResource :one type GetActionCodeByResourceRow (line 22) | type GetActionCodeByResourceRow struct method GetActionCodeByResource (line 27) | func (q *Queries) GetActionCodeByResource(ctx context.Context, resource ... FILE: internal/endtoend/testdata/json_array_elements/postgresql/pgx/schema.sql type "sys_actions" (line 1) | CREATE TABLE "sys_actions" ( FILE: internal/endtoend/testdata/json_build/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/json_build/postgresql/pgx/v4/go/query.sql.go constant selectJSONBBuildArray (line 14) | selectJSONBBuildArray = `-- name: SelectJSONBBuildArray :one type SelectJSONBBuildArrayRow (line 23) | type SelectJSONBBuildArrayRow struct method SelectJSONBBuildArray (line 31) | func (q *Queries) SelectJSONBBuildArray(ctx context.Context) (SelectJSON... constant selectJSONBBuildObject (line 44) | selectJSONBBuildObject = `-- name: SelectJSONBBuildObject :one type SelectJSONBBuildObjectRow (line 53) | type SelectJSONBBuildObjectRow struct method SelectJSONBBuildObject (line 61) | func (q *Queries) SelectJSONBBuildObject(ctx context.Context) (SelectJSO... constant selectJSONBuildArray (line 74) | selectJSONBuildArray = `-- name: SelectJSONBuildArray :one type SelectJSONBuildArrayRow (line 83) | type SelectJSONBuildArrayRow struct method SelectJSONBuildArray (line 91) | func (q *Queries) SelectJSONBuildArray(ctx context.Context) (SelectJSONB... constant selectJSONBuildObject (line 104) | selectJSONBuildObject = `-- name: SelectJSONBuildObject :one type SelectJSONBuildObjectRow (line 113) | type SelectJSONBuildObjectRow struct method SelectJSONBuildObject (line 121) | func (q *Queries) SelectJSONBuildObject(ctx context.Context) (SelectJSON... FILE: internal/endtoend/testdata/json_build/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/json_build/postgresql/pgx/v5/go/query.sql.go constant selectJSONBBuildArray (line 12) | selectJSONBBuildArray = `-- name: SelectJSONBBuildArray :one type SelectJSONBBuildArrayRow (line 21) | type SelectJSONBBuildArrayRow struct method SelectJSONBBuildArray (line 29) | func (q *Queries) SelectJSONBBuildArray(ctx context.Context) (SelectJSON... constant selectJSONBBuildObject (line 42) | selectJSONBBuildObject = `-- name: SelectJSONBBuildObject :one type SelectJSONBBuildObjectRow (line 51) | type SelectJSONBBuildObjectRow struct method SelectJSONBBuildObject (line 59) | func (q *Queries) SelectJSONBBuildObject(ctx context.Context) (SelectJSO... constant selectJSONBuildArray (line 72) | selectJSONBuildArray = `-- name: SelectJSONBuildArray :one type SelectJSONBuildArrayRow (line 81) | type SelectJSONBuildArrayRow struct method SelectJSONBuildArray (line 89) | func (q *Queries) SelectJSONBuildArray(ctx context.Context) (SelectJSONB... constant selectJSONBuildObject (line 102) | selectJSONBuildObject = `-- name: SelectJSONBuildObject :one type SelectJSONBuildObjectRow (line 111) | type SelectJSONBuildObjectRow struct method SelectJSONBuildObject (line 119) | func (q *Queries) SelectJSONBuildObject(ctx context.Context) (SelectJSON... FILE: internal/endtoend/testdata/json_build/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/json_build/postgresql/stdlib/go/query.sql.go constant selectJSONBBuildArray (line 13) | selectJSONBBuildArray = `-- name: SelectJSONBBuildArray :one type SelectJSONBBuildArrayRow (line 22) | type SelectJSONBBuildArrayRow struct method SelectJSONBBuildArray (line 30) | func (q *Queries) SelectJSONBBuildArray(ctx context.Context) (SelectJSON... constant selectJSONBBuildObject (line 43) | selectJSONBBuildObject = `-- name: SelectJSONBBuildObject :one type SelectJSONBBuildObjectRow (line 52) | type SelectJSONBBuildObjectRow struct method SelectJSONBBuildObject (line 60) | func (q *Queries) SelectJSONBBuildObject(ctx context.Context) (SelectJSO... constant selectJSONBuildArray (line 73) | selectJSONBuildArray = `-- name: SelectJSONBuildArray :one type SelectJSONBuildArrayRow (line 82) | type SelectJSONBuildArrayRow struct method SelectJSONBuildArray (line 90) | func (q *Queries) SelectJSONBuildArray(ctx context.Context) (SelectJSONB... constant selectJSONBuildObject (line 103) | selectJSONBuildObject = `-- name: SelectJSONBuildObject :one type SelectJSONBuildObjectRow (line 112) | type SelectJSONBuildObjectRow struct method SelectJSONBuildObject (line 120) | func (q *Queries) SelectJSONBuildObject(ctx context.Context) (SelectJSON... FILE: internal/endtoend/testdata/json_param_type/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/json_param_type/postgresql/pgx/go/models.go type User (line 7) | type User struct FILE: internal/endtoend/testdata/json_param_type/postgresql/pgx/go/query.sql.go constant findByAddress (line 14) | findByAddress = `-- name: FindByAddress :one method FindByAddress (line 18) | func (q *Queries) FindByAddress(ctx context.Context, metadata pgtype.Tex... FILE: internal/endtoend/testdata/json_param_type/postgresql/pgx/schema.sql type "user" (line 1) | CREATE TABLE "user" ( FILE: internal/endtoend/testdata/json_param_type/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/json_param_type/sqlite/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/json_param_type/sqlite/go/query.sql.go constant findByAddress (line 13) | findByAddress = `-- name: FindByAddress :one method FindByAddress (line 17) | func (q *Queries) FindByAddress(ctx context.Context, metadata sql.NullSt... FILE: internal/endtoend/testdata/json_param_type/sqlite/schema.sql type "user" (line 1) | CREATE TABLE "user" ( FILE: internal/endtoend/testdata/json_tags/camel_case/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/json_tags/camel_case/postgresql/pgx/v4/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/json_tags/camel_case/postgresql/pgx/v4/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context) ([]User, error) { FILE: internal/endtoend/testdata/json_tags/camel_case/postgresql/pgx/v4/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/json_tags/camel_case/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/json_tags/camel_case/postgresql/pgx/v5/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/json_tags/camel_case/postgresql/pgx/v5/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context) ([]User, error) { FILE: internal/endtoend/testdata/json_tags/camel_case/postgresql/pgx/v5/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/json_tags/camel_case/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/json_tags/camel_case/postgresql/stdlib/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/json_tags/camel_case/postgresql/stdlib/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context) ([]User, error) { FILE: internal/endtoend/testdata/json_tags/camel_case/postgresql/stdlib/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/json_tags/pascal_case/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/json_tags/pascal_case/postgresql/pgx/v4/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/json_tags/pascal_case/postgresql/pgx/v4/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context) ([]User, error) { FILE: internal/endtoend/testdata/json_tags/pascal_case/postgresql/pgx/v4/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/json_tags/pascal_case/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/json_tags/pascal_case/postgresql/pgx/v5/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/json_tags/pascal_case/postgresql/pgx/v5/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context) ([]User, error) { FILE: internal/endtoend/testdata/json_tags/pascal_case/postgresql/pgx/v5/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/json_tags/pascal_case/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/json_tags/pascal_case/postgresql/stdlib/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/json_tags/pascal_case/postgresql/stdlib/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context) ([]User, error) { FILE: internal/endtoend/testdata/json_tags/pascal_case/postgresql/stdlib/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/json_tags/snake_case/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/json_tags/snake_case/postgresql/pgx/v4/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/json_tags/snake_case/postgresql/pgx/v4/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context) ([]User, error) { FILE: internal/endtoend/testdata/json_tags/snake_case/postgresql/pgx/v4/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/json_tags/snake_case/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/json_tags/snake_case/postgresql/pgx/v5/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/json_tags/snake_case/postgresql/pgx/v5/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context) ([]User, error) { FILE: internal/endtoend/testdata/json_tags/snake_case/postgresql/pgx/v5/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/json_tags/snake_case/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/json_tags/snake_case/postgresql/stdlib/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/json_tags/snake_case/postgresql/stdlib/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context) ([]User, error) { FILE: internal/endtoend/testdata/json_tags/snake_case/postgresql/stdlib/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/json_tags_null_enum/camel_case/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/json_tags_null_enum/camel_case/postgresql/stdlib/go/models.go type JobPostLocationType (line 13) | type JobPostLocationType method Scan (line 21) | func (e *JobPostLocationType) Scan(src interface{}) error { constant JobPostLocationTypeRemote (line 16) | JobPostLocationTypeRemote JobPostLocationType = "remote" constant JobPostLocationTypeInOffice (line 17) | JobPostLocationTypeInOffice JobPostLocationType = "in_office" constant JobPostLocationTypeHybrid (line 18) | JobPostLocationTypeHybrid JobPostLocationType = "hybrid" type NullJobPostLocationType (line 33) | type NullJobPostLocationType struct method Scan (line 39) | func (ns *NullJobPostLocationType) Scan(value interface{}) error { method Value (line 49) | func (ns NullJobPostLocationType) Value() (driver.Value, error) { type Author (line 56) | type Author struct FILE: internal/endtoend/testdata/json_tags_null_enum/camel_case/postgresql/stdlib/go/query.sql.go constant getAuthor (line 12) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 17) | func (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, erro... FILE: internal/endtoend/testdata/json_tags_null_enum/camel_case/postgresql/stdlib/schema.sql type authors (line 3) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/json_tags_null_enum/none/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/json_tags_null_enum/none/postgresql/stdlib/go/models.go type JobPostLocationType (line 13) | type JobPostLocationType method Scan (line 21) | func (e *JobPostLocationType) Scan(src interface{}) error { constant JobPostLocationTypeRemote (line 16) | JobPostLocationTypeRemote JobPostLocationType = "remote" constant JobPostLocationTypeInOffice (line 17) | JobPostLocationTypeInOffice JobPostLocationType = "in_office" constant JobPostLocationTypeHybrid (line 18) | JobPostLocationTypeHybrid JobPostLocationType = "hybrid" type NullJobPostLocationType (line 33) | type NullJobPostLocationType struct method Scan (line 39) | func (ns *NullJobPostLocationType) Scan(value interface{}) error { method Value (line 49) | func (ns NullJobPostLocationType) Value() (driver.Value, error) { type Author (line 56) | type Author struct FILE: internal/endtoend/testdata/json_tags_null_enum/none/postgresql/stdlib/go/query.sql.go constant getAuthor (line 12) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 17) | func (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, erro... FILE: internal/endtoend/testdata/json_tags_null_enum/none/postgresql/stdlib/schema.sql type authors (line 3) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/json_tags_null_enum/pascal_case/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/json_tags_null_enum/pascal_case/postgresql/stdlib/go/models.go type JobPostLocationType (line 13) | type JobPostLocationType method Scan (line 21) | func (e *JobPostLocationType) Scan(src interface{}) error { constant JobPostLocationTypeRemote (line 16) | JobPostLocationTypeRemote JobPostLocationType = "remote" constant JobPostLocationTypeInOffice (line 17) | JobPostLocationTypeInOffice JobPostLocationType = "in_office" constant JobPostLocationTypeHybrid (line 18) | JobPostLocationTypeHybrid JobPostLocationType = "hybrid" type NullJobPostLocationType (line 33) | type NullJobPostLocationType struct method Scan (line 39) | func (ns *NullJobPostLocationType) Scan(value interface{}) error { method Value (line 49) | func (ns NullJobPostLocationType) Value() (driver.Value, error) { type Author (line 56) | type Author struct FILE: internal/endtoend/testdata/json_tags_null_enum/pascal_case/postgresql/stdlib/go/query.sql.go constant getAuthor (line 12) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 17) | func (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, erro... FILE: internal/endtoend/testdata/json_tags_null_enum/pascal_case/postgresql/stdlib/schema.sql type authors (line 3) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/json_tags_null_enum/snake_case/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/json_tags_null_enum/snake_case/postgresql/stdlib/go/models.go type JobPostLocationType (line 13) | type JobPostLocationType method Scan (line 21) | func (e *JobPostLocationType) Scan(src interface{}) error { constant JobPostLocationTypeRemote (line 16) | JobPostLocationTypeRemote JobPostLocationType = "remote" constant JobPostLocationTypeInOffice (line 17) | JobPostLocationTypeInOffice JobPostLocationType = "in_office" constant JobPostLocationTypeHybrid (line 18) | JobPostLocationTypeHybrid JobPostLocationType = "hybrid" type NullJobPostLocationType (line 33) | type NullJobPostLocationType struct method Scan (line 39) | func (ns *NullJobPostLocationType) Scan(value interface{}) error { method Value (line 49) | func (ns NullJobPostLocationType) Value() (driver.Value, error) { type Author (line 56) | type Author struct FILE: internal/endtoend/testdata/json_tags_null_enum/snake_case/postgresql/stdlib/go/query.sql.go constant getAuthor (line 12) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 17) | func (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, erro... FILE: internal/endtoend/testdata/json_tags_null_enum/snake_case/postgresql/stdlib/schema.sql type authors (line 3) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/json_tags_null_enum/v2_config/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/json_tags_null_enum/v2_config/postgresql/stdlib/go/models.go type JobPostLocationType (line 13) | type JobPostLocationType method Scan (line 21) | func (e *JobPostLocationType) Scan(src interface{}) error { constant JobPostLocationTypeRemote (line 16) | JobPostLocationTypeRemote JobPostLocationType = "remote" constant JobPostLocationTypeInOffice (line 17) | JobPostLocationTypeInOffice JobPostLocationType = "in_office" constant JobPostLocationTypeHybrid (line 18) | JobPostLocationTypeHybrid JobPostLocationType = "hybrid" type NullJobPostLocationType (line 33) | type NullJobPostLocationType struct method Scan (line 39) | func (ns *NullJobPostLocationType) Scan(value interface{}) error { method Value (line 49) | func (ns NullJobPostLocationType) Value() (driver.Value, error) { type Author (line 56) | type Author struct FILE: internal/endtoend/testdata/json_tags_null_enum/v2_config/postgresql/stdlib/go/query.sql.go constant getAuthor (line 12) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 17) | func (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, erro... FILE: internal/endtoend/testdata/json_tags_null_enum/v2_config/postgresql/stdlib/schema.sql type authors (line 3) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/jsonb/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/jsonb/pgx/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/jsonb/pgx/go/query.sql.go constant insertFoo (line 12) | insertFoo = `-- name: InsertFoo :exec type InsertFooParams (line 26) | type InsertFooParams struct method InsertFoo (line 33) | func (q *Queries) InsertFoo(ctx context.Context, arg InsertFooParams) er... constant selectFoo (line 43) | selectFoo = `-- name: SelectFoo :exec method SelectFoo (line 47) | func (q *Queries) SelectFoo(ctx context.Context) error { FILE: internal/endtoend/testdata/jsonb/pgx/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/jsonb/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/jsonb/sqlite/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/jsonb/sqlite/go/query.sql.go constant insertFoo (line 13) | insertFoo = `-- name: InsertFoo :exec type InsertFooParams (line 27) | type InsertFooParams struct method InsertFoo (line 34) | func (q *Queries) InsertFoo(ctx context.Context, arg InsertFooParams) er... constant selectFoo (line 44) | selectFoo = `-- name: SelectFoo :exec method SelectFoo (line 48) | func (q *Queries) SelectFoo(ctx context.Context) error { FILE: internal/endtoend/testdata/jsonb/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/limit/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/limit/mysql/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/limit/mysql/go/query.sql.go constant limitMe (line 12) | limitMe = `-- name: LimitMe :exec method LimitMe (line 16) | func (q *Queries) LimitMe(ctx context.Context, limit int32) error { constant limitMeToo (line 21) | limitMeToo = `-- name: LimitMeToo :exec method LimitMeToo (line 25) | func (q *Queries) LimitMeToo(ctx context.Context, limit int32) error { FILE: internal/endtoend/testdata/limit/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (bar bool not null) FILE: internal/endtoend/testdata/limit/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/limit/pgx/v4/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/limit/pgx/v4/go/query.sql.go constant limitMe (line 12) | limitMe = `-- name: LimitMe :many method LimitMe (line 16) | func (q *Queries) LimitMe(ctx context.Context, limit int32) ([]bool, err... FILE: internal/endtoend/testdata/limit/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (bar bool not null) FILE: internal/endtoend/testdata/limit/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/limit/pgx/v5/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/limit/pgx/v5/go/query.sql.go constant limitMe (line 12) | limitMe = `-- name: LimitMe :many method LimitMe (line 16) | func (q *Queries) LimitMe(ctx context.Context, limit int32) ([]bool, err... FILE: internal/endtoend/testdata/limit/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (bar bool not null) FILE: internal/endtoend/testdata/limit/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/limit/sqlite/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/limit/sqlite/go/query.sql.go constant limitMe (line 12) | limitMe = `-- name: LimitMe :many method LimitMe (line 16) | func (q *Queries) LimitMe(ctx context.Context, limit int64) ([]bool, err... FILE: internal/endtoend/testdata/limit/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo (bar bool not null) FILE: internal/endtoend/testdata/limit/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/limit/stdlib/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/limit/stdlib/go/query.sql.go constant limitMe (line 12) | limitMe = `-- name: LimitMe :many method LimitMe (line 16) | func (q *Queries) LimitMe(ctx context.Context, limit int32) ([]bool, err... FILE: internal/endtoend/testdata/limit/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (bar bool not null) FILE: internal/endtoend/testdata/lower/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/lower/pgx/v4/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/lower/pgx/v4/go/query.sql.go constant lower (line 12) | lower = `-- name: Lower :many type LowerParams (line 16) | type LowerParams struct method Lower (line 21) | func (q *Queries) Lower(ctx context.Context, arg LowerParams) ([]string,... FILE: internal/endtoend/testdata/lower/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (bar text not null, bat text not null) FILE: internal/endtoend/testdata/lower/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/lower/pgx/v5/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/lower/pgx/v5/go/query.sql.go constant lower (line 12) | lower = `-- name: Lower :many type LowerParams (line 16) | type LowerParams struct method Lower (line 21) | func (q *Queries) Lower(ctx context.Context, arg LowerParams) ([]string,... FILE: internal/endtoend/testdata/lower/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (bar text not null, bat text not null) FILE: internal/endtoend/testdata/lower/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/lower/stdlib/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/lower/stdlib/go/query.sql.go constant lower (line 12) | lower = `-- name: Lower :many type LowerParams (line 16) | type LowerParams struct method Lower (line 21) | func (q *Queries) Lower(ctx context.Context, arg LowerParams) ([]string,... FILE: internal/endtoend/testdata/lower/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (bar text not null, bat text not null) FILE: internal/endtoend/testdata/lower_switched_order/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/lower_switched_order/pgx/v4/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/lower_switched_order/pgx/v4/go/query.sql.go constant lowerSwitchedOrder (line 12) | lowerSwitchedOrder = `-- name: LowerSwitchedOrder :many type LowerSwitchedOrderParams (line 16) | type LowerSwitchedOrderParams struct method LowerSwitchedOrder (line 21) | func (q *Queries) LowerSwitchedOrder(ctx context.Context, arg LowerSwitc... FILE: internal/endtoend/testdata/lower_switched_order/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (bar text not null, bat text not null) FILE: internal/endtoend/testdata/lower_switched_order/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/lower_switched_order/pgx/v5/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/lower_switched_order/pgx/v5/go/query.sql.go constant lowerSwitchedOrder (line 12) | lowerSwitchedOrder = `-- name: LowerSwitchedOrder :many type LowerSwitchedOrderParams (line 16) | type LowerSwitchedOrderParams struct method LowerSwitchedOrder (line 21) | func (q *Queries) LowerSwitchedOrder(ctx context.Context, arg LowerSwitc... FILE: internal/endtoend/testdata/lower_switched_order/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (bar text not null, bat text not null) FILE: internal/endtoend/testdata/lower_switched_order/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/lower_switched_order/stdlib/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/lower_switched_order/stdlib/go/query.sql.go constant lowerSwitchedOrder (line 12) | lowerSwitchedOrder = `-- name: LowerSwitchedOrder :many type LowerSwitchedOrderParams (line 16) | type LowerSwitchedOrderParams struct method LowerSwitchedOrder (line 21) | func (q *Queries) LowerSwitchedOrder(ctx context.Context, arg LowerSwitc... FILE: internal/endtoend/testdata/lower_switched_order/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (bar text not null, bat text not null) FILE: internal/endtoend/testdata/materialized_views/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/materialized_views/postgresql/pgx/v4/go/models.go type Author (line 11) | type Author struct type AuthorsName (line 18) | type AuthorsName struct FILE: internal/endtoend/testdata/materialized_views/postgresql/pgx/v4/go/query.sql.go constant listAuthors (line 12) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 16) | func (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) { FILE: internal/endtoend/testdata/materialized_views/postgresql/pgx/v4/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/materialized_views/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/materialized_views/postgresql/pgx/v5/go/models.go type Author (line 11) | type Author struct type AuthorsName (line 18) | type AuthorsName struct FILE: internal/endtoend/testdata/materialized_views/postgresql/pgx/v5/go/query.sql.go constant listAuthors (line 12) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 16) | func (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) { FILE: internal/endtoend/testdata/materialized_views/postgresql/pgx/v5/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/materialized_views/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/materialized_views/postgresql/stdlib/go/models.go type Author (line 11) | type Author struct type AuthorsName (line 18) | type AuthorsName struct FILE: internal/endtoend/testdata/materialized_views/postgresql/stdlib/go/query.sql.go constant listAuthors (line 12) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 16) | func (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) { FILE: internal/endtoend/testdata/materialized_views/postgresql/stdlib/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/mathmatical_operator/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/mathmatical_operator/pgx/v4/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/mathmatical_operator/pgx/v4/go/query.sql.go constant math (line 12) | math = `-- name: Math :many type MathRow (line 16) | type MathRow struct method Math (line 21) | func (q *Queries) Math(ctx context.Context) ([]MathRow, error) { FILE: internal/endtoend/testdata/mathmatical_operator/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (num integer not null) FILE: internal/endtoend/testdata/mathmatical_operator/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/mathmatical_operator/pgx/v5/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/mathmatical_operator/pgx/v5/go/query.sql.go constant math (line 12) | math = `-- name: Math :many type MathRow (line 16) | type MathRow struct method Math (line 21) | func (q *Queries) Math(ctx context.Context) ([]MathRow, error) { FILE: internal/endtoend/testdata/mathmatical_operator/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (num integer not null) FILE: internal/endtoend/testdata/mathmatical_operator/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/mathmatical_operator/stdlib/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/mathmatical_operator/stdlib/go/query.sql.go constant math (line 12) | math = `-- name: Math :many type MathRow (line 16) | type MathRow struct method Math (line 21) | func (q *Queries) Math(ctx context.Context) ([]MathRow, error) { FILE: internal/endtoend/testdata/mathmatical_operator/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (num integer not null) FILE: internal/endtoend/testdata/min_max_date/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/min_max_date/postgresql/pgx/go/models.go type Activity (line 11) | type Activity struct FILE: internal/endtoend/testdata/min_max_date/postgresql/pgx/go/query.sql.go constant activityStats (line 14) | activityStats = `-- name: ActivityStats :one type ActivityStatsRow (line 22) | type ActivityStatsRow struct method ActivityStats (line 28) | func (q *Queries) ActivityStats(ctx context.Context, accountID int64) (A... FILE: internal/endtoend/testdata/min_max_date/postgresql/pgx/schema.sql type activities (line 1) | CREATE TABLE activities ( FILE: internal/endtoend/testdata/missing_semicolon/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/missing_semicolon/mysql/go/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/missing_semicolon/mysql/go/query.sql.go constant setAuthor (line 12) | setAuthor = `-- name: SetAuthor :exec type SetAuthorParams (line 18) | type SetAuthorParams struct method SetAuthor (line 23) | func (q *Queries) SetAuthor(ctx context.Context, arg SetAuthorParams) er... FILE: internal/endtoend/testdata/missing_semicolon/mysql/schema.sql type authors (line 2) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/missing_semicolon/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (email text not null) FILE: internal/endtoend/testdata/missing_semicolon/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (email text not null) FILE: internal/endtoend/testdata/missing_semicolon/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (email text not null) FILE: internal/endtoend/testdata/mix_param_types/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/mix_param_types/mysql/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/mix_param_types/mysql/go/test.sql.go constant countOne (line 12) | countOne = `-- name: CountOne :one type CountOneParams (line 16) | type CountOneParams struct method CountOne (line 21) | func (q *Queries) CountOne(ctx context.Context, arg CountOneParams) (int... constant countThree (line 28) | countThree = `-- name: CountThree :one type CountThreeParams (line 32) | type CountThreeParams struct method CountThree (line 38) | func (q *Queries) CountThree(ctx context.Context, arg CountThreeParams) ... constant countTwo (line 45) | countTwo = `-- name: CountTwo :one type CountTwoParams (line 49) | type CountTwoParams struct method CountTwo (line 54) | func (q *Queries) CountTwo(ctx context.Context, arg CountTwoParams) (int... FILE: internal/endtoend/testdata/mix_param_types/mysql/schema.sql type bar (line 1) | CREATE TABLE bar ( FILE: internal/endtoend/testdata/mix_param_types/postgresql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/mix_param_types/postgresql/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/mix_param_types/postgresql/go/test.sql.go constant countOne (line 12) | countOne = `-- name: CountOne :one type CountOneParams (line 16) | type CountOneParams struct method CountOne (line 22) | func (q *Queries) CountOne(ctx context.Context, arg CountOneParams) (int... constant countThree (line 29) | countThree = `-- name: CountThree :one type CountThreeParams (line 33) | type CountThreeParams struct method CountThree (line 39) | func (q *Queries) CountThree(ctx context.Context, arg CountThreeParams) ... constant countTwo (line 46) | countTwo = `-- name: CountTwo :one type CountTwoParams (line 50) | type CountTwoParams struct method CountTwo (line 55) | func (q *Queries) CountTwo(ctx context.Context, arg CountTwoParams) (int... FILE: internal/endtoend/testdata/mix_param_types/postgresql/schema.sql type bar (line 1) | CREATE TABLE bar ( FILE: internal/endtoend/testdata/multidimension_array/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/multidimension_array/pgx/v4/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/multidimension_array/pgx/v4/go/query.sql.go constant textArray (line 12) | textArray = `-- name: TextArray :many method TextArray (line 16) | func (q *Queries) TextArray(ctx context.Context) ([][][]string, error) { FILE: internal/endtoend/testdata/multidimension_array/pgx/v4/schema.sql type bar (line 1) | CREATE TABLE bar (tags text[][] not null) FILE: internal/endtoend/testdata/multidimension_array/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/multidimension_array/pgx/v5/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/multidimension_array/pgx/v5/go/query.sql.go constant textArray (line 12) | textArray = `-- name: TextArray :many method TextArray (line 16) | func (q *Queries) TextArray(ctx context.Context) ([][][]string, error) { FILE: internal/endtoend/testdata/multidimension_array/pgx/v5/schema.sql type bar (line 1) | CREATE TABLE bar (tags text[][] not null) FILE: internal/endtoend/testdata/multidimension_array/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/multidimension_array/stdlib/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/multidimension_array/stdlib/go/query.sql.go constant textArray (line 14) | textArray = `-- name: TextArray :many method TextArray (line 18) | func (q *Queries) TextArray(ctx context.Context) ([][][]string, error) { FILE: internal/endtoend/testdata/multidimension_array/stdlib/schema.sql type bar (line 1) | CREATE TABLE bar (tags text[][] not null) FILE: internal/endtoend/testdata/multischema/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/multischema/pgx/v4/go/models.go type Bar (line 11) | type Bar struct type Foo (line 15) | type Foo struct FILE: internal/endtoend/testdata/multischema/pgx/v4/go/query.sql.go constant listBar (line 12) | listBar = `-- name: ListBar :many method ListBar (line 16) | func (q *Queries) ListBar(ctx context.Context) ([]int32, error) { constant listFoo (line 36) | listFoo = `-- name: ListFoo :many method ListFoo (line 40) | func (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/multischema/pgx/v4/query.sql type bar (line 1) | CREATE TABLE bar (id serial not null) type foo (line 2) | CREATE TABLE foo (id serial not null, bar serial) FILE: internal/endtoend/testdata/multischema/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/multischema/pgx/v5/go/models.go type Bar (line 11) | type Bar struct type Foo (line 15) | type Foo struct FILE: internal/endtoend/testdata/multischema/pgx/v5/go/query.sql.go constant listBar (line 12) | listBar = `-- name: ListBar :many method ListBar (line 16) | func (q *Queries) ListBar(ctx context.Context) ([]int32, error) { constant listFoo (line 36) | listFoo = `-- name: ListFoo :many method ListFoo (line 40) | func (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/multischema/pgx/v5/query.sql type bar (line 1) | CREATE TABLE bar (id serial not null) type foo (line 2) | CREATE TABLE foo (id serial not null, bar serial) FILE: internal/endtoend/testdata/multischema/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/multischema/stdlib/go/models.go type Bar (line 11) | type Bar struct type Foo (line 15) | type Foo struct FILE: internal/endtoend/testdata/multischema/stdlib/go/query.sql.go constant listBar (line 12) | listBar = `-- name: ListBar :many method ListBar (line 16) | func (q *Queries) ListBar(ctx context.Context) ([]int32, error) { constant listFoo (line 39) | listFoo = `-- name: ListFoo :many method ListFoo (line 43) | func (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/multischema/stdlib/query.sql type bar (line 1) | CREATE TABLE bar (id serial not null) type foo (line 2) | CREATE TABLE foo (id serial not null, bar serial) FILE: internal/endtoend/testdata/mysql_default_value/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/mysql_default_value/mysql/go/models.go type Author (line 7) | type Author struct FILE: internal/endtoend/testdata/mysql_default_value/mysql/go/query.sql.go constant selectAuthor (line 12) | selectAuthor = `-- name: SelectAuthor :many method SelectAuthor (line 16) | func (q *Queries) SelectAuthor(ctx context.Context) ([]Author, error) { FILE: internal/endtoend/testdata/mysql_default_value/mysql/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/mysql_reference_manual/aggregate_functions/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/mysql_reference_manual/aggregate_functions/go/group_concat.sql.go constant groupConcat (line 13) | groupConcat = `-- name: GroupConcat :many type GroupConcatRow (line 19) | type GroupConcatRow struct method GroupConcat (line 24) | func (q *Queries) GroupConcat(ctx context.Context) ([]GroupConcatRow, er... constant groupConcatOrderBy (line 47) | groupConcatOrderBy = `-- name: GroupConcatOrderBy :many type GroupConcatOrderByRow (line 54) | type GroupConcatOrderByRow struct method GroupConcatOrderBy (line 59) | func (q *Queries) GroupConcatOrderBy(ctx context.Context) ([]GroupConcat... FILE: internal/endtoend/testdata/mysql_reference_manual/aggregate_functions/go/models.go type Student (line 11) | type Student struct FILE: internal/endtoend/testdata/mysql_reference_manual/date_and_time_functions/go/date_add.sql.go constant dateAddDayHour (line 13) | dateAddDayHour = `-- name: DateAddDayHour :one method DateAddDayHour (line 18) | func (q *Queries) DateAddDayHour(ctx context.Context) (time.Time, error) { constant dateAddMinuteSecond (line 25) | dateAddMinuteSecond = `-- name: DateAddMinuteSecond :one method DateAddMinuteSecond (line 30) | func (q *Queries) DateAddMinuteSecond(ctx context.Context) (time.Time, e... constant dateAddOneDay (line 37) | dateAddOneDay = `-- name: DateAddOneDay :one method DateAddOneDay (line 43) | func (q *Queries) DateAddOneDay(ctx context.Context) (time.Time, error) { constant dateAddOneSecond (line 50) | dateAddOneSecond = `-- name: DateAddOneSecond :one method DateAddOneSecond (line 55) | func (q *Queries) DateAddOneSecond(ctx context.Context) (time.Time, erro... constant dateAddSecondMicrosecond (line 62) | dateAddSecondMicrosecond = `-- name: DateAddSecondMicrosecond :one method DateAddSecondMicrosecond (line 67) | func (q *Queries) DateAddSecondMicrosecond(ctx context.Context) (time.Ti... constant dateAddTimestampOneSecond (line 74) | dateAddTimestampOneSecond = `-- name: DateAddTimestampOneSecond :one method DateAddTimestampOneSecond (line 79) | func (q *Queries) DateAddTimestampOneSecond(ctx context.Context) (time.T... FILE: internal/endtoend/testdata/mysql_reference_manual/date_and_time_functions/go/date_sub.sql.go constant dateSub31Days (line 13) | dateSub31Days = `-- name: DateSub31Days :one method DateSub31Days (line 17) | func (q *Queries) DateSub31Days(ctx context.Context) (time.Time, error) { constant dateSubDaySecond (line 24) | dateSubDaySecond = `-- name: DateSubDaySecond :one method DateSubDaySecond (line 29) | func (q *Queries) DateSubDaySecond(ctx context.Context) (time.Time, erro... constant dateSubOneYear (line 36) | dateSubOneYear = `-- name: DateSubOneYear :one method DateSubOneYear (line 40) | func (q *Queries) DateSubOneYear(ctx context.Context) (time.Time, error) { FILE: internal/endtoend/testdata/mysql_reference_manual/date_and_time_functions/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/mysql_reference_manual/date_and_time_functions/go/models.go type Student (line 11) | type Student struct FILE: internal/endtoend/testdata/mysql_reference_manual/schema.sql type student (line 1) | CREATE TABLE student ( FILE: internal/endtoend/testdata/mysql_vector/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/mysql_vector/mysql/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/mysql_vector/mysql/go/query.sql.go constant insertVector (line 12) | insertVector = `-- name: InsertVector :exec method InsertVector (line 16) | func (q *Queries) InsertVector(ctx context.Context) error { constant selectVector (line 21) | selectVector = `-- name: SelectVector :many method SelectVector (line 27) | func (q *Queries) SelectVector(ctx context.Context) ([]int32, error) { FILE: internal/endtoend/testdata/mysql_vector/mysql/schema.sql type foo (line 1) | CREATE TABLE foo( FILE: internal/endtoend/testdata/named_param/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/named_param/pgx/v4/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/named_param/pgx/v4/go/query.sql.go constant atParams (line 12) | atParams = `-- name: AtParams :many type AtParamsParams (line 16) | type AtParamsParams struct method AtParams (line 21) | func (q *Queries) AtParams(ctx context.Context, arg AtParamsParams) ([]s... constant funcParams (line 41) | funcParams = `-- name: FuncParams :many type FuncParamsParams (line 45) | type FuncParamsParams struct method FuncParams (line 50) | func (q *Queries) FuncParams(ctx context.Context, arg FuncParamsParams) ... constant insertAtParams (line 70) | insertAtParams = `-- name: InsertAtParams :one type InsertAtParamsParams (line 74) | type InsertAtParamsParams struct method InsertAtParams (line 79) | func (q *Queries) InsertAtParams(ctx context.Context, arg InsertAtParams... constant insertFuncParams (line 86) | insertFuncParams = `-- name: InsertFuncParams :one type InsertFuncParamsParams (line 90) | type InsertFuncParamsParams struct method InsertFuncParams (line 95) | func (q *Queries) InsertFuncParams(ctx context.Context, arg InsertFuncPa... constant update (line 102) | update = `-- name: Update :one type UpdateParams (line 112) | type UpdateParams struct method Update (line 117) | func (q *Queries) Update(ctx context.Context, arg UpdateParams) (Foo, er... FILE: internal/endtoend/testdata/named_param/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (name text not null, bio text not null) FILE: internal/endtoend/testdata/named_param/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/named_param/pgx/v5/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/named_param/pgx/v5/go/query.sql.go constant atParams (line 12) | atParams = `-- name: AtParams :many type AtParamsParams (line 16) | type AtParamsParams struct method AtParams (line 21) | func (q *Queries) AtParams(ctx context.Context, arg AtParamsParams) ([]s... constant funcParams (line 41) | funcParams = `-- name: FuncParams :many type FuncParamsParams (line 45) | type FuncParamsParams struct method FuncParams (line 50) | func (q *Queries) FuncParams(ctx context.Context, arg FuncParamsParams) ... constant insertAtParams (line 70) | insertAtParams = `-- name: InsertAtParams :one type InsertAtParamsParams (line 74) | type InsertAtParamsParams struct method InsertAtParams (line 79) | func (q *Queries) InsertAtParams(ctx context.Context, arg InsertAtParams... constant insertFuncParams (line 86) | insertFuncParams = `-- name: InsertFuncParams :one type InsertFuncParamsParams (line 90) | type InsertFuncParamsParams struct method InsertFuncParams (line 95) | func (q *Queries) InsertFuncParams(ctx context.Context, arg InsertFuncPa... constant update (line 102) | update = `-- name: Update :one type UpdateParams (line 112) | type UpdateParams struct method Update (line 117) | func (q *Queries) Update(ctx context.Context, arg UpdateParams) (Foo, er... FILE: internal/endtoend/testdata/named_param/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (name text not null, bio text not null) FILE: internal/endtoend/testdata/named_param/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/named_param/sqlite/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/named_param/sqlite/go/query.sql.go constant atParams (line 12) | atParams = `-- name: AtParams :many method AtParams (line 16) | func (q *Queries) AtParams(ctx context.Context, slug string) ([]string, ... constant funcParams (line 39) | funcParams = `-- name: FuncParams :many method FuncParams (line 43) | func (q *Queries) FuncParams(ctx context.Context, slug string) ([]string... constant insertAtParams (line 66) | insertAtParams = `-- name: InsertAtParams :one type InsertAtParamsParams (line 70) | type InsertAtParamsParams struct method InsertAtParams (line 75) | func (q *Queries) InsertAtParams(ctx context.Context, arg InsertAtParams... constant insertFuncParams (line 82) | insertFuncParams = `-- name: InsertFuncParams :one type InsertFuncParamsParams (line 86) | type InsertFuncParamsParams struct method InsertFuncParams (line 91) | func (q *Queries) InsertFuncParams(ctx context.Context, arg InsertFuncPa... FILE: internal/endtoend/testdata/named_param/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo (name text not null, bio text not null) FILE: internal/endtoend/testdata/named_param/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/named_param/stdlib/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/named_param/stdlib/go/query.sql.go constant atParams (line 12) | atParams = `-- name: AtParams :many type AtParamsParams (line 16) | type AtParamsParams struct method AtParams (line 21) | func (q *Queries) AtParams(ctx context.Context, arg AtParamsParams) ([]s... constant funcParams (line 44) | funcParams = `-- name: FuncParams :many type FuncParamsParams (line 48) | type FuncParamsParams struct method FuncParams (line 53) | func (q *Queries) FuncParams(ctx context.Context, arg FuncParamsParams) ... constant insertAtParams (line 76) | insertAtParams = `-- name: InsertAtParams :one type InsertAtParamsParams (line 80) | type InsertAtParamsParams struct method InsertAtParams (line 85) | func (q *Queries) InsertAtParams(ctx context.Context, arg InsertAtParams... constant insertFuncParams (line 92) | insertFuncParams = `-- name: InsertFuncParams :one type InsertFuncParamsParams (line 96) | type InsertFuncParamsParams struct method InsertFuncParams (line 101) | func (q *Queries) InsertFuncParams(ctx context.Context, arg InsertFuncPa... constant update (line 108) | update = `-- name: Update :one type UpdateParams (line 118) | type UpdateParams struct method Update (line 123) | func (q *Queries) Update(ctx context.Context, arg UpdateParams) (Foo, er... FILE: internal/endtoend/testdata/named_param/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (name text not null, bio text not null) FILE: internal/endtoend/testdata/nested_select/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/nested_select/postgresql/pgx/go/models.go type Test (line 7) | type Test struct FILE: internal/endtoend/testdata/nested_select/postgresql/pgx/go/query.sql.go constant nestedSelect (line 14) | nestedSelect = `-- name: NestedSelect :one type NestedSelectParams (line 27) | type NestedSelectParams struct type NestedSelectRow (line 32) | type NestedSelectRow struct method NestedSelect (line 37) | func (q *Queries) NestedSelect(ctx context.Context, arg NestedSelectPara... FILE: internal/endtoend/testdata/nested_select/postgresql/pgx/schema.sql type test (line 1) | CREATE TABLE test ( FILE: internal/endtoend/testdata/nextval/postgresql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/nextval/postgresql/go/models.go type Author (line 7) | type Author struct FILE: internal/endtoend/testdata/nextval/postgresql/go/query.sql.go constant getNextID (line 12) | getNextID = `-- name: GetNextID :one type GetNextIDRow (line 17) | type GetNextIDRow struct method GetNextID (line 22) | func (q *Queries) GetNextID(ctx context.Context) (GetNextIDRow, error) { FILE: internal/endtoend/testdata/nextval/postgresql/schema.sql type authors (line 2) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/notifylisten/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/notifylisten/postgresql/pgx/v5/go/query.sql.go constant listenTest (line 12) | listenTest = `-- name: ListenTest :exec method ListenTest (line 16) | func (q *Queries) ListenTest(ctx context.Context) error { constant notifyTest (line 21) | notifyTest = `-- name: NotifyTest :exec method NotifyTest (line 25) | func (q *Queries) NotifyTest(ctx context.Context) error { constant notifyWithMessage (line 30) | notifyWithMessage = `-- name: NotifyWithMessage :exec method NotifyWithMessage (line 34) | func (q *Queries) NotifyWithMessage(ctx context.Context) error { FILE: internal/endtoend/testdata/null_if_type/postgresql/pganalyzer/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/null_if_type/postgresql/pganalyzer/db/models.go type Author (line 7) | type Author struct FILE: internal/endtoend/testdata/null_if_type/postgresql/pganalyzer/db/query.sql.go constant getRestrictedId (line 12) | getRestrictedId = `-- name: GetRestrictedId :one method GetRestrictedId (line 19) | func (q *Queries) GetRestrictedId(ctx context.Context, id int64) (int64,... FILE: internal/endtoend/testdata/null_if_type/postgresql/pganalyzer/schema.sql type author (line 1) | CREATE TABLE author ( FILE: internal/endtoend/testdata/null_if_type/postgresql/stdlib/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/null_if_type/postgresql/stdlib/db/models.go type Author (line 7) | type Author struct FILE: internal/endtoend/testdata/null_if_type/postgresql/stdlib/db/query.sql.go constant getRestrictedId (line 12) | getRestrictedId = `-- name: GetRestrictedId :one method GetRestrictedId (line 19) | func (q *Queries) GetRestrictedId(ctx context.Context, id int64) (bool, ... FILE: internal/endtoend/testdata/null_if_type/postgresql/stdlib/schema.sql type author (line 1) | CREATE TABLE author ( FILE: internal/endtoend/testdata/omit_sqlc_version/db/db.go type DBTX (line 10) | type DBTX interface function New (line 17) | func New(db DBTX) *Queries { type Queries (line 21) | type Queries struct method WithTx (line 25) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/omit_sqlc_version/db/models.go type Author (line 9) | type Author struct FILE: internal/endtoend/testdata/omit_sqlc_version/db/query.sql.go constant createAuthor (line 11) | createAuthor = `-- name: CreateAuthor :one type CreateAuthorParams (line 20) | type CreateAuthorParams struct method CreateAuthor (line 25) | func (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorPara... constant deleteAuthor (line 32) | deleteAuthor = `-- name: DeleteAuthor :exec method DeleteAuthor (line 37) | func (q *Queries) DeleteAuthor(ctx context.Context, id int64) error { constant getAuthor (line 42) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 47) | func (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, erro... constant listAuthors (line 54) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 59) | func (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) { FILE: internal/endtoend/testdata/omit_sqlc_version/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/omit_unused_structs/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/omit_unused_structs/postgresql/stdlib/go/models.go type ArrayEnum (line 12) | type ArrayEnum method Scan (line 19) | func (e *ArrayEnum) Scan(src interface{}) error { constant ArrayEnumO (line 15) | ArrayEnumO ArrayEnum = "o" constant ArrayEnumP (line 16) | ArrayEnumP ArrayEnum = "p" type NullArrayEnum (line 31) | type NullArrayEnum struct method Scan (line 37) | func (ns *NullArrayEnum) Scan(value interface{}) error { method Value (line 47) | func (ns NullArrayEnum) Value() (driver.Value, error) { type QueryParamEnumTableEnum (line 54) | type QueryParamEnumTableEnum method Scan (line 61) | func (e *QueryParamEnumTableEnum) Scan(src interface{}) error { constant QueryParamEnumTableEnumG (line 57) | QueryParamEnumTableEnumG QueryParamEnumTableEnum = "g" constant QueryParamEnumTableEnumH (line 58) | QueryParamEnumTableEnumH QueryParamEnumTableEnum = "h" type NullQueryParamEnumTableEnum (line 73) | type NullQueryParamEnumTableEnum struct method Scan (line 79) | func (ns *NullQueryParamEnumTableEnum) Scan(value interface{}) error { method Value (line 89) | func (ns NullQueryParamEnumTableEnum) Value() (driver.Value, error) { type QueryParamStructEnumTableEnum (line 96) | type QueryParamStructEnumTableEnum method Scan (line 103) | func (e *QueryParamStructEnumTableEnum) Scan(src interface{}) error { constant QueryParamStructEnumTableEnumI (line 99) | QueryParamStructEnumTableEnumI QueryParamStructEnumTableEnum = "i" constant QueryParamStructEnumTableEnumJ (line 100) | QueryParamStructEnumTableEnumJ QueryParamStructEnumTableEnum = "j" type NullQueryParamStructEnumTableEnum (line 115) | type NullQueryParamStructEnumTableEnum struct method Scan (line 121) | func (ns *NullQueryParamStructEnumTableEnum) Scan(value interface{}) e... method Value (line 131) | func (ns NullQueryParamStructEnumTableEnum) Value() (driver.Value, err... type QueryReturnEnumTableEnum (line 138) | type QueryReturnEnumTableEnum method Scan (line 145) | func (e *QueryReturnEnumTableEnum) Scan(src interface{}) error { constant QueryReturnEnumTableEnumK (line 141) | QueryReturnEnumTableEnumK QueryReturnEnumTableEnum = "k" constant QueryReturnEnumTableEnumL (line 142) | QueryReturnEnumTableEnumL QueryReturnEnumTableEnum = "l" type NullQueryReturnEnumTableEnum (line 157) | type NullQueryReturnEnumTableEnum struct method Scan (line 163) | func (ns *NullQueryReturnEnumTableEnum) Scan(value interface{}) error { method Value (line 173) | func (ns NullQueryReturnEnumTableEnum) Value() (driver.Value, error) { type QueryReturnFullTableEnum (line 180) | type QueryReturnFullTableEnum method Scan (line 187) | func (e *QueryReturnFullTableEnum) Scan(src interface{}) error { constant QueryReturnFullTableEnumE (line 183) | QueryReturnFullTableEnumE QueryReturnFullTableEnum = "e" constant QueryReturnFullTableEnumF (line 184) | QueryReturnFullTableEnumF QueryReturnFullTableEnum = "f" type NullQueryReturnFullTableEnum (line 199) | type NullQueryReturnFullTableEnum struct method Scan (line 205) | func (ns *NullQueryReturnFullTableEnum) Scan(value interface{}) error { method Value (line 215) | func (ns NullQueryReturnFullTableEnum) Value() (driver.Value, error) { type QueryReturnStructEnumTableEnum (line 222) | type QueryReturnStructEnumTableEnum method Scan (line 229) | func (e *QueryReturnStructEnumTableEnum) Scan(src interface{}) error { constant QueryReturnStructEnumTableEnumK (line 225) | QueryReturnStructEnumTableEnumK QueryReturnStructEnumTableEnum = "k" constant QueryReturnStructEnumTableEnumL (line 226) | QueryReturnStructEnumTableEnumL QueryReturnStructEnumTableEnum = "l" type NullQueryReturnStructEnumTableEnum (line 241) | type NullQueryReturnStructEnumTableEnum struct method Scan (line 247) | func (ns *NullQueryReturnStructEnumTableEnum) Scan(value interface{}) ... method Value (line 257) | func (ns NullQueryReturnStructEnumTableEnum) Value() (driver.Value, er... type QuerySqlcEmbedEnum (line 264) | type QuerySqlcEmbedEnum method Scan (line 271) | func (e *QuerySqlcEmbedEnum) Scan(src interface{}) error { constant QuerySqlcEmbedEnumM (line 267) | QuerySqlcEmbedEnumM QuerySqlcEmbedEnum = "m" constant QuerySqlcEmbedEnumN (line 268) | QuerySqlcEmbedEnumN QuerySqlcEmbedEnum = "n" type NullQuerySqlcEmbedEnum (line 283) | type NullQuerySqlcEmbedEnum struct method Scan (line 289) | func (ns *NullQuerySqlcEmbedEnum) Scan(value interface{}) error { method Value (line 299) | func (ns NullQuerySqlcEmbedEnum) Value() (driver.Value, error) { type ArrayEnumTable (line 306) | type ArrayEnumTable struct type QueryParamEnumTable (line 311) | type QueryParamEnumTable struct type QueryReturnFullTable (line 317) | type QueryReturnFullTable struct type QuerySqlcEmbedTable (line 322) | type QuerySqlcEmbedTable struct FILE: internal/endtoend/testdata/omit_unused_structs/postgresql/stdlib/go/query.sql.go constant query_enum_array_table (line 15) | query_enum_array_table = `-- name: query_enum_array_table :many method query_enum_array_table (line 19) | func (q *Queries) query_enum_array_table(ctx context.Context) ([]ArrayEn... constant query_param_enum_table (line 42) | query_param_enum_table = `-- name: query_param_enum_table :one method query_param_enum_table (line 46) | func (q *Queries) query_param_enum_table(ctx context.Context, value Null... constant query_param_struct_enum_table (line 53) | query_param_struct_enum_table = `-- name: query_param_struct_enum_table ... type query_param_struct_enum_tableParams (line 57) | type query_param_struct_enum_tableParams struct method query_param_struct_enum_table (line 62) | func (q *Queries) query_param_struct_enum_table(ctx context.Context, arg... constant query_return_enum_table (line 69) | query_return_enum_table = `-- name: query_return_enum_table :one method query_return_enum_table (line 73) | func (q *Queries) query_return_enum_table(ctx context.Context, id int32)... constant query_return_full_table (line 80) | query_return_full_table = `-- name: query_return_full_table :many method query_return_full_table (line 84) | func (q *Queries) query_return_full_table(ctx context.Context) ([]QueryR... constant query_return_struct_enum_table (line 107) | query_return_struct_enum_table = `-- name: query_return_struct_enum_tabl... type query_return_struct_enum_tableRow (line 111) | type query_return_struct_enum_tableRow struct method query_return_struct_enum_table (line 116) | func (q *Queries) query_return_struct_enum_table(ctx context.Context, id... constant query_sqlc_embed_table (line 123) | query_sqlc_embed_table = `-- name: query_sqlc_embed_table :one type query_sqlc_embed_tableRow (line 127) | type query_sqlc_embed_tableRow struct method query_sqlc_embed_table (line 131) | func (q *Queries) query_sqlc_embed_table(ctx context.Context, id int32) ... FILE: internal/endtoend/testdata/omit_unused_structs/postgresql/stdlib/schema.sql type unused_table (line 8) | CREATE TABLE unused_table ( type query_return_full_table (line 16) | CREATE TABLE query_return_full_table ( type query_param_enum_table (line 24) | CREATE TABLE query_param_enum_table ( type query_param_struct_enum_table (line 33) | CREATE TABLE query_param_struct_enum_table ( type query_return_enum_table (line 41) | CREATE TABLE query_return_enum_table ( type query_return_struct_enum_table (line 49) | CREATE TABLE query_return_struct_enum_table ( type query_sqlc_embed_table (line 58) | CREATE TABLE query_sqlc_embed_table ( type array_enum_table (line 66) | CREATE TABLE array_enum_table ( FILE: internal/endtoend/testdata/on_duplicate_key_update/mysql/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/on_duplicate_key_update/mysql/db/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/on_duplicate_key_update/mysql/db/query.sql.go constant upsertAuthor (line 13) | upsertAuthor = `-- name: UpsertAuthor :exec type UpsertAuthorParams (line 20) | type UpsertAuthorParams struct method UpsertAuthor (line 26) | func (q *Queries) UpsertAuthor(ctx context.Context, arg UpsertAuthorPara... constant upsertAuthorNamed (line 31) | upsertAuthorNamed = `-- name: UpsertAuthorNamed :exec type UpsertAuthorNamedParams (line 38) | type UpsertAuthorNamedParams struct method UpsertAuthorNamed (line 43) | func (q *Queries) UpsertAuthorNamed(ctx context.Context, arg UpsertAutho... FILE: internal/endtoend/testdata/on_duplicate_key_update/mysql/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/on_duplicate_key_update/postgresql/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/on_duplicate_key_update/postgresql/db/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/on_duplicate_key_update/postgresql/db/query.sql.go constant upsertAuthor (line 13) | upsertAuthor = `-- name: UpsertAuthor :exec type UpsertAuthorParams (line 20) | type UpsertAuthorParams struct method UpsertAuthor (line 25) | func (q *Queries) UpsertAuthor(ctx context.Context, arg UpsertAuthorPara... constant upsertAuthorNamed (line 30) | upsertAuthorNamed = `-- name: UpsertAuthorNamed :exec type UpsertAuthorNamedParams (line 37) | type UpsertAuthorNamedParams struct method UpsertAuthorNamed (line 42) | func (q *Queries) UpsertAuthorNamed(ctx context.Context, arg UpsertAutho... FILE: internal/endtoend/testdata/on_duplicate_key_update/postgresql/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/operator_string_concat/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/operator_string_concat/postgresql/pgx/v4/go/models.go type Demo (line 7) | type Demo struct FILE: internal/endtoend/testdata/operator_string_concat/postgresql/pgx/v4/go/query.sql.go constant test2 (line 12) | test2 = `-- name: Test2 :one method Test2 (line 17) | func (q *Queries) Test2(ctx context.Context, val string) (string, error) { constant test3 (line 24) | test3 = `-- name: Test3 :one method Test3 (line 29) | func (q *Queries) Test3(ctx context.Context, val string) (string, error) { FILE: internal/endtoend/testdata/operator_string_concat/postgresql/pgx/v4/schema.sql type demo (line 1) | CREATE TABLE demo (txt text not null) FILE: internal/endtoend/testdata/operator_string_concat/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/operator_string_concat/postgresql/pgx/v5/go/models.go type Demo (line 7) | type Demo struct FILE: internal/endtoend/testdata/operator_string_concat/postgresql/pgx/v5/go/query.sql.go constant test2 (line 12) | test2 = `-- name: Test2 :one method Test2 (line 17) | func (q *Queries) Test2(ctx context.Context, val string) (string, error) { constant test3 (line 24) | test3 = `-- name: Test3 :one method Test3 (line 29) | func (q *Queries) Test3(ctx context.Context, val string) (string, error) { FILE: internal/endtoend/testdata/operator_string_concat/postgresql/pgx/v5/schema.sql type demo (line 1) | CREATE TABLE demo (txt text not null) FILE: internal/endtoend/testdata/operator_string_concat/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/operator_string_concat/postgresql/stdlib/go/models.go type Demo (line 7) | type Demo struct FILE: internal/endtoend/testdata/operator_string_concat/postgresql/stdlib/go/query.sql.go constant test2 (line 12) | test2 = `-- name: Test2 :one method Test2 (line 17) | func (q *Queries) Test2(ctx context.Context, val string) (string, error) { constant test3 (line 24) | test3 = `-- name: Test3 :one method Test3 (line 29) | func (q *Queries) Test3(ctx context.Context, val string) (string, error) { FILE: internal/endtoend/testdata/operator_string_concat/postgresql/stdlib/schema.sql type demo (line 1) | CREATE TABLE demo (txt text not null) FILE: internal/endtoend/testdata/order_by_binds/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/order_by_binds/mysql/go/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/order_by_binds/mysql/go/query.sql.go constant listAuthorsColumnSort (line 12) | listAuthorsColumnSort = `-- name: ListAuthorsColumnSort :many type ListAuthorsColumnSortParams (line 18) | type ListAuthorsColumnSortParams struct method ListAuthorsColumnSort (line 23) | func (q *Queries) ListAuthorsColumnSort(ctx context.Context, arg ListAut... constant listAuthorsColumnSortFnWtihArg (line 46) | listAuthorsColumnSortFnWtihArg = `-- name: ListAuthorsColumnSortFnWtihAr... method ListAuthorsColumnSortFnWtihArg (line 51) | func (q *Queries) ListAuthorsColumnSortFnWtihArg(ctx context.Context, mo... constant listAuthorsNameSort (line 74) | listAuthorsNameSort = `-- name: ListAuthorsNameSort :many method ListAuthorsNameSort (line 80) | func (q *Queries) ListAuthorsNameSort(ctx context.Context, minID int64) ... FILE: internal/endtoend/testdata/order_by_binds/mysql/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/order_by_binds/pganalyze/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/order_by_binds/pganalyze/go/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/order_by_binds/pganalyze/go/query.sql.go constant listAuthorsColumnSort (line 13) | listAuthorsColumnSort = `-- name: ListAuthorsColumnSort :many type ListAuthorsColumnSortParams (line 19) | type ListAuthorsColumnSortParams struct method ListAuthorsColumnSort (line 24) | func (q *Queries) ListAuthorsColumnSort(ctx context.Context, arg ListAut... constant listAuthorsNameSort (line 47) | listAuthorsNameSort = `-- name: ListAuthorsNameSort :many method ListAuthorsNameSort (line 53) | func (q *Queries) ListAuthorsNameSort(ctx context.Context, minID int64) ... FILE: internal/endtoend/testdata/order_by_binds/pganalyze/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/order_by_binds/postgresql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/order_by_binds/postgresql/go/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/order_by_binds/postgresql/go/query.sql.go constant listAuthorsColumnSort (line 12) | listAuthorsColumnSort = `-- name: ListAuthorsColumnSort :many type ListAuthorsColumnSortParams (line 18) | type ListAuthorsColumnSortParams struct method ListAuthorsColumnSort (line 23) | func (q *Queries) ListAuthorsColumnSort(ctx context.Context, arg ListAut... constant listAuthorsColumnSortFnWtihArg (line 46) | listAuthorsColumnSortFnWtihArg = `-- name: ListAuthorsColumnSortFnWtihAr... method ListAuthorsColumnSortFnWtihArg (line 51) | func (q *Queries) ListAuthorsColumnSortFnWtihArg(ctx context.Context, mo... constant listAuthorsNameSort (line 74) | listAuthorsNameSort = `-- name: ListAuthorsNameSort :many method ListAuthorsNameSort (line 80) | func (q *Queries) ListAuthorsNameSort(ctx context.Context, minID int64) ... FILE: internal/endtoend/testdata/order_by_binds/postgresql/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/order_by_non_existing_column/postgresql/schema.sql type authors (line 2) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/order_by_union/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/order_by_union/mysql/go/models.go type Author (line 11) | type Author struct type Person (line 16) | type Person struct FILE: internal/endtoend/testdata/order_by_union/mysql/go/query.sql.go constant listAuthorsUnion (line 12) | listAuthorsUnion = `-- name: ListAuthorsUnion :many method ListAuthorsUnion (line 19) | func (q *Queries) ListAuthorsUnion(ctx context.Context) ([]string, error) { FILE: internal/endtoend/testdata/order_by_union/mysql/schema.sql type authors (line 1) | CREATE TABLE authors ( type people (line 6) | CREATE TABLE people ( FILE: internal/endtoend/testdata/order_by_union/postgresql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/order_by_union/postgresql/go/models.go type Author (line 11) | type Author struct type Person (line 17) | type Person struct FILE: internal/endtoend/testdata/order_by_union/postgresql/go/query.sql.go constant listAuthorsUnion (line 12) | listAuthorsUnion = `-- name: ListAuthorsUnion :many method ListAuthorsUnion (line 19) | func (q *Queries) ListAuthorsUnion(ctx context.Context) ([]string, error) { FILE: internal/endtoend/testdata/order_by_union/postgresql/schema.sql type authors (line 1) | CREATE TABLE authors ( type people (line 7) | CREATE TABLE people ( FILE: internal/endtoend/testdata/output_file_names/pgx/v4/go/batch_gen.go constant usersB (line 19) | usersB = `-- name: UsersB :batchmany type UsersBBatchResults (line 24) | type UsersBBatchResults struct method Query (line 42) | func (b *UsersBBatchResults) Query(f func(int, []int64, error)) { method Close (line 73) | func (b *UsersBBatchResults) Close() error { method UsersB (line 30) | func (q *Queries) UsersB(ctx context.Context, id []int64) *UsersBBatchRe... FILE: internal/endtoend/testdata/output_file_names/pgx/v4/go/copyfrom_gen.go type iteratorForUsersC (line 13) | type iteratorForUsersC struct method Next (line 18) | func (r *iteratorForUsersC) Next() bool { method Values (line 30) | func (r iteratorForUsersC) Values() ([]interface{}, error) { method Err (line 36) | func (r iteratorForUsersC) Err() error { method UsersC (line 40) | func (q *Queries) UsersC(ctx context.Context, id []int64) (int64, error) { FILE: internal/endtoend/testdata/output_file_names/pgx/v4/go/db_gen.go type DBTX (line 14) | type DBTX interface function New (line 22) | func New(db DBTX) *Queries { type Queries (line 26) | type Queries struct method WithTx (line 30) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/output_file_names/pgx/v4/go/models_gen.go type User (line 7) | type User struct FILE: internal/endtoend/testdata/output_file_names/pgx/v4/go/querier_gen.go type Querier (line 11) | type Querier interface FILE: internal/endtoend/testdata/output_file_names/pgx/v4/go/query.sql.go constant user (line 12) | user = `-- name: User :many method User (line 16) | func (q *Queries) User(ctx context.Context) ([]int64, error) { FILE: internal/endtoend/testdata/output_file_names/pgx/v4/schema.sql type "user" (line 1) | CREATE TABLE "user" (id bigserial not null) FILE: internal/endtoend/testdata/output_file_names/pgx/v5/go/batch_gen.go constant usersB (line 19) | usersB = `-- name: UsersB :batchmany type UsersBBatchResults (line 24) | type UsersBBatchResults struct method Query (line 42) | func (b *UsersBBatchResults) Query(f func(int, []int64, error)) { method Close (line 73) | func (b *UsersBBatchResults) Close() error { method UsersB (line 30) | func (q *Queries) UsersB(ctx context.Context, id []int64) *UsersBBatchRe... FILE: internal/endtoend/testdata/output_file_names/pgx/v5/go/copyfrom_gen.go type iteratorForUsersC (line 13) | type iteratorForUsersC struct method Next (line 18) | func (r *iteratorForUsersC) Next() bool { method Values (line 30) | func (r iteratorForUsersC) Values() ([]interface{}, error) { method Err (line 36) | func (r iteratorForUsersC) Err() error { method UsersC (line 40) | func (q *Queries) UsersC(ctx context.Context, id []int64) (int64, error) { FILE: internal/endtoend/testdata/output_file_names/pgx/v5/go/db_gen.go type DBTX (line 14) | type DBTX interface function New (line 22) | func New(db DBTX) *Queries { type Queries (line 26) | type Queries struct method WithTx (line 30) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/output_file_names/pgx/v5/go/models_gen.go type User (line 7) | type User struct FILE: internal/endtoend/testdata/output_file_names/pgx/v5/go/querier_gen.go type Querier (line 11) | type Querier interface FILE: internal/endtoend/testdata/output_file_names/pgx/v5/go/query.sql.go constant user (line 12) | user = `-- name: User :many method User (line 16) | func (q *Queries) User(ctx context.Context) ([]int64, error) { FILE: internal/endtoend/testdata/output_file_names/pgx/v5/schema.sql type "user" (line 1) | CREATE TABLE "user" (id bigserial not null) FILE: internal/endtoend/testdata/output_file_names/stdlib/go/db_gen.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/output_file_names/stdlib/go/models_gen.go type User (line 7) | type User struct FILE: internal/endtoend/testdata/output_file_names/stdlib/go/querier_gen.go type Querier (line 11) | type Querier interface FILE: internal/endtoend/testdata/output_file_names/stdlib/go/query.sql.go constant user (line 12) | user = `-- name: User :many method User (line 16) | func (q *Queries) User(ctx context.Context) ([]int64, error) { FILE: internal/endtoend/testdata/output_file_names/stdlib/schema.sql type "user" (line 1) | CREATE TABLE "user" (id bigserial not null) FILE: internal/endtoend/testdata/output_files_suffix/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/output_files_suffix/pgx/v4/go/models.go type User (line 7) | type User struct FILE: internal/endtoend/testdata/output_files_suffix/pgx/v4/go/query.sql_gen.go constant user (line 12) | user = `-- name: User :many method User (line 16) | func (q *Queries) User(ctx context.Context) ([]int64, error) { FILE: internal/endtoend/testdata/output_files_suffix/pgx/v4/schema.sql type "user" (line 1) | CREATE TABLE "user" (id bigserial not null) FILE: internal/endtoend/testdata/output_files_suffix/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/output_files_suffix/pgx/v5/go/models.go type User (line 7) | type User struct FILE: internal/endtoend/testdata/output_files_suffix/pgx/v5/go/query.sql_gen.go constant user (line 12) | user = `-- name: User :many method User (line 16) | func (q *Queries) User(ctx context.Context) ([]int64, error) { FILE: internal/endtoend/testdata/output_files_suffix/pgx/v5/schema.sql type "user" (line 1) | CREATE TABLE "user" (id bigserial not null) FILE: internal/endtoend/testdata/output_files_suffix/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/output_files_suffix/stdlib/go/models.go type User (line 7) | type User struct FILE: internal/endtoend/testdata/output_files_suffix/stdlib/go/query.sql_gen.go constant user (line 12) | user = `-- name: User :many method User (line 16) | func (q *Queries) User(ctx context.Context) ([]int64, error) { FILE: internal/endtoend/testdata/output_files_suffix/stdlib/schema.sql type "user" (line 1) | CREATE TABLE "user" (id bigserial not null) FILE: internal/endtoend/testdata/overrides/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/overrides/mysql/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/overrides/mysql/go/query.sql.go constant test (line 12) | test = `-- name: Test :one method Test (line 16) | func (q *Queries) Test(ctx context.Context) (int32, error) { FILE: internal/endtoend/testdata/overrides/mysql/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/overrides/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/overrides/postgresql/pgx/v4/go/models.go type Foo (line 12) | type Foo struct FILE: internal/endtoend/testdata/overrides/postgresql/pgx/v4/go/query.sql.go constant test (line 12) | test = `-- name: Test :one method Test (line 16) | func (q *Queries) Test(ctx context.Context) (int32, error) { FILE: internal/endtoend/testdata/overrides/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/overrides/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/overrides/postgresql/pgx/v5/go/models.go type Foo (line 12) | type Foo struct FILE: internal/endtoend/testdata/overrides/postgresql/pgx/v5/go/query.sql.go constant test (line 12) | test = `-- name: Test :one method Test (line 16) | func (q *Queries) Test(ctx context.Context) (int32, error) { FILE: internal/endtoend/testdata/overrides/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/overrides/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/overrides/postgresql/stdlib/go/models.go type Foo (line 12) | type Foo struct FILE: internal/endtoend/testdata/overrides/postgresql/stdlib/go/query.sql.go constant test (line 12) | test = `-- name: Test :one method Test (line 16) | func (q *Queries) Test(ctx context.Context) (int32, error) { FILE: internal/endtoend/testdata/overrides/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/overrides/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/overrides/sqlite/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/overrides/sqlite/go/query.sql.go constant test (line 12) | test = `-- name: Test :one method Test (line 16) | func (q *Queries) Test(ctx context.Context) (int64, error) { FILE: internal/endtoend/testdata/overrides/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/overrides_array/postgresql/pgx/v4/query/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/overrides_array/postgresql/pgx/v4/query/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/overrides_array/postgresql/pgx/v4/query/query.sql.go constant getAuthor (line 12) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 17) | func (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, erro... FILE: internal/endtoend/testdata/overrides_array/postgresql/pgx/v4/schema.sql type authors (line 2) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/overrides_array/postgresql/pgx/v5/query/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/overrides_array/postgresql/pgx/v5/query/models.go type Author (line 13) | type Author struct FILE: internal/endtoend/testdata/overrides_array/postgresql/pgx/v5/query/query.sql.go constant getAuthor (line 12) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 17) | func (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, erro... FILE: internal/endtoend/testdata/overrides_array/postgresql/pgx/v5/schema.sql type authors (line 2) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/overrides_array/postgresql/stdlib/query/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/overrides_array/postgresql/stdlib/query/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/overrides_array/postgresql/stdlib/query/query.sql.go constant getAuthor (line 14) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 19) | func (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, erro... FILE: internal/endtoend/testdata/overrides_array/postgresql/stdlib/schema.sql type authors (line 2) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/overrides_config/schema.sql type overrides (line 1) | CREATE TABLE overrides ( FILE: internal/endtoend/testdata/overrides_config/v2/yaml/global/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/overrides_config/v2/yaml/global/db/models.go type Override (line 11) | type Override struct FILE: internal/endtoend/testdata/overrides_config/v2/yaml/global/db/query.sql.go constant test (line 12) | test = `-- name: Test :one method Test (line 16) | func (q *Queries) Test(ctx context.Context) (int32, error) { FILE: internal/endtoend/testdata/overrides_config/v2/yaml/global_and_queryset/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/overrides_config/v2/yaml/global_and_queryset/db/models.go type Override (line 11) | type Override struct FILE: internal/endtoend/testdata/overrides_config/v2/yaml/global_and_queryset/db/query.sql.go constant test (line 12) | test = `-- name: Test :one method Test (line 16) | func (q *Queries) Test(ctx context.Context) (int32, error) { FILE: internal/endtoend/testdata/overrides_config/v2/yaml/queryset/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/overrides_config/v2/yaml/queryset/db/models.go type Override (line 11) | type Override struct FILE: internal/endtoend/testdata/overrides_config/v2/yaml/queryset/db/query.sql.go constant test (line 12) | test = `-- name: Test :one method Test (line 16) | func (q *Queries) Test(ctx context.Context) (int32, error) { FILE: internal/endtoend/testdata/overrides_go_struct_tags/invalid_tags/schema.sql type foo (line 1) | CREATE TABLE foo ( type bar (line 6) | CREATE TABLE bar ( type baz (line 11) | CREATE TABLE baz ( FILE: internal/endtoend/testdata/overrides_go_struct_tags/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/overrides_go_struct_tags/mysql/go/models.go type Bar (line 7) | type Bar struct type Baz (line 12) | type Baz struct type Foo (line 17) | type Foo struct FILE: internal/endtoend/testdata/overrides_go_struct_tags/mysql/go/query.sql.go constant test (line 12) | test = `-- name: Test :one method Test (line 16) | func (q *Queries) Test(ctx context.Context) (int32, error) { FILE: internal/endtoend/testdata/overrides_go_struct_tags/mysql/schema.sql type foo (line 1) | CREATE TABLE foo ( type bar (line 7) | CREATE TABLE bar ( type baz (line 12) | CREATE TABLE baz ( FILE: internal/endtoend/testdata/overrides_go_struct_tags/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/overrides_go_struct_tags/postgresql/pgx/v4/go/models.go type Bar (line 7) | type Bar struct type Foo (line 14) | type Foo struct FILE: internal/endtoend/testdata/overrides_go_struct_tags/postgresql/pgx/v4/go/query.sql.go constant test (line 12) | test = `-- name: Test :one method Test (line 16) | func (q *Queries) Test(ctx context.Context) (int32, error) { FILE: internal/endtoend/testdata/overrides_go_struct_tags/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo ( type bar (line 9) | CREATE TABLE bar ( FILE: internal/endtoend/testdata/overrides_go_struct_tags/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/overrides_go_struct_tags/postgresql/pgx/v5/go/models.go type Bar (line 7) | type Bar struct type Foo (line 14) | type Foo struct FILE: internal/endtoend/testdata/overrides_go_struct_tags/postgresql/pgx/v5/go/query.sql.go constant test (line 12) | test = `-- name: Test :one method Test (line 16) | func (q *Queries) Test(ctx context.Context) (int32, error) { FILE: internal/endtoend/testdata/overrides_go_struct_tags/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo ( type bar (line 9) | CREATE TABLE bar ( FILE: internal/endtoend/testdata/overrides_go_struct_tags/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/overrides_go_struct_tags/postgresql/stdlib/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/overrides_go_struct_tags/postgresql/stdlib/go/query.sql.go constant test (line 12) | test = `-- name: Test :one method Test (line 16) | func (q *Queries) Test(ctx context.Context) (int32, error) { FILE: internal/endtoend/testdata/overrides_go_struct_tags/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/overrides_go_struct_tags/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/overrides_go_struct_tags/sqlite/go/models.go type Bar (line 7) | type Bar struct type Baz (line 13) | type Baz struct type Foo (line 19) | type Foo struct FILE: internal/endtoend/testdata/overrides_go_struct_tags/sqlite/go/query.sql.go constant test (line 12) | test = `-- name: Test :one method Test (line 16) | func (q *Queries) Test(ctx context.Context) (int64, error) { FILE: internal/endtoend/testdata/overrides_go_struct_tags/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo ( type bar (line 8) | CREATE TABLE bar ( type baz (line 14) | CREATE TABLE baz ( FILE: internal/endtoend/testdata/overrides_go_types/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/overrides_go_types/mysql/go/models.go type Bar (line 11) | type Bar struct type Baz (line 17) | type Baz struct type Foo (line 23) | type Foo struct FILE: internal/endtoend/testdata/overrides_go_types/mysql/go/query.sql.go constant testIN (line 15) | testIN = `-- name: TestIN :many method TestIN (line 19) | func (q *Queries) TestIN(ctx context.Context, paramname []pkg.CustomType... FILE: internal/endtoend/testdata/overrides_go_types/mysql/schema.sql type foo (line 1) | CREATE TABLE foo ( type bar (line 7) | CREATE TABLE bar ( type baz (line 13) | CREATE TABLE baz ( FILE: internal/endtoend/testdata/overrides_go_types/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/overrides_go_types/postgresql/pgx/v4/go/models.go type Bar (line 17) | type Bar struct type Foo (line 27) | type Foo struct FILE: internal/endtoend/testdata/overrides_go_types/postgresql/pgx/v4/go/query.sql.go constant loadFoo (line 18) | loadFoo = `-- name: LoadFoo :many method LoadFoo (line 22) | func (q *Queries) LoadFoo(ctx context.Context, id uuid.UUID) ([]Foo, err... constant loadFooWithAliases (line 49) | loadFooWithAliases = `-- name: LoadFooWithAliases :many type LoadFooWithAliasesRow (line 61) | type LoadFooWithAliasesRow struct method LoadFooWithAliases (line 70) | func (q *Queries) LoadFooWithAliases(ctx context.Context, namedParameter... FILE: internal/endtoend/testdata/overrides_go_types/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo ( type bar (line 10) | CREATE TABLE bar ( FILE: internal/endtoend/testdata/overrides_go_types/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/overrides_go_types/postgresql/pgx/v5/go/models.go type Bar (line 16) | type Bar struct type Foo (line 26) | type Foo struct FILE: internal/endtoend/testdata/overrides_go_types/postgresql/pgx/v5/go/query.sql.go constant loadFoo (line 14) | loadFoo = `-- name: LoadFoo :many method LoadFoo (line 18) | func (q *Queries) LoadFoo(ctx context.Context, id uuid.UUID) ([]Foo, err... FILE: internal/endtoend/testdata/overrides_go_types/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo ( type bar (line 10) | CREATE TABLE bar ( FILE: internal/endtoend/testdata/overrides_go_types/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/overrides_go_types/postgresql/stdlib/go/models.go type Foo (line 15) | type Foo struct FILE: internal/endtoend/testdata/overrides_go_types/postgresql/stdlib/go/query.sql.go constant loadFoo (line 14) | loadFoo = `-- name: LoadFoo :many method LoadFoo (line 18) | func (q *Queries) LoadFoo(ctx context.Context, id uuid.UUID) ([]Foo, err... FILE: internal/endtoend/testdata/overrides_go_types/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/overrides_go_types/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/overrides_go_types/sqlite/go/models.go type Bar (line 11) | type Bar struct type Baz (line 17) | type Baz struct type Foo (line 23) | type Foo struct FILE: internal/endtoend/testdata/overrides_go_types/sqlite/go/query.sql.go constant test (line 12) | test = `-- name: Test :one method Test (line 16) | func (q *Queries) Test(ctx context.Context) (int64, error) { FILE: internal/endtoend/testdata/overrides_go_types/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo ( type bar (line 7) | CREATE TABLE bar ( type baz (line 13) | CREATE TABLE baz ( FILE: internal/endtoend/testdata/overrides_nullable/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/overrides_nullable/postgresql/pgx/v4/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/overrides_nullable/postgresql/pgx/v4/go/query.sql.go constant listFoo (line 12) | listFoo = `-- name: ListFoo :many method ListFoo (line 16) | func (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/overrides_nullable/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/overrides_nullable/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/overrides_nullable/postgresql/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/overrides_nullable/postgresql/pgx/v5/go/query.sql.go constant listFoo (line 12) | listFoo = `-- name: ListFoo :many method ListFoo (line 16) | func (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/overrides_nullable/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/overrides_nullable/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/overrides_nullable/postgresql/stdlib/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/overrides_nullable/postgresql/stdlib/go/query.sql.go constant listFoo (line 12) | listFoo = `-- name: ListFoo :many method ListFoo (line 16) | func (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/overrides_nullable/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/overrides_pointers/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/overrides_pointers/mysql/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/overrides_pointers/mysql/go/query.sql.go constant test (line 14) | test = `-- name: test :exec type testParams (line 18) | type testParams struct method test (line 23) | func (q *Queries) test(ctx context.Context, arg testParams) error { FILE: internal/endtoend/testdata/overrides_pointers/mysql/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/overrides_pointers/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/overrides_pointers/postgresql/pgx/v4/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/overrides_pointers/postgresql/pgx/v4/go/query.sql.go constant test (line 14) | test = `-- name: test :exec method test (line 18) | func (q *Queries) test(ctx context.Context, langs *t.Text) error { FILE: internal/endtoend/testdata/overrides_pointers/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/overrides_pointers/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/overrides_pointers/postgresql/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/overrides_pointers/postgresql/pgx/v5/go/query.sql.go constant test (line 14) | test = `-- name: test :exec method test (line 18) | func (q *Queries) test(ctx context.Context, langs *t.Text) error { FILE: internal/endtoend/testdata/overrides_pointers/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/overrides_pointers/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/overrides_pointers/postgresql/stdlib/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/overrides_pointers/postgresql/stdlib/go/query.sql.go constant test (line 14) | test = `-- name: test :exec method test (line 18) | func (q *Queries) test(ctx context.Context, langs *t.Text) error { FILE: internal/endtoend/testdata/overrides_pointers/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/overrides_result_tag/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/overrides_result_tag/stdlib/go/models.go type Account (line 13) | type Account struct type UsersAccount (line 18) | type UsersAccount struct FILE: internal/endtoend/testdata/overrides_result_tag/stdlib/go/query.sql.go constant findAccount (line 15) | findAccount = `-- name: FindAccount :one type FindAccountRow (line 27) | type FindAccountRow struct method FindAccount (line 33) | func (q *Queries) FindAccount(ctx context.Context, accountID uuid.UUID) ... FILE: internal/endtoend/testdata/overrides_result_tag/stdlib/schema.sql type public (line 3) | CREATE TABLE public.accounts ( type public (line 8) | CREATE TABLE public.users_accounts ( FILE: internal/endtoend/testdata/overrides_unsigned/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/overrides_unsigned/mysql/go/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/overrides_unsigned/mysql/go/query.sql.go constant createAuthor (line 13) | createAuthor = `-- name: CreateAuthor :exec type CreateAuthorParams (line 21) | type CreateAuthorParams struct method CreateAuthor (line 26) | func (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorPara... constant deleteAuthor (line 31) | deleteAuthor = `-- name: DeleteAuthor :exec method DeleteAuthor (line 36) | func (q *Queries) DeleteAuthor(ctx context.Context, id int64) error { constant getAuthor (line 41) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 46) | func (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, erro... constant listAuthors (line 59) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 64) | func (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) { FILE: internal/endtoend/testdata/overrides_unsigned/mysql/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/params_duplicate/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/params_duplicate/mysql/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/params_duplicate/mysql/go/query.sql.go constant selectUserByID (line 13) | selectUserByID = `-- name: SelectUserByID :many type SelectUserByIDParams (line 18) | type SelectUserByIDParams struct method SelectUserByID (line 22) | func (q *Queries) SelectUserByID(ctx context.Context, arg SelectUserByID... constant selectUserByName (line 45) | selectUserByName = `-- name: SelectUserByName :many type SelectUserByNameParams (line 52) | type SelectUserByNameParams struct method SelectUserByName (line 56) | func (q *Queries) SelectUserByName(ctx context.Context, arg SelectUserBy... constant selectUserQuestion (line 79) | selectUserQuestion = `-- name: SelectUserQuestion :many type SelectUserQuestionParams (line 84) | type SelectUserQuestionParams struct method SelectUserQuestion (line 89) | func (q *Queries) SelectUserQuestion(ctx context.Context, arg SelectUser... FILE: internal/endtoend/testdata/params_duplicate/mysql/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/params_duplicate/postgresql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/params_duplicate/postgresql/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/params_duplicate/postgresql/go/query.sql.go constant selectUserByID (line 13) | selectUserByID = `-- name: SelectUserByID :many method SelectUserByID (line 18) | func (q *Queries) SelectUserByID(ctx context.Context, id int32) ([]sql.N... constant selectUserByName (line 41) | selectUserByName = `-- name: SelectUserByName :many method SelectUserByName (line 48) | func (q *Queries) SelectUserByName(ctx context.Context, name sql.NullStr... constant selectUserQuestion (line 71) | selectUserQuestion = `-- name: SelectUserQuestion :many method SelectUserQuestion (line 76) | func (q *Queries) SelectUserQuestion(ctx context.Context, id int32) ([]s... FILE: internal/endtoend/testdata/params_duplicate/postgresql/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/params_go_keywords/postgresql/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/params_go_keywords/postgresql/go/models.go type GoKeyword (line 11) | type GoKeyword struct FILE: internal/endtoend/testdata/params_go_keywords/postgresql/go/query.sql.go constant keywordBreak (line 14) | keywordBreak = `-- name: KeywordBreak :exec method KeywordBreak (line 18) | func (q *Queries) KeywordBreak(ctx context.Context, break_ string) error { constant keywordCase (line 23) | keywordCase = `-- name: KeywordCase :exec method KeywordCase (line 27) | func (q *Queries) KeywordCase(ctx context.Context, case_ string) error { constant keywordChan (line 32) | keywordChan = `-- name: KeywordChan :exec method KeywordChan (line 36) | func (q *Queries) KeywordChan(ctx context.Context, chan_ string) error { constant keywordConst (line 41) | keywordConst = `-- name: KeywordConst :exec method KeywordConst (line 45) | func (q *Queries) KeywordConst(ctx context.Context, const_ string) error { constant keywordContinue (line 50) | keywordContinue = `-- name: KeywordContinue :exec method KeywordContinue (line 54) | func (q *Queries) KeywordContinue(ctx context.Context, continue_ string)... constant keywordDefault (line 59) | keywordDefault = `-- name: KeywordDefault :exec method KeywordDefault (line 63) | func (q *Queries) KeywordDefault(ctx context.Context, default_ string) e... constant keywordDefer (line 68) | keywordDefer = `-- name: KeywordDefer :exec method KeywordDefer (line 72) | func (q *Queries) KeywordDefer(ctx context.Context, defer_ string) error { constant keywordElse (line 77) | keywordElse = `-- name: KeywordElse :exec method KeywordElse (line 81) | func (q *Queries) KeywordElse(ctx context.Context, else_ string) error { constant keywordFallthrough (line 86) | keywordFallthrough = `-- name: KeywordFallthrough :exec method KeywordFallthrough (line 90) | func (q *Queries) KeywordFallthrough(ctx context.Context, fallthrough_ s... constant keywordFor (line 95) | keywordFor = `-- name: KeywordFor :exec method KeywordFor (line 99) | func (q *Queries) KeywordFor(ctx context.Context, for_ string) error { constant keywordFunc (line 104) | keywordFunc = `-- name: KeywordFunc :exec method KeywordFunc (line 108) | func (q *Queries) KeywordFunc(ctx context.Context, func_ string) error { constant keywordGo (line 113) | keywordGo = `-- name: KeywordGo :exec method KeywordGo (line 117) | func (q *Queries) KeywordGo(ctx context.Context, go_ string) error { constant keywordGoto (line 122) | keywordGoto = `-- name: KeywordGoto :exec method KeywordGoto (line 126) | func (q *Queries) KeywordGoto(ctx context.Context, goto_ string) error { constant keywordIf (line 131) | keywordIf = `-- name: KeywordIf :exec method KeywordIf (line 135) | func (q *Queries) KeywordIf(ctx context.Context, if_ string) error { constant keywordImport (line 140) | keywordImport = `-- name: KeywordImport :exec method KeywordImport (line 144) | func (q *Queries) KeywordImport(ctx context.Context, import_ string) err... constant keywordInterface (line 149) | keywordInterface = `-- name: KeywordInterface :exec method KeywordInterface (line 153) | func (q *Queries) KeywordInterface(ctx context.Context, interface_ strin... constant keywordMap (line 158) | keywordMap = `-- name: KeywordMap :exec method KeywordMap (line 162) | func (q *Queries) KeywordMap(ctx context.Context, map_ string) error { constant keywordPackage (line 167) | keywordPackage = `-- name: KeywordPackage :exec method KeywordPackage (line 171) | func (q *Queries) KeywordPackage(ctx context.Context, package_ string) e... constant keywordQ (line 176) | keywordQ = `-- name: KeywordQ :exec method KeywordQ (line 180) | func (q *Queries) KeywordQ(ctx context.Context, q_ string) error { constant keywordRange (line 185) | keywordRange = `-- name: KeywordRange :exec method KeywordRange (line 189) | func (q *Queries) KeywordRange(ctx context.Context, range_ string) error { constant keywordReturn (line 194) | keywordReturn = `-- name: KeywordReturn :exec method KeywordReturn (line 198) | func (q *Queries) KeywordReturn(ctx context.Context, return_ string) err... constant keywordSelect (line 203) | keywordSelect = `-- name: KeywordSelect :exec method KeywordSelect (line 207) | func (q *Queries) KeywordSelect(ctx context.Context, select_ string) err... constant keywordStruct (line 212) | keywordStruct = `-- name: KeywordStruct :exec method KeywordStruct (line 216) | func (q *Queries) KeywordStruct(ctx context.Context, struct_ string) err... constant keywordSwitch (line 221) | keywordSwitch = `-- name: KeywordSwitch :exec method KeywordSwitch (line 225) | func (q *Queries) KeywordSwitch(ctx context.Context, switch_ string) err... constant keywordType (line 230) | keywordType = `-- name: KeywordType :exec method KeywordType (line 234) | func (q *Queries) KeywordType(ctx context.Context, type_ string) error { constant keywordVar (line 239) | keywordVar = `-- name: KeywordVar :exec method KeywordVar (line 243) | func (q *Queries) KeywordVar(ctx context.Context, var_ string) error { constant selectBreak (line 248) | selectBreak = `-- name: SelectBreak :one method SelectBreak (line 252) | func (q *Queries) SelectBreak(ctx context.Context) (pgtype.Text, error) { constant selectCase (line 259) | selectCase = `-- name: SelectCase :one method SelectCase (line 263) | func (q *Queries) SelectCase(ctx context.Context) (pgtype.Text, error) { constant selectChan (line 270) | selectChan = `-- name: SelectChan :one method SelectChan (line 274) | func (q *Queries) SelectChan(ctx context.Context) (pgtype.Text, error) { constant selectConst (line 281) | selectConst = `-- name: SelectConst :one method SelectConst (line 285) | func (q *Queries) SelectConst(ctx context.Context) (pgtype.Text, error) { constant selectContinue (line 292) | selectContinue = `-- name: SelectContinue :one method SelectContinue (line 296) | func (q *Queries) SelectContinue(ctx context.Context) (pgtype.Text, erro... constant selectDefault (line 303) | selectDefault = `-- name: SelectDefault :one method SelectDefault (line 307) | func (q *Queries) SelectDefault(ctx context.Context) (pgtype.Text, error) { constant selectDefer (line 314) | selectDefer = `-- name: SelectDefer :one method SelectDefer (line 318) | func (q *Queries) SelectDefer(ctx context.Context) (pgtype.Text, error) { constant selectElse (line 325) | selectElse = `-- name: SelectElse :one method SelectElse (line 329) | func (q *Queries) SelectElse(ctx context.Context) (pgtype.Text, error) { constant selectFallthrough (line 336) | selectFallthrough = `-- name: SelectFallthrough :one method SelectFallthrough (line 340) | func (q *Queries) SelectFallthrough(ctx context.Context) (pgtype.Text, e... constant selectFor (line 347) | selectFor = `-- name: SelectFor :one method SelectFor (line 351) | func (q *Queries) SelectFor(ctx context.Context) (pgtype.Text, error) { constant selectFunc (line 358) | selectFunc = `-- name: SelectFunc :one method SelectFunc (line 362) | func (q *Queries) SelectFunc(ctx context.Context) (pgtype.Text, error) { constant selectGo (line 369) | selectGo = `-- name: SelectGo :one method SelectGo (line 373) | func (q *Queries) SelectGo(ctx context.Context) (pgtype.Text, error) { constant selectGoto (line 380) | selectGoto = `-- name: SelectGoto :one method SelectGoto (line 384) | func (q *Queries) SelectGoto(ctx context.Context) (pgtype.Text, error) { constant selectIf (line 391) | selectIf = `-- name: SelectIf :one method SelectIf (line 395) | func (q *Queries) SelectIf(ctx context.Context) (pgtype.Text, error) { constant selectImport (line 402) | selectImport = `-- name: SelectImport :one method SelectImport (line 406) | func (q *Queries) SelectImport(ctx context.Context) (pgtype.Text, error) { constant selectInterface (line 413) | selectInterface = `-- name: SelectInterface :one method SelectInterface (line 417) | func (q *Queries) SelectInterface(ctx context.Context) (pgtype.Text, err... constant selectMap (line 424) | selectMap = `-- name: SelectMap :one method SelectMap (line 428) | func (q *Queries) SelectMap(ctx context.Context) (pgtype.Text, error) { constant selectPackage (line 435) | selectPackage = `-- name: SelectPackage :one method SelectPackage (line 439) | func (q *Queries) SelectPackage(ctx context.Context) (pgtype.Text, error) { constant selectQ (line 446) | selectQ = `-- name: SelectQ :one method SelectQ (line 450) | func (q *Queries) SelectQ(ctx context.Context) (pgtype.Text, error) { constant selectRange (line 457) | selectRange = `-- name: SelectRange :one method SelectRange (line 461) | func (q *Queries) SelectRange(ctx context.Context) (pgtype.Text, error) { constant selectReturn (line 468) | selectReturn = `-- name: SelectReturn :one method SelectReturn (line 472) | func (q *Queries) SelectReturn(ctx context.Context) (pgtype.Text, error) { constant selectSelect (line 479) | selectSelect = `-- name: SelectSelect :one method SelectSelect (line 483) | func (q *Queries) SelectSelect(ctx context.Context) (pgtype.Text, error) { constant selectStruct (line 490) | selectStruct = `-- name: SelectStruct :one method SelectStruct (line 494) | func (q *Queries) SelectStruct(ctx context.Context) (pgtype.Text, error) { constant selectSwitch (line 501) | selectSwitch = `-- name: SelectSwitch :one method SelectSwitch (line 505) | func (q *Queries) SelectSwitch(ctx context.Context) (pgtype.Text, error) { constant selectType (line 512) | selectType = `-- name: SelectType :one method SelectType (line 516) | func (q *Queries) SelectType(ctx context.Context) (pgtype.Text, error) { constant selectVar (line 523) | selectVar = `-- name: SelectVar :one method SelectVar (line 527) | func (q *Queries) SelectVar(ctx context.Context) (pgtype.Text, error) { FILE: internal/endtoend/testdata/params_go_keywords/postgresql/schema.sql type go_keywords (line 1) | CREATE TABLE go_keywords ( FILE: internal/endtoend/testdata/params_in_nested_func/mysql/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/params_in_nested_func/mysql/db/models.go type Routergroup (line 11) | type Routergroup struct FILE: internal/endtoend/testdata/params_in_nested_func/mysql/db/query.sql.go constant getGroups (line 13) | getGroups = `-- name: GetGroups :many type GetGroupsParams (line 24) | type GetGroupsParams struct type GetGroupsRow (line 29) | type GetGroupsRow struct method GetGroups (line 34) | func (q *Queries) GetGroups(ctx context.Context, arg GetGroupsParams) ([... FILE: internal/endtoend/testdata/params_in_nested_func/mysql/schema.sql type RouterGroup (line 1) | create table RouterGroup FILE: internal/endtoend/testdata/params_in_nested_func/postgresql/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/params_in_nested_func/postgresql/db/models.go type Routergroup (line 11) | type Routergroup struct FILE: internal/endtoend/testdata/params_in_nested_func/postgresql/db/query.sql.go constant getGroups (line 13) | getGroups = `-- name: GetGroups :many type GetGroupsParams (line 24) | type GetGroupsParams struct type GetGroupsRow (line 29) | type GetGroupsRow struct method GetGroups (line 34) | func (q *Queries) GetGroups(ctx context.Context, arg GetGroupsParams) ([... FILE: internal/endtoend/testdata/params_in_nested_func/postgresql/schema.sql type RouterGroup (line 1) | create table RouterGroup FILE: internal/endtoend/testdata/params_location/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/params_location/mysql/go/models.go type Order (line 11) | type Order struct type User (line 17) | type User struct FILE: internal/endtoend/testdata/params_location/mysql/go/query.sql.go constant getUserByID (line 13) | getUserByID = `-- name: GetUserByID :one type GetUserByIDRow (line 17) | type GetUserByIDRow struct method GetUserByID (line 23) | func (q *Queries) GetUserByID(ctx context.Context, targetID int32) (GetU... constant insertNewUser (line 30) | insertNewUser = `-- name: InsertNewUser :exec type InsertNewUserParams (line 34) | type InsertNewUserParams struct method InsertNewUser (line 39) | func (q *Queries) InsertNewUser(ctx context.Context, arg InsertNewUserPa... constant limitSQLCArg (line 44) | limitSQLCArg = `-- name: LimitSQLCArg :many type LimitSQLCArgRow (line 48) | type LimitSQLCArgRow struct method LimitSQLCArg (line 53) | func (q *Queries) LimitSQLCArg(ctx context.Context, limit int32) ([]Limi... constant listUserOrders (line 76) | listUserOrders = `-- name: ListUserOrders :many type ListUserOrdersRow (line 87) | type ListUserOrdersRow struct method ListUserOrders (line 93) | func (q *Queries) ListUserOrders(ctx context.Context, minPrice string) (... constant listUserParenExpr (line 116) | listUserParenExpr = `-- name: ListUserParenExpr :many type ListUserParenExprParams (line 123) | type ListUserParenExprParams struct method ListUserParenExpr (line 128) | func (q *Queries) ListUserParenExpr(ctx context.Context, arg ListUserPar... constant listUsersByFamily (line 157) | listUsersByFamily = `-- name: ListUsersByFamily :many type ListUsersByFamilyParams (line 161) | type ListUsersByFamilyParams struct type ListUsersByFamilyRow (line 166) | type ListUsersByFamilyRow struct method ListUsersByFamily (line 171) | func (q *Queries) ListUsersByFamily(ctx context.Context, arg ListUsersBy... constant listUsersByID (line 194) | listUsersByID = `-- name: ListUsersByID :many type ListUsersByIDRow (line 198) | type ListUsersByIDRow struct method ListUsersByID (line 204) | func (q *Queries) ListUsersByID(ctx context.Context, id int32) ([]ListUs... constant listUsersWithLimit (line 227) | listUsersWithLimit = `-- name: ListUsersWithLimit :many type ListUsersWithLimitRow (line 231) | type ListUsersWithLimitRow struct method ListUsersWithLimit (line 236) | func (q *Queries) ListUsersWithLimit(ctx context.Context, limit int32) (... FILE: internal/endtoend/testdata/params_location/mysql/schema.sql type users (line 1) | CREATE TABLE users ( type orders (line 9) | CREATE TABLE orders ( FILE: internal/endtoend/testdata/params_location/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/params_location/postgresql/pgx/v4/go/models.go type Order (line 13) | type Order struct type User (line 19) | type User struct FILE: internal/endtoend/testdata/params_location/postgresql/pgx/v4/go/query.sql.go constant getUserByID (line 15) | getUserByID = `-- name: GetUserByID :one type GetUserByIDRow (line 19) | type GetUserByIDRow struct method GetUserByID (line 25) | func (q *Queries) GetUserByID(ctx context.Context, targetID int32) (GetU... constant insertNewUser (line 32) | insertNewUser = `-- name: InsertNewUser :exec type InsertNewUserParams (line 36) | type InsertNewUserParams struct method InsertNewUser (line 41) | func (q *Queries) InsertNewUser(ctx context.Context, arg InsertNewUserPa... constant limitSQLCArg (line 46) | limitSQLCArg = `-- name: LimitSQLCArg :many type LimitSQLCArgRow (line 50) | type LimitSQLCArgRow struct method LimitSQLCArg (line 55) | func (q *Queries) LimitSQLCArg(ctx context.Context, limit int32) ([]Limi... constant listUserOrders (line 75) | listUserOrders = `-- name: ListUserOrders :many type ListUserOrdersRow (line 86) | type ListUserOrdersRow struct method ListUserOrders (line 92) | func (q *Queries) ListUserOrders(ctx context.Context, minPrice pgtype.Nu... constant listUserParenExpr (line 112) | listUserParenExpr = `-- name: ListUserParenExpr :many type ListUserParenExprParams (line 119) | type ListUserParenExprParams struct method ListUserParenExpr (line 124) | func (q *Queries) ListUserParenExpr(ctx context.Context, arg ListUserPar... constant listUsersByFamily (line 150) | listUsersByFamily = `-- name: ListUsersByFamily :many type ListUsersByFamilyParams (line 154) | type ListUsersByFamilyParams struct type ListUsersByFamilyRow (line 159) | type ListUsersByFamilyRow struct method ListUsersByFamily (line 164) | func (q *Queries) ListUsersByFamily(ctx context.Context, arg ListUsersBy... constant listUsersByID (line 184) | listUsersByID = `-- name: ListUsersByID :many type ListUsersByIDRow (line 188) | type ListUsersByIDRow struct method ListUsersByID (line 194) | func (q *Queries) ListUsersByID(ctx context.Context, id int32) ([]ListUs... constant listUsersWithLimit (line 214) | listUsersWithLimit = `-- name: ListUsersWithLimit :many type ListUsersWithLimitRow (line 218) | type ListUsersWithLimitRow struct method ListUsersWithLimit (line 223) | func (q *Queries) ListUsersWithLimit(ctx context.Context, limit int32) (... FILE: internal/endtoend/testdata/params_location/postgresql/pgx/v4/schema.sql type users (line 1) | CREATE TABLE users ( type orders (line 9) | CREATE TABLE orders ( FILE: internal/endtoend/testdata/params_location/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/params_location/postgresql/pgx/v5/go/models.go type Order (line 11) | type Order struct type User (line 17) | type User struct FILE: internal/endtoend/testdata/params_location/postgresql/pgx/v5/go/query.sql.go constant getUserByID (line 14) | getUserByID = `-- name: GetUserByID :one type GetUserByIDRow (line 18) | type GetUserByIDRow struct method GetUserByID (line 24) | func (q *Queries) GetUserByID(ctx context.Context, targetID int32) (GetU... constant insertNewUser (line 31) | insertNewUser = `-- name: InsertNewUser :exec type InsertNewUserParams (line 35) | type InsertNewUserParams struct method InsertNewUser (line 40) | func (q *Queries) InsertNewUser(ctx context.Context, arg InsertNewUserPa... constant limitSQLCArg (line 45) | limitSQLCArg = `-- name: LimitSQLCArg :many type LimitSQLCArgRow (line 49) | type LimitSQLCArgRow struct method LimitSQLCArg (line 54) | func (q *Queries) LimitSQLCArg(ctx context.Context, limit int32) ([]Limi... constant listUserOrders (line 74) | listUserOrders = `-- name: ListUserOrders :many type ListUserOrdersRow (line 85) | type ListUserOrdersRow struct method ListUserOrders (line 91) | func (q *Queries) ListUserOrders(ctx context.Context, minPrice pgtype.Nu... constant listUserParenExpr (line 111) | listUserParenExpr = `-- name: ListUserParenExpr :many type ListUserParenExprParams (line 118) | type ListUserParenExprParams struct method ListUserParenExpr (line 123) | func (q *Queries) ListUserParenExpr(ctx context.Context, arg ListUserPar... constant listUsersByFamily (line 149) | listUsersByFamily = `-- name: ListUsersByFamily :many type ListUsersByFamilyParams (line 153) | type ListUsersByFamilyParams struct type ListUsersByFamilyRow (line 158) | type ListUsersByFamilyRow struct method ListUsersByFamily (line 163) | func (q *Queries) ListUsersByFamily(ctx context.Context, arg ListUsersBy... constant listUsersByID (line 183) | listUsersByID = `-- name: ListUsersByID :many type ListUsersByIDRow (line 187) | type ListUsersByIDRow struct method ListUsersByID (line 193) | func (q *Queries) ListUsersByID(ctx context.Context, id int32) ([]ListUs... constant listUsersWithLimit (line 213) | listUsersWithLimit = `-- name: ListUsersWithLimit :many type ListUsersWithLimitRow (line 217) | type ListUsersWithLimitRow struct method ListUsersWithLimit (line 222) | func (q *Queries) ListUsersWithLimit(ctx context.Context, limit int32) (... FILE: internal/endtoend/testdata/params_location/postgresql/pgx/v5/schema.sql type users (line 1) | CREATE TABLE users ( type orders (line 9) | CREATE TABLE orders ( FILE: internal/endtoend/testdata/params_location/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/params_location/postgresql/stdlib/go/models.go type Order (line 11) | type Order struct type User (line 17) | type User struct FILE: internal/endtoend/testdata/params_location/postgresql/stdlib/go/query.sql.go constant getUserByID (line 13) | getUserByID = `-- name: GetUserByID :one type GetUserByIDRow (line 17) | type GetUserByIDRow struct method GetUserByID (line 23) | func (q *Queries) GetUserByID(ctx context.Context, targetID int32) (GetU... constant insertNewUser (line 30) | insertNewUser = `-- name: InsertNewUser :exec type InsertNewUserParams (line 34) | type InsertNewUserParams struct method InsertNewUser (line 39) | func (q *Queries) InsertNewUser(ctx context.Context, arg InsertNewUserPa... constant limitSQLCArg (line 44) | limitSQLCArg = `-- name: LimitSQLCArg :many type LimitSQLCArgRow (line 48) | type LimitSQLCArgRow struct method LimitSQLCArg (line 53) | func (q *Queries) LimitSQLCArg(ctx context.Context, limit int32) ([]Limi... constant listUserOrders (line 76) | listUserOrders = `-- name: ListUserOrders :many type ListUserOrdersRow (line 87) | type ListUserOrdersRow struct method ListUserOrders (line 93) | func (q *Queries) ListUserOrders(ctx context.Context, minPrice string) (... constant listUserParenExpr (line 116) | listUserParenExpr = `-- name: ListUserParenExpr :many type ListUserParenExprParams (line 123) | type ListUserParenExprParams struct method ListUserParenExpr (line 128) | func (q *Queries) ListUserParenExpr(ctx context.Context, arg ListUserPar... constant listUsersByFamily (line 157) | listUsersByFamily = `-- name: ListUsersByFamily :many type ListUsersByFamilyParams (line 161) | type ListUsersByFamilyParams struct type ListUsersByFamilyRow (line 166) | type ListUsersByFamilyRow struct method ListUsersByFamily (line 171) | func (q *Queries) ListUsersByFamily(ctx context.Context, arg ListUsersBy... constant listUsersByID (line 194) | listUsersByID = `-- name: ListUsersByID :many type ListUsersByIDRow (line 198) | type ListUsersByIDRow struct method ListUsersByID (line 204) | func (q *Queries) ListUsersByID(ctx context.Context, id int32) ([]ListUs... constant listUsersWithLimit (line 227) | listUsersWithLimit = `-- name: ListUsersWithLimit :many type ListUsersWithLimitRow (line 231) | type ListUsersWithLimitRow struct method ListUsersWithLimit (line 236) | func (q *Queries) ListUsersWithLimit(ctx context.Context, limit int32) (... FILE: internal/endtoend/testdata/params_location/postgresql/stdlib/schema.sql type users (line 1) | CREATE TABLE users ( type orders (line 9) | CREATE TABLE orders ( FILE: internal/endtoend/testdata/params_placeholder_in_left_expr/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/params_placeholder_in_left_expr/mysql/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/params_placeholder_in_left_expr/mysql/go/query.sql.go constant findByID (line 13) | findByID = `-- name: FindByID :many method FindByID (line 17) | func (q *Queries) FindByID(ctx context.Context, id int32) ([]User, error) { constant findByIDAndName (line 40) | findByIDAndName = `-- name: FindByIDAndName :many type FindByIDAndNameParams (line 44) | type FindByIDAndNameParams struct method FindByIDAndName (line 49) | func (q *Queries) FindByIDAndName(ctx context.Context, arg FindByIDAndNa... FILE: internal/endtoend/testdata/params_placeholder_in_left_expr/mysql/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/params_placeholder_in_left_expr/postgresql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/params_placeholder_in_left_expr/postgresql/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/params_placeholder_in_left_expr/postgresql/go/query.sql.go constant findByID (line 12) | findByID = `-- name: FindByID :many method FindByID (line 16) | func (q *Queries) FindByID(ctx context.Context, id int32) ([]User, error) { constant findByIDAndName (line 39) | findByIDAndName = `-- name: FindByIDAndName :many method FindByIDAndName (line 43) | func (q *Queries) FindByIDAndName(ctx context.Context, id int32) ([]User... FILE: internal/endtoend/testdata/params_placeholder_in_left_expr/postgresql/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/params_two/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/params_two/mysql/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/params_two/mysql/go/query.sql.go constant fooByAandB (line 13) | fooByAandB = `-- name: FooByAandB :many type FooByAandBParams (line 18) | type FooByAandBParams struct method FooByAandB (line 23) | func (q *Queries) FooByAandB(ctx context.Context, arg FooByAandBParams) ... FILE: internal/endtoend/testdata/params_two/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) FILE: internal/endtoend/testdata/params_two/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/params_two/postgresql/pgx/v4/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/params_two/postgresql/pgx/v4/go/query.sql.go constant fooByAandB (line 13) | fooByAandB = `-- name: FooByAandB :many type FooByAandBParams (line 18) | type FooByAandBParams struct method FooByAandB (line 23) | func (q *Queries) FooByAandB(ctx context.Context, arg FooByAandBParams) ... FILE: internal/endtoend/testdata/params_two/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) FILE: internal/endtoend/testdata/params_two/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/params_two/postgresql/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/params_two/postgresql/pgx/v5/go/query.sql.go constant fooByAandB (line 14) | fooByAandB = `-- name: FooByAandB :many type FooByAandBParams (line 19) | type FooByAandBParams struct method FooByAandB (line 24) | func (q *Queries) FooByAandB(ctx context.Context, arg FooByAandBParams) ... FILE: internal/endtoend/testdata/params_two/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) FILE: internal/endtoend/testdata/params_two/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/params_two/postgresql/stdlib/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/params_two/postgresql/stdlib/go/query.sql.go constant fooByAandB (line 13) | fooByAandB = `-- name: FooByAandB :many type FooByAandBParams (line 18) | type FooByAandBParams struct method FooByAandB (line 23) | func (q *Queries) FooByAandB(ctx context.Context, arg FooByAandBParams) ... FILE: internal/endtoend/testdata/params_two/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) FILE: internal/endtoend/testdata/pattern_in_expr/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/pattern_in_expr/mysql/go/models.go type Bar (line 11) | type Bar struct type Foo (line 16) | type Foo struct FILE: internal/endtoend/testdata/pattern_in_expr/mysql/go/query.sql.go constant fooByBarB (line 13) | fooByBarB = `-- name: FooByBarB :many method FooByBarB (line 17) | func (q *Queries) FooByBarB(ctx context.Context, b sql.NullString) ([]Fo... constant fooByList (line 40) | fooByList = `-- name: FooByList :many type FooByListParams (line 44) | type FooByListParams struct method FooByList (line 49) | func (q *Queries) FooByList(ctx context.Context, arg FooByListParams) ([... constant fooByNotList (line 72) | fooByNotList = `-- name: FooByNotList :many type FooByNotListParams (line 76) | type FooByNotListParams struct method FooByNotList (line 81) | func (q *Queries) FooByNotList(ctx context.Context, arg FooByNotListPara... constant fooByParamList (line 104) | fooByParamList = `-- name: FooByParamList :many method FooByParamList (line 108) | func (q *Queries) FooByParamList(ctx context.Context, a sql.NullString) ... FILE: internal/endtoend/testdata/pattern_in_expr/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) type bar (line 2) | CREATE TABLE bar (a text, b text) FILE: internal/endtoend/testdata/pattern_matching/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/pattern_matching/mysql/go/models.go type Pet (line 11) | type Pet struct FILE: internal/endtoend/testdata/pattern_matching/mysql/go/query.sql.go constant petsByName (line 13) | petsByName = `-- name: PetsByName :many method PetsByName (line 17) | func (q *Queries) PetsByName(ctx context.Context, name sql.NullString) (... FILE: internal/endtoend/testdata/pattern_matching/mysql/schema.sql type pet (line 1) | CREATE TABLE pet (name text) FILE: internal/endtoend/testdata/pattern_matching/postgresql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/pattern_matching/postgresql/go/models.go type Pet (line 11) | type Pet struct FILE: internal/endtoend/testdata/pattern_matching/postgresql/go/query.sql.go constant petsByName (line 13) | petsByName = `-- name: PetsByName :many method PetsByName (line 17) | func (q *Queries) PetsByName(ctx context.Context, name sql.NullString) (... FILE: internal/endtoend/testdata/pattern_matching/postgresql/schema.sql type pet (line 1) | CREATE TABLE pet (name text) FILE: internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/pgx/v4/go/exec.sql.go constant advisoryLockExec (line 12) | advisoryLockExec = `-- name: AdvisoryLockExec :exec method AdvisoryLockExec (line 16) | func (q *Queries) AdvisoryLockExec(ctx context.Context, pgAdvisoryLock i... constant advisoryLockExecRows (line 21) | advisoryLockExecRows = `-- name: AdvisoryLockExecRows :execrows method AdvisoryLockExecRows (line 25) | func (q *Queries) AdvisoryLockExecRows(ctx context.Context, pgAdvisoryLo... FILE: internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/pgx/v4/go/query.sql.go constant advisoryLockExecResult (line 14) | advisoryLockExecResult = `-- name: AdvisoryLockExecResult :execresult method AdvisoryLockExecResult (line 18) | func (q *Queries) AdvisoryLockExecResult(ctx context.Context, pgAdvisory... constant advisoryLockOne (line 22) | advisoryLockOne = `-- name: AdvisoryLockOne :one method AdvisoryLockOne (line 26) | func (q *Queries) AdvisoryLockOne(ctx context.Context, pgAdvisoryLock in... constant advisoryUnlock (line 33) | advisoryUnlock = `-- name: AdvisoryUnlock :many method AdvisoryUnlock (line 37) | func (q *Queries) AdvisoryUnlock(ctx context.Context, pgAdvisoryUnlock i... FILE: internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/pgx/v5/go/exec.sql.go constant advisoryLockExec (line 12) | advisoryLockExec = `-- name: AdvisoryLockExec :exec method AdvisoryLockExec (line 16) | func (q *Queries) AdvisoryLockExec(ctx context.Context, pgAdvisoryLock i... constant advisoryLockExecRows (line 21) | advisoryLockExecRows = `-- name: AdvisoryLockExecRows :execrows method AdvisoryLockExecRows (line 25) | func (q *Queries) AdvisoryLockExecRows(ctx context.Context, pgAdvisoryLo... FILE: internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/pgx/v5/go/query.sql.go constant advisoryLockExecResult (line 14) | advisoryLockExecResult = `-- name: AdvisoryLockExecResult :execresult method AdvisoryLockExecResult (line 18) | func (q *Queries) AdvisoryLockExecResult(ctx context.Context, pgAdvisory... constant advisoryLockOne (line 22) | advisoryLockOne = `-- name: AdvisoryLockOne :one method AdvisoryLockOne (line 26) | func (q *Queries) AdvisoryLockOne(ctx context.Context, pgAdvisoryLock in... constant advisoryUnlock (line 33) | advisoryUnlock = `-- name: AdvisoryUnlock :many method AdvisoryUnlock (line 37) | func (q *Queries) AdvisoryUnlock(ctx context.Context, pgAdvisoryUnlock i... FILE: internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/stdlib/go/exec.sql.go constant advisoryLockExec (line 12) | advisoryLockExec = `-- name: AdvisoryLockExec :exec method AdvisoryLockExec (line 16) | func (q *Queries) AdvisoryLockExec(ctx context.Context, pgAdvisoryLock i... constant advisoryLockExecRows (line 21) | advisoryLockExecRows = `-- name: AdvisoryLockExecRows :execrows method AdvisoryLockExecRows (line 25) | func (q *Queries) AdvisoryLockExecRows(ctx context.Context, pgAdvisoryLo... FILE: internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/stdlib/go/query.sql.go constant advisoryLockExecResult (line 13) | advisoryLockExecResult = `-- name: AdvisoryLockExecResult :execresult method AdvisoryLockExecResult (line 17) | func (q *Queries) AdvisoryLockExecResult(ctx context.Context, pgAdvisory... constant advisoryLockOne (line 21) | advisoryLockOne = `-- name: AdvisoryLockOne :one method AdvisoryLockOne (line 25) | func (q *Queries) AdvisoryLockOne(ctx context.Context, pgAdvisoryLock in... constant advisoryUnlock (line 32) | advisoryUnlock = `-- name: AdvisoryUnlock :many method AdvisoryUnlock (line 36) | func (q *Queries) AdvisoryUnlock(ctx context.Context, pgAdvisoryUnlock i... FILE: internal/endtoend/testdata/pg_dump/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/pg_dump/db/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/pg_dump/db/query.sql.go constant createAuthor (line 13) | createAuthor = `-- name: CreateAuthor :one type CreateAuthorParams (line 22) | type CreateAuthorParams struct method CreateAuthor (line 27) | func (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorPara... constant deleteAuthor (line 34) | deleteAuthor = `-- name: DeleteAuthor :exec method DeleteAuthor (line 39) | func (q *Queries) DeleteAuthor(ctx context.Context, id int64) error { constant getAuthor (line 44) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 49) | func (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, erro... constant listAuthors (line 56) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 61) | func (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) { FILE: internal/endtoend/testdata/pg_dump/schema.sql type public (line 41) | CREATE TABLE public.authors ( FILE: internal/endtoend/testdata/pg_ext_ltree/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/pg_ext_ltree/postgresql/pgx/v4/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/pg_ext_ltree/postgresql/pgx/v4/go/query.sql.go constant listFoo (line 12) | listFoo = `-- name: ListFoo :many method ListFoo (line 16) | func (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/pg_ext_ltree/postgresql/pgx/v4/schema.sql type foo (line 3) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/pg_ext_ltree/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/pg_ext_ltree/postgresql/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/pg_ext_ltree/postgresql/pgx/v5/go/query.sql.go constant listFoo (line 12) | listFoo = `-- name: ListFoo :many method ListFoo (line 16) | func (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/pg_ext_ltree/postgresql/pgx/v5/schema.sql type foo (line 3) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/pg_ext_ltree/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/pg_ext_ltree/postgresql/stdlib/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/pg_ext_ltree/postgresql/stdlib/go/query.sql.go constant listFoo (line 12) | listFoo = `-- name: ListFoo :many method ListFoo (line 16) | func (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/pg_ext_ltree/postgresql/stdlib/schema.sql type foo (line 3) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/pg_extensions/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/pg_extensions/postgresql/pgx/v4/go/pg_trgm.sql.go constant wordSimilarity (line 12) | wordSimilarity = `-- name: WordSimilarity :one method WordSimilarity (line 16) | func (q *Queries) WordSimilarity(ctx context.Context) (float32, error) { FILE: internal/endtoend/testdata/pg_extensions/postgresql/pgx/v4/go/pgcrypto.sql.go constant encodeDigest (line 12) | encodeDigest = `-- name: EncodeDigest :one method EncodeDigest (line 16) | func (q *Queries) EncodeDigest(ctx context.Context, digest string) (stri... FILE: internal/endtoend/testdata/pg_extensions/postgresql/pgx/v4/go/uuid_ossp.sql.go constant generateUUID (line 14) | generateUUID = `-- name: GenerateUUID :one method GenerateUUID (line 18) | func (q *Queries) GenerateUUID(ctx context.Context) (uuid.UUID, error) { FILE: internal/endtoend/testdata/pg_extensions/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/pg_extensions/postgresql/pgx/v5/go/pg_trgm.sql.go constant wordSimilarity (line 12) | wordSimilarity = `-- name: WordSimilarity :one method WordSimilarity (line 16) | func (q *Queries) WordSimilarity(ctx context.Context) (float32, error) { FILE: internal/endtoend/testdata/pg_extensions/postgresql/pgx/v5/go/pgcrypto.sql.go constant encodeDigest (line 12) | encodeDigest = `-- name: EncodeDigest :one method EncodeDigest (line 16) | func (q *Queries) EncodeDigest(ctx context.Context, digest string) (stri... FILE: internal/endtoend/testdata/pg_extensions/postgresql/pgx/v5/go/uuid_ossp.sql.go constant generateUUID (line 14) | generateUUID = `-- name: GenerateUUID :one method GenerateUUID (line 18) | func (q *Queries) GenerateUUID(ctx context.Context) (pgtype.UUID, error) { FILE: internal/endtoend/testdata/pg_extensions/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/pg_extensions/postgresql/stdlib/go/pg_trgm.sql.go constant wordSimilarity (line 12) | wordSimilarity = `-- name: WordSimilarity :one method WordSimilarity (line 16) | func (q *Queries) WordSimilarity(ctx context.Context) (float32, error) { FILE: internal/endtoend/testdata/pg_extensions/postgresql/stdlib/go/pgcrypto.sql.go constant encodeDigest (line 12) | encodeDigest = `-- name: EncodeDigest :one method EncodeDigest (line 16) | func (q *Queries) EncodeDigest(ctx context.Context, digest string) (stri... FILE: internal/endtoend/testdata/pg_extensions/postgresql/stdlib/go/uuid_ossp.sql.go constant generateUUID (line 14) | generateUUID = `-- name: GenerateUUID :one method GenerateUUID (line 18) | func (q *Queries) GenerateUUID(ctx context.Context) (uuid.UUID, error) { FILE: internal/endtoend/testdata/pg_generate_series/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/pg_generate_series/postgresql/pgx/v4/go/query.sql.go constant generateSeries (line 13) | generateSeries = `-- name: GenerateSeries :many type GenerateSeriesParams (line 17) | type GenerateSeriesParams struct method GenerateSeries (line 22) | func (q *Queries) GenerateSeries(ctx context.Context, arg GenerateSeries... FILE: internal/endtoend/testdata/pg_generate_series/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/pg_generate_series/postgresql/pgx/v5/go/query.sql.go constant generateSeries (line 14) | generateSeries = `-- name: GenerateSeries :many type GenerateSeriesParams (line 18) | type GenerateSeriesParams struct method GenerateSeries (line 23) | func (q *Queries) GenerateSeries(ctx context.Context, arg GenerateSeries... FILE: internal/endtoend/testdata/pg_generate_series/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/pg_generate_series/postgresql/stdlib/go/query.sql.go constant generateSeries (line 13) | generateSeries = `-- name: GenerateSeries :many type GenerateSeriesParams (line 17) | type GenerateSeriesParams struct method GenerateSeries (line 22) | func (q *Queries) GenerateSeries(ctx context.Context, arg GenerateSeries... FILE: internal/endtoend/testdata/pg_timezone_names/go_pgx/v4/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/pg_timezone_names/go_pgx/v4/query.sql.go constant getColumns (line 13) | getColumns = `-- name: GetColumns :many type GetColumnsRow (line 17) | type GetColumnsRow struct method GetColumns (line 22) | func (q *Queries) GetColumns(ctx context.Context) ([]GetColumnsRow, erro... constant getTables (line 42) | getTables = `-- name: GetTables :many method GetTables (line 46) | func (q *Queries) GetTables(ctx context.Context) ([]string, error) { constant getTimezones (line 66) | getTimezones = `-- name: GetTimezones :many type GetTimezonesRow (line 70) | type GetTimezonesRow struct method GetTimezones (line 77) | func (q *Queries) GetTimezones(ctx context.Context) ([]GetTimezonesRow, ... FILE: internal/endtoend/testdata/pg_timezone_names/go_pgx/v5/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/pg_timezone_names/go_pgx/v5/query.sql.go constant getColumns (line 14) | getColumns = `-- name: GetColumns :many type GetColumnsRow (line 18) | type GetColumnsRow struct method GetColumns (line 23) | func (q *Queries) GetColumns(ctx context.Context) ([]GetColumnsRow, erro... constant getTables (line 43) | getTables = `-- name: GetTables :many method GetTables (line 47) | func (q *Queries) GetTables(ctx context.Context) ([]string, error) { constant getTimezones (line 67) | getTimezones = `-- name: GetTimezones :many type GetTimezonesRow (line 71) | type GetTimezonesRow struct method GetTimezones (line 78) | func (q *Queries) GetTimezones(ctx context.Context) ([]GetTimezonesRow, ... FILE: internal/endtoend/testdata/pg_timezone_names/go_stdlib/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/pg_timezone_names/go_stdlib/query.sql.go constant getColumns (line 13) | getColumns = `-- name: GetColumns :many type GetColumnsRow (line 17) | type GetColumnsRow struct method GetColumns (line 22) | func (q *Queries) GetColumns(ctx context.Context) ([]GetColumnsRow, erro... constant getTables (line 45) | getTables = `-- name: GetTables :many method GetTables (line 49) | func (q *Queries) GetTables(ctx context.Context) ([]string, error) { constant getTimezones (line 72) | getTimezones = `-- name: GetTimezones :many type GetTimezonesRow (line 76) | type GetTimezonesRow struct method GetTimezones (line 83) | func (q *Queries) GetTimezones(ctx context.Context) ([]GetTimezonesRow, ... FILE: internal/endtoend/testdata/pg_user_table/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/pg_user_table/postgresql/pgx/v4/go/models.go type User (line 7) | type User struct FILE: internal/endtoend/testdata/pg_user_table/postgresql/pgx/v4/go/query.sql.go constant user (line 12) | user = `-- name: User :many method User (line 16) | func (q *Queries) User(ctx context.Context) ([]int64, error) { FILE: internal/endtoend/testdata/pg_user_table/postgresql/pgx/v4/schema.sql type "user" (line 1) | CREATE TABLE "user" (id bigserial not null) FILE: internal/endtoend/testdata/pg_user_table/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/pg_user_table/postgresql/pgx/v5/go/models.go type User (line 7) | type User struct FILE: internal/endtoend/testdata/pg_user_table/postgresql/pgx/v5/go/query.sql.go constant user (line 12) | user = `-- name: User :many method User (line 16) | func (q *Queries) User(ctx context.Context) ([]int64, error) { FILE: internal/endtoend/testdata/pg_user_table/postgresql/pgx/v5/schema.sql type "user" (line 1) | CREATE TABLE "user" (id bigserial not null) FILE: internal/endtoend/testdata/pg_user_table/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/pg_user_table/postgresql/stdlib/go/models.go type User (line 7) | type User struct FILE: internal/endtoend/testdata/pg_user_table/postgresql/stdlib/go/query.sql.go constant user (line 12) | user = `-- name: User :many method User (line 16) | func (q *Queries) User(ctx context.Context) ([]int64, error) { FILE: internal/endtoend/testdata/pg_user_table/postgresql/stdlib/schema.sql type "user" (line 1) | CREATE TABLE "user" (id bigserial not null) FILE: internal/endtoend/testdata/pg_vector/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/pg_vector/postgresql/pgx/go/models.go type Item (line 11) | type Item struct FILE: internal/endtoend/testdata/pg_vector/postgresql/pgx/go/query.sql.go constant insertVector (line 14) | insertVector = `-- name: InsertVector :exec method InsertVector (line 18) | func (q *Queries) InsertVector(ctx context.Context, embedding pgvector.V... constant nearestNeighbor (line 23) | nearestNeighbor = `-- name: NearestNeighbor :many method NearestNeighbor (line 30) | func (q *Queries) NearestNeighbor(ctx context.Context, embedding pgvecto... FILE: internal/endtoend/testdata/pg_vector/postgresql/pgx/schema.sql type items (line 3) | CREATE TABLE items (id bigserial PRIMARY KEY, embedding vector(3) FILE: internal/endtoend/testdata/pointer_type_import/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/pointer_type_import/postgresql/pgx/v4/go/models.go type Foo (line 13) | type Foo struct FILE: internal/endtoend/testdata/pointer_type_import/postgresql/pgx/v4/go/query.sql.go constant find (line 15) | find = `-- name: Find :one method Find (line 19) | func (q *Queries) Find(ctx context.Context, baz *uuid.UUID) (*time.Time,... constant list (line 26) | list = `-- name: List :many method List (line 30) | func (q *Queries) List(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/pointer_type_import/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (bar date, baz uuid) FILE: internal/endtoend/testdata/pointer_type_import/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/pointer_type_import/postgresql/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/pointer_type_import/postgresql/pgx/v5/go/query.sql.go constant find (line 13) | find = `-- name: Find :one method Find (line 17) | func (q *Queries) Find(ctx context.Context, baz *netip.Prefix) (*netip.A... constant list (line 24) | list = `-- name: List :many method List (line 28) | func (q *Queries) List(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/pointer_type_import/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (bar inet, baz cidr) FILE: internal/endtoend/testdata/prepared_queries/mysql/go/db.go type DBTX (line 13) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { function Prepare (line 24) | func Prepare(ctx context.Context, db DBTX) (*Queries, error) { type Queries (line 108) | type Queries struct method Close (line 45) | func (q *Queries) Close() error { method exec (line 75) | func (q *Queries) exec(ctx context.Context, stmt *sql.Stmt, query stri... method query (line 86) | func (q *Queries) query(ctx context.Context, stmt *sql.Stmt, query str... method queryRow (line 97) | func (q *Queries) queryRow(ctx context.Context, stmt *sql.Stmt, query ... method WithTx (line 118) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/prepared_queries/mysql/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/prepared_queries/mysql/go/query.sql.go constant deleteUsersByName (line 13) | deleteUsersByName = `-- name: DeleteUsersByName :execrows type DeleteUsersByNameParams (line 17) | type DeleteUsersByNameParams struct method DeleteUsersByName (line 22) | func (q *Queries) DeleteUsersByName(ctx context.Context, arg DeleteUsers... constant getUserByID (line 30) | getUserByID = `-- name: GetUserByID :one type GetUserByIDRow (line 34) | type GetUserByIDRow struct method GetUserByID (line 40) | func (q *Queries) GetUserByID(ctx context.Context, targetID uint64) (Get... constant insertNewUser (line 47) | insertNewUser = `-- name: InsertNewUser :exec type InsertNewUserParams (line 51) | type InsertNewUserParams struct method InsertNewUser (line 56) | func (q *Queries) InsertNewUser(ctx context.Context, arg InsertNewUserPa... constant insertNewUserWithResult (line 61) | insertNewUserWithResult = `-- name: InsertNewUserWithResult :execresult type InsertNewUserWithResultParams (line 65) | type InsertNewUserWithResultParams struct method InsertNewUserWithResult (line 70) | func (q *Queries) InsertNewUserWithResult(ctx context.Context, arg Inser... constant listUsers (line 74) | listUsers = `-- name: ListUsers :many type ListUsersRow (line 78) | type ListUsersRow struct method ListUsers (line 83) | func (q *Queries) ListUsers(ctx context.Context) ([]ListUsersRow, error) { FILE: internal/endtoend/testdata/prepared_queries/mysql/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/prepared_queries/postgresql/stdlib/go/db.go type DBTX (line 13) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { function Prepare (line 24) | func Prepare(ctx context.Context, db DBTX) (*Queries, error) { type Queries (line 108) | type Queries struct method Close (line 45) | func (q *Queries) Close() error { method exec (line 75) | func (q *Queries) exec(ctx context.Context, stmt *sql.Stmt, query stri... method query (line 86) | func (q *Queries) query(ctx context.Context, stmt *sql.Stmt, query str... method queryRow (line 97) | func (q *Queries) queryRow(ctx context.Context, stmt *sql.Stmt, query ... method WithTx (line 118) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/prepared_queries/postgresql/stdlib/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/prepared_queries/postgresql/stdlib/go/query.sql.go constant deleteUsersByName (line 13) | deleteUsersByName = `-- name: DeleteUsersByName :execrows type DeleteUsersByNameParams (line 17) | type DeleteUsersByNameParams struct method DeleteUsersByName (line 22) | func (q *Queries) DeleteUsersByName(ctx context.Context, arg DeleteUsers... constant getUserByID (line 30) | getUserByID = `-- name: GetUserByID :one type GetUserByIDRow (line 34) | type GetUserByIDRow struct method GetUserByID (line 40) | func (q *Queries) GetUserByID(ctx context.Context, targetID int32) (GetU... constant insertNewUser (line 47) | insertNewUser = `-- name: InsertNewUser :exec type InsertNewUserParams (line 51) | type InsertNewUserParams struct method InsertNewUser (line 56) | func (q *Queries) InsertNewUser(ctx context.Context, arg InsertNewUserPa... constant insertNewUserWithResult (line 61) | insertNewUserWithResult = `-- name: InsertNewUserWithResult :execresult type InsertNewUserWithResultParams (line 65) | type InsertNewUserWithResultParams struct method InsertNewUserWithResult (line 70) | func (q *Queries) InsertNewUserWithResult(ctx context.Context, arg Inser... constant listUsers (line 74) | listUsers = `-- name: ListUsers :many type ListUsersRow (line 78) | type ListUsersRow struct method ListUsers (line 83) | func (q *Queries) ListUsers(ctx context.Context) ([]ListUsersRow, error) { FILE: internal/endtoend/testdata/prepared_queries/postgresql/stdlib/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/primary_key_later/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/primary_key_later/postgresql/pgx/v4/go/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/primary_key_later/postgresql/pgx/v4/go/queries.sql.go constant getAuthor (line 12) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 22) | func (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, erro... FILE: internal/endtoend/testdata/primary_key_later/postgresql/pgx/v4/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/primary_key_later/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/primary_key_later/postgresql/pgx/v5/go/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/primary_key_later/postgresql/pgx/v5/go/queries.sql.go constant getAuthor (line 12) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 22) | func (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, erro... FILE: internal/endtoend/testdata/primary_key_later/postgresql/pgx/v5/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/primary_key_later/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/primary_key_later/postgresql/stdlib/go/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/primary_key_later/postgresql/stdlib/go/queries.sql.go constant getAuthor (line 12) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 22) | func (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, erro... FILE: internal/endtoend/testdata/primary_key_later/postgresql/stdlib/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/process_plugin_disabled/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/process_plugin_format_json/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/process_plugin_sqlc_gen_json/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/process_plugin_sqlc_gen_test/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/query_parameter_limit_invalid/postgresql/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/query_parameter_limit_param_only/postgresql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/query_parameter_limit_param_only/postgresql/go/models.go type Notice (line 12) | type Notice struct FILE: internal/endtoend/testdata/query_parameter_limit_param_only/postgresql/go/querier.go type Querier (line 13) | type Querier interface FILE: internal/endtoend/testdata/query_parameter_limit_param_only/postgresql/go/query.sql.go constant createNotice (line 14) | createNotice = `-- name: CreateNotice :exec method CreateNotice (line 19) | func (q *Queries) CreateNotice(ctx context.Context, cnt int32, createdAt... constant markNoticeDone (line 24) | markNoticeDone = `-- name: MarkNoticeDone :exec method MarkNoticeDone (line 30) | func (q *Queries) MarkNoticeDone(ctx context.Context, noticeAt sql.NullT... FILE: internal/endtoend/testdata/query_parameter_limit_param_only/postgresql/schema.sql type notice (line 1) | CREATE TABLE notice ( FILE: internal/endtoend/testdata/query_parameter_limit_to_two/postgresql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/query_parameter_limit_to_two/postgresql/go/models.go type Author (line 11) | type Author struct type Client (line 19) | type Client struct FILE: internal/endtoend/testdata/query_parameter_limit_to_two/postgresql/go/query.sql.go constant addNewClient (line 16) | addNewClient = `-- name: AddNewClient :one method AddNewClient (line 25) | func (q *Queries) AddNewClient(ctx context.Context, iD int32, name strin... constant createAuthor (line 32) | createAuthor = `-- name: CreateAuthor :one type CreateAuthorParams (line 41) | type CreateAuthorParams struct method CreateAuthor (line 48) | func (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorPara... constant createAuthorOnlyTitles (line 66) | createAuthorOnlyTitles = `-- name: CreateAuthorOnlyTitles :one method CreateAuthorOnlyTitles (line 70) | func (q *Queries) CreateAuthorOnlyTitles(ctx context.Context, name strin... constant deleteAuthor (line 83) | deleteAuthor = `-- name: DeleteAuthor :exec method DeleteAuthor (line 88) | func (q *Queries) DeleteAuthor(ctx context.Context, id int64) error { constant deleteAuthors (line 93) | deleteAuthors = `-- name: DeleteAuthors :exec method DeleteAuthors (line 98) | func (q *Queries) DeleteAuthors(ctx context.Context, name string, ids []... constant getAuthor (line 114) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 119) | func (q *Queries) GetAuthor(ctx context.Context, name string, countryCod... constant listAuthors (line 132) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 137) | func (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) { FILE: internal/endtoend/testdata/query_parameter_limit_to_two/postgresql/schema.sql type authors (line 2) | CREATE TABLE authors ( type clients (line 10) | CREATE TABLE clients ( FILE: internal/endtoend/testdata/query_parameter_limit_to_zero/postgresql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/query_parameter_limit_to_zero/postgresql/go/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/query_parameter_limit_to_zero/postgresql/go/querier.go type Querier (line 11) | type Querier interface FILE: internal/endtoend/testdata/query_parameter_limit_to_zero/postgresql/go/query.sql.go constant createAuthor (line 13) | createAuthor = `-- name: CreateAuthor :one type CreateAuthorParams (line 22) | type CreateAuthorParams struct method CreateAuthor (line 28) | func (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorPara... constant deleteAuthor (line 40) | deleteAuthor = `-- name: DeleteAuthor :exec type DeleteAuthorParams (line 45) | type DeleteAuthorParams struct method DeleteAuthor (line 49) | func (q *Queries) DeleteAuthor(ctx context.Context, arg DeleteAuthorPara... constant getAuthor (line 54) | getAuthor = `-- name: GetAuthor :one type GetAuthorParams (line 59) | type GetAuthorParams struct method GetAuthor (line 64) | func (q *Queries) GetAuthor(ctx context.Context, arg GetAuthorParams) (A... constant listAuthors (line 76) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 81) | func (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) { FILE: internal/endtoend/testdata/query_parameter_limit_to_zero/postgresql/schema.sql type authors (line 2) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/quoted_colname/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/quoted_colname/sqlite/go/models.go type Test (line 7) | type Test struct FILE: internal/endtoend/testdata/quoted_colname/sqlite/go/query.sql.go constant testList (line 12) | testList = `-- name: TestList :many method TestList (line 16) | func (q *Queries) TestList(ctx context.Context) ([]string, error) { FILE: internal/endtoend/testdata/quoted_colname/sqlite/schema.sql type "test" (line 2) | CREATE TABLE "test" FILE: internal/endtoend/testdata/quoted_names_complex/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/quoted_names_complex/sqlite/go/query.sql.go constant placeholder (line 12) | placeholder = `-- name: Placeholder :exec method Placeholder (line 16) | func (q *Queries) Placeholder(ctx context.Context) error { FILE: internal/endtoend/testdata/quoted_names_complex/sqlite/schema.sql type "user profiles" (line 3) | CREATE TABLE "user profiles" (id integer primary key, data text) type "ORDERS" (line 4) | CREATE TABLE "ORDERS" (id integer primary key, data text) type products (line 5) | CREATE TABLE products (id integer primary key, data text) type "item-categories" (line 6) | CREATE TABLE "item-categories" (id integer primary key, data text) FILE: internal/endtoend/testdata/quoted_tablename/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/quoted_tablename/sqlite/go/models.go type User (line 7) | type User struct FILE: internal/endtoend/testdata/quoted_tablename/sqlite/go/query.sql.go constant testList (line 12) | testList = `-- name: TestList :many method TestList (line 16) | func (q *Queries) TestList(ctx context.Context) ([]string, error) { FILE: internal/endtoend/testdata/quoted_tablename/sqlite/schema.sql type "users" (line 2) | CREATE TABLE "users" FILE: internal/endtoend/testdata/ranges/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/ranges/pgx/v5/go/models.go type TestTable (line 11) | type TestTable struct FILE: internal/endtoend/testdata/ranges/pgx/v5/go/query.sql.go constant selectTest (line 12) | selectTest = `-- name: SelectTest :many method SelectTest (line 16) | func (q *Queries) SelectTest(ctx context.Context) ([]TestTable, error) { FILE: internal/endtoend/testdata/ranges/pgx/v5/schema.sql type test_table (line 1) | CREATE TABLE test_table FILE: internal/endtoend/testdata/refreshmatview/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/refreshmatview/postgresql/pgx/v4/go/models.go type Myview (line 7) | type Myview struct FILE: internal/endtoend/testdata/refreshmatview/postgresql/pgx/v4/go/query.sql.go constant refresh (line 12) | refresh = `-- name: Refresh :exec method Refresh (line 16) | func (q *Queries) Refresh(ctx context.Context) error { FILE: internal/endtoend/testdata/refreshmatview/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/refreshmatview/postgresql/pgx/v5/go/models.go type Myview (line 7) | type Myview struct FILE: internal/endtoend/testdata/refreshmatview/postgresql/pgx/v5/go/query.sql.go constant refresh (line 12) | refresh = `-- name: Refresh :exec method Refresh (line 16) | func (q *Queries) Refresh(ctx context.Context) error { FILE: internal/endtoend/testdata/rename/v1/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/rename/v1/pgx/v4/go/models.go type IPProtocol (line 12) | type IPProtocol method Scan (line 20) | func (e *IPProtocol) Scan(src interface{}) error { constant IPProtocolTCP (line 15) | IPProtocolTCP IPProtocol = "tcp" constant IpProtocolIp (line 16) | IpProtocolIp IPProtocol = "ip" constant IpProtocolIcmp (line 17) | IpProtocolIcmp IPProtocol = "icmp" type NullIPProtocol (line 32) | type NullIPProtocol struct method Scan (line 38) | func (ns *NullIPProtocol) Scan(value interface{}) error { method Value (line 48) | func (ns NullIPProtocol) Value() (driver.Value, error) { type BarNew (line 55) | type BarNew struct FILE: internal/endtoend/testdata/rename/v1/pgx/v4/go/query.sql.go constant listBar (line 12) | listBar = `-- name: ListBar :many method ListBar (line 16) | func (q *Queries) ListBar(ctx context.Context) ([]BarNew, error) { constant listFoo (line 36) | listFoo = `-- name: ListFoo :many type ListFooParams (line 42) | type ListFooParams struct type ListFooRow (line 47) | type ListFooRow struct method ListFoo (line 52) | func (q *Queries) ListFoo(ctx context.Context, arg ListFooParams) ([]Lis... FILE: internal/endtoend/testdata/rename/v1/pgx/v4/schema.sql type bar_old (line 3) | CREATE TABLE bar_old (id_old serial not null, ip_old ip_protocol NOT NULL) FILE: internal/endtoend/testdata/rename/v1/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/rename/v1/pgx/v5/go/models.go type IPProtocol (line 12) | type IPProtocol method Scan (line 20) | func (e *IPProtocol) Scan(src interface{}) error { constant IPProtocolTCP (line 15) | IPProtocolTCP IPProtocol = "tcp" constant IpProtocolIp (line 16) | IpProtocolIp IPProtocol = "ip" constant IpProtocolIcmp (line 17) | IpProtocolIcmp IPProtocol = "icmp" type NullIPProtocol (line 32) | type NullIPProtocol struct method Scan (line 38) | func (ns *NullIPProtocol) Scan(value interface{}) error { method Value (line 48) | func (ns NullIPProtocol) Value() (driver.Value, error) { type BarNew (line 55) | type BarNew struct FILE: internal/endtoend/testdata/rename/v1/pgx/v5/go/query.sql.go constant listBar (line 12) | listBar = `-- name: ListBar :many method ListBar (line 16) | func (q *Queries) ListBar(ctx context.Context) ([]BarNew, error) { constant listFoo (line 36) | listFoo = `-- name: ListFoo :many type ListFooParams (line 42) | type ListFooParams struct type ListFooRow (line 47) | type ListFooRow struct method ListFoo (line 52) | func (q *Queries) ListFoo(ctx context.Context, arg ListFooParams) ([]Lis... FILE: internal/endtoend/testdata/rename/v1/pgx/v5/schema.sql type bar_old (line 3) | CREATE TABLE bar_old (id_old serial not null, ip_old ip_protocol NOT NULL) FILE: internal/endtoend/testdata/rename/v1/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/rename/v1/stdlib/go/models.go type IPProtocol (line 12) | type IPProtocol method Scan (line 20) | func (e *IPProtocol) Scan(src interface{}) error { constant IPProtocolTCP (line 15) | IPProtocolTCP IPProtocol = "tcp" constant IpProtocolIp (line 16) | IpProtocolIp IPProtocol = "ip" constant IpProtocolIcmp (line 17) | IpProtocolIcmp IPProtocol = "icmp" type NullIPProtocol (line 32) | type NullIPProtocol struct method Scan (line 38) | func (ns *NullIPProtocol) Scan(value interface{}) error { method Value (line 48) | func (ns NullIPProtocol) Value() (driver.Value, error) { type BarNew (line 55) | type BarNew struct FILE: internal/endtoend/testdata/rename/v1/stdlib/go/query.sql.go constant listBar (line 12) | listBar = `-- name: ListBar :many method ListBar (line 16) | func (q *Queries) ListBar(ctx context.Context) ([]BarNew, error) { constant listFoo (line 39) | listFoo = `-- name: ListFoo :many type ListFooParams (line 45) | type ListFooParams struct type ListFooRow (line 50) | type ListFooRow struct method ListFoo (line 55) | func (q *Queries) ListFoo(ctx context.Context, arg ListFooParams) ([]Lis... FILE: internal/endtoend/testdata/rename/v1/stdlib/schema.sql type bar_old (line 3) | CREATE TABLE bar_old (id_old serial not null, ip_old ip_protocol NOT NULL) FILE: internal/endtoend/testdata/rename/v2/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/rename/v2/pgx/v4/go/models.go type IPProtocol (line 12) | type IPProtocol method Scan (line 20) | func (e *IPProtocol) Scan(src interface{}) error { constant IPProtocolTCP (line 15) | IPProtocolTCP IPProtocol = "tcp" constant IpProtocolIp (line 16) | IpProtocolIp IPProtocol = "ip" constant IpProtocolIcmp (line 17) | IpProtocolIcmp IPProtocol = "icmp" type NullIPProtocol (line 32) | type NullIPProtocol struct method Scan (line 38) | func (ns *NullIPProtocol) Scan(value interface{}) error { method Value (line 48) | func (ns NullIPProtocol) Value() (driver.Value, error) { type BarNew (line 55) | type BarNew struct FILE: internal/endtoend/testdata/rename/v2/pgx/v4/go/query.sql.go constant listBar (line 12) | listBar = `-- name: ListBar :many method ListBar (line 16) | func (q *Queries) ListBar(ctx context.Context) ([]BarNew, error) { constant listFoo (line 36) | listFoo = `-- name: ListFoo :many type ListFooParams (line 42) | type ListFooParams struct type ListFooRow (line 47) | type ListFooRow struct method ListFoo (line 52) | func (q *Queries) ListFoo(ctx context.Context, arg ListFooParams) ([]Lis... FILE: internal/endtoend/testdata/rename/v2/pgx/v4/schema.sql type bar_old (line 3) | CREATE TABLE bar_old (id_old serial not null, ip_old ip_protocol NOT NULL) FILE: internal/endtoend/testdata/rename/v2/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/rename/v2/pgx/v5/go/models.go type IPProtocol (line 12) | type IPProtocol method Scan (line 20) | func (e *IPProtocol) Scan(src interface{}) error { constant IPProtocolTCP (line 15) | IPProtocolTCP IPProtocol = "tcp" constant IpProtocolIp (line 16) | IpProtocolIp IPProtocol = "ip" constant IpProtocolIcmp (line 17) | IpProtocolIcmp IPProtocol = "icmp" type NullIPProtocol (line 32) | type NullIPProtocol struct method Scan (line 38) | func (ns *NullIPProtocol) Scan(value interface{}) error { method Value (line 48) | func (ns NullIPProtocol) Value() (driver.Value, error) { type BarNew (line 55) | type BarNew struct FILE: internal/endtoend/testdata/rename/v2/pgx/v5/go/query.sql.go constant listBar (line 12) | listBar = `-- name: ListBar :many method ListBar (line 16) | func (q *Queries) ListBar(ctx context.Context) ([]BarNew, error) { constant listFoo (line 36) | listFoo = `-- name: ListFoo :many type ListFooParams (line 42) | type ListFooParams struct type ListFooRow (line 47) | type ListFooRow struct method ListFoo (line 52) | func (q *Queries) ListFoo(ctx context.Context, arg ListFooParams) ([]Lis... FILE: internal/endtoend/testdata/rename/v2/pgx/v5/schema.sql type bar_old (line 3) | CREATE TABLE bar_old (id_old serial not null, ip_old ip_protocol NOT NULL) FILE: internal/endtoend/testdata/rename/v2/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/rename/v2/stdlib/go/models.go type IPProtocol (line 12) | type IPProtocol method Scan (line 20) | func (e *IPProtocol) Scan(src interface{}) error { constant IPProtocolTCP (line 15) | IPProtocolTCP IPProtocol = "tcp" constant IpProtocolIp (line 16) | IpProtocolIp IPProtocol = "ip" constant IpProtocolIcmp (line 17) | IpProtocolIcmp IPProtocol = "icmp" type NullIPProtocol (line 32) | type NullIPProtocol struct method Scan (line 38) | func (ns *NullIPProtocol) Scan(value interface{}) error { method Value (line 48) | func (ns NullIPProtocol) Value() (driver.Value, error) { type BarNew (line 55) | type BarNew struct FILE: internal/endtoend/testdata/rename/v2/stdlib/go/query.sql.go constant listBar (line 12) | listBar = `-- name: ListBar :many method ListBar (line 16) | func (q *Queries) ListBar(ctx context.Context) ([]BarNew, error) { constant listFoo (line 39) | listFoo = `-- name: ListFoo :many type ListFooParams (line 45) | type ListFooParams struct type ListFooRow (line 50) | type ListFooRow struct method ListFoo (line 55) | func (q *Queries) ListFoo(ctx context.Context, arg ListFooParams) ([]Lis... FILE: internal/endtoend/testdata/rename/v2/stdlib/schema.sql type bar_old (line 3) | CREATE TABLE bar_old (id_old serial not null, ip_old ip_protocol NOT NULL) FILE: internal/endtoend/testdata/returning/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/returning/postgresql/pgx/v4/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/returning/postgresql/pgx/v4/go/query.sql.go constant deleteUserAndReturnID (line 13) | deleteUserAndReturnID = `-- name: DeleteUserAndReturnID :one method DeleteUserAndReturnID (line 19) | func (q *Queries) DeleteUserAndReturnID(ctx context.Context, name sql.Nu... constant deleteUserAndReturnUser (line 26) | deleteUserAndReturnUser = `-- name: DeleteUserAndReturnUser :one method DeleteUserAndReturnUser (line 32) | func (q *Queries) DeleteUserAndReturnUser(ctx context.Context, name sql.... constant insertUserAndReturnID (line 39) | insertUserAndReturnID = `-- name: InsertUserAndReturnID :one method InsertUserAndReturnID (line 44) | func (q *Queries) InsertUserAndReturnID(ctx context.Context, name sql.Nu... constant insertUserAndReturnUser (line 51) | insertUserAndReturnUser = `-- name: InsertUserAndReturnUser :one method InsertUserAndReturnUser (line 56) | func (q *Queries) InsertUserAndReturnUser(ctx context.Context, name sql.... constant updateUserAndReturnID (line 63) | updateUserAndReturnID = `-- name: UpdateUserAndReturnID :one type UpdateUserAndReturnIDParams (line 69) | type UpdateUserAndReturnIDParams struct method UpdateUserAndReturnID (line 74) | func (q *Queries) UpdateUserAndReturnID(ctx context.Context, arg UpdateU... constant updateUserAndReturnUser (line 81) | updateUserAndReturnUser = `-- name: UpdateUserAndReturnUser :one type UpdateUserAndReturnUserParams (line 87) | type UpdateUserAndReturnUserParams struct method UpdateUserAndReturnUser (line 92) | func (q *Queries) UpdateUserAndReturnUser(ctx context.Context, arg Updat... FILE: internal/endtoend/testdata/returning/postgresql/pgx/v4/schema.sql type users (line 1) | CREATE TABLE users (name text, id serial primary key) FILE: internal/endtoend/testdata/returning/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/returning/postgresql/pgx/v5/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/returning/postgresql/pgx/v5/go/query.sql.go constant deleteUserAndReturnID (line 14) | deleteUserAndReturnID = `-- name: DeleteUserAndReturnID :one method DeleteUserAndReturnID (line 20) | func (q *Queries) DeleteUserAndReturnID(ctx context.Context, name pgtype... constant deleteUserAndReturnUser (line 27) | deleteUserAndReturnUser = `-- name: DeleteUserAndReturnUser :one method DeleteUserAndReturnUser (line 33) | func (q *Queries) DeleteUserAndReturnUser(ctx context.Context, name pgty... constant insertUserAndReturnID (line 40) | insertUserAndReturnID = `-- name: InsertUserAndReturnID :one method InsertUserAndReturnID (line 45) | func (q *Queries) InsertUserAndReturnID(ctx context.Context, name pgtype... constant insertUserAndReturnUser (line 52) | insertUserAndReturnUser = `-- name: InsertUserAndReturnUser :one method InsertUserAndReturnUser (line 57) | func (q *Queries) InsertUserAndReturnUser(ctx context.Context, name pgty... constant updateUserAndReturnID (line 64) | updateUserAndReturnID = `-- name: UpdateUserAndReturnID :one type UpdateUserAndReturnIDParams (line 70) | type UpdateUserAndReturnIDParams struct method UpdateUserAndReturnID (line 75) | func (q *Queries) UpdateUserAndReturnID(ctx context.Context, arg UpdateU... constant updateUserAndReturnUser (line 82) | updateUserAndReturnUser = `-- name: UpdateUserAndReturnUser :one type UpdateUserAndReturnUserParams (line 88) | type UpdateUserAndReturnUserParams struct method UpdateUserAndReturnUser (line 93) | func (q *Queries) UpdateUserAndReturnUser(ctx context.Context, arg Updat... FILE: internal/endtoend/testdata/returning/postgresql/pgx/v5/schema.sql type users (line 1) | CREATE TABLE users (name text, id serial primary key) FILE: internal/endtoend/testdata/returning/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/returning/postgresql/stdlib/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/returning/postgresql/stdlib/go/query.sql.go constant deleteUserAndReturnID (line 13) | deleteUserAndReturnID = `-- name: DeleteUserAndReturnID :one method DeleteUserAndReturnID (line 19) | func (q *Queries) DeleteUserAndReturnID(ctx context.Context, name sql.Nu... constant deleteUserAndReturnUser (line 26) | deleteUserAndReturnUser = `-- name: DeleteUserAndReturnUser :one method DeleteUserAndReturnUser (line 32) | func (q *Queries) DeleteUserAndReturnUser(ctx context.Context, name sql.... constant insertUserAndReturnID (line 39) | insertUserAndReturnID = `-- name: InsertUserAndReturnID :one method InsertUserAndReturnID (line 44) | func (q *Queries) InsertUserAndReturnID(ctx context.Context, name sql.Nu... constant insertUserAndReturnUser (line 51) | insertUserAndReturnUser = `-- name: InsertUserAndReturnUser :one method InsertUserAndReturnUser (line 56) | func (q *Queries) InsertUserAndReturnUser(ctx context.Context, name sql.... constant updateUserAndReturnID (line 63) | updateUserAndReturnID = `-- name: UpdateUserAndReturnID :one type UpdateUserAndReturnIDParams (line 69) | type UpdateUserAndReturnIDParams struct method UpdateUserAndReturnID (line 74) | func (q *Queries) UpdateUserAndReturnID(ctx context.Context, arg UpdateU... constant updateUserAndReturnUser (line 81) | updateUserAndReturnUser = `-- name: UpdateUserAndReturnUser :one type UpdateUserAndReturnUserParams (line 87) | type UpdateUserAndReturnUserParams struct method UpdateUserAndReturnUser (line 92) | func (q *Queries) UpdateUserAndReturnUser(ctx context.Context, arg Updat... FILE: internal/endtoend/testdata/returning/postgresql/stdlib/schema.sql type users (line 1) | CREATE TABLE users (name text, id serial primary key) FILE: internal/endtoend/testdata/returning/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/returning/sqlite/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/returning/sqlite/go/query.sql.go constant deleteUserAndReturnID (line 13) | deleteUserAndReturnID = `-- name: DeleteUserAndReturnID :one method DeleteUserAndReturnID (line 19) | func (q *Queries) DeleteUserAndReturnID(ctx context.Context, name sql.Nu... constant deleteUserAndReturnUser (line 26) | deleteUserAndReturnUser = `-- name: DeleteUserAndReturnUser :one method DeleteUserAndReturnUser (line 32) | func (q *Queries) DeleteUserAndReturnUser(ctx context.Context, name sql.... constant insertUserAndReturnID (line 39) | insertUserAndReturnID = `-- name: InsertUserAndReturnID :one method InsertUserAndReturnID (line 44) | func (q *Queries) InsertUserAndReturnID(ctx context.Context, name sql.Nu... constant insertUserAndReturnUser (line 51) | insertUserAndReturnUser = `-- name: InsertUserAndReturnUser :one method InsertUserAndReturnUser (line 56) | func (q *Queries) InsertUserAndReturnUser(ctx context.Context, name sql.... constant updateUserAndReturnID (line 63) | updateUserAndReturnID = `-- name: UpdateUserAndReturnID :one type UpdateUserAndReturnIDParams (line 69) | type UpdateUserAndReturnIDParams struct method UpdateUserAndReturnID (line 74) | func (q *Queries) UpdateUserAndReturnID(ctx context.Context, arg UpdateU... constant updateUserAndReturnUser (line 81) | updateUserAndReturnUser = `-- name: UpdateUserAndReturnUser :one type UpdateUserAndReturnUserParams (line 87) | type UpdateUserAndReturnUserParams struct method UpdateUserAndReturnUser (line 92) | func (q *Queries) UpdateUserAndReturnUser(ctx context.Context, arg Updat... FILE: internal/endtoend/testdata/returning/sqlite/schema.sql type users (line 1) | CREATE TABLE users (name text, id integer PRIMARY KEY AUTOINCREMENT) FILE: internal/endtoend/testdata/schema_scoped_create/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/schema_scoped_create/mysql/go/models.go type FooBar (line 7) | type FooBar struct FILE: internal/endtoend/testdata/schema_scoped_create/mysql/go/query.sql.go constant schemaScopedCreate (line 13) | schemaScopedCreate = `-- name: SchemaScopedCreate :execresult type SchemaScopedCreateParams (line 17) | type SchemaScopedCreateParams struct method SchemaScopedCreate (line 22) | func (q *Queries) SchemaScopedCreate(ctx context.Context, arg SchemaScop... FILE: internal/endtoend/testdata/schema_scoped_create/mysql/schema.sql type foo (line 2) | CREATE TABLE foo.bar (id serial not null, name text not null) FILE: internal/endtoend/testdata/schema_scoped_create/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/schema_scoped_create/postgresql/pgx/v4/go/models.go type FooBar (line 7) | type FooBar struct FILE: internal/endtoend/testdata/schema_scoped_create/postgresql/pgx/v4/go/query.sql.go constant schemaScopedCreate (line 12) | schemaScopedCreate = `-- name: SchemaScopedCreate :one type SchemaScopedCreateParams (line 16) | type SchemaScopedCreateParams struct method SchemaScopedCreate (line 21) | func (q *Queries) SchemaScopedCreate(ctx context.Context, arg SchemaScop... FILE: internal/endtoend/testdata/schema_scoped_create/postgresql/pgx/v4/schema.sql type foo (line 2) | CREATE TABLE foo.bar (id serial not null, name text not null) FILE: internal/endtoend/testdata/schema_scoped_create/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/schema_scoped_create/postgresql/pgx/v5/go/models.go type FooBar (line 7) | type FooBar struct FILE: internal/endtoend/testdata/schema_scoped_create/postgresql/pgx/v5/go/query.sql.go constant schemaScopedCreate (line 12) | schemaScopedCreate = `-- name: SchemaScopedCreate :one type SchemaScopedCreateParams (line 16) | type SchemaScopedCreateParams struct method SchemaScopedCreate (line 21) | func (q *Queries) SchemaScopedCreate(ctx context.Context, arg SchemaScop... FILE: internal/endtoend/testdata/schema_scoped_create/postgresql/pgx/v5/schema.sql type foo (line 2) | CREATE TABLE foo.bar (id serial not null, name text not null) FILE: internal/endtoend/testdata/schema_scoped_create/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/schema_scoped_create/postgresql/stdlib/go/models.go type FooBar (line 7) | type FooBar struct FILE: internal/endtoend/testdata/schema_scoped_create/postgresql/stdlib/go/query.sql.go constant schemaScopedCreate (line 12) | schemaScopedCreate = `-- name: SchemaScopedCreate :one type SchemaScopedCreateParams (line 16) | type SchemaScopedCreateParams struct method SchemaScopedCreate (line 21) | func (q *Queries) SchemaScopedCreate(ctx context.Context, arg SchemaScop... FILE: internal/endtoend/testdata/schema_scoped_create/postgresql/stdlib/schema.sql type foo (line 2) | CREATE TABLE foo.bar (id serial not null, name text not null) FILE: internal/endtoend/testdata/schema_scoped_delete/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/schema_scoped_delete/mysql/go/models.go type FooBar (line 7) | type FooBar struct FILE: internal/endtoend/testdata/schema_scoped_delete/mysql/go/query.sql.go constant schemaScopedDelete (line 12) | schemaScopedDelete = `-- name: SchemaScopedDelete :exec method SchemaScopedDelete (line 16) | func (q *Queries) SchemaScopedDelete(ctx context.Context, id uint64) err... FILE: internal/endtoend/testdata/schema_scoped_delete/mysql/schema.sql type foo (line 2) | CREATE TABLE foo.bar (id serial not null) FILE: internal/endtoend/testdata/schema_scoped_delete/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/schema_scoped_delete/postgresql/pgx/v4/go/models.go type FooBar (line 7) | type FooBar struct FILE: internal/endtoend/testdata/schema_scoped_delete/postgresql/pgx/v4/go/query.sql.go constant schemaScopedDelete (line 12) | schemaScopedDelete = `-- name: SchemaScopedDelete :exec method SchemaScopedDelete (line 16) | func (q *Queries) SchemaScopedDelete(ctx context.Context, id int32) error { FILE: internal/endtoend/testdata/schema_scoped_delete/postgresql/pgx/v4/schema.sql type foo (line 2) | CREATE TABLE foo.bar (id serial not null) FILE: internal/endtoend/testdata/schema_scoped_delete/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/schema_scoped_delete/postgresql/pgx/v5/go/models.go type FooBar (line 7) | type FooBar struct FILE: internal/endtoend/testdata/schema_scoped_delete/postgresql/pgx/v5/go/query.sql.go constant schemaScopedDelete (line 12) | schemaScopedDelete = `-- name: SchemaScopedDelete :exec method SchemaScopedDelete (line 16) | func (q *Queries) SchemaScopedDelete(ctx context.Context, id int32) error { FILE: internal/endtoend/testdata/schema_scoped_delete/postgresql/pgx/v5/schema.sql type foo (line 2) | CREATE TABLE foo.bar (id serial not null) FILE: internal/endtoend/testdata/schema_scoped_delete/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/schema_scoped_delete/postgresql/stdlib/go/models.go type FooBar (line 7) | type FooBar struct FILE: internal/endtoend/testdata/schema_scoped_delete/postgresql/stdlib/go/query.sql.go constant schemaScopedDelete (line 12) | schemaScopedDelete = `-- name: SchemaScopedDelete :exec method SchemaScopedDelete (line 16) | func (q *Queries) SchemaScopedDelete(ctx context.Context, id int32) error { FILE: internal/endtoend/testdata/schema_scoped_delete/postgresql/stdlib/schema.sql type foo (line 2) | CREATE TABLE foo.bar (id serial not null) FILE: internal/endtoend/testdata/schema_scoped_enum/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/schema_scoped_enum/pgx/v4/go/models.go type FooTypeUserRole (line 12) | type FooTypeUserRole method Scan (line 19) | func (e *FooTypeUserRole) Scan(src interface{}) error { constant FooTypeUserRoleAdmin (line 15) | FooTypeUserRoleAdmin FooTypeUserRole = "admin" constant FooTypeUserRoleUser (line 16) | FooTypeUserRoleUser FooTypeUserRole = "user" type NullFooTypeUserRole (line 31) | type NullFooTypeUserRole struct method Scan (line 37) | func (ns *NullFooTypeUserRole) Scan(value interface{}) error { method Value (line 47) | func (ns NullFooTypeUserRole) Value() (driver.Value, error) { type FooUser (line 54) | type FooUser struct FILE: internal/endtoend/testdata/schema_scoped_enum/pgx/v4/go/query.sql.go constant listUsersByRole (line 12) | listUsersByRole = `-- name: ListUsersByRole :many method ListUsersByRole (line 16) | func (q *Queries) ListUsersByRole(ctx context.Context, role NullFooTypeU... FILE: internal/endtoend/testdata/schema_scoped_enum/pgx/v4/schema.sql type foo (line 5) | CREATE TABLE foo.users ( FILE: internal/endtoend/testdata/schema_scoped_enum/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/schema_scoped_enum/pgx/v5/go/models.go type FooTypeUserRole (line 12) | type FooTypeUserRole method Scan (line 19) | func (e *FooTypeUserRole) Scan(src interface{}) error { constant FooTypeUserRoleAdmin (line 15) | FooTypeUserRoleAdmin FooTypeUserRole = "admin" constant FooTypeUserRoleUser (line 16) | FooTypeUserRoleUser FooTypeUserRole = "user" type NullFooTypeUserRole (line 31) | type NullFooTypeUserRole struct method Scan (line 37) | func (ns *NullFooTypeUserRole) Scan(value interface{}) error { method Value (line 47) | func (ns NullFooTypeUserRole) Value() (driver.Value, error) { type FooUser (line 54) | type FooUser struct FILE: internal/endtoend/testdata/schema_scoped_enum/pgx/v5/go/query.sql.go constant listUsersByRole (line 12) | listUsersByRole = `-- name: ListUsersByRole :many method ListUsersByRole (line 16) | func (q *Queries) ListUsersByRole(ctx context.Context, role NullFooTypeU... FILE: internal/endtoend/testdata/schema_scoped_enum/pgx/v5/schema.sql type foo (line 5) | CREATE TABLE foo.users ( FILE: internal/endtoend/testdata/schema_scoped_enum/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/schema_scoped_enum/stdlib/go/models.go type FooTypeUserRole (line 12) | type FooTypeUserRole method Scan (line 19) | func (e *FooTypeUserRole) Scan(src interface{}) error { constant FooTypeUserRoleAdmin (line 15) | FooTypeUserRoleAdmin FooTypeUserRole = "admin" constant FooTypeUserRoleUser (line 16) | FooTypeUserRoleUser FooTypeUserRole = "user" type NullFooTypeUserRole (line 31) | type NullFooTypeUserRole struct method Scan (line 37) | func (ns *NullFooTypeUserRole) Scan(value interface{}) error { method Value (line 47) | func (ns NullFooTypeUserRole) Value() (driver.Value, error) { type FooUser (line 54) | type FooUser struct FILE: internal/endtoend/testdata/schema_scoped_enum/stdlib/go/query.sql.go constant listUsersByRole (line 12) | listUsersByRole = `-- name: ListUsersByRole :many method ListUsersByRole (line 16) | func (q *Queries) ListUsersByRole(ctx context.Context, role NullFooTypeU... FILE: internal/endtoend/testdata/schema_scoped_enum/stdlib/schema.sql type foo (line 5) | CREATE TABLE foo.users ( FILE: internal/endtoend/testdata/schema_scoped_filter/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/schema_scoped_filter/mysql/go/models.go type FooBar (line 7) | type FooBar struct FILE: internal/endtoend/testdata/schema_scoped_filter/mysql/go/query.sql.go constant schemaScopedFilter (line 12) | schemaScopedFilter = `-- name: SchemaScopedFilter :many method SchemaScopedFilter (line 16) | func (q *Queries) SchemaScopedFilter(ctx context.Context, id uint64) ([]... FILE: internal/endtoend/testdata/schema_scoped_filter/mysql/schema.sql type foo (line 2) | CREATE TABLE foo.bar (id serial not null) FILE: internal/endtoend/testdata/schema_scoped_filter/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/schema_scoped_filter/postgresql/pgx/v4/go/models.go type FooBar (line 7) | type FooBar struct FILE: internal/endtoend/testdata/schema_scoped_filter/postgresql/pgx/v4/go/query.sql.go constant schemaScopedFilter (line 12) | schemaScopedFilter = `-- name: SchemaScopedFilter :many method SchemaScopedFilter (line 16) | func (q *Queries) SchemaScopedFilter(ctx context.Context, id int32) ([]i... FILE: internal/endtoend/testdata/schema_scoped_filter/postgresql/pgx/v4/schema.sql type foo (line 2) | CREATE TABLE foo.bar (id serial not null) FILE: internal/endtoend/testdata/schema_scoped_filter/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/schema_scoped_filter/postgresql/pgx/v5/go/models.go type FooBar (line 7) | type FooBar struct FILE: internal/endtoend/testdata/schema_scoped_filter/postgresql/pgx/v5/go/query.sql.go constant schemaScopedFilter (line 12) | schemaScopedFilter = `-- name: SchemaScopedFilter :many method SchemaScopedFilter (line 16) | func (q *Queries) SchemaScopedFilter(ctx context.Context, id int32) ([]i... FILE: internal/endtoend/testdata/schema_scoped_filter/postgresql/pgx/v5/schema.sql type foo (line 2) | CREATE TABLE foo.bar (id serial not null) FILE: internal/endtoend/testdata/schema_scoped_filter/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/schema_scoped_filter/postgresql/stdlib/go/models.go type FooBar (line 7) | type FooBar struct FILE: internal/endtoend/testdata/schema_scoped_filter/postgresql/stdlib/go/query.sql.go constant schemaScopedFilter (line 12) | schemaScopedFilter = `-- name: SchemaScopedFilter :many method SchemaScopedFilter (line 16) | func (q *Queries) SchemaScopedFilter(ctx context.Context, id int32) ([]i... FILE: internal/endtoend/testdata/schema_scoped_filter/postgresql/stdlib/schema.sql type foo (line 2) | CREATE TABLE foo.bar (id serial not null) FILE: internal/endtoend/testdata/schema_scoped_list/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/schema_scoped_list/mysql/go/models.go type FooBar (line 7) | type FooBar struct FILE: internal/endtoend/testdata/schema_scoped_list/mysql/go/query.sql.go constant schemaScopedColList (line 12) | schemaScopedColList = `-- name: SchemaScopedColList :many method SchemaScopedColList (line 16) | func (q *Queries) SchemaScopedColList(ctx context.Context) ([]uint64, er... constant schemaScopedList (line 39) | schemaScopedList = `-- name: SchemaScopedList :many method SchemaScopedList (line 43) | func (q *Queries) SchemaScopedList(ctx context.Context) ([]uint64, error) { FILE: internal/endtoend/testdata/schema_scoped_list/mysql/schema.sql type foo (line 2) | CREATE TABLE foo.bar (id serial not null) FILE: internal/endtoend/testdata/schema_scoped_list/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/schema_scoped_list/postgresql/pgx/v4/go/models.go type FooBar (line 7) | type FooBar struct FILE: internal/endtoend/testdata/schema_scoped_list/postgresql/pgx/v4/go/query.sql.go constant schemaScopedColList (line 12) | schemaScopedColList = `-- name: SchemaScopedColList :many method SchemaScopedColList (line 16) | func (q *Queries) SchemaScopedColList(ctx context.Context) ([]int32, err... constant schemaScopedList (line 36) | schemaScopedList = `-- name: SchemaScopedList :many method SchemaScopedList (line 40) | func (q *Queries) SchemaScopedList(ctx context.Context) ([]int32, error) { FILE: internal/endtoend/testdata/schema_scoped_list/postgresql/pgx/v4/schema.sql type foo (line 2) | CREATE TABLE foo.bar (id serial not null) FILE: internal/endtoend/testdata/schema_scoped_list/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/schema_scoped_list/postgresql/pgx/v5/go/models.go type FooBar (line 7) | type FooBar struct FILE: internal/endtoend/testdata/schema_scoped_list/postgresql/pgx/v5/go/query.sql.go constant schemaScopedColList (line 12) | schemaScopedColList = `-- name: SchemaScopedColList :many method SchemaScopedColList (line 16) | func (q *Queries) SchemaScopedColList(ctx context.Context) ([]int32, err... constant schemaScopedList (line 36) | schemaScopedList = `-- name: SchemaScopedList :many method SchemaScopedList (line 40) | func (q *Queries) SchemaScopedList(ctx context.Context) ([]int32, error) { FILE: internal/endtoend/testdata/schema_scoped_list/postgresql/pgx/v5/schema.sql type foo (line 2) | CREATE TABLE foo.bar (id serial not null) FILE: internal/endtoend/testdata/schema_scoped_list/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/schema_scoped_list/postgresql/stdlib/go/models.go type FooBar (line 7) | type FooBar struct FILE: internal/endtoend/testdata/schema_scoped_list/postgresql/stdlib/go/query.sql.go constant schemaScopedColList (line 12) | schemaScopedColList = `-- name: SchemaScopedColList :many method SchemaScopedColList (line 16) | func (q *Queries) SchemaScopedColList(ctx context.Context) ([]int32, err... constant schemaScopedList (line 39) | schemaScopedList = `-- name: SchemaScopedList :many method SchemaScopedList (line 43) | func (q *Queries) SchemaScopedList(ctx context.Context) ([]int32, error) { FILE: internal/endtoend/testdata/schema_scoped_list/postgresql/stdlib/schema.sql type foo (line 2) | CREATE TABLE foo.bar (id serial not null) FILE: internal/endtoend/testdata/schema_scoped_update/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/schema_scoped_update/mysql/go/models.go type FooBar (line 7) | type FooBar struct FILE: internal/endtoend/testdata/schema_scoped_update/mysql/go/query.sql.go constant schemaScopedUpdate (line 12) | schemaScopedUpdate = `-- name: SchemaScopedUpdate :exec type SchemaScopedUpdateParams (line 16) | type SchemaScopedUpdateParams struct method SchemaScopedUpdate (line 21) | func (q *Queries) SchemaScopedUpdate(ctx context.Context, arg SchemaScop... FILE: internal/endtoend/testdata/schema_scoped_update/mysql/schema.sql type foo (line 2) | CREATE TABLE foo.bar (id serial not null, name text not null) FILE: internal/endtoend/testdata/schema_scoped_update/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/schema_scoped_update/postgresql/pgx/v4/go/models.go type FooBar (line 7) | type FooBar struct FILE: internal/endtoend/testdata/schema_scoped_update/postgresql/pgx/v4/go/query.sql.go constant schemaScopedUpdate (line 12) | schemaScopedUpdate = `-- name: SchemaScopedUpdate :exec type SchemaScopedUpdateParams (line 16) | type SchemaScopedUpdateParams struct method SchemaScopedUpdate (line 21) | func (q *Queries) SchemaScopedUpdate(ctx context.Context, arg SchemaScop... FILE: internal/endtoend/testdata/schema_scoped_update/postgresql/pgx/v4/schema.sql type foo (line 2) | CREATE TABLE foo.bar (id serial not null, name text not null) FILE: internal/endtoend/testdata/schema_scoped_update/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/schema_scoped_update/postgresql/pgx/v5/go/models.go type FooBar (line 7) | type FooBar struct FILE: internal/endtoend/testdata/schema_scoped_update/postgresql/pgx/v5/go/query.sql.go constant schemaScopedUpdate (line 12) | schemaScopedUpdate = `-- name: SchemaScopedUpdate :exec type SchemaScopedUpdateParams (line 16) | type SchemaScopedUpdateParams struct method SchemaScopedUpdate (line 21) | func (q *Queries) SchemaScopedUpdate(ctx context.Context, arg SchemaScop... FILE: internal/endtoend/testdata/schema_scoped_update/postgresql/pgx/v5/schema.sql type foo (line 2) | CREATE TABLE foo.bar (id serial not null, name text not null) FILE: internal/endtoend/testdata/schema_scoped_update/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/schema_scoped_update/postgresql/stdlib/go/models.go type FooBar (line 7) | type FooBar struct FILE: internal/endtoend/testdata/schema_scoped_update/postgresql/stdlib/go/query.sql.go constant schemaScopedUpdate (line 12) | schemaScopedUpdate = `-- name: SchemaScopedUpdate :exec type SchemaScopedUpdateParams (line 16) | type SchemaScopedUpdateParams struct method SchemaScopedUpdate (line 21) | func (q *Queries) SchemaScopedUpdate(ctx context.Context, arg SchemaScop... FILE: internal/endtoend/testdata/schema_scoped_update/postgresql/stdlib/schema.sql type foo (line 2) | CREATE TABLE foo.bar (id serial not null, name text not null) FILE: internal/endtoend/testdata/schema_table_column_ref/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/schema_table_column_ref/postgresql/pgx/go/models.go type AstoriaSlackFeedback (line 11) | type AstoriaSlackFeedback struct type AstoriaTicket (line 18) | type AstoriaTicket struct FILE: internal/endtoend/testdata/schema_table_column_ref/postgresql/pgx/go/query.sql.go constant getTotalSlackQueries (line 14) | getTotalSlackQueries = `-- name: GetTotalSlackQueries :one type GetTotalSlackQueriesParams (line 22) | type GetTotalSlackQueriesParams struct method GetTotalSlackQueries (line 28) | func (q *Queries) GetTotalSlackQueries(ctx context.Context, arg GetTotal... constant getTotalSlackQueriesRequestsCreated (line 35) | getTotalSlackQueriesRequestsCreated = `-- name: GetTotalSlackQueriesRequ... type GetTotalSlackQueriesRequestsCreatedParams (line 44) | type GetTotalSlackQueriesRequestsCreatedParams struct method GetTotalSlackQueriesRequestsCreated (line 50) | func (q *Queries) GetTotalSlackQueriesRequestsCreated(ctx context.Contex... constant getTotalSlackQueriesResolved (line 57) | getTotalSlackQueriesResolved = `-- name: GetTotalSlackQueriesResolved :one type GetTotalSlackQueriesResolvedParams (line 66) | type GetTotalSlackQueriesResolvedParams struct method GetTotalSlackQueriesResolved (line 72) | func (q *Queries) GetTotalSlackQueriesResolved(ctx context.Context, arg ... FILE: internal/endtoend/testdata/schema_table_column_ref/postgresql/pgx/schema.sql type astoria (line 3) | CREATE TABLE astoria.slack_feedback ( type astoria (line 10) | CREATE TABLE astoria.tickets ( FILE: internal/endtoend/testdata/select_column_cast/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_column_cast/mysql/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/select_column_cast/mysql/go/query.sql.go constant selectColumnCast (line 12) | selectColumnCast = `-- name: SelectColumnCast :many method SelectColumnCast (line 16) | func (q *Queries) SelectColumnCast(ctx context.Context) ([]int64, error) { FILE: internal/endtoend/testdata/select_column_cast/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (bar BOOLEAN NOT NULL) FILE: internal/endtoend/testdata/select_column_cast/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/select_column_cast/postgresql/pgx/v4/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/select_column_cast/postgresql/pgx/v4/go/query.sql.go constant selectColumnCast (line 12) | selectColumnCast = `-- name: SelectColumnCast :many method SelectColumnCast (line 16) | func (q *Queries) SelectColumnCast(ctx context.Context) ([]int32, error) { FILE: internal/endtoend/testdata/select_column_cast/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (bar bool not null) FILE: internal/endtoend/testdata/select_column_cast/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/select_column_cast/postgresql/pgx/v5/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/select_column_cast/postgresql/pgx/v5/go/query.sql.go constant selectColumnCast (line 12) | selectColumnCast = `-- name: SelectColumnCast :many method SelectColumnCast (line 16) | func (q *Queries) SelectColumnCast(ctx context.Context) ([]int32, error) { FILE: internal/endtoend/testdata/select_column_cast/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (bar bool not null) FILE: internal/endtoend/testdata/select_column_cast/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_column_cast/postgresql/stdlib/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/select_column_cast/postgresql/stdlib/go/query.sql.go constant selectColumnCast (line 12) | selectColumnCast = `-- name: SelectColumnCast :many method SelectColumnCast (line 16) | func (q *Queries) SelectColumnCast(ctx context.Context) ([]int32, error) { FILE: internal/endtoend/testdata/select_column_cast/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (bar bool not null) FILE: internal/endtoend/testdata/select_column_cast/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_column_cast/sqlite/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/select_column_cast/sqlite/go/query.sql.go constant selectColumnCast (line 12) | selectColumnCast = `-- name: SelectColumnCast :many method SelectColumnCast (line 16) | func (q *Queries) SelectColumnCast(ctx context.Context) ([][]byte, error) { FILE: internal/endtoend/testdata/select_column_cast/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo (bar TEXT NOT NULL) FILE: internal/endtoend/testdata/select_cte/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_cte/sqlite/go/query.sql.go constant listAuthors (line 12) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 19) | func (q *Queries) ListAuthors(ctx context.Context) ([]int64, error) { FILE: internal/endtoend/testdata/select_distinct/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/select_distinct/pgx/v4/go/models.go type Bar (line 11) | type Bar struct FILE: internal/endtoend/testdata/select_distinct/pgx/v4/go/query.sql.go constant getBars (line 12) | getBars = `-- name: GetBars :many method GetBars (line 17) | func (q *Queries) GetBars(ctx context.Context) ([]Bar, error) { FILE: internal/endtoend/testdata/select_distinct/pgx/v4/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null, name text) FILE: internal/endtoend/testdata/select_distinct/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/select_distinct/pgx/v5/go/models.go type Bar (line 11) | type Bar struct FILE: internal/endtoend/testdata/select_distinct/pgx/v5/go/query.sql.go constant getBars (line 12) | getBars = `-- name: GetBars :many method GetBars (line 17) | func (q *Queries) GetBars(ctx context.Context) ([]Bar, error) { FILE: internal/endtoend/testdata/select_distinct/pgx/v5/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null, name text) FILE: internal/endtoend/testdata/select_distinct/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_distinct/stdlib/go/models.go type Bar (line 11) | type Bar struct FILE: internal/endtoend/testdata/select_distinct/stdlib/go/query.sql.go constant getBars (line 12) | getBars = `-- name: GetBars :many method GetBars (line 17) | func (q *Queries) GetBars(ctx context.Context) ([]Bar, error) { FILE: internal/endtoend/testdata/select_distinct/stdlib/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null, name text) FILE: internal/endtoend/testdata/select_empty_column_list/mysql/schema.sql type bar (line 1) | CREATE TABLE bar (name text) FILE: internal/endtoend/testdata/select_empty_column_list/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/select_empty_column_list/postgresql/pgx/v4/go/models.go type Bar (line 11) | type Bar struct FILE: internal/endtoend/testdata/select_empty_column_list/postgresql/pgx/v4/go/query.sql.go constant getBars (line 12) | getBars = `-- name: GetBars :many type GetBarsRow (line 16) | type GetBarsRow struct method GetBars (line 19) | func (q *Queries) GetBars(ctx context.Context) ([]GetBarsRow, error) { FILE: internal/endtoend/testdata/select_empty_column_list/postgresql/pgx/v4/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null, name text) FILE: internal/endtoend/testdata/select_empty_column_list/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/select_empty_column_list/postgresql/pgx/v5/go/models.go type Bar (line 11) | type Bar struct FILE: internal/endtoend/testdata/select_empty_column_list/postgresql/pgx/v5/go/query.sql.go constant getBars (line 12) | getBars = `-- name: GetBars :many type GetBarsRow (line 16) | type GetBarsRow struct method GetBars (line 19) | func (q *Queries) GetBars(ctx context.Context) ([]GetBarsRow, error) { FILE: internal/endtoend/testdata/select_empty_column_list/postgresql/pgx/v5/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null, name text) FILE: internal/endtoend/testdata/select_empty_column_list/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_empty_column_list/postgresql/stdlib/go/models.go type Bar (line 11) | type Bar struct FILE: internal/endtoend/testdata/select_empty_column_list/postgresql/stdlib/go/query.sql.go constant getBars (line 12) | getBars = `-- name: GetBars :many type GetBarsRow (line 16) | type GetBarsRow struct method GetBars (line 19) | func (q *Queries) GetBars(ctx context.Context) ([]GetBarsRow, error) { FILE: internal/endtoend/testdata/select_empty_column_list/postgresql/stdlib/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null, name text) FILE: internal/endtoend/testdata/select_exists/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/select_exists/pgx/v4/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/select_exists/pgx/v4/go/query.sql.go constant barExists (line 12) | barExists = `-- name: BarExists :one method BarExists (line 24) | func (q *Queries) BarExists(ctx context.Context, id int32) (bool, error) { FILE: internal/endtoend/testdata/select_exists/pgx/v4/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/select_exists/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/select_exists/pgx/v5/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/select_exists/pgx/v5/go/query.sql.go constant barExists (line 12) | barExists = `-- name: BarExists :one method BarExists (line 24) | func (q *Queries) BarExists(ctx context.Context, id int32) (bool, error) { FILE: internal/endtoend/testdata/select_exists/pgx/v5/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/select_exists/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_exists/sqlite/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/select_exists/sqlite/go/query.sql.go constant barExists (line 12) | barExists = `-- name: BarExists :one method BarExists (line 24) | func (q *Queries) BarExists(ctx context.Context, id int64) (bool, error) { FILE: internal/endtoend/testdata/select_exists/sqlite/schema.sql type bar (line 1) | CREATE TABLE bar (id integer not null primary key autoincrement) FILE: internal/endtoend/testdata/select_exists/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_exists/stdlib/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/select_exists/stdlib/go/query.sql.go constant barExists (line 12) | barExists = `-- name: BarExists :one method BarExists (line 24) | func (q *Queries) BarExists(ctx context.Context, id int32) (bool, error) { FILE: internal/endtoend/testdata/select_exists/stdlib/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/select_in_and/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_in_and/sqlite/go/models.go type Author (line 11) | type Author struct type Book (line 17) | type Book struct type Translator (line 24) | type Translator struct FILE: internal/endtoend/testdata/select_in_and/sqlite/go/query.sql.go constant deleteAuthor (line 13) | deleteAuthor = `-- name: DeleteAuthor :exec type DeleteAuthorParams (line 36) | type DeleteAuthorParams struct method DeleteAuthor (line 42) | func (q *Queries) DeleteAuthor(ctx context.Context, arg DeleteAuthorPara... FILE: internal/endtoend/testdata/select_in_and/sqlite/schema.sql type authors (line 2) | CREATE TABLE authors ( type translators (line 8) | CREATE TABLE translators ( type books (line 14) | CREATE TABLE books ( FILE: internal/endtoend/testdata/select_limit/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_limit/mysql/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/select_limit/mysql/go/query.sql.go constant fooLimit (line 13) | fooLimit = `-- name: FooLimit :many method FooLimit (line 18) | func (q *Queries) FooLimit(ctx context.Context, limit int32) ([]sql.Null... constant fooLimitOffset (line 41) | fooLimitOffset = `-- name: FooLimitOffset :many type FooLimitOffsetParams (line 46) | type FooLimitOffsetParams struct method FooLimitOffset (line 51) | func (q *Queries) FooLimitOffset(ctx context.Context, arg FooLimitOffset... FILE: internal/endtoend/testdata/select_limit/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (a text) FILE: internal/endtoend/testdata/select_limit/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/select_limit/postgresql/pgx/v4/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/select_limit/postgresql/pgx/v4/go/query.sql.go constant fooLimit (line 13) | fooLimit = `-- name: FooLimit :many method FooLimit (line 18) | func (q *Queries) FooLimit(ctx context.Context, limit int32) ([]sql.Null... constant fooLimitOffset (line 38) | fooLimitOffset = `-- name: FooLimitOffset :many type FooLimitOffsetParams (line 43) | type FooLimitOffsetParams struct method FooLimitOffset (line 48) | func (q *Queries) FooLimitOffset(ctx context.Context, arg FooLimitOffset... FILE: internal/endtoend/testdata/select_limit/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (a text) FILE: internal/endtoend/testdata/select_limit/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/select_limit/postgresql/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/select_limit/postgresql/pgx/v5/go/query.sql.go constant fooLimit (line 14) | fooLimit = `-- name: FooLimit :many method FooLimit (line 19) | func (q *Queries) FooLimit(ctx context.Context, limit int32) ([]pgtype.T... constant fooLimitOffset (line 39) | fooLimitOffset = `-- name: FooLimitOffset :many type FooLimitOffsetParams (line 44) | type FooLimitOffsetParams struct method FooLimitOffset (line 49) | func (q *Queries) FooLimitOffset(ctx context.Context, arg FooLimitOffset... FILE: internal/endtoend/testdata/select_limit/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (a text) FILE: internal/endtoend/testdata/select_limit/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_limit/postgresql/stdlib/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/select_limit/postgresql/stdlib/go/query.sql.go constant fooLimit (line 13) | fooLimit = `-- name: FooLimit :many method FooLimit (line 18) | func (q *Queries) FooLimit(ctx context.Context, limit int32) ([]sql.Null... constant fooLimitOffset (line 41) | fooLimitOffset = `-- name: FooLimitOffset :many type FooLimitOffsetParams (line 46) | type FooLimitOffsetParams struct method FooLimitOffset (line 51) | func (q *Queries) FooLimitOffset(ctx context.Context, arg FooLimitOffset... FILE: internal/endtoend/testdata/select_limit/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (a text) FILE: internal/endtoend/testdata/select_limit/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_limit/sqlite/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/select_limit/sqlite/go/query.sql.go constant fooLimit (line 13) | fooLimit = `-- name: FooLimit :many method FooLimit (line 18) | func (q *Queries) FooLimit(ctx context.Context, limit int64) ([]sql.Null... constant fooLimitOffset (line 41) | fooLimitOffset = `-- name: FooLimitOffset :many type FooLimitOffsetParams (line 46) | type FooLimitOffsetParams struct method FooLimitOffset (line 51) | func (q *Queries) FooLimitOffset(ctx context.Context, arg FooLimitOffset... FILE: internal/endtoend/testdata/select_limit/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo (a text) FILE: internal/endtoend/testdata/select_nested_count/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_nested_count/mysql/go/models.go type Author (line 11) | type Author struct type Book (line 17) | type Book struct FILE: internal/endtoend/testdata/select_nested_count/mysql/go/query.sql.go constant getAuthorsWithBooksCount (line 13) | getAuthorsWithBooksCount = `-- name: GetAuthorsWithBooksCount :many type GetAuthorsWithBooksCountRow (line 21) | type GetAuthorsWithBooksCountRow struct method GetAuthorsWithBooksCount (line 28) | func (q *Queries) GetAuthorsWithBooksCount(ctx context.Context) ([]GetAu... FILE: internal/endtoend/testdata/select_nested_count/mysql/schema.sql type authors (line 1) | CREATE TABLE authors ( type books (line 7) | CREATE TABLE books ( FILE: internal/endtoend/testdata/select_nested_count/postgresql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_nested_count/postgresql/go/models.go type Author (line 11) | type Author struct type Book (line 17) | type Book struct FILE: internal/endtoend/testdata/select_nested_count/postgresql/go/query.sql.go constant getAuthorsWithBooksCount (line 13) | getAuthorsWithBooksCount = `-- name: GetAuthorsWithBooksCount :many type GetAuthorsWithBooksCountRow (line 21) | type GetAuthorsWithBooksCountRow struct method GetAuthorsWithBooksCount (line 28) | func (q *Queries) GetAuthorsWithBooksCount(ctx context.Context) ([]GetAu... FILE: internal/endtoend/testdata/select_nested_count/postgresql/schema.sql type authors (line 1) | CREATE TABLE authors ( type books (line 7) | CREATE TABLE books ( FILE: internal/endtoend/testdata/select_nested_count/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_nested_count/sqlite/go/models.go type Author (line 11) | type Author struct type Book (line 17) | type Book struct FILE: internal/endtoend/testdata/select_nested_count/sqlite/go/query.sql.go constant getAuthorsWithBooksCount (line 13) | getAuthorsWithBooksCount = `-- name: GetAuthorsWithBooksCount :many type GetAuthorsWithBooksCountRow (line 21) | type GetAuthorsWithBooksCountRow struct method GetAuthorsWithBooksCount (line 28) | func (q *Queries) GetAuthorsWithBooksCount(ctx context.Context) ([]GetAu... FILE: internal/endtoend/testdata/select_nested_count/sqlite/schema.sql type authors (line 1) | CREATE TABLE authors ( type books (line 7) | CREATE TABLE books ( FILE: internal/endtoend/testdata/select_not_exists/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/select_not_exists/pgx/v4/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/select_not_exists/pgx/v4/go/query.sql.go constant barNotExists (line 12) | barNotExists = `-- name: BarNotExists :one method BarNotExists (line 24) | func (q *Queries) BarNotExists(ctx context.Context, id int32) (bool, err... FILE: internal/endtoend/testdata/select_not_exists/pgx/v4/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/select_not_exists/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/select_not_exists/pgx/v5/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/select_not_exists/pgx/v5/go/query.sql.go constant barNotExists (line 12) | barNotExists = `-- name: BarNotExists :one method BarNotExists (line 24) | func (q *Queries) BarNotExists(ctx context.Context, id int32) (bool, err... FILE: internal/endtoend/testdata/select_not_exists/pgx/v5/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/select_not_exists/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_not_exists/sqlite/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/select_not_exists/sqlite/go/query.sql.go constant barNotExists (line 12) | barNotExists = `-- name: BarNotExists :one method BarNotExists (line 24) | func (q *Queries) BarNotExists(ctx context.Context, id int64) (bool, err... FILE: internal/endtoend/testdata/select_not_exists/sqlite/schema.sql type bar (line 1) | CREATE TABLE bar (id integer not null primary key autoincrement) FILE: internal/endtoend/testdata/select_not_exists/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_not_exists/stdlib/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/select_not_exists/stdlib/go/query.sql.go constant barNotExists (line 12) | barNotExists = `-- name: BarNotExists :one method BarNotExists (line 24) | func (q *Queries) BarNotExists(ctx context.Context, id int32) (bool, err... FILE: internal/endtoend/testdata/select_not_exists/stdlib/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/select_sequence/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/select_sequence/postgresql/pgx/go/query.sql.go constant getLastValue (line 12) | getLastValue = `-- name: GetLastValue :one method GetLastValue (line 16) | func (q *Queries) GetLastValue(ctx context.Context) (int64, error) { FILE: internal/endtoend/testdata/select_star/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_star/mysql/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/select_star/mysql/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context) ([]User, error) { constant getIDAll (line 44) | getIDAll = `-- name: GetIDAll :many method GetIDAll (line 48) | func (q *Queries) GetIDAll(ctx context.Context) ([]int32, error) { FILE: internal/endtoend/testdata/select_star/mysql/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/select_star/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/select_star/postgresql/pgx/v4/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/select_star/postgresql/pgx/v4/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context) ([]User, error) { constant getIDAll (line 41) | getIDAll = `-- name: GetIDAll :many method GetIDAll (line 45) | func (q *Queries) GetIDAll(ctx context.Context) ([]int32, error) { FILE: internal/endtoend/testdata/select_star/postgresql/pgx/v4/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/select_star/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/select_star/postgresql/pgx/v5/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/select_star/postgresql/pgx/v5/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context) ([]User, error) { constant getIDAll (line 41) | getIDAll = `-- name: GetIDAll :many method GetIDAll (line 45) | func (q *Queries) GetIDAll(ctx context.Context) ([]int32, error) { FILE: internal/endtoend/testdata/select_star/postgresql/pgx/v5/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/select_star/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_star/postgresql/stdlib/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/select_star/postgresql/stdlib/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context) ([]User, error) { constant getIDAll (line 44) | getIDAll = `-- name: GetIDAll :many method GetIDAll (line 48) | func (q *Queries) GetIDAll(ctx context.Context) ([]int32, error) { FILE: internal/endtoend/testdata/select_star/postgresql/stdlib/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/select_star/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_star/sqlite/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/select_star/sqlite/go/query.sql.go constant getAll (line 12) | getAll = `-- name: GetAll :many method GetAll (line 16) | func (q *Queries) GetAll(ctx context.Context) ([]User, error) { constant getIDAll (line 44) | getIDAll = `-- name: GetIDAll :many method GetIDAll (line 48) | func (q *Queries) GetIDAll(ctx context.Context) ([]int64, error) { FILE: internal/endtoend/testdata/select_star/sqlite/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/select_star_quoted/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_star_quoted/mysql/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/select_star_quoted/mysql/go/query.sql.go constant getAll (line 13) | getAll = `-- name: GetAll :many method GetAll (line 17) | func (q *Queries) GetAll(ctx context.Context) ([]sql.NullString, error) { FILE: internal/endtoend/testdata/select_star_quoted/mysql/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/select_star_quoted/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/select_star_quoted/postgresql/pgx/v4/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/select_star_quoted/postgresql/pgx/v4/go/query.sql.go constant getAll (line 13) | getAll = `-- name: GetAll :many method GetAll (line 17) | func (q *Queries) GetAll(ctx context.Context) ([]sql.NullString, error) { FILE: internal/endtoend/testdata/select_star_quoted/postgresql/pgx/v4/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/select_star_quoted/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/select_star_quoted/postgresql/pgx/v5/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/select_star_quoted/postgresql/pgx/v5/go/query.sql.go constant getAll (line 14) | getAll = `-- name: GetAll :many method GetAll (line 18) | func (q *Queries) GetAll(ctx context.Context) ([]pgtype.Text, error) { FILE: internal/endtoend/testdata/select_star_quoted/postgresql/pgx/v5/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/select_star_quoted/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_star_quoted/postgresql/stdlib/go/models.go type User (line 11) | type User struct FILE: internal/endtoend/testdata/select_star_quoted/postgresql/stdlib/go/query.sql.go constant getAll (line 13) | getAll = `-- name: GetAll :many method GetAll (line 17) | func (q *Queries) GetAll(ctx context.Context) ([]sql.NullString, error) { FILE: internal/endtoend/testdata/select_star_quoted/postgresql/stdlib/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/select_subquery/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_subquery/postgresql/stdlib/go/models.go type Bar (line 11) | type Bar struct type Foo (line 16) | type Foo struct FILE: internal/endtoend/testdata/select_subquery/postgresql/stdlib/go/query.sql.go constant subquery (line 13) | subquery = `-- name: Subquery :many type SubqueryParams (line 21) | type SubqueryParams struct type SubqueryRow (line 26) | type SubqueryRow struct method Subquery (line 32) | func (q *Queries) Subquery(ctx context.Context, arg SubqueryParams) ([]S... FILE: internal/endtoend/testdata/select_subquery/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (a int not null, name text) type bar (line 2) | CREATE TABLE bar (a int not null, alias text) FILE: internal/endtoend/testdata/select_subquery_alias/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/select_subquery_alias/postgresql/pgx/go/models.go type Wallet (line 11) | type Wallet struct FILE: internal/endtoend/testdata/select_subquery_alias/postgresql/pgx/go/query.sql.go constant findWallets (line 14) | findWallets = `-- name: FindWallets :many type FindWalletsParams (line 26) | type FindWalletsParams struct type FindWalletsRow (line 31) | type FindWalletsRow struct method FindWallets (line 38) | func (q *Queries) FindWallets(ctx context.Context, arg FindWalletsParams... FILE: internal/endtoend/testdata/select_subquery_alias/postgresql/pgx/schema.sql type wallets (line 1) | CREATE TABLE IF NOT EXISTS wallets FILE: internal/endtoend/testdata/select_subquery_no_alias/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_subquery_no_alias/mysql/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/select_subquery_no_alias/mysql/go/query.sql.go constant subquery (line 12) | subquery = `-- name: Subquery :many method Subquery (line 16) | func (q *Queries) Subquery(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/select_subquery_no_alias/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (a int not null, name text) FILE: internal/endtoend/testdata/select_subquery_no_alias/postgres/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_subquery_no_alias/postgres/stdlib/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/select_subquery_no_alias/postgres/stdlib/go/query.sql.go constant subquery (line 12) | subquery = `-- name: Subquery :many method Subquery (line 16) | func (q *Queries) Subquery(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/select_subquery_no_alias/postgres/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (a int not null, name text) FILE: internal/endtoend/testdata/select_subquery_no_alias/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_subquery_no_alias/sqlite/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/select_subquery_no_alias/sqlite/go/query.sql.go constant subquery (line 12) | subquery = `-- name: Subquery :many method Subquery (line 16) | func (q *Queries) Subquery(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/select_subquery_no_alias/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo (a int not null, name text) FILE: internal/endtoend/testdata/select_system/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/select_system/pgx/go/models.go type Test (line 11) | type Test struct FILE: internal/endtoend/testdata/select_system/pgx/go/query.sql.go constant getSystemColumns (line 14) | getSystemColumns = `-- name: GetSystemColumns :one type GetSystemColumnsRow (line 20) | type GetSystemColumnsRow struct method GetSystemColumns (line 29) | func (q *Queries) GetSystemColumns(ctx context.Context) (GetSystemColumn... FILE: internal/endtoend/testdata/select_system/pgx/schema.sql type test (line 1) | CREATE TABLE test ( FILE: internal/endtoend/testdata/select_text_array/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/select_text_array/pgx/v4/go/query.sql.go constant selectTextArray (line 12) | selectTextArray = `-- name: SelectTextArray :many method SelectTextArray (line 16) | func (q *Queries) SelectTextArray(ctx context.Context, dollar_1 []string... FILE: internal/endtoend/testdata/select_text_array/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/select_text_array/pgx/v5/go/query.sql.go constant selectTextArray (line 12) | selectTextArray = `-- name: SelectTextArray :many method SelectTextArray (line 16) | func (q *Queries) SelectTextArray(ctx context.Context, dollar_1 []string... FILE: internal/endtoend/testdata/select_text_array/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_text_array/stdlib/go/query.sql.go constant selectTextArray (line 14) | selectTextArray = `-- name: SelectTextArray :many method SelectTextArray (line 18) | func (q *Queries) SelectTextArray(ctx context.Context, dollar_1 []string... FILE: internal/endtoend/testdata/select_union/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_union/mysql/go/models.go type Bar (line 11) | type Bar struct type Foo (line 16) | type Foo struct FILE: internal/endtoend/testdata/select_union/mysql/go/query.sql.go constant selectExcept (line 12) | selectExcept = `-- name: SelectExcept :many method SelectExcept (line 18) | func (q *Queries) SelectExcept(ctx context.Context) ([]Foo, error) { constant selectIntersect (line 41) | selectIntersect = `-- name: SelectIntersect :many method SelectIntersect (line 47) | func (q *Queries) SelectIntersect(ctx context.Context) ([]Foo, error) { constant selectUnion (line 70) | selectUnion = `-- name: SelectUnion :many method SelectUnion (line 76) | func (q *Queries) SelectUnion(ctx context.Context) ([]Foo, error) { constant selectUnionAliased (line 99) | selectUnionAliased = `-- name: SelectUnionAliased :many method SelectUnionAliased (line 105) | func (q *Queries) SelectUnionAliased(ctx context.Context) ([]Foo, error) { constant selectUnionOther (line 128) | selectUnionOther = `-- name: SelectUnionOther :many method SelectUnionOther (line 134) | func (q *Queries) SelectUnionOther(ctx context.Context) ([]Foo, error) { constant selectUnionWithLimit (line 157) | selectUnionWithLimit = `-- name: SelectUnionWithLimit :many type SelectUnionWithLimitParams (line 164) | type SelectUnionWithLimitParams struct method SelectUnionWithLimit (line 169) | func (q *Queries) SelectUnionWithLimit(ctx context.Context, arg SelectUn... FILE: internal/endtoend/testdata/select_union/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) type bar (line 2) | CREATE TABLE bar (a text, b text) FILE: internal/endtoend/testdata/select_union/postgres/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/select_union/postgres/pgx/v4/go/models.go type Bar (line 11) | type Bar struct type Foo (line 16) | type Foo struct FILE: internal/endtoend/testdata/select_union/postgres/pgx/v4/go/query.sql.go constant selectExcept (line 12) | selectExcept = `-- name: SelectExcept :many method SelectExcept (line 18) | func (q *Queries) SelectExcept(ctx context.Context) ([]Foo, error) { constant selectIntersect (line 38) | selectIntersect = `-- name: SelectIntersect :many method SelectIntersect (line 44) | func (q *Queries) SelectIntersect(ctx context.Context) ([]Foo, error) { constant selectUnion (line 64) | selectUnion = `-- name: SelectUnion :many method SelectUnion (line 70) | func (q *Queries) SelectUnion(ctx context.Context) ([]Foo, error) { constant selectUnionAliased (line 90) | selectUnionAliased = `-- name: SelectUnionAliased :many method SelectUnionAliased (line 96) | func (q *Queries) SelectUnionAliased(ctx context.Context) ([]Foo, error) { constant selectUnionOther (line 116) | selectUnionOther = `-- name: SelectUnionOther :many method SelectUnionOther (line 122) | func (q *Queries) SelectUnionOther(ctx context.Context) ([]Foo, error) { constant selectUnionWithLimit (line 142) | selectUnionWithLimit = `-- name: SelectUnionWithLimit :many type SelectUnionWithLimitParams (line 149) | type SelectUnionWithLimitParams struct method SelectUnionWithLimit (line 154) | func (q *Queries) SelectUnionWithLimit(ctx context.Context, arg SelectUn... FILE: internal/endtoend/testdata/select_union/postgres/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) type bar (line 2) | CREATE TABLE bar (a text, b text) FILE: internal/endtoend/testdata/select_union/postgres/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/select_union/postgres/pgx/v5/go/models.go type Bar (line 11) | type Bar struct type Foo (line 16) | type Foo struct FILE: internal/endtoend/testdata/select_union/postgres/pgx/v5/go/query.sql.go constant selectExcept (line 12) | selectExcept = `-- name: SelectExcept :many method SelectExcept (line 18) | func (q *Queries) SelectExcept(ctx context.Context) ([]Foo, error) { constant selectIntersect (line 38) | selectIntersect = `-- name: SelectIntersect :many method SelectIntersect (line 44) | func (q *Queries) SelectIntersect(ctx context.Context) ([]Foo, error) { constant selectUnion (line 64) | selectUnion = `-- name: SelectUnion :many method SelectUnion (line 70) | func (q *Queries) SelectUnion(ctx context.Context) ([]Foo, error) { constant selectUnionAliased (line 90) | selectUnionAliased = `-- name: SelectUnionAliased :many method SelectUnionAliased (line 96) | func (q *Queries) SelectUnionAliased(ctx context.Context) ([]Foo, error) { constant selectUnionOther (line 116) | selectUnionOther = `-- name: SelectUnionOther :many method SelectUnionOther (line 122) | func (q *Queries) SelectUnionOther(ctx context.Context) ([]Foo, error) { constant selectUnionWithLimit (line 142) | selectUnionWithLimit = `-- name: SelectUnionWithLimit :many type SelectUnionWithLimitParams (line 149) | type SelectUnionWithLimitParams struct method SelectUnionWithLimit (line 154) | func (q *Queries) SelectUnionWithLimit(ctx context.Context, arg SelectUn... FILE: internal/endtoend/testdata/select_union/postgres/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) type bar (line 2) | CREATE TABLE bar (a text, b text) FILE: internal/endtoend/testdata/select_union/postgres/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_union/postgres/stdlib/go/models.go type Bar (line 11) | type Bar struct type Foo (line 16) | type Foo struct FILE: internal/endtoend/testdata/select_union/postgres/stdlib/go/query.sql.go constant selectExcept (line 12) | selectExcept = `-- name: SelectExcept :many method SelectExcept (line 18) | func (q *Queries) SelectExcept(ctx context.Context) ([]Foo, error) { constant selectIntersect (line 41) | selectIntersect = `-- name: SelectIntersect :many method SelectIntersect (line 47) | func (q *Queries) SelectIntersect(ctx context.Context) ([]Foo, error) { constant selectUnion (line 70) | selectUnion = `-- name: SelectUnion :many method SelectUnion (line 76) | func (q *Queries) SelectUnion(ctx context.Context) ([]Foo, error) { constant selectUnionAliased (line 99) | selectUnionAliased = `-- name: SelectUnionAliased :many method SelectUnionAliased (line 105) | func (q *Queries) SelectUnionAliased(ctx context.Context) ([]Foo, error) { constant selectUnionOther (line 128) | selectUnionOther = `-- name: SelectUnionOther :many method SelectUnionOther (line 134) | func (q *Queries) SelectUnionOther(ctx context.Context) ([]Foo, error) { constant selectUnionWithLimit (line 157) | selectUnionWithLimit = `-- name: SelectUnionWithLimit :many type SelectUnionWithLimitParams (line 164) | type SelectUnionWithLimitParams struct method SelectUnionWithLimit (line 169) | func (q *Queries) SelectUnionWithLimit(ctx context.Context, arg SelectUn... FILE: internal/endtoend/testdata/select_union/postgres/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) type bar (line 2) | CREATE TABLE bar (a text, b text) FILE: internal/endtoend/testdata/select_union/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_union/sqlite/go/models.go type Bar (line 11) | type Bar struct type Foo (line 16) | type Foo struct FILE: internal/endtoend/testdata/select_union/sqlite/go/query.sql.go constant selectExcept (line 12) | selectExcept = `-- name: SelectExcept :many method SelectExcept (line 18) | func (q *Queries) SelectExcept(ctx context.Context) ([]Foo, error) { constant selectIntersect (line 41) | selectIntersect = `-- name: SelectIntersect :many method SelectIntersect (line 47) | func (q *Queries) SelectIntersect(ctx context.Context) ([]Foo, error) { constant selectUnion (line 70) | selectUnion = `-- name: SelectUnion :many method SelectUnion (line 76) | func (q *Queries) SelectUnion(ctx context.Context) ([]Foo, error) { constant selectUnionOther (line 99) | selectUnionOther = `-- name: SelectUnionOther :many method SelectUnionOther (line 105) | func (q *Queries) SelectUnionOther(ctx context.Context) ([]Foo, error) { constant selectUnionWithLimit (line 128) | selectUnionWithLimit = `-- name: SelectUnionWithLimit :many type SelectUnionWithLimitParams (line 135) | type SelectUnionWithLimitParams struct method SelectUnionWithLimit (line 140) | func (q *Queries) SelectUnionWithLimit(ctx context.Context, arg SelectUn... FILE: internal/endtoend/testdata/select_union/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) type bar (line 2) | CREATE TABLE bar (a text, b text) FILE: internal/endtoend/testdata/select_union_subquery/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/select_union_subquery/mysql/go/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/select_union_subquery/mysql/go/query.sql.go constant testSubqueryUnion (line 12) | testSubqueryUnion = `-- name: TestSubqueryUnion :many method TestSubqueryUnion (line 20) | func (q *Queries) TestSubqueryUnion(ctx context.Context) ([]Author, erro... FILE: internal/endtoend/testdata/select_union_subquery/mysql/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/select_union_subquery/postgresql/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/select_union_subquery/postgresql/go/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/select_union_subquery/postgresql/go/query.sql.go constant testSubqueryUnion (line 12) | testSubqueryUnion = `-- name: TestSubqueryUnion :many method TestSubqueryUnion (line 20) | func (q *Queries) TestSubqueryUnion(ctx context.Context) ([]Author, erro... FILE: internal/endtoend/testdata/select_union_subquery/postgresql/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/selectstatic/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/selectstatic/mysql/go/query.sql.go constant selectStatic (line 12) | selectStatic = `-- name: SelectStatic :one type SelectStaticRow (line 16) | type SelectStaticRow struct method SelectStatic (line 24) | func (q *Queries) SelectStatic(ctx context.Context) (SelectStaticRow, er... FILE: internal/endtoend/testdata/show_warnings/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/show_warnings/mysql/go/query.sql.go constant showWarnings (line 12) | showWarnings = `-- name: ShowWarnings :many type ShowWarningsRow (line 16) | type ShowWarningsRow struct method ShowWarnings (line 22) | func (q *Queries) ShowWarnings(ctx context.Context) ([]ShowWarningsRow, ... FILE: internal/endtoend/testdata/single_param_conflict/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/single_param_conflict/mysql/go/models.go type Author (line 11) | type Author struct type User (line 17) | type User struct FILE: internal/endtoend/testdata/single_param_conflict/mysql/go/query.sql.go constant getAuthorByID (line 12) | getAuthorByID = `-- name: GetAuthorByID :one method GetAuthorByID (line 19) | func (q *Queries) GetAuthorByID(ctx context.Context, id int64) (Author, ... constant getAuthorIDByID (line 26) | getAuthorIDByID = `-- name: GetAuthorIDByID :one method GetAuthorIDByID (line 33) | func (q *Queries) GetAuthorIDByID(ctx context.Context, id int64) (int64,... constant getUser (line 39) | getUser = `-- name: GetUser :one method GetUser (line 46) | func (q *Queries) GetUser(ctx context.Context, sub string) (string, erro... FILE: internal/endtoend/testdata/single_param_conflict/mysql/schema.sql type authors (line 2) | CREATE TABLE authors ( type users (line 9) | CREATE TABLE users ( FILE: internal/endtoend/testdata/single_param_conflict/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/single_param_conflict/postgresql/pgx/v4/go/models.go type Author (line 13) | type Author struct type User (line 19) | type User struct FILE: internal/endtoend/testdata/single_param_conflict/postgresql/pgx/v4/go/query.sql.go constant getAuthorByID (line 14) | getAuthorByID = `-- name: GetAuthorByID :one method GetAuthorByID (line 21) | func (q *Queries) GetAuthorByID(ctx context.Context, id int64) (Author, ... constant getAuthorIDByID (line 28) | getAuthorIDByID = `-- name: GetAuthorIDByID :one method GetAuthorIDByID (line 35) | func (q *Queries) GetAuthorIDByID(ctx context.Context, id int64) (int64,... constant getUser (line 41) | getUser = `-- name: GetUser :one method GetUser (line 48) | func (q *Queries) GetUser(ctx context.Context, sub uuid.UUID) (uuid.UUID... constant setDefaultName (line 54) | setDefaultName = `-- name: SetDefaultName :one method SetDefaultName (line 63) | func (q *Queries) SetDefaultName(ctx context.Context, id int64) (int64, ... FILE: internal/endtoend/testdata/single_param_conflict/postgresql/pgx/v4/schema.sql type authors (line 2) | CREATE TABLE authors ( type users (line 9) | CREATE TABLE users ( FILE: internal/endtoend/testdata/single_param_conflict/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/single_param_conflict/postgresql/pgx/v5/go/models.go type Author (line 11) | type Author struct type User (line 17) | type User struct FILE: internal/endtoend/testdata/single_param_conflict/postgresql/pgx/v5/go/query.sql.go constant getAuthorByID (line 14) | getAuthorByID = `-- name: GetAuthorByID :one method GetAuthorByID (line 21) | func (q *Queries) GetAuthorByID(ctx context.Context, id int64) (Author, ... constant getAuthorIDByID (line 28) | getAuthorIDByID = `-- name: GetAuthorIDByID :one method GetAuthorIDByID (line 35) | func (q *Queries) GetAuthorIDByID(ctx context.Context, id int64) (int64,... constant getUser (line 41) | getUser = `-- name: GetUser :one method GetUser (line 48) | func (q *Queries) GetUser(ctx context.Context, sub pgtype.UUID) (pgtype.... constant setDefaultName (line 54) | setDefaultName = `-- name: SetDefaultName :one method SetDefaultName (line 63) | func (q *Queries) SetDefaultName(ctx context.Context, id int64) (int64, ... FILE: internal/endtoend/testdata/single_param_conflict/postgresql/pgx/v5/schema.sql type authors (line 2) | CREATE TABLE authors ( type users (line 9) | CREATE TABLE users ( FILE: internal/endtoend/testdata/single_param_conflict/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/single_param_conflict/postgresql/stdlib/go/models.go type Author (line 13) | type Author struct type User (line 19) | type User struct FILE: internal/endtoend/testdata/single_param_conflict/postgresql/stdlib/go/query.sql.go constant getAuthorByID (line 14) | getAuthorByID = `-- name: GetAuthorByID :one method GetAuthorByID (line 21) | func (q *Queries) GetAuthorByID(ctx context.Context, id int64) (Author, ... constant getAuthorIDByID (line 28) | getAuthorIDByID = `-- name: GetAuthorIDByID :one method GetAuthorIDByID (line 35) | func (q *Queries) GetAuthorIDByID(ctx context.Context, id int64) (int64,... constant getUser (line 41) | getUser = `-- name: GetUser :one method GetUser (line 48) | func (q *Queries) GetUser(ctx context.Context, sub uuid.UUID) (uuid.UUID... constant setDefaultName (line 54) | setDefaultName = `-- name: SetDefaultName :one method SetDefaultName (line 63) | func (q *Queries) SetDefaultName(ctx context.Context, id int64) (int64, ... FILE: internal/endtoend/testdata/single_param_conflict/postgresql/stdlib/schema.sql type authors (line 2) | CREATE TABLE authors ( type users (line 9) | CREATE TABLE users ( FILE: internal/endtoend/testdata/single_param_conflict/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/single_param_conflict/sqlite/go/models.go type Author (line 11) | type Author struct type User (line 17) | type User struct FILE: internal/endtoend/testdata/single_param_conflict/sqlite/go/query.sql.go constant getAuthorByID (line 12) | getAuthorByID = `-- name: GetAuthorByID :one method GetAuthorByID (line 19) | func (q *Queries) GetAuthorByID(ctx context.Context, id int64) (Author, ... constant getAuthorIDByID (line 26) | getAuthorIDByID = `-- name: GetAuthorIDByID :one method GetAuthorIDByID (line 33) | func (q *Queries) GetAuthorIDByID(ctx context.Context, id int64) (int64,... constant getUser (line 39) | getUser = `-- name: GetUser :one method GetUser (line 46) | func (q *Queries) GetUser(ctx context.Context, sub string) (string, erro... FILE: internal/endtoend/testdata/single_param_conflict/sqlite/schema.sql type authors (line 2) | CREATE TABLE authors ( type users (line 9) | CREATE TABLE users ( FILE: internal/endtoend/testdata/sql_syntax_calling_funcs/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/sql_syntax_calling_funcs/postgresql/pgx/v4/go/query.sql.go constant mixedNotation (line 12) | mixedNotation = `-- name: MixedNotation :one method MixedNotation (line 16) | func (q *Queries) MixedNotation(ctx context.Context) (string, error) { constant namedAnyOrder (line 23) | namedAnyOrder = `-- name: NamedAnyOrder :one method NamedAnyOrder (line 27) | func (q *Queries) NamedAnyOrder(ctx context.Context) (string, error) { constant namedNotation (line 34) | namedNotation = `-- name: NamedNotation :one method NamedNotation (line 38) | func (q *Queries) NamedNotation(ctx context.Context) (string, error) { constant namedOtherOrder (line 45) | namedOtherOrder = `-- name: NamedOtherOrder :one method NamedOtherOrder (line 49) | func (q *Queries) NamedOtherOrder(ctx context.Context) (string, error) { constant positionalNoDefaault (line 56) | positionalNoDefaault = `-- name: PositionalNoDefaault :one method PositionalNoDefaault (line 60) | func (q *Queries) PositionalNoDefaault(ctx context.Context) (string, err... constant positionalNotation (line 67) | positionalNotation = `-- name: PositionalNotation :one method PositionalNotation (line 71) | func (q *Queries) PositionalNotation(ctx context.Context) (string, error) { FILE: internal/endtoend/testdata/sql_syntax_calling_funcs/postgresql/pgx/v4/schema.sql function concat_lower_or_upper (line 2) | CREATE FUNCTION concat_lower_or_upper(a text, b text, uppercase boolean ... FILE: internal/endtoend/testdata/sql_syntax_calling_funcs/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/sql_syntax_calling_funcs/postgresql/pgx/v5/go/query.sql.go constant mixedNotation (line 12) | mixedNotation = `-- name: MixedNotation :one method MixedNotation (line 16) | func (q *Queries) MixedNotation(ctx context.Context) (string, error) { constant namedAnyOrder (line 23) | namedAnyOrder = `-- name: NamedAnyOrder :one method NamedAnyOrder (line 27) | func (q *Queries) NamedAnyOrder(ctx context.Context) (string, error) { constant namedNotation (line 34) | namedNotation = `-- name: NamedNotation :one method NamedNotation (line 38) | func (q *Queries) NamedNotation(ctx context.Context) (string, error) { constant namedOtherOrder (line 45) | namedOtherOrder = `-- name: NamedOtherOrder :one method NamedOtherOrder (line 49) | func (q *Queries) NamedOtherOrder(ctx context.Context) (string, error) { constant positionalNoDefaault (line 56) | positionalNoDefaault = `-- name: PositionalNoDefaault :one method PositionalNoDefaault (line 60) | func (q *Queries) PositionalNoDefaault(ctx context.Context) (string, err... constant positionalNotation (line 67) | positionalNotation = `-- name: PositionalNotation :one method PositionalNotation (line 71) | func (q *Queries) PositionalNotation(ctx context.Context) (string, error) { FILE: internal/endtoend/testdata/sql_syntax_calling_funcs/postgresql/pgx/v5/schema.sql function concat_lower_or_upper (line 2) | CREATE FUNCTION concat_lower_or_upper(a text, b text, uppercase boolean ... FILE: internal/endtoend/testdata/sql_syntax_calling_funcs/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/sql_syntax_calling_funcs/postgresql/stdlib/go/query.sql.go constant mixedNotation (line 12) | mixedNotation = `-- name: MixedNotation :one method MixedNotation (line 16) | func (q *Queries) MixedNotation(ctx context.Context) (string, error) { constant namedAnyOrder (line 23) | namedAnyOrder = `-- name: NamedAnyOrder :one method NamedAnyOrder (line 27) | func (q *Queries) NamedAnyOrder(ctx context.Context) (string, error) { constant namedNotation (line 34) | namedNotation = `-- name: NamedNotation :one method NamedNotation (line 38) | func (q *Queries) NamedNotation(ctx context.Context) (string, error) { constant namedOtherOrder (line 45) | namedOtherOrder = `-- name: NamedOtherOrder :one method NamedOtherOrder (line 49) | func (q *Queries) NamedOtherOrder(ctx context.Context) (string, error) { constant positionalNoDefaault (line 56) | positionalNoDefaault = `-- name: PositionalNoDefaault :one method PositionalNoDefaault (line 60) | func (q *Queries) PositionalNoDefaault(ctx context.Context) (string, err... constant positionalNotation (line 67) | positionalNotation = `-- name: PositionalNotation :one method PositionalNotation (line 71) | func (q *Queries) PositionalNotation(ctx context.Context) (string, error) { FILE: internal/endtoend/testdata/sql_syntax_calling_funcs/postgresql/stdlib/schema.sql function concat_lower_or_upper (line 2) | CREATE FUNCTION concat_lower_or_upper(a text, b text, uppercase boolean ... FILE: internal/endtoend/testdata/sqlc_arg/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/sqlc_arg/mysql/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/sqlc_arg/mysql/go/query.sql.go constant complicated (line 12) | complicated = `-- name: Complicated :many type ComplicatedParams (line 17) | type ComplicatedParams struct method Complicated (line 21) | func (q *Queries) Complicated(ctx context.Context, arg ComplicatedParams... constant funcParamIdent (line 44) | funcParamIdent = `-- name: FuncParamIdent :many method FuncParamIdent (line 48) | func (q *Queries) FuncParamIdent(ctx context.Context, slug string) ([]st... constant funcParamString (line 71) | funcParamString = `-- name: FuncParamString :many method FuncParamString (line 75) | func (q *Queries) FuncParamString(ctx context.Context, slug string) ([]s... FILE: internal/endtoend/testdata/sqlc_arg/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (name text not null) FILE: internal/endtoend/testdata/sqlc_arg/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/sqlc_arg/postgresql/pgx/v4/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/sqlc_arg/postgresql/pgx/v4/go/query.sql.go constant funcParamIdent (line 12) | funcParamIdent = `-- name: FuncParamIdent :many method FuncParamIdent (line 16) | func (q *Queries) FuncParamIdent(ctx context.Context, slug string) ([]st... constant funcParamString (line 36) | funcParamString = `-- name: FuncParamString :many method FuncParamString (line 40) | func (q *Queries) FuncParamString(ctx context.Context, slug string) ([]s... FILE: internal/endtoend/testdata/sqlc_arg/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (name text not null) FILE: internal/endtoend/testdata/sqlc_arg/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/sqlc_arg/postgresql/pgx/v5/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/sqlc_arg/postgresql/pgx/v5/go/query.sql.go constant funcParamIdent (line 12) | funcParamIdent = `-- name: FuncParamIdent :many method FuncParamIdent (line 16) | func (q *Queries) FuncParamIdent(ctx context.Context, slug string) ([]st... constant funcParamString (line 36) | funcParamString = `-- name: FuncParamString :many method FuncParamString (line 40) | func (q *Queries) FuncParamString(ctx context.Context, slug string) ([]s... FILE: internal/endtoend/testdata/sqlc_arg/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (name text not null) FILE: internal/endtoend/testdata/sqlc_arg/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/sqlc_arg/postgresql/stdlib/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/sqlc_arg/postgresql/stdlib/go/query.sql.go constant funcParamIdent (line 12) | funcParamIdent = `-- name: FuncParamIdent :many method FuncParamIdent (line 16) | func (q *Queries) FuncParamIdent(ctx context.Context, slug string) ([]st... constant funcParamString (line 39) | funcParamString = `-- name: FuncParamString :many method FuncParamString (line 43) | func (q *Queries) FuncParamString(ctx context.Context, slug string) ([]s... FILE: internal/endtoend/testdata/sqlc_arg/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (name text not null) FILE: internal/endtoend/testdata/sqlc_arg/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/sqlc_arg/sqlite/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/sqlc_arg/sqlite/go/query.sql.go constant funcParamIdent (line 12) | funcParamIdent = `-- name: FuncParamIdent :many method FuncParamIdent (line 16) | func (q *Queries) FuncParamIdent(ctx context.Context, slug string) ([]st... constant funcParamString (line 39) | funcParamString = `-- name: FuncParamString :many method FuncParamString (line 43) | func (q *Queries) FuncParamString(ctx context.Context, slug string) ([]s... FILE: internal/endtoend/testdata/sqlc_arg/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo (name text not null) FILE: internal/endtoend/testdata/sqlc_arg_invalid/mysql/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/sqlc_arg_invalid/postgresql/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/sqlc_arg_invalid/sqlite/query.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/sqlc_embed/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/sqlc_embed/mysql/go/models.go type BazUser (line 11) | type BazUser struct type Post (line 16) | type Post struct type User (line 21) | type User struct FILE: internal/endtoend/testdata/sqlc_embed/mysql/go/query.sql.go constant duplicate (line 13) | duplicate = `-- name: Duplicate :one type DuplicateRow (line 17) | type DuplicateRow struct method Duplicate (line 22) | func (q *Queries) Duplicate(ctx context.Context) (DuplicateRow, error) { constant join (line 36) | join = `-- name: Join :one type JoinRow (line 41) | type JoinRow struct method Join (line 46) | func (q *Queries) Join(ctx context.Context) (JoinRow, error) { constant only (line 59) | only = `-- name: Only :one type OnlyRow (line 63) | type OnlyRow struct method Only (line 67) | func (q *Queries) Only(ctx context.Context) (OnlyRow, error) { constant withAlias (line 74) | withAlias = `-- name: WithAlias :one type WithAliasRow (line 78) | type WithAliasRow struct method WithAlias (line 82) | func (q *Queries) WithAlias(ctx context.Context) (WithAliasRow, error) { constant withAsterisk (line 89) | withAsterisk = `-- name: WithAsterisk :one type WithAsteriskRow (line 93) | type WithAsteriskRow struct method WithAsterisk (line 100) | func (q *Queries) WithAsterisk(ctx context.Context) (WithAsteriskRow, er... constant withCrossSchema (line 114) | withCrossSchema = `-- name: WithCrossSchema :many type WithCrossSchemaRow (line 119) | type WithCrossSchemaRow struct method WithCrossSchema (line 124) | func (q *Queries) WithCrossSchema(ctx context.Context) ([]WithCrossSchem... constant withSchema (line 153) | withSchema = `-- name: WithSchema :one type WithSchemaRow (line 157) | type WithSchemaRow struct method WithSchema (line 161) | func (q *Queries) WithSchema(ctx context.Context) (WithSchemaRow, error) { constant withSubquery (line 168) | withSubquery = `-- name: WithSubquery :many type WithSubqueryRow (line 172) | type WithSubqueryRow struct method WithSubquery (line 177) | func (q *Queries) WithSubquery(ctx context.Context) ([]WithSubqueryRow, ... FILE: internal/endtoend/testdata/sqlc_embed/mysql/schema.sql type users (line 3) | CREATE TABLE users ( type posts (line 9) | CREATE TABLE posts ( type baz (line 14) | CREATE TABLE baz.users ( FILE: internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/models.go type BazUser (line 11) | type BazUser struct type Post (line 16) | type Post struct type User (line 21) | type User struct FILE: internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/query.sql.go constant duplicate (line 13) | duplicate = `-- name: Duplicate :one type DuplicateRow (line 17) | type DuplicateRow struct method Duplicate (line 22) | func (q *Queries) Duplicate(ctx context.Context) (DuplicateRow, error) { constant join (line 36) | join = `-- name: Join :one type JoinRow (line 41) | type JoinRow struct method Join (line 46) | func (q *Queries) Join(ctx context.Context) (JoinRow, error) { constant only (line 59) | only = `-- name: Only :one type OnlyRow (line 63) | type OnlyRow struct method Only (line 67) | func (q *Queries) Only(ctx context.Context) (OnlyRow, error) { constant withAlias (line 74) | withAlias = `-- name: WithAlias :one type WithAliasRow (line 78) | type WithAliasRow struct method WithAlias (line 82) | func (q *Queries) WithAlias(ctx context.Context) (WithAliasRow, error) { constant withAsterisk (line 89) | withAsterisk = `-- name: WithAsterisk :one type WithAsteriskRow (line 93) | type WithAsteriskRow struct method WithAsterisk (line 100) | func (q *Queries) WithAsterisk(ctx context.Context) (WithAsteriskRow, er... constant withCrossSchema (line 114) | withCrossSchema = `-- name: WithCrossSchema :many type WithCrossSchemaRow (line 119) | type WithCrossSchemaRow struct method WithCrossSchema (line 124) | func (q *Queries) WithCrossSchema(ctx context.Context) ([]WithCrossSchem... constant withSchema (line 150) | withSchema = `-- name: WithSchema :one type WithSchemaRow (line 154) | type WithSchemaRow struct method WithSchema (line 158) | func (q *Queries) WithSchema(ctx context.Context) (WithSchemaRow, error) { constant withSubquery (line 165) | withSubquery = `-- name: WithSubquery :many type WithSubqueryRow (line 169) | type WithSubqueryRow struct method WithSubquery (line 174) | func (q *Queries) WithSubquery(ctx context.Context) ([]WithSubqueryRow, ... FILE: internal/endtoend/testdata/sqlc_embed/postgresql/pgx/schema.sql type users (line 3) | CREATE TABLE users ( type posts (line 9) | CREATE TABLE posts ( type baz (line 14) | CREATE TABLE baz.users ( FILE: internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/models.go type BazUser (line 11) | type BazUser struct type Post (line 16) | type Post struct type User (line 22) | type User struct FILE: internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/query.sql.go constant duplicate (line 15) | duplicate = `-- name: Duplicate :one type DuplicateRow (line 19) | type DuplicateRow struct method Duplicate (line 24) | func (q *Queries) Duplicate(ctx context.Context) (DuplicateRow, error) { constant join (line 38) | join = `-- name: Join :one type JoinRow (line 43) | type JoinRow struct method Join (line 48) | func (q *Queries) Join(ctx context.Context) (JoinRow, error) { constant only (line 62) | only = `-- name: Only :one type OnlyRow (line 66) | type OnlyRow struct method Only (line 70) | func (q *Queries) Only(ctx context.Context) (OnlyRow, error) { constant withAlias (line 77) | withAlias = `-- name: WithAlias :one type WithAliasRow (line 81) | type WithAliasRow struct method WithAlias (line 85) | func (q *Queries) WithAlias(ctx context.Context) (WithAliasRow, error) { constant withAsterisk (line 92) | withAsterisk = `-- name: WithAsterisk :one type WithAsteriskRow (line 96) | type WithAsteriskRow struct method WithAsterisk (line 103) | func (q *Queries) WithAsterisk(ctx context.Context) (WithAsteriskRow, er... constant withCrossSchema (line 117) | withCrossSchema = `-- name: WithCrossSchema :many type WithCrossSchemaRow (line 122) | type WithCrossSchemaRow struct method WithCrossSchema (line 127) | func (q *Queries) WithCrossSchema(ctx context.Context) ([]WithCrossSchem... constant withSchema (line 156) | withSchema = `-- name: WithSchema :one type WithSchemaRow (line 160) | type WithSchemaRow struct method WithSchema (line 164) | func (q *Queries) WithSchema(ctx context.Context) (WithSchemaRow, error) { constant withSubquery (line 171) | withSubquery = `-- name: WithSubquery :many type WithSubqueryRow (line 175) | type WithSubqueryRow struct method WithSubquery (line 180) | func (q *Queries) WithSubquery(ctx context.Context) ([]WithSubqueryRow, ... FILE: internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/schema.sql type users (line 3) | CREATE TABLE users ( type posts (line 9) | CREATE TABLE posts ( type baz (line 15) | CREATE TABLE baz.users ( FILE: internal/endtoend/testdata/sqlc_embed/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/sqlc_embed/sqlite/go/models.go type BazUser (line 11) | type BazUser struct type Post (line 16) | type Post struct type User (line 21) | type User struct FILE: internal/endtoend/testdata/sqlc_embed/sqlite/go/query.sql.go constant duplicate (line 13) | duplicate = `-- name: Duplicate :one type DuplicateRow (line 17) | type DuplicateRow struct method Duplicate (line 22) | func (q *Queries) Duplicate(ctx context.Context) (DuplicateRow, error) { constant join (line 36) | join = `-- name: Join :one type JoinRow (line 41) | type JoinRow struct method Join (line 46) | func (q *Queries) Join(ctx context.Context) (JoinRow, error) { constant only (line 59) | only = `-- name: Only :one type OnlyRow (line 63) | type OnlyRow struct method Only (line 67) | func (q *Queries) Only(ctx context.Context) (OnlyRow, error) { constant withAlias (line 74) | withAlias = `-- name: WithAlias :one type WithAliasRow (line 78) | type WithAliasRow struct method WithAlias (line 82) | func (q *Queries) WithAlias(ctx context.Context) (WithAliasRow, error) { constant withAsterisk (line 89) | withAsterisk = `-- name: WithAsterisk :one type WithAsteriskRow (line 93) | type WithAsteriskRow struct method WithAsterisk (line 100) | func (q *Queries) WithAsterisk(ctx context.Context) (WithAsteriskRow, er... constant withCrossSchema (line 114) | withCrossSchema = `-- name: WithCrossSchema :many type WithCrossSchemaRow (line 119) | type WithCrossSchemaRow struct method WithCrossSchema (line 124) | func (q *Queries) WithCrossSchema(ctx context.Context) ([]WithCrossSchem... constant withSchema (line 153) | withSchema = `-- name: WithSchema :one type WithSchemaRow (line 157) | type WithSchemaRow struct method WithSchema (line 161) | func (q *Queries) WithSchema(ctx context.Context) (WithSchemaRow, error) { constant withSubquery (line 168) | withSubquery = `-- name: WithSubquery :many type WithSubqueryRow (line 172) | type WithSubqueryRow struct method WithSubquery (line 177) | func (q *Queries) WithSubquery(ctx context.Context) ([]WithSubqueryRow, ... FILE: internal/endtoend/testdata/sqlc_embed/sqlite/schema.sql type users (line 3) | CREATE TABLE users ( type posts (line 9) | CREATE TABLE posts ( type baz (line 14) | CREATE TABLE baz.users ( FILE: internal/endtoend/testdata/sqlc_narg/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/sqlc_narg/mysql/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/sqlc_narg/mysql/go/query.sql.go constant identOnNonNullable (line 13) | identOnNonNullable = `-- name: IdentOnNonNullable :many method IdentOnNonNullable (line 17) | func (q *Queries) IdentOnNonNullable(ctx context.Context, bar sql.NullSt... constant identOnNullable (line 40) | identOnNullable = `-- name: IdentOnNullable :many method IdentOnNullable (line 44) | func (q *Queries) IdentOnNullable(ctx context.Context, maybeBar sql.Null... constant stringOnNonNullable (line 67) | stringOnNonNullable = `-- name: StringOnNonNullable :many method StringOnNonNullable (line 71) | func (q *Queries) StringOnNonNullable(ctx context.Context, bar sql.NullS... constant stringOnNullable (line 94) | stringOnNullable = `-- name: StringOnNullable :many method StringOnNullable (line 98) | func (q *Queries) StringOnNullable(ctx context.Context, maybeBar sql.Nul... FILE: internal/endtoend/testdata/sqlc_narg/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (bar text not null, maybe_bar text) FILE: internal/endtoend/testdata/sqlc_narg/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/sqlc_narg/postgresql/pgx/v4/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/sqlc_narg/postgresql/pgx/v4/go/query.sql.go constant identOnNonNullable (line 13) | identOnNonNullable = `-- name: IdentOnNonNullable :many method IdentOnNonNullable (line 17) | func (q *Queries) IdentOnNonNullable(ctx context.Context, bar sql.NullSt... constant identOnNullable (line 37) | identOnNullable = `-- name: IdentOnNullable :many method IdentOnNullable (line 41) | func (q *Queries) IdentOnNullable(ctx context.Context, maybeBar sql.Null... constant stringOnNonNullable (line 61) | stringOnNonNullable = `-- name: StringOnNonNullable :many method StringOnNonNullable (line 65) | func (q *Queries) StringOnNonNullable(ctx context.Context, bar sql.NullS... constant stringOnNullable (line 85) | stringOnNullable = `-- name: StringOnNullable :many method StringOnNullable (line 89) | func (q *Queries) StringOnNullable(ctx context.Context, maybeBar sql.Nul... FILE: internal/endtoend/testdata/sqlc_narg/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (bar text not null, maybe_bar text) FILE: internal/endtoend/testdata/sqlc_narg/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/sqlc_narg/postgresql/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/sqlc_narg/postgresql/pgx/v5/go/query.sql.go constant identOnNonNullable (line 14) | identOnNonNullable = `-- name: IdentOnNonNullable :many method IdentOnNonNullable (line 18) | func (q *Queries) IdentOnNonNullable(ctx context.Context, bar pgtype.Tex... constant identOnNullable (line 38) | identOnNullable = `-- name: IdentOnNullable :many method IdentOnNullable (line 42) | func (q *Queries) IdentOnNullable(ctx context.Context, maybeBar pgtype.T... constant stringOnNonNullable (line 62) | stringOnNonNullable = `-- name: StringOnNonNullable :many method StringOnNonNullable (line 66) | func (q *Queries) StringOnNonNullable(ctx context.Context, bar pgtype.Te... constant stringOnNullable (line 86) | stringOnNullable = `-- name: StringOnNullable :many method StringOnNullable (line 90) | func (q *Queries) StringOnNullable(ctx context.Context, maybeBar pgtype.... FILE: internal/endtoend/testdata/sqlc_narg/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (bar text not null, maybe_bar text) FILE: internal/endtoend/testdata/sqlc_narg/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/sqlc_narg/postgresql/stdlib/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/sqlc_narg/postgresql/stdlib/go/query.sql.go constant identOnNonNullable (line 13) | identOnNonNullable = `-- name: IdentOnNonNullable :many method IdentOnNonNullable (line 17) | func (q *Queries) IdentOnNonNullable(ctx context.Context, bar sql.NullSt... constant identOnNullable (line 40) | identOnNullable = `-- name: IdentOnNullable :many method IdentOnNullable (line 44) | func (q *Queries) IdentOnNullable(ctx context.Context, maybeBar sql.Null... constant stringOnNonNullable (line 67) | stringOnNonNullable = `-- name: StringOnNonNullable :many method StringOnNonNullable (line 71) | func (q *Queries) StringOnNonNullable(ctx context.Context, bar sql.NullS... constant stringOnNullable (line 94) | stringOnNullable = `-- name: StringOnNullable :many method StringOnNullable (line 98) | func (q *Queries) StringOnNullable(ctx context.Context, maybeBar sql.Nul... FILE: internal/endtoend/testdata/sqlc_narg/postgresql/stdlib/go_strict/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/sqlc_narg/postgresql/stdlib/go_strict/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/sqlc_narg/postgresql/stdlib/go_strict/query.sql.go constant identOnNonNullable (line 13) | identOnNonNullable = `-- name: IdentOnNonNullable :many method IdentOnNonNullable (line 17) | func (q *Queries) IdentOnNonNullable(ctx context.Context, bar sql.NullSt... constant identOnNullable (line 40) | identOnNullable = `-- name: IdentOnNullable :many method IdentOnNullable (line 44) | func (q *Queries) IdentOnNullable(ctx context.Context, maybeBar sql.Null... constant stringOnNonNullable (line 67) | stringOnNonNullable = `-- name: StringOnNonNullable :many method StringOnNonNullable (line 71) | func (q *Queries) StringOnNonNullable(ctx context.Context, bar sql.NullS... constant stringOnNullable (line 94) | stringOnNullable = `-- name: StringOnNullable :many method StringOnNullable (line 98) | func (q *Queries) StringOnNullable(ctx context.Context, maybeBar sql.Nul... FILE: internal/endtoend/testdata/sqlc_narg/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (bar text not null, maybe_bar text) FILE: internal/endtoend/testdata/sqlc_narg/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/sqlc_narg/sqlite/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/sqlc_narg/sqlite/go/query.sql.go constant identOnNonNullable (line 13) | identOnNonNullable = `-- name: IdentOnNonNullable :many method IdentOnNonNullable (line 17) | func (q *Queries) IdentOnNonNullable(ctx context.Context, bar sql.NullSt... constant identOnNullable (line 40) | identOnNullable = `-- name: IdentOnNullable :many method IdentOnNullable (line 44) | func (q *Queries) IdentOnNullable(ctx context.Context, maybeBar sql.Null... constant stringOnNonNullable (line 67) | stringOnNonNullable = `-- name: StringOnNonNullable :many method StringOnNonNullable (line 71) | func (q *Queries) StringOnNonNullable(ctx context.Context, bar sql.NullS... constant stringOnNullable (line 94) | stringOnNullable = `-- name: StringOnNullable :many method StringOnNullable (line 98) | func (q *Queries) StringOnNullable(ctx context.Context, maybeBar sql.Nul... FILE: internal/endtoend/testdata/sqlc_narg/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo (bar text not null, maybe_bar text) FILE: internal/endtoend/testdata/sqlc_slice/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/sqlc_slice/mysql/go/models.go type Foo (line 13) | type Foo struct FILE: internal/endtoend/testdata/sqlc_slice/mysql/go/query.sql.go constant funcNullable (line 16) | funcNullable = `-- name: FuncNullable :many method FuncNullable (line 21) | func (q *Queries) FuncNullable(ctx context.Context, favourites []int32) ... constant funcNullableNot (line 54) | funcNullableNot = `-- name: FuncNullableNot :many method FuncNullableNot (line 59) | func (q *Queries) FuncNullableNot(ctx context.Context, favourites []int3... constant funcParamIdent (line 92) | funcParamIdent = `-- name: FuncParamIdent :many type FuncParamIdentParams (line 98) | type FuncParamIdentParams struct method FuncParamIdent (line 103) | func (q *Queries) FuncParamIdent(ctx context.Context, arg FuncParamIdent... constant funcParamSoloArg (line 137) | funcParamSoloArg = `-- name: FuncParamSoloArg :many method FuncParamSoloArg (line 142) | func (q *Queries) FuncParamSoloArg(ctx context.Context, favourites []int... constant funcParamString (line 175) | funcParamString = `-- name: FuncParamString :many type FuncParamStringParams (line 181) | type FuncParamStringParams struct method FuncParamString (line 186) | func (q *Queries) FuncParamString(ctx context.Context, arg FuncParamStri... constant sliceExec (line 220) | sliceExec = `-- name: SliceExec :exec type SliceExecParams (line 225) | type SliceExecParams struct method SliceExec (line 230) | func (q *Queries) SliceExec(ctx context.Context, arg SliceExecParams) er... constant typedMyStr (line 246) | typedMyStr = `-- name: TypedMyStr :many method TypedMyStr (line 251) | func (q *Queries) TypedMyStr(ctx context.Context, mystr []mysql.ID) ([]s... FILE: internal/endtoend/testdata/sqlc_slice/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (id int not null, name text not null, bar text null, my... FILE: internal/endtoend/testdata/sqlc_slice/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/sqlc_slice/postgresql/pgx/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/sqlc_slice/postgresql/pgx/go/query.sql.go constant funcParamIdent (line 12) | funcParamIdent = `-- name: FuncParamIdent :many type FuncParamIdentParams (line 17) | type FuncParamIdentParams struct method FuncParamIdent (line 22) | func (q *Queries) FuncParamIdent(ctx context.Context, arg FuncParamIdent... constant funcParamString (line 42) | funcParamString = `-- name: FuncParamString :many type FuncParamStringParams (line 47) | type FuncParamStringParams struct method FuncParamString (line 52) | func (q *Queries) FuncParamString(ctx context.Context, arg FuncParamStri... FILE: internal/endtoend/testdata/sqlc_slice/postgresql/pgx/schema.sql type foo (line 1) | CREATE TABLE foo (id int not null, name text not null) FILE: internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/go/query.sql.go constant funcParamIdent (line 13) | funcParamIdent = `-- name: FuncParamIdent :many type FuncParamIdentParams (line 19) | type FuncParamIdentParams struct method FuncParamIdent (line 24) | func (q *Queries) FuncParamIdent(ctx context.Context, arg FuncParamIdent... constant funcParamString (line 58) | funcParamString = `-- name: FuncParamString :many type FuncParamStringParams (line 64) | type FuncParamStringParams struct method FuncParamString (line 69) | func (q *Queries) FuncParamString(ctx context.Context, arg FuncParamStri... FILE: internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (id int not null, name text not null) FILE: internal/endtoend/testdata/sqlc_slice/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/sqlc_slice/sqlite/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/sqlc_slice/sqlite/go/query.sql.go constant funcNullable (line 14) | funcNullable = `-- name: FuncNullable :many method FuncNullable (line 19) | func (q *Queries) FuncNullable(ctx context.Context, favourites []int64) ... constant funcNullableNot (line 52) | funcNullableNot = `-- name: FuncNullableNot :many method FuncNullableNot (line 57) | func (q *Queries) FuncNullableNot(ctx context.Context, favourites []int6... constant funcParamIdent (line 90) | funcParamIdent = `-- name: FuncParamIdent :many type FuncParamIdentParams (line 96) | type FuncParamIdentParams struct method FuncParamIdent (line 101) | func (q *Queries) FuncParamIdent(ctx context.Context, arg FuncParamIdent... constant funcParamSoloArg (line 135) | funcParamSoloArg = `-- name: FuncParamSoloArg :many method FuncParamSoloArg (line 140) | func (q *Queries) FuncParamSoloArg(ctx context.Context, favourites []int... constant funcParamString (line 173) | funcParamString = `-- name: FuncParamString :many type FuncParamStringParams (line 179) | type FuncParamStringParams struct method FuncParamString (line 184) | func (q *Queries) FuncParamString(ctx context.Context, arg FuncParamStri... constant sliceExec (line 218) | sliceExec = `-- name: SliceExec :exec type SliceExecParams (line 223) | type SliceExecParams struct method SliceExec (line 228) | func (q *Queries) SliceExec(ctx context.Context, arg SliceExecParams) er... FILE: internal/endtoend/testdata/sqlc_slice/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo (id int not null, name text not null, bar text) FILE: internal/endtoend/testdata/sqlc_slice_prepared/sqlite/go/db.go type DBTX (line 13) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { function Prepare (line 24) | func Prepare(ctx context.Context, db DBTX) (*Queries, error) { type Queries (line 76) | type Queries struct method Close (line 33) | func (q *Queries) Close() error { method exec (line 43) | func (q *Queries) exec(ctx context.Context, stmt *sql.Stmt, query stri... method query (line 54) | func (q *Queries) query(ctx context.Context, stmt *sql.Stmt, query str... method queryRow (line 65) | func (q *Queries) queryRow(ctx context.Context, stmt *sql.Stmt, query ... method WithTx (line 82) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/sqlc_slice_prepared/sqlite/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/sqlc_slice_prepared/sqlite/go/query.sql.go constant funcParamIdent (line 13) | funcParamIdent = `-- name: FuncParamIdent :many type FuncParamIdentParams (line 19) | type FuncParamIdentParams struct method FuncParamIdent (line 24) | func (q *Queries) FuncParamIdent(ctx context.Context, arg FuncParamIdent... FILE: internal/endtoend/testdata/sqlc_slice_prepared/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo (id int not null, name text not null, bar text) FILE: internal/endtoend/testdata/sqlite_skip_todo/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/sqlite_skip_todo/db/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/sqlite_skip_todo/db/query.sql.go constant getFoo (line 13) | getFoo = `-- name: GetFoo :many method GetFoo (line 18) | func (q *Queries) GetFoo(ctx context.Context, bar sql.NullString) ([]sql... constant listFoo (line 41) | listFoo = `-- name: ListFoo :many method ListFoo (line 45) | func (q *Queries) ListFoo(ctx context.Context) ([]sql.NullString, error) { FILE: internal/endtoend/testdata/sqlite_skip_todo/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/sqlite_table_options/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/sqlite_table_options/sqlite/go/models.go type Authors1 (line 11) | type Authors1 struct type Authors2 (line 17) | type Authors2 struct type Authors3 (line 23) | type Authors3 struct type Authors4 (line 29) | type Authors4 struct FILE: internal/endtoend/testdata/sqlite_table_options/sqlite/go/query.sql.go constant getAuthor (line 12) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 17) | func (q *Queries) GetAuthor(ctx context.Context, id int64) (Authors1, er... FILE: internal/endtoend/testdata/sqlite_table_options/sqlite/schema.sql type authors1 (line 1) | CREATE TABLE authors1 ( type authors2 (line 7) | CREATE TABLE authors2 ( type authors3 (line 13) | CREATE TABLE authors3 ( type authors4 (line 19) | CREATE TABLE authors4 ( FILE: internal/endtoend/testdata/star_expansion/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/star_expansion/mysql/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/star_expansion/mysql/go/query.sql.go constant starExpansion (line 13) | starExpansion = `-- name: StarExpansion :many type StarExpansionRow (line 17) | type StarExpansionRow struct method StarExpansion (line 26) | func (q *Queries) StarExpansion(ctx context.Context) ([]StarExpansionRow... constant starQuotedExpansion (line 56) | starQuotedExpansion = `-- name: StarQuotedExpansion :many method StarQuotedExpansion (line 60) | func (q *Queries) StarQuotedExpansion(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/star_expansion/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) FILE: internal/endtoend/testdata/star_expansion/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/star_expansion/postgresql/pgx/v4/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/star_expansion/postgresql/pgx/v4/go/query.sql.go constant starExpansion (line 13) | starExpansion = `-- name: StarExpansion :many type StarExpansionRow (line 17) | type StarExpansionRow struct method StarExpansion (line 26) | func (q *Queries) StarExpansion(ctx context.Context) ([]StarExpansionRow... constant starQuotedExpansion (line 53) | starQuotedExpansion = `-- name: StarQuotedExpansion :many method StarQuotedExpansion (line 57) | func (q *Queries) StarQuotedExpansion(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/star_expansion/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) FILE: internal/endtoend/testdata/star_expansion/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/star_expansion/postgresql/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/star_expansion/postgresql/pgx/v5/go/query.sql.go constant starExpansion (line 14) | starExpansion = `-- name: StarExpansion :many type StarExpansionRow (line 18) | type StarExpansionRow struct method StarExpansion (line 27) | func (q *Queries) StarExpansion(ctx context.Context) ([]StarExpansionRow... constant starQuotedExpansion (line 54) | starQuotedExpansion = `-- name: StarQuotedExpansion :many method StarQuotedExpansion (line 58) | func (q *Queries) StarQuotedExpansion(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/star_expansion/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) FILE: internal/endtoend/testdata/star_expansion/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/star_expansion/postgresql/stdlib/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/star_expansion/postgresql/stdlib/go/query.sql.go constant starExpansion (line 13) | starExpansion = `-- name: StarExpansion :many type StarExpansionRow (line 17) | type StarExpansionRow struct method StarExpansion (line 26) | func (q *Queries) StarExpansion(ctx context.Context) ([]StarExpansionRow... constant starQuotedExpansion (line 56) | starQuotedExpansion = `-- name: StarQuotedExpansion :many method StarQuotedExpansion (line 60) | func (q *Queries) StarQuotedExpansion(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/star_expansion/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) FILE: internal/endtoend/testdata/star_expansion/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/star_expansion/sqlite/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/star_expansion/sqlite/go/query.sql.go constant starExpansion (line 13) | starExpansion = `-- name: StarExpansion :many type StarExpansionRow (line 17) | type StarExpansionRow struct method StarExpansion (line 26) | func (q *Queries) StarExpansion(ctx context.Context) ([]StarExpansionRow... constant starQuotedExpansion (line 56) | starQuotedExpansion = `-- name: StarQuotedExpansion :many method StarQuotedExpansion (line 60) | func (q *Queries) StarQuotedExpansion(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/star_expansion/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) FILE: internal/endtoend/testdata/star_expansion_cte/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/star_expansion_cte/pgx/v4/go/models.go type Bar (line 11) | type Bar struct type Foo (line 16) | type Foo struct FILE: internal/endtoend/testdata/star_expansion_cte/pgx/v4/go/query.sql.go constant starExpansionCTE (line 13) | starExpansionCTE = `-- name: StarExpansionCTE :many method StarExpansionCTE (line 17) | func (q *Queries) StarExpansionCTE(ctx context.Context) ([]Bar, error) { constant starExpansionTwoCTE (line 37) | starExpansionTwoCTE = `-- name: StarExpansionTwoCTE :many type StarExpansionTwoCTERow (line 44) | type StarExpansionTwoCTERow struct method StarExpansionTwoCTE (line 50) | func (q *Queries) StarExpansionTwoCTE(ctx context.Context) ([]StarExpans... FILE: internal/endtoend/testdata/star_expansion_cte/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) type bar (line 2) | CREATE TABLE bar (c text, d text) FILE: internal/endtoend/testdata/star_expansion_cte/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/star_expansion_cte/pgx/v5/go/models.go type Bar (line 11) | type Bar struct type Foo (line 16) | type Foo struct FILE: internal/endtoend/testdata/star_expansion_cte/pgx/v5/go/query.sql.go constant starExpansionCTE (line 14) | starExpansionCTE = `-- name: StarExpansionCTE :many method StarExpansionCTE (line 18) | func (q *Queries) StarExpansionCTE(ctx context.Context) ([]Bar, error) { constant starExpansionTwoCTE (line 38) | starExpansionTwoCTE = `-- name: StarExpansionTwoCTE :many type StarExpansionTwoCTERow (line 45) | type StarExpansionTwoCTERow struct method StarExpansionTwoCTE (line 51) | func (q *Queries) StarExpansionTwoCTE(ctx context.Context) ([]StarExpans... FILE: internal/endtoend/testdata/star_expansion_cte/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) type bar (line 2) | CREATE TABLE bar (c text, d text) FILE: internal/endtoend/testdata/star_expansion_cte/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/star_expansion_cte/stdlib/go/models.go type Bar (line 11) | type Bar struct type Foo (line 16) | type Foo struct FILE: internal/endtoend/testdata/star_expansion_cte/stdlib/go/query.sql.go constant starExpansionCTE (line 13) | starExpansionCTE = `-- name: StarExpansionCTE :many method StarExpansionCTE (line 17) | func (q *Queries) StarExpansionCTE(ctx context.Context) ([]Bar, error) { constant starExpansionTwoCTE (line 40) | starExpansionTwoCTE = `-- name: StarExpansionTwoCTE :many type StarExpansionTwoCTERow (line 47) | type StarExpansionTwoCTERow struct method StarExpansionTwoCTE (line 53) | func (q *Queries) StarExpansionTwoCTE(ctx context.Context) ([]StarExpans... FILE: internal/endtoend/testdata/star_expansion_cte/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) type bar (line 2) | CREATE TABLE bar (c text, d text) FILE: internal/endtoend/testdata/star_expansion_failed/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/star_expansion_failed/postgresql/pgx/go/models.go type Version (line 11) | type Version struct FILE: internal/endtoend/testdata/star_expansion_failed/postgresql/pgx/go/query.sql.go constant getLatestVersionWithSubquery (line 12) | getLatestVersionWithSubquery = `-- name: GetLatestVersionWithSubquery :one method GetLatestVersionWithSubquery (line 27) | func (q *Queries) GetLatestVersionWithSubquery(ctx context.Context) (Ver... FILE: internal/endtoend/testdata/star_expansion_failed/postgresql/pgx/schema.sql type versions (line 2) | CREATE TABLE versions ( FILE: internal/endtoend/testdata/star_expansion_from_cte/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/star_expansion_from_cte/pgx/v4/go/models.go type Bar (line 11) | type Bar struct type Foo (line 16) | type Foo struct FILE: internal/endtoend/testdata/star_expansion_from_cte/pgx/v4/go/query.sql.go constant starExpansionCTE (line 13) | starExpansionCTE = `-- name: StarExpansionCTE :many type StarExpansionCTERow (line 17) | type StarExpansionCTERow struct method StarExpansionCTE (line 22) | func (q *Queries) StarExpansionCTE(ctx context.Context) ([]StarExpansion... FILE: internal/endtoend/testdata/star_expansion_from_cte/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) type bar (line 2) | CREATE TABLE bar (c text, d text) FILE: internal/endtoend/testdata/star_expansion_from_cte/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/star_expansion_from_cte/pgx/v5/go/models.go type Bar (line 11) | type Bar struct type Foo (line 16) | type Foo struct FILE: internal/endtoend/testdata/star_expansion_from_cte/pgx/v5/go/query.sql.go constant starExpansionCTE (line 14) | starExpansionCTE = `-- name: StarExpansionCTE :many type StarExpansionCTERow (line 18) | type StarExpansionCTERow struct method StarExpansionCTE (line 23) | func (q *Queries) StarExpansionCTE(ctx context.Context) ([]StarExpansion... FILE: internal/endtoend/testdata/star_expansion_from_cte/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) type bar (line 2) | CREATE TABLE bar (c text, d text) FILE: internal/endtoend/testdata/star_expansion_from_cte/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/star_expansion_from_cte/stdlib/go/models.go type Bar (line 11) | type Bar struct type Foo (line 16) | type Foo struct FILE: internal/endtoend/testdata/star_expansion_from_cte/stdlib/go/query.sql.go constant starExpansionCTE (line 13) | starExpansionCTE = `-- name: StarExpansionCTE :many type StarExpansionCTERow (line 17) | type StarExpansionCTERow struct method StarExpansionCTE (line 22) | func (q *Queries) StarExpansionCTE(ctx context.Context) ([]StarExpansion... FILE: internal/endtoend/testdata/star_expansion_from_cte/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) type bar (line 2) | CREATE TABLE bar (c text, d text) FILE: internal/endtoend/testdata/star_expansion_join/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/star_expansion_join/mysql/go/models.go type Bar (line 11) | type Bar struct type Foo (line 16) | type Foo struct FILE: internal/endtoend/testdata/star_expansion_join/mysql/go/query.sql.go constant starExpansionJoin (line 13) | starExpansionJoin = `-- name: StarExpansionJoin :many type StarExpansionJoinRow (line 17) | type StarExpansionJoinRow struct method StarExpansionJoin (line 24) | func (q *Queries) StarExpansionJoin(ctx context.Context) ([]StarExpansio... FILE: internal/endtoend/testdata/star_expansion_join/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) type bar (line 2) | CREATE TABLE bar (c text, d text) FILE: internal/endtoend/testdata/star_expansion_join/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/star_expansion_join/postgresql/pgx/v4/go/models.go type Bar (line 11) | type Bar struct type Foo (line 16) | type Foo struct FILE: internal/endtoend/testdata/star_expansion_join/postgresql/pgx/v4/go/query.sql.go constant starExpansionJoin (line 13) | starExpansionJoin = `-- name: StarExpansionJoin :many type StarExpansionJoinRow (line 17) | type StarExpansionJoinRow struct method StarExpansionJoin (line 24) | func (q *Queries) StarExpansionJoin(ctx context.Context) ([]StarExpansio... FILE: internal/endtoend/testdata/star_expansion_join/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) type bar (line 2) | CREATE TABLE bar (c text, d text) FILE: internal/endtoend/testdata/star_expansion_join/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/star_expansion_join/postgresql/pgx/v5/go/models.go type Bar (line 11) | type Bar struct type Foo (line 16) | type Foo struct FILE: internal/endtoend/testdata/star_expansion_join/postgresql/pgx/v5/go/query.sql.go constant starExpansionJoin (line 14) | starExpansionJoin = `-- name: StarExpansionJoin :many type StarExpansionJoinRow (line 18) | type StarExpansionJoinRow struct method StarExpansionJoin (line 25) | func (q *Queries) StarExpansionJoin(ctx context.Context) ([]StarExpansio... FILE: internal/endtoend/testdata/star_expansion_join/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) type bar (line 2) | CREATE TABLE bar (c text, d text) FILE: internal/endtoend/testdata/star_expansion_join/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/star_expansion_join/postgresql/stdlib/go/models.go type Bar (line 11) | type Bar struct type Foo (line 16) | type Foo struct FILE: internal/endtoend/testdata/star_expansion_join/postgresql/stdlib/go/query.sql.go constant starExpansionJoin (line 13) | starExpansionJoin = `-- name: StarExpansionJoin :many type StarExpansionJoinRow (line 17) | type StarExpansionJoinRow struct method StarExpansionJoin (line 24) | func (q *Queries) StarExpansionJoin(ctx context.Context) ([]StarExpansio... FILE: internal/endtoend/testdata/star_expansion_join/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) type bar (line 2) | CREATE TABLE bar (c text, d text) FILE: internal/endtoend/testdata/star_expansion_reserved/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/star_expansion_reserved/mysql/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/star_expansion_reserved/mysql/go/query.sql.go constant starExpansionReserved (line 12) | starExpansionReserved = `-- name: StarExpansionReserved :many method StarExpansionReserved (line 16) | func (q *Queries) StarExpansionReserved(ctx context.Context) ([]Foo, err... FILE: internal/endtoend/testdata/star_expansion_reserved/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (`group` text, `key` text) FILE: internal/endtoend/testdata/star_expansion_reserved/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/star_expansion_reserved/postgresql/pgx/v4/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/star_expansion_reserved/postgresql/pgx/v4/go/query.sql.go constant starExpansionReserved (line 12) | starExpansionReserved = `-- name: StarExpansionReserved :many method StarExpansionReserved (line 16) | func (q *Queries) StarExpansionReserved(ctx context.Context) ([]Foo, err... FILE: internal/endtoend/testdata/star_expansion_reserved/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo ("group" text, key text) FILE: internal/endtoend/testdata/star_expansion_reserved/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/star_expansion_reserved/postgresql/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/star_expansion_reserved/postgresql/pgx/v5/go/query.sql.go constant starExpansionReserved (line 12) | starExpansionReserved = `-- name: StarExpansionReserved :many method StarExpansionReserved (line 16) | func (q *Queries) StarExpansionReserved(ctx context.Context) ([]Foo, err... FILE: internal/endtoend/testdata/star_expansion_reserved/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo ("group" text, key text) FILE: internal/endtoend/testdata/star_expansion_reserved/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/star_expansion_reserved/postgresql/stdlib/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/star_expansion_reserved/postgresql/stdlib/go/query.sql.go constant starExpansionReserved (line 12) | starExpansionReserved = `-- name: StarExpansionReserved :many method StarExpansionReserved (line 16) | func (q *Queries) StarExpansionReserved(ctx context.Context) ([]Foo, err... FILE: internal/endtoend/testdata/star_expansion_reserved/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo ("group" text, key text) FILE: internal/endtoend/testdata/star_expansion_series/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/star_expansion_series/postgresql/pgx/go/models.go type Alertreport (line 11) | type Alertreport struct FILE: internal/endtoend/testdata/star_expansion_series/postgresql/pgx/go/query.sql.go constant countAlertReportBy (line 14) | countAlertReportBy = `-- name: CountAlertReportBy :many type CountAlertReportByParams (line 27) | type CountAlertReportByParams struct type CountAlertReportByRow (line 33) | type CountAlertReportByRow struct method CountAlertReportBy (line 38) | func (q *Queries) CountAlertReportBy(ctx context.Context, arg CountAlert... FILE: internal/endtoend/testdata/star_expansion_series/postgresql/pgx/schema.sql type alertreport (line 1) | CREATE TABLE alertreport ( FILE: internal/endtoend/testdata/star_expansion_subquery/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/star_expansion_subquery/mysql/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/star_expansion_subquery/mysql/go/query.sql.go constant starExpansionSubquery (line 12) | starExpansionSubquery = `-- name: StarExpansionSubquery :many method StarExpansionSubquery (line 16) | func (q *Queries) StarExpansionSubquery(ctx context.Context) ([]Foo, err... FILE: internal/endtoend/testdata/star_expansion_subquery/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) FILE: internal/endtoend/testdata/star_expansion_subquery/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/star_expansion_subquery/postgresql/pgx/v4/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/star_expansion_subquery/postgresql/pgx/v4/go/query.sql.go constant starExpansionSubquery (line 12) | starExpansionSubquery = `-- name: StarExpansionSubquery :many method StarExpansionSubquery (line 16) | func (q *Queries) StarExpansionSubquery(ctx context.Context) ([]Foo, err... FILE: internal/endtoend/testdata/star_expansion_subquery/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) FILE: internal/endtoend/testdata/star_expansion_subquery/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/star_expansion_subquery/postgresql/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/star_expansion_subquery/postgresql/pgx/v5/go/query.sql.go constant starExpansionSubquery (line 12) | starExpansionSubquery = `-- name: StarExpansionSubquery :many method StarExpansionSubquery (line 16) | func (q *Queries) StarExpansionSubquery(ctx context.Context) ([]Foo, err... FILE: internal/endtoend/testdata/star_expansion_subquery/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) FILE: internal/endtoend/testdata/star_expansion_subquery/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/star_expansion_subquery/postgresql/stdlib/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/star_expansion_subquery/postgresql/stdlib/go/query.sql.go constant starExpansionSubquery (line 12) | starExpansionSubquery = `-- name: StarExpansionSubquery :many method StarExpansionSubquery (line 16) | func (q *Queries) StarExpansionSubquery(ctx context.Context) ([]Foo, err... FILE: internal/endtoend/testdata/star_expansion_subquery/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (a text, b text) FILE: internal/endtoend/testdata/subquery_calculated_column/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/subquery_calculated_column/mysql/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/subquery_calculated_column/mysql/go/query.sql.go constant subqueryCalcColumn (line 12) | subqueryCalcColumn = `-- name: SubqueryCalcColumn :many method SubqueryCalcColumn (line 16) | func (q *Queries) SubqueryCalcColumn(ctx context.Context) ([]int32, erro... FILE: internal/endtoend/testdata/subquery_calculated_column/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (a int, b int) FILE: internal/endtoend/testdata/subquery_calculated_column/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/subquery_calculated_column/postgresql/pgx/v4/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/subquery_calculated_column/postgresql/pgx/v4/go/query.sql.go constant subqueryCalcColumn (line 12) | subqueryCalcColumn = `-- name: SubqueryCalcColumn :many method SubqueryCalcColumn (line 16) | func (q *Queries) SubqueryCalcColumn(ctx context.Context) ([]int32, erro... FILE: internal/endtoend/testdata/subquery_calculated_column/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (a int, b int) FILE: internal/endtoend/testdata/subquery_calculated_column/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/subquery_calculated_column/postgresql/pgx/v5/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/subquery_calculated_column/postgresql/pgx/v5/go/query.sql.go constant subqueryCalcColumn (line 12) | subqueryCalcColumn = `-- name: SubqueryCalcColumn :many method SubqueryCalcColumn (line 16) | func (q *Queries) SubqueryCalcColumn(ctx context.Context) ([]int32, erro... FILE: internal/endtoend/testdata/subquery_calculated_column/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (a int, b int) FILE: internal/endtoend/testdata/subquery_calculated_column/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/subquery_calculated_column/postgresql/stdlib/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/subquery_calculated_column/postgresql/stdlib/go/query.sql.go constant subqueryCalcColumn (line 12) | subqueryCalcColumn = `-- name: SubqueryCalcColumn :many method SubqueryCalcColumn (line 16) | func (q *Queries) SubqueryCalcColumn(ctx context.Context) ([]int32, erro... FILE: internal/endtoend/testdata/subquery_calculated_column/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (a int, b int) FILE: internal/endtoend/testdata/subquery_calculated_column/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/subquery_calculated_column/sqlite/go/models.go type Foo (line 11) | type Foo struct FILE: internal/endtoend/testdata/subquery_calculated_column/sqlite/go/query.sql.go constant subqueryCalcColumn (line 12) | subqueryCalcColumn = `-- name: SubqueryCalcColumn :many method SubqueryCalcColumn (line 16) | func (q *Queries) SubqueryCalcColumn(ctx context.Context) ([]int64, erro... FILE: internal/endtoend/testdata/subquery_calculated_column/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo (a int, b int) FILE: internal/endtoend/testdata/sum_type/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/sum_type/postgresql/pgx/go/models.go type Order (line 11) | type Order struct FILE: internal/endtoend/testdata/sum_type/postgresql/pgx/go/query.sql.go constant sumOrder (line 14) | sumOrder = `-- name: SumOrder :one method SumOrder (line 18) | func (q *Queries) SumOrder(ctx context.Context) (pgtype.Numeric, error) { FILE: internal/endtoend/testdata/sum_type/postgresql/pgx/schema.sql type orders (line 1) | CREATE TABLE orders ( FILE: internal/endtoend/testdata/syntax_errors/mysql/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/syntax_errors/postgresql/schema.sql type users (line 1) | CREATE TABLE users ( FILE: internal/endtoend/testdata/table_function/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/table_function/postgresql/pgx/v4/go/models.go type Transaction (line 11) | type Transaction struct FILE: internal/endtoend/testdata/table_function/postgresql/pgx/v4/go/query.sql.go constant getTransaction (line 14) | getTransaction = `-- name: GetTransaction :many type GetTransactionParams (line 28) | type GetTransactionParams struct type GetTransactionRow (line 33) | type GetTransactionRow struct method GetTransaction (line 38) | func (q *Queries) GetTransaction(ctx context.Context, arg GetTransaction... FILE: internal/endtoend/testdata/table_function/postgresql/pgx/v4/schema.sql type transactions (line 1) | CREATE TABLE transactions ( FILE: internal/endtoend/testdata/table_function/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/table_function/postgresql/pgx/v5/go/models.go type Transaction (line 7) | type Transaction struct FILE: internal/endtoend/testdata/table_function/postgresql/pgx/v5/go/query.sql.go constant getTransaction (line 12) | getTransaction = `-- name: GetTransaction :many type GetTransactionParams (line 26) | type GetTransactionParams struct type GetTransactionRow (line 31) | type GetTransactionRow struct method GetTransaction (line 36) | func (q *Queries) GetTransaction(ctx context.Context, arg GetTransaction... FILE: internal/endtoend/testdata/table_function/postgresql/pgx/v5/schema.sql type transactions (line 1) | CREATE TABLE transactions ( FILE: internal/endtoend/testdata/table_function/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/table_function/postgresql/stdlib/go/models.go type Transaction (line 11) | type Transaction struct FILE: internal/endtoend/testdata/table_function/postgresql/stdlib/go/query.sql.go constant getTransaction (line 13) | getTransaction = `-- name: GetTransaction :many type GetTransactionParams (line 27) | type GetTransactionParams struct type GetTransactionRow (line 32) | type GetTransactionRow struct method GetTransaction (line 37) | func (q *Queries) GetTransaction(ctx context.Context, arg GetTransaction... FILE: internal/endtoend/testdata/table_function/postgresql/stdlib/schema.sql type transactions (line 1) | CREATE TABLE transactions ( FILE: internal/endtoend/testdata/table_function/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/table_function/sqlite/go/models.go type Transaction (line 7) | type Transaction struct FILE: internal/endtoend/testdata/table_function/sqlite/go/query.sql.go constant getTransaction (line 12) | getTransaction = `-- name: GetTransaction :many type GetTransactionParams (line 27) | type GetTransactionParams struct type GetTransactionRow (line 33) | type GetTransactionRow struct method GetTransaction (line 38) | func (q *Queries) GetTransaction(ctx context.Context, arg GetTransaction... FILE: internal/endtoend/testdata/table_function/sqlite/schema.sql type transactions (line 1) | CREATE TABLE transactions ( FILE: internal/endtoend/testdata/table_name_case_sensitivity/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/table_name_case_sensitivity/sqlite/go/models.go type Author (line 11) | type Author struct type Book (line 16) | type Book struct type User (line 21) | type User struct FILE: internal/endtoend/testdata/table_name_case_sensitivity/sqlite/go/query.sql.go constant deleteAuthor (line 13) | deleteAuthor = `-- name: DeleteAuthor :exec method DeleteAuthor (line 17) | func (q *Queries) DeleteAuthor(ctx context.Context, id int64) error { constant deleteBook (line 22) | deleteBook = `-- name: DeleteBook :exec method DeleteBook (line 26) | func (q *Queries) DeleteBook(ctx context.Context, id int64) error { constant deleteUser (line 31) | deleteUser = `-- name: DeleteUser :exec method DeleteUser (line 35) | func (q *Queries) DeleteUser(ctx context.Context, id int64) error { constant deleteUserMixedCase (line 40) | deleteUserMixedCase = `-- name: DeleteUserMixedCase :exec method DeleteUserMixedCase (line 44) | func (q *Queries) DeleteUserMixedCase(ctx context.Context, id int64) err... constant getAuthor (line 49) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 53) | func (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, erro... constant getBook (line 60) | getBook = `-- name: GetBook :one method GetBook (line 64) | func (q *Queries) GetBook(ctx context.Context, id int64) (Book, error) { constant getUser (line 71) | getUser = `-- name: GetUser :one method GetUser (line 75) | func (q *Queries) GetUser(ctx context.Context, id int64) (User, error) { constant getUserMixedCase (line 82) | getUserMixedCase = `-- name: GetUserMixedCase :one method GetUserMixedCase (line 86) | func (q *Queries) GetUserMixedCase(ctx context.Context, id int64) (User,... constant insertAuthor (line 93) | insertAuthor = `-- name: InsertAuthor :exec method InsertAuthor (line 97) | func (q *Queries) InsertAuthor(ctx context.Context, name sql.NullString)... constant insertBook (line 102) | insertBook = `-- name: InsertBook :exec method InsertBook (line 106) | func (q *Queries) InsertBook(ctx context.Context, title sql.NullString) ... constant insertUser (line 111) | insertUser = `-- name: InsertUser :exec method InsertUser (line 115) | func (q *Queries) InsertUser(ctx context.Context, name sql.NullString) e... constant insertUserMixedCase (line 120) | insertUserMixedCase = `-- name: InsertUserMixedCase :exec method InsertUserMixedCase (line 124) | func (q *Queries) InsertUserMixedCase(ctx context.Context, name sql.Null... constant updateAuthor (line 129) | updateAuthor = `-- name: UpdateAuthor :exec type UpdateAuthorParams (line 133) | type UpdateAuthorParams struct method UpdateAuthor (line 138) | func (q *Queries) UpdateAuthor(ctx context.Context, arg UpdateAuthorPara... constant updateBook (line 143) | updateBook = `-- name: UpdateBook :exec type UpdateBookParams (line 147) | type UpdateBookParams struct method UpdateBook (line 152) | func (q *Queries) UpdateBook(ctx context.Context, arg UpdateBookParams) ... constant updateUser (line 157) | updateUser = `-- name: UpdateUser :exec type UpdateUserParams (line 161) | type UpdateUserParams struct method UpdateUser (line 166) | func (q *Queries) UpdateUser(ctx context.Context, arg UpdateUserParams) ... constant updateUserMixedCase (line 171) | updateUserMixedCase = `-- name: UpdateUserMixedCase :exec type UpdateUserMixedCaseParams (line 175) | type UpdateUserMixedCaseParams struct method UpdateUserMixedCase (line 180) | func (q *Queries) UpdateUserMixedCase(ctx context.Context, arg UpdateUse... FILE: internal/endtoend/testdata/table_name_case_sensitivity/sqlite/schema.sql type users (line 3) | CREATE TABLE users (id integer primary key, name text) type "Authors" (line 4) | CREATE TABLE "Authors" (id integer primary key, name text) type Books (line 5) | CREATE TABLE Books (id integer primary key, title text) type temp_orders (line 8) | CREATE TABLE temp_orders (id integer primary key) type "temp_products" (line 12) | CREATE TABLE "temp_products" (id integer primary key) FILE: internal/endtoend/testdata/truncate/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/truncate/mysql/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/truncate/mysql/go/query.sql.go constant truncate (line 12) | truncate = `-- name: Truncate :exec method Truncate (line 16) | func (q *Queries) Truncate(ctx context.Context) error { FILE: internal/endtoend/testdata/truncate/mysql/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/truncate/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/truncate/postgresql/pgx/v4/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/truncate/postgresql/pgx/v4/go/query.sql.go constant truncate (line 12) | truncate = `-- name: Truncate :exec method Truncate (line 16) | func (q *Queries) Truncate(ctx context.Context) error { FILE: internal/endtoend/testdata/truncate/postgresql/pgx/v4/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/truncate/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/truncate/postgresql/pgx/v5/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/truncate/postgresql/pgx/v5/go/query.sql.go constant truncate (line 12) | truncate = `-- name: Truncate :exec method Truncate (line 16) | func (q *Queries) Truncate(ctx context.Context) error { FILE: internal/endtoend/testdata/truncate/postgresql/pgx/v5/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/truncate/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/truncate/postgresql/stdlib/go/models.go type Bar (line 7) | type Bar struct FILE: internal/endtoend/testdata/truncate/postgresql/stdlib/go/query.sql.go constant truncate (line 12) | truncate = `-- name: Truncate :exec method Truncate (line 16) | func (q *Queries) Truncate(ctx context.Context) error { FILE: internal/endtoend/testdata/truncate/postgresql/stdlib/schema.sql type bar (line 1) | CREATE TABLE bar (id serial not null) FILE: internal/endtoend/testdata/types_uuid/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/types_uuid/postgresql/stdlib/go/models.go type Foo (line 13) | type Foo struct FILE: internal/endtoend/testdata/types_uuid/postgresql/stdlib/go/query.sql.go constant find (line 14) | find = `-- name: Find :one method Find (line 18) | func (q *Queries) Find(ctx context.Context, baz uuid.UUID) (uuid.NullUUI... constant list (line 25) | list = `-- name: List :many method List (line 29) | func (q *Queries) List(ctx context.Context) ([]Foo, error) { FILE: internal/endtoend/testdata/types_uuid/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/testdata/unknown_func/pganalyze/schema.sql type foo (line 1) | CREATE TABLE foo (id text not null) FILE: internal/endtoend/testdata/unknown_func/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/unknown_func/pgx/v4/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/unknown_func/pgx/v4/go/query.sql.go constant listFoos (line 12) | listFoos = `-- name: ListFoos :one method ListFoos (line 16) | func (q *Queries) ListFoos(ctx context.Context, frobnicate interface{}) ... FILE: internal/endtoend/testdata/unknown_func/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (id text not null) FILE: internal/endtoend/testdata/unknown_func/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/unknown_func/pgx/v5/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/unknown_func/pgx/v5/go/query.sql.go constant listFoos (line 12) | listFoos = `-- name: ListFoos :one method ListFoos (line 16) | func (q *Queries) ListFoos(ctx context.Context, frobnicate interface{}) ... FILE: internal/endtoend/testdata/unknown_func/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (id text not null) FILE: internal/endtoend/testdata/unknown_func/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/unknown_func/stdlib/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/unknown_func/stdlib/go/query.sql.go constant listFoos (line 12) | listFoos = `-- name: ListFoos :one method ListFoos (line 16) | func (q *Queries) ListFoos(ctx context.Context, frobnicate interface{}) ... FILE: internal/endtoend/testdata/unknown_func/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (id text not null) FILE: internal/endtoend/testdata/unnest/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/unnest/postgresql/pgx/v4/go/models.go type Memory (line 14) | type Memory struct type Vampire (line 21) | type Vampire struct FILE: internal/endtoend/testdata/unnest/postgresql/pgx/v4/go/querier.go type Querier (line 13) | type Querier interface FILE: internal/endtoend/testdata/unnest/postgresql/pgx/v4/go/query.sql.go constant createMemories (line 14) | createMemories = `-- name: CreateMemories :many method CreateMemories (line 22) | func (q *Queries) CreateMemories(ctx context.Context, vampireID []uuid.U... constant getVampireIDs (line 47) | getVampireIDs = `-- name: GetVampireIDs :many method GetVampireIDs (line 51) | func (q *Queries) GetVampireIDs(ctx context.Context, vampireID []uuid.UU... FILE: internal/endtoend/testdata/unnest/postgresql/pgx/v4/schema.sql type vampires (line 1) | CREATE TABLE vampires ( type memories (line 5) | CREATE TABLE memories ( FILE: internal/endtoend/testdata/unnest/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/unnest/postgresql/pgx/v5/go/models.go type Memory (line 11) | type Memory struct type Vampire (line 18) | type Vampire struct FILE: internal/endtoend/testdata/unnest/postgresql/pgx/v5/go/querier.go type Querier (line 13) | type Querier interface FILE: internal/endtoend/testdata/unnest/postgresql/pgx/v5/go/query.sql.go constant createMemories (line 14) | createMemories = `-- name: CreateMemories :many method CreateMemories (line 22) | func (q *Queries) CreateMemories(ctx context.Context, vampireID []pgtype... constant getVampireIDs (line 47) | getVampireIDs = `-- name: GetVampireIDs :many method GetVampireIDs (line 51) | func (q *Queries) GetVampireIDs(ctx context.Context, vampireID []pgtype.... FILE: internal/endtoend/testdata/unnest/postgresql/pgx/v5/schema.sql type vampires (line 1) | CREATE TABLE vampires ( type memories (line 5) | CREATE TABLE memories ( FILE: internal/endtoend/testdata/unnest/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/unnest/postgresql/stdlib/go/models.go type Memory (line 14) | type Memory struct type Vampire (line 21) | type Vampire struct FILE: internal/endtoend/testdata/unnest/postgresql/stdlib/go/querier.go type Querier (line 13) | type Querier interface FILE: internal/endtoend/testdata/unnest/postgresql/stdlib/go/query.sql.go constant createMemories (line 15) | createMemories = `-- name: CreateMemories :many method CreateMemories (line 23) | func (q *Queries) CreateMemories(ctx context.Context, vampireID []uuid.U... constant getVampireIDs (line 51) | getVampireIDs = `-- name: GetVampireIDs :many method GetVampireIDs (line 55) | func (q *Queries) GetVampireIDs(ctx context.Context, vampireID []uuid.UU... FILE: internal/endtoend/testdata/unnest/postgresql/stdlib/schema.sql type vampires (line 1) | CREATE TABLE vampires ( type memories (line 5) | CREATE TABLE memories ( FILE: internal/endtoend/testdata/unnest_star/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/unnest_star/postgresql/pgx/go/models.go type Item (line 7) | type Item struct type Plan (line 11) | type Plan struct type PlanItem (line 15) | type PlanItem struct FILE: internal/endtoend/testdata/unnest_star/postgresql/pgx/go/query.sql.go constant getPlanItems (line 14) | getPlanItems = `-- name: GetPlanItems :many type GetPlanItemsParams (line 28) | type GetPlanItemsParams struct type GetPlanItemsRow (line 34) | type GetPlanItemsRow struct method GetPlanItems (line 39) | func (q *Queries) GetPlanItems(ctx context.Context, arg GetPlanItemsPara... FILE: internal/endtoend/testdata/unnest_star/postgresql/pgx/schema.sql type plans (line 1) | create table plans ( type items (line 5) | create table items ( type plan_items (line 9) | create table plan_items ( FILE: internal/endtoend/testdata/unnest_with_ordinality/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/unnest_with_ordinality/postgresql/pgx/v4/go/models.go type ArrayValue (line 7) | type ArrayValue struct FILE: internal/endtoend/testdata/unnest_with_ordinality/postgresql/pgx/v4/go/querier.go type Querier (line 11) | type Querier interface FILE: internal/endtoend/testdata/unnest_with_ordinality/postgresql/pgx/v4/go/query.sql.go constant getValues (line 12) | getValues = `-- name: GetValues :many type GetValuesRow (line 17) | type GetValuesRow struct method GetValues (line 23) | func (q *Queries) GetValues(ctx context.Context) ([]GetValuesRow, error) { FILE: internal/endtoend/testdata/unnest_with_ordinality/postgresql/pgx/v4/schema.sql type array_values (line 1) | CREATE TABLE array_values ( FILE: internal/endtoend/testdata/unnest_with_ordinality/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/unnest_with_ordinality/postgresql/pgx/v5/go/models.go type ArrayValue (line 7) | type ArrayValue struct FILE: internal/endtoend/testdata/unnest_with_ordinality/postgresql/pgx/v5/go/querier.go type Querier (line 11) | type Querier interface FILE: internal/endtoend/testdata/unnest_with_ordinality/postgresql/pgx/v5/go/query.sql.go constant getValues (line 12) | getValues = `-- name: GetValues :many type GetValuesRow (line 17) | type GetValuesRow struct method GetValues (line 23) | func (q *Queries) GetValues(ctx context.Context) ([]GetValuesRow, error) { FILE: internal/endtoend/testdata/unnest_with_ordinality/postgresql/pgx/v5/schema.sql type array_values (line 1) | CREATE TABLE array_values ( FILE: internal/endtoend/testdata/unnest_with_ordinality/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/unnest_with_ordinality/postgresql/stdlib/go/models.go type ArrayValue (line 7) | type ArrayValue struct FILE: internal/endtoend/testdata/unnest_with_ordinality/postgresql/stdlib/go/querier.go type Querier (line 11) | type Querier interface FILE: internal/endtoend/testdata/unnest_with_ordinality/postgresql/stdlib/go/query.sql.go constant getValues (line 12) | getValues = `-- name: GetValues :many type GetValuesRow (line 17) | type GetValuesRow struct method GetValues (line 23) | func (q *Queries) GetValues(ctx context.Context) ([]GetValuesRow, error) { FILE: internal/endtoend/testdata/unnest_with_ordinality/postgresql/stdlib/schema.sql type array_values (line 1) | CREATE TABLE array_values ( FILE: internal/endtoend/testdata/unsigned_params/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/unsigned_params/mysql/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/unsigned_params/mysql/go/query.sql.go constant createFoo (line 12) | createFoo = `-- name: CreateFoo :exec method CreateFoo (line 16) | func (q *Queries) CreateFoo(ctx context.Context, id uint32) error { FILE: internal/endtoend/testdata/unsigned_params/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (id INT UNSIGNED NOT NULL) FILE: internal/endtoend/testdata/untyped_columns/sqlite/stdlib/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/untyped_columns/sqlite/stdlib/db/models.go type Repro (line 7) | type Repro struct FILE: internal/endtoend/testdata/untyped_columns/sqlite/stdlib/db/query.sql.go constant getRepro (line 12) | getRepro = `-- name: GetRepro :one method GetRepro (line 16) | func (q *Queries) GetRepro(ctx context.Context, id interface{}) (Repro, ... FILE: internal/endtoend/testdata/untyped_columns/sqlite/stdlib/schema.sql type repro (line 2) | create table repro(id, name, seq) FILE: internal/endtoend/testdata/update_array_index/postgresql/pgx/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/update_array_index/postgresql/pgx/go/models.go type Author (line 7) | type Author struct FILE: internal/endtoend/testdata/update_array_index/postgresql/pgx/go/query.sql.go constant updateAuthor (line 12) | updateAuthor = `-- name: UpdateAuthor :one type UpdateAuthorParams (line 19) | type UpdateAuthorParams struct method UpdateAuthor (line 25) | func (q *Queries) UpdateAuthor(ctx context.Context, arg UpdateAuthorPara... FILE: internal/endtoend/testdata/update_array_index/postgresql/pgx/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/update_cte/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/update_cte/pgx/v4/go/models.go type Td3Code (line 12) | type Td3Code struct type Td3TestCode (line 23) | type Td3TestCode struct FILE: internal/endtoend/testdata/update_cte/pgx/v4/go/query.sql.go constant updateCode (line 14) | updateCode = `-- name: UpdateCode :one type UpdateCodeParams (line 35) | type UpdateCodeParams struct type UpdateCodeRow (line 42) | type UpdateCodeRow struct method UpdateCode (line 53) | func (q *Queries) UpdateCode(ctx context.Context, arg UpdateCodeParams) ... FILE: internal/endtoend/testdata/update_cte/pgx/v4/schema.sql type td3 (line 6) | CREATE TABLE td3.codes ( type td3 (line 19) | CREATE TABLE td3.test_codes ( FILE: internal/endtoend/testdata/update_cte/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/update_cte/pgx/v5/go/models.go type Td3Code (line 11) | type Td3Code struct type Td3TestCode (line 22) | type Td3TestCode struct FILE: internal/endtoend/testdata/update_cte/pgx/v5/go/query.sql.go constant updateCode (line 14) | updateCode = `-- name: UpdateCode :one type UpdateCodeParams (line 35) | type UpdateCodeParams struct type UpdateCodeRow (line 42) | type UpdateCodeRow struct method UpdateCode (line 53) | func (q *Queries) UpdateCode(ctx context.Context, arg UpdateCodeParams) ... FILE: internal/endtoend/testdata/update_cte/pgx/v5/schema.sql type td3 (line 6) | CREATE TABLE td3.codes ( type td3 (line 19) | CREATE TABLE td3.test_codes ( FILE: internal/endtoend/testdata/update_cte/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/update_cte/stdlib/go/models.go type Td3Code (line 12) | type Td3Code struct type Td3TestCode (line 23) | type Td3TestCode struct FILE: internal/endtoend/testdata/update_cte/stdlib/go/query.sql.go constant updateCode (line 14) | updateCode = `-- name: UpdateCode :one type UpdateCodeParams (line 35) | type UpdateCodeParams struct type UpdateCodeRow (line 42) | type UpdateCodeRow struct method UpdateCode (line 53) | func (q *Queries) UpdateCode(ctx context.Context, arg UpdateCodeParams) ... FILE: internal/endtoend/testdata/update_cte/stdlib/schema.sql type td3 (line 6) | CREATE TABLE td3.codes ( type td3 (line 19) | CREATE TABLE td3.test_codes ( FILE: internal/endtoend/testdata/update_inner_join/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/update_inner_join/db/models.go type X (line 11) | type X struct type Y (line 16) | type Y struct FILE: internal/endtoend/testdata/update_inner_join/db/query.sql.go constant updateXWithY (line 12) | updateXWithY = `-- name: UpdateXWithY :exec method UpdateXWithY (line 16) | func (q *Queries) UpdateXWithY(ctx context.Context) error { FILE: internal/endtoend/testdata/update_inner_join/schema.sql type x (line 1) | CREATE TABLE x ( type y (line 6) | CREATE TABLE y ( FILE: internal/endtoend/testdata/update_join/mysql/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/update_join/mysql/db/models.go type JoinTable (line 7) | type JoinTable struct type PrimaryTable (line 14) | type PrimaryTable struct FILE: internal/endtoend/testdata/update_join/mysql/db/query.sql.go constant updateJoin (line 12) | updateJoin = `-- name: UpdateJoin :exec type UpdateJoinParams (line 21) | type UpdateJoinParams struct method UpdateJoin (line 27) | func (q *Queries) UpdateJoin(ctx context.Context, arg UpdateJoinParams) ... constant updateLeftJoin (line 32) | updateLeftJoin = `-- name: UpdateLeftJoin :exec type UpdateLeftJoinParams (line 41) | type UpdateLeftJoinParams struct method UpdateLeftJoin (line 47) | func (q *Queries) UpdateLeftJoin(ctx context.Context, arg UpdateLeftJoin... constant updateRightJoin (line 52) | updateRightJoin = `-- name: UpdateRightJoin :exec type UpdateRightJoinParams (line 61) | type UpdateRightJoinParams struct method UpdateRightJoin (line 67) | func (q *Queries) UpdateRightJoin(ctx context.Context, arg UpdateRightJo... FILE: internal/endtoend/testdata/update_join/mysql/schema.sql type primary_table (line 1) | CREATE TABLE primary_table ( type join_table (line 7) | CREATE TABLE join_table ( FILE: internal/endtoend/testdata/update_join/postgresql/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/update_join/postgresql/db/models.go type JoinTable (line 7) | type JoinTable struct type PrimaryTable (line 14) | type PrimaryTable struct FILE: internal/endtoend/testdata/update_join/postgresql/db/query.sql.go constant updateJoin (line 12) | updateJoin = `-- name: UpdateJoin :exec type UpdateJoinParams (line 21) | type UpdateJoinParams struct method UpdateJoin (line 27) | func (q *Queries) UpdateJoin(ctx context.Context, arg UpdateJoinParams) ... FILE: internal/endtoend/testdata/update_join/postgresql/schema.sql type primary_table (line 1) | CREATE TABLE primary_table ( type join_table (line 6) | CREATE TABLE join_table ( FILE: internal/endtoend/testdata/update_set/myql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/update_set/myql/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/update_set/myql/go/query.sql.go constant updateSet (line 12) | updateSet = `-- name: UpdateSet :exec type UpdateSetParams (line 16) | type UpdateSetParams struct method UpdateSet (line 21) | func (q *Queries) UpdateSet(ctx context.Context, arg UpdateSetParams) er... FILE: internal/endtoend/testdata/update_set/myql/schema.sql type foo (line 1) | CREATE TABLE foo (name text not null, slug text not null) FILE: internal/endtoend/testdata/update_set/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/update_set/postgresql/pgx/v4/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/update_set/postgresql/pgx/v4/go/query.sql.go constant updateSet (line 12) | updateSet = `-- name: UpdateSet :exec type UpdateSetParams (line 16) | type UpdateSetParams struct method UpdateSet (line 21) | func (q *Queries) UpdateSet(ctx context.Context, arg UpdateSetParams) er... FILE: internal/endtoend/testdata/update_set/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (name text not null, slug text not null) FILE: internal/endtoend/testdata/update_set/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/update_set/postgresql/pgx/v5/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/update_set/postgresql/pgx/v5/go/query.sql.go constant updateSet (line 12) | updateSet = `-- name: UpdateSet :exec type UpdateSetParams (line 16) | type UpdateSetParams struct method UpdateSet (line 21) | func (q *Queries) UpdateSet(ctx context.Context, arg UpdateSetParams) er... FILE: internal/endtoend/testdata/update_set/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (name text not null, slug text not null) FILE: internal/endtoend/testdata/update_set/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/update_set/postgresql/stdlib/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/update_set/postgresql/stdlib/go/query.sql.go constant updateSet (line 12) | updateSet = `-- name: UpdateSet :exec type UpdateSetParams (line 16) | type UpdateSetParams struct method UpdateSet (line 21) | func (q *Queries) UpdateSet(ctx context.Context, arg UpdateSetParams) er... FILE: internal/endtoend/testdata/update_set/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (name text not null, slug text not null) FILE: internal/endtoend/testdata/update_set/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/update_set/sqlite/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/update_set/sqlite/go/query.sql.go constant updateSet (line 12) | updateSet = `-- name: UpdateSet :exec type UpdateSetParams (line 16) | type UpdateSetParams struct method UpdateSet (line 21) | func (q *Queries) UpdateSet(ctx context.Context, arg UpdateSetParams) er... FILE: internal/endtoend/testdata/update_set/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo (name text not null, slug text not null) FILE: internal/endtoend/testdata/update_set_multiple/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/update_set_multiple/mysql/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/update_set_multiple/mysql/go/query.sql.go constant updateSetMultiple (line 12) | updateSetMultiple = `-- name: UpdateSetMultiple :exec type UpdateSetMultipleParams (line 16) | type UpdateSetMultipleParams struct method UpdateSetMultiple (line 21) | func (q *Queries) UpdateSetMultiple(ctx context.Context, arg UpdateSetMu... FILE: internal/endtoend/testdata/update_set_multiple/mysql/schema.sql type foo (line 1) | CREATE TABLE foo (name text not null, slug text not null) FILE: internal/endtoend/testdata/update_set_multiple/postgresql/pgx/v4/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/update_set_multiple/postgresql/pgx/v4/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/update_set_multiple/postgresql/pgx/v4/go/query.sql.go constant updateSetMultiple (line 12) | updateSetMultiple = `-- name: UpdateSetMultiple :exec type UpdateSetMultipleParams (line 16) | type UpdateSetMultipleParams struct method UpdateSetMultiple (line 21) | func (q *Queries) UpdateSetMultiple(ctx context.Context, arg UpdateSetMu... FILE: internal/endtoend/testdata/update_set_multiple/postgresql/pgx/v4/schema.sql type foo (line 1) | CREATE TABLE foo (name text not null, slug text not null) FILE: internal/endtoend/testdata/update_set_multiple/postgresql/pgx/v5/go/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/update_set_multiple/postgresql/pgx/v5/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/update_set_multiple/postgresql/pgx/v5/go/query.sql.go constant updateSetMultiple (line 12) | updateSetMultiple = `-- name: UpdateSetMultiple :exec type UpdateSetMultipleParams (line 16) | type UpdateSetMultipleParams struct method UpdateSetMultiple (line 21) | func (q *Queries) UpdateSetMultiple(ctx context.Context, arg UpdateSetMu... FILE: internal/endtoend/testdata/update_set_multiple/postgresql/pgx/v5/schema.sql type foo (line 1) | CREATE TABLE foo (name text not null, slug text not null) FILE: internal/endtoend/testdata/update_set_multiple/postgresql/stdlib/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/update_set_multiple/postgresql/stdlib/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/update_set_multiple/postgresql/stdlib/go/query.sql.go constant updateSetMultiple (line 12) | updateSetMultiple = `-- name: UpdateSetMultiple :exec type UpdateSetMultipleParams (line 16) | type UpdateSetMultipleParams struct method UpdateSetMultiple (line 21) | func (q *Queries) UpdateSetMultiple(ctx context.Context, arg UpdateSetMu... FILE: internal/endtoend/testdata/update_set_multiple/postgresql/stdlib/schema.sql type foo (line 1) | CREATE TABLE foo (name text not null, slug text not null) FILE: internal/endtoend/testdata/update_set_multiple/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/update_set_multiple/sqlite/go/models.go type Foo (line 7) | type Foo struct FILE: internal/endtoend/testdata/update_set_multiple/sqlite/go/query.sql.go constant updateSetMultiple (line 12) | updateSetMultiple = `-- name: UpdateSetMultiple :exec type UpdateSetMultipleParams (line 16) | type UpdateSetMultipleParams struct method UpdateSetMultiple (line 21) | func (q *Queries) UpdateSetMultiple(ctx context.Context, arg UpdateSetMu... FILE: internal/endtoend/testdata/update_set_multiple/sqlite/schema.sql type foo (line 1) | CREATE TABLE foo (name text not null, slug text not null) FILE: internal/endtoend/testdata/update_set_on_conflict/postgresql/pgx/schema.sql type servers (line 1) | CREATE TABLE servers ( FILE: internal/endtoend/testdata/update_two_table/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/update_two_table/mysql/go/models.go type Author (line 11) | type Author struct type Book (line 18) | type Book struct FILE: internal/endtoend/testdata/update_two_table/mysql/go/query.sql.go constant deleteAuthor (line 12) | deleteAuthor = `-- name: DeleteAuthor :exec method DeleteAuthor (line 24) | func (q *Queries) DeleteAuthor(ctx context.Context, name string) error { FILE: internal/endtoend/testdata/update_two_table/mysql/schema.sql type authors (line 2) | CREATE TABLE authors ( type books (line 9) | CREATE TABLE books ( FILE: internal/endtoend/testdata/upsert/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/upsert/sqlite/go/models.go type Location (line 7) | type Location struct FILE: internal/endtoend/testdata/upsert/sqlite/go/query.sql.go constant upsertLocation (line 12) | upsertLocation = `-- name: UpsertLocation :exec type UpsertLocationParams (line 29) | type UpsertLocationParams struct method UpsertLocation (line 37) | func (q *Queries) UpsertLocation(ctx context.Context, arg UpsertLocation... FILE: internal/endtoend/testdata/upsert/sqlite/schema.sql type locations (line 3) | CREATE TABLE IF NOT EXISTS locations ( FILE: internal/endtoend/testdata/valid_group_by_reference/mysql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/valid_group_by_reference/mysql/go/models.go type Author (line 12) | type Author struct type WeatherMetric (line 18) | type WeatherMetric struct FILE: internal/endtoend/testdata/valid_group_by_reference/mysql/go/query.sql.go constant listAuthors (line 13) | listAuthors = `-- name: ListAuthors :many type ListAuthorsRow (line 19) | type ListAuthorsRow struct method ListAuthors (line 25) | func (q *Queries) ListAuthors(ctx context.Context) ([]ListAuthorsRow, er... constant listAuthorsIdenticalAlias (line 48) | listAuthorsIdenticalAlias = `-- name: ListAuthorsIdenticalAlias :many method ListAuthorsIdenticalAlias (line 54) | func (q *Queries) ListAuthorsIdenticalAlias(ctx context.Context) ([]Auth... constant listMetrics (line 77) | listMetrics = `-- name: ListMetrics :many type ListMetricsRow (line 85) | type ListMetricsRow struct method ListMetrics (line 91) | func (q *Queries) ListMetrics(ctx context.Context) ([]ListMetricsRow, er... FILE: internal/endtoend/testdata/valid_group_by_reference/mysql/schema.sql type authors (line 1) | CREATE TABLE authors ( type weather_metrics (line 7) | CREATE TABLE IF NOT EXISTS weather_metrics FILE: internal/endtoend/testdata/valid_group_by_reference/pganalyzer/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/valid_group_by_reference/pganalyzer/go/models.go type Author (line 12) | type Author struct type WeatherMetric (line 18) | type WeatherMetric struct FILE: internal/endtoend/testdata/valid_group_by_reference/pganalyzer/go/query.sql.go constant listAuthors (line 14) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 19) | func (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) { constant listAuthorsIdenticalAlias (line 42) | listAuthorsIdenticalAlias = `-- name: ListAuthorsIdenticalAlias :many method ListAuthorsIdenticalAlias (line 47) | func (q *Queries) ListAuthorsIdenticalAlias(ctx context.Context) ([]Auth... constant listMetrics (line 70) | listMetrics = `-- name: ListMetrics :many type ListMetricsRow (line 78) | type ListMetricsRow struct method ListMetrics (line 84) | func (q *Queries) ListMetrics(ctx context.Context) ([]ListMetricsRow, er... FILE: internal/endtoend/testdata/valid_group_by_reference/pganalyzer/schema.sql type authors (line 1) | CREATE TABLE authors ( type weather_metrics (line 7) | CREATE TABLE IF NOT EXISTS weather_metrics FILE: internal/endtoend/testdata/valid_group_by_reference/postgresql/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/valid_group_by_reference/postgresql/go/models.go type Author (line 12) | type Author struct type WeatherMetric (line 18) | type WeatherMetric struct FILE: internal/endtoend/testdata/valid_group_by_reference/postgresql/go/query.sql.go constant listAuthors (line 13) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 18) | func (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) { constant listAuthorsIdenticalAlias (line 41) | listAuthorsIdenticalAlias = `-- name: ListAuthorsIdenticalAlias :many method ListAuthorsIdenticalAlias (line 46) | func (q *Queries) ListAuthorsIdenticalAlias(ctx context.Context) ([]Auth... constant listMetrics (line 69) | listMetrics = `-- name: ListMetrics :many type ListMetricsRow (line 77) | type ListMetricsRow struct method ListMetrics (line 83) | func (q *Queries) ListMetrics(ctx context.Context) ([]ListMetricsRow, er... FILE: internal/endtoend/testdata/valid_group_by_reference/postgresql/schema.sql type authors (line 1) | CREATE TABLE authors ( type weather_metrics (line 7) | CREATE TABLE IF NOT EXISTS weather_metrics FILE: internal/endtoend/testdata/vet_explain/mysql/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/vet_explain/mysql/db/models.go type DebugCenum (line 14) | type DebugCenum method Scan (line 22) | func (e *DebugCenum) Scan(src interface{}) error { constant DebugCenumOne (line 17) | DebugCenumOne DebugCenum = "one" constant DebugCenumTwo (line 18) | DebugCenumTwo DebugCenum = "two" constant DebugCenumThree (line 19) | DebugCenumThree DebugCenum = "three" type NullDebugCenum (line 34) | type NullDebugCenum struct method Scan (line 40) | func (ns *NullDebugCenum) Scan(value interface{}) error { method Value (line 50) | func (ns NullDebugCenum) Value() (driver.Value, error) { type DebugCset (line 57) | type DebugCset method Scan (line 65) | func (e *DebugCset) Scan(src interface{}) error { constant DebugCsetOne (line 60) | DebugCsetOne DebugCset = "one" constant DebugCsetTwo (line 61) | DebugCsetTwo DebugCset = "two" constant DebugCsetThree (line 62) | DebugCsetThree DebugCset = "three" type NullDebugCset (line 77) | type NullDebugCset struct method Scan (line 83) | func (ns *NullDebugCset) Scan(value interface{}) error { method Value (line 93) | func (ns NullDebugCset) Value() (driver.Value, error) { type Debug (line 100) | type Debug struct FILE: internal/endtoend/testdata/vet_explain/mysql/db/query.sql.go constant selectByCbinary (line 14) | selectByCbinary = `-- name: SelectByCbinary :one method SelectByCbinary (line 19) | func (q *Queries) SelectByCbinary(ctx context.Context, cbinary []byte) (... constant selectByCbit (line 26) | selectByCbit = `-- name: SelectByCbit :one method SelectByCbit (line 31) | func (q *Queries) SelectByCbit(ctx context.Context, cbit interface{}) (i... constant selectByCblob (line 38) | selectByCblob = `-- name: SelectByCblob :one method SelectByCblob (line 43) | func (q *Queries) SelectByCblob(ctx context.Context, cblob []byte) (int6... constant selectByCbool (line 50) | selectByCbool = `-- name: SelectByCbool :one method SelectByCbool (line 55) | func (q *Queries) SelectByCbool(ctx context.Context, cbool bool) (int64,... constant selectByCchar (line 62) | selectByCchar = `-- name: SelectByCchar :one method SelectByCchar (line 67) | func (q *Queries) SelectByCchar(ctx context.Context, cchar string) (int6... constant selectByCdate (line 74) | selectByCdate = `-- name: SelectByCdate :one method SelectByCdate (line 79) | func (q *Queries) SelectByCdate(ctx context.Context, cdate time.Time) (i... constant selectByCdatetime (line 86) | selectByCdatetime = `-- name: SelectByCdatetime :one method SelectByCdatetime (line 91) | func (q *Queries) SelectByCdatetime(ctx context.Context, cdatetime time.... constant selectByCdec (line 98) | selectByCdec = `-- name: SelectByCdec :one method SelectByCdec (line 103) | func (q *Queries) SelectByCdec(ctx context.Context, cdec string) (int64,... constant selectByCdecimal (line 110) | selectByCdecimal = `-- name: SelectByCdecimal :one method SelectByCdecimal (line 115) | func (q *Queries) SelectByCdecimal(ctx context.Context, cdecimal string)... constant selectByCdouble (line 122) | selectByCdouble = `-- name: SelectByCdouble :one method SelectByCdouble (line 127) | func (q *Queries) SelectByCdouble(ctx context.Context, cdouble float64) ... constant selectByCdoubleprecision (line 134) | selectByCdoubleprecision = `-- name: SelectByCdoubleprecision :one method SelectByCdoubleprecision (line 139) | func (q *Queries) SelectByCdoubleprecision(ctx context.Context, cdoublep... constant selectByCenum (line 146) | selectByCenum = `-- name: SelectByCenum :one method SelectByCenum (line 151) | func (q *Queries) SelectByCenum(ctx context.Context, cenum NullDebugCenu... constant selectByCfixed (line 158) | selectByCfixed = `-- name: SelectByCfixed :one method SelectByCfixed (line 163) | func (q *Queries) SelectByCfixed(ctx context.Context, cfixed string) (in... constant selectByCfloat (line 170) | selectByCfloat = `-- name: SelectByCfloat :one method SelectByCfloat (line 175) | func (q *Queries) SelectByCfloat(ctx context.Context, cfloat float64) (i... constant selectByCint (line 182) | selectByCint = `-- name: SelectByCint :one method SelectByCint (line 187) | func (q *Queries) SelectByCint(ctx context.Context, cint int32) (int64, ... constant selectByCinteger (line 194) | selectByCinteger = `-- name: SelectByCinteger :one method SelectByCinteger (line 199) | func (q *Queries) SelectByCinteger(ctx context.Context, cinteger int32) ... constant selectByCjson (line 206) | selectByCjson = `-- name: SelectByCjson :one method SelectByCjson (line 211) | func (q *Queries) SelectByCjson(ctx context.Context, cjson json.RawMessa... constant selectByClongblob (line 218) | selectByClongblob = `-- name: SelectByClongblob :one method SelectByClongblob (line 223) | func (q *Queries) SelectByClongblob(ctx context.Context, clongblob []byt... constant selectByClongtext (line 230) | selectByClongtext = `-- name: SelectByClongtext :one method SelectByClongtext (line 235) | func (q *Queries) SelectByClongtext(ctx context.Context, clongtext strin... constant selectByCmediumblob (line 242) | selectByCmediumblob = `-- name: SelectByCmediumblob :one method SelectByCmediumblob (line 247) | func (q *Queries) SelectByCmediumblob(ctx context.Context, cmediumblob [... constant selectByCmediumint (line 254) | selectByCmediumint = `-- name: SelectByCmediumint :one method SelectByCmediumint (line 259) | func (q *Queries) SelectByCmediumint(ctx context.Context, cmediumint int... constant selectByCmediumtext (line 266) | selectByCmediumtext = `-- name: SelectByCmediumtext :one method SelectByCmediumtext (line 271) | func (q *Queries) SelectByCmediumtext(ctx context.Context, cmediumtext s... constant selectByCnumeric (line 278) | selectByCnumeric = `-- name: SelectByCnumeric :one method SelectByCnumeric (line 283) | func (q *Queries) SelectByCnumeric(ctx context.Context, cnumeric string)... constant selectByCreal (line 290) | selectByCreal = `-- name: SelectByCreal :one method SelectByCreal (line 295) | func (q *Queries) SelectByCreal(ctx context.Context, creal float64) (int... constant selectByCset (line 302) | selectByCset = `-- name: SelectByCset :one method SelectByCset (line 307) | func (q *Queries) SelectByCset(ctx context.Context, cset DebugCset) (int... constant selectByCsmallint (line 314) | selectByCsmallint = `-- name: SelectByCsmallint :one method SelectByCsmallint (line 319) | func (q *Queries) SelectByCsmallint(ctx context.Context, csmallint int16... constant selectByCtext (line 326) | selectByCtext = `-- name: SelectByCtext :one method SelectByCtext (line 331) | func (q *Queries) SelectByCtext(ctx context.Context, ctext string) (int6... constant selectByCtime (line 338) | selectByCtime = `-- name: SelectByCtime :one method SelectByCtime (line 343) | func (q *Queries) SelectByCtime(ctx context.Context, ctime time.Time) (i... constant selectByCtimestamp (line 350) | selectByCtimestamp = `-- name: SelectByCtimestamp :one method SelectByCtimestamp (line 355) | func (q *Queries) SelectByCtimestamp(ctx context.Context, ctimestamp tim... constant selectByCtinyblob (line 362) | selectByCtinyblob = `-- name: SelectByCtinyblob :one method SelectByCtinyblob (line 367) | func (q *Queries) SelectByCtinyblob(ctx context.Context, ctinyblob []byt... constant selectByCtinyint (line 374) | selectByCtinyint = `-- name: SelectByCtinyint :one method SelectByCtinyint (line 379) | func (q *Queries) SelectByCtinyint(ctx context.Context, ctinyint int8) (... constant selectByCtinytext (line 386) | selectByCtinytext = `-- name: SelectByCtinytext :one method SelectByCtinytext (line 391) | func (q *Queries) SelectByCtinytext(ctx context.Context, ctinytext strin... constant selectByCvarbinary (line 398) | selectByCvarbinary = `-- name: SelectByCvarbinary :one method SelectByCvarbinary (line 403) | func (q *Queries) SelectByCvarbinary(ctx context.Context, cvarbinary []b... constant selectByCvarchar (line 410) | selectByCvarchar = `-- name: SelectByCvarchar :one method SelectByCvarchar (line 415) | func (q *Queries) SelectByCvarchar(ctx context.Context, cvarchar string)... constant selectByCyear (line 422) | selectByCyear = `-- name: SelectByCyear :one method SelectByCyear (line 427) | func (q *Queries) SelectByCyear(ctx context.Context, cyear int16) (int64... constant selectById (line 434) | selectById = `-- name: SelectById :one method SelectById (line 439) | func (q *Queries) SelectById(ctx context.Context, id int64) (int64, erro... FILE: internal/endtoend/testdata/vet_explain/mysql/schema.sql type debug (line 1) | CREATE TABLE debug ( FILE: internal/endtoend/testdata/vet_failures/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/virtual_table/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/virtual_table/sqlite/go/models.go type Ft (line 11) | type Ft struct type Tbl (line 15) | type Tbl struct type TblFt (line 23) | type TblFt struct FILE: internal/endtoend/testdata/virtual_table/sqlite/go/query.sql.go constant deleteTblFt (line 12) | deleteTblFt = `-- name: DeleteTblFt :exec method DeleteTblFt (line 16) | func (q *Queries) DeleteTblFt(ctx context.Context, b string) error { constant insertTblFt (line 21) | insertTblFt = `-- name: InsertTblFt :exec type InsertTblFtParams (line 25) | type InsertTblFtParams struct method InsertTblFt (line 30) | func (q *Queries) InsertTblFt(ctx context.Context, arg InsertTblFtParams... constant selectAllColsFt (line 35) | selectAllColsFt = `-- name: SelectAllColsFt :many method SelectAllColsFt (line 40) | func (q *Queries) SelectAllColsFt(ctx context.Context, b string) ([]stri... constant selectAllColsTblFt (line 63) | selectAllColsTblFt = `-- name: SelectAllColsTblFt :many method SelectAllColsTblFt (line 68) | func (q *Queries) SelectAllColsTblFt(ctx context.Context, b string) ([]T... constant selectBm25Func (line 91) | selectBm25Func = `-- name: SelectBm25Func :many type SelectBm25FuncRow (line 96) | type SelectBm25FuncRow struct method SelectBm25Func (line 102) | func (q *Queries) SelectBm25Func(ctx context.Context, b string) ([]Selec... constant selectHightlighFunc (line 125) | selectHightlighFunc = `-- name: SelectHightlighFunc :many method SelectHightlighFunc (line 130) | func (q *Queries) SelectHightlighFunc(ctx context.Context, b string) ([]... constant selectOneColFt (line 153) | selectOneColFt = `-- name: SelectOneColFt :many method SelectOneColFt (line 158) | func (q *Queries) SelectOneColFt(ctx context.Context, b string) ([]strin... constant selectOneColTblFt (line 181) | selectOneColTblFt = `-- name: SelectOneColTblFt :many method SelectOneColTblFt (line 186) | func (q *Queries) SelectOneColTblFt(ctx context.Context, b string) ([]st... constant selectSnippetFunc (line 209) | selectSnippetFunc = `-- name: SelectSnippetFunc :many method SelectSnippetFunc (line 213) | func (q *Queries) SelectSnippetFunc(ctx context.Context, snippet int64) ... constant updateTblFt (line 236) | updateTblFt = `-- name: UpdateTblFt :exec type UpdateTblFtParams (line 240) | type UpdateTblFtParams struct method UpdateTblFt (line 245) | func (q *Queries) UpdateTblFt(ctx context.Context, arg UpdateTblFtParams... FILE: internal/endtoend/testdata/virtual_table/sqlite/schema.sql type tbl (line 1) | CREATE TABLE tbl(a INTEGER PRIMARY KEY, b TEXT, c TEXT, d TEXT, e INTEGER) FILE: internal/endtoend/testdata/wasm_plugin_sqlc_gen_greeter/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/wasm_plugin_sqlc_gen_test/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/wasm_plugin_sqlc_gen_unsafe_paths/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/where_collate/sqlite/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/where_collate/sqlite/go/models.go type Account (line 7) | type Account struct FILE: internal/endtoend/testdata/where_collate/sqlite/go/query.sql.go constant getAccountByName (line 12) | getAccountByName = `-- name: GetAccountByName :one method GetAccountByName (line 18) | func (q *Queries) GetAccountByName(ctx context.Context, name string) (Ac... FILE: internal/endtoend/testdata/where_collate/sqlite/schema.sql type accounts (line 1) | CREATE TABLE accounts ( FILE: internal/endtoend/testdata/wrap_errors/mysql/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/wrap_errors/mysql/db/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/wrap_errors/mysql/db/query.sql.go constant createAuthor (line 14) | createAuthor = `-- name: CreateAuthor :execlastid method CreateAuthor (line 22) | func (q *Queries) CreateAuthor(ctx context.Context) (int64, error) { constant deleteAuthorExec (line 30) | deleteAuthorExec = `-- name: DeleteAuthorExec :exec method DeleteAuthorExec (line 35) | func (q *Queries) DeleteAuthorExec(ctx context.Context) error { constant deleteAuthorExecLastID (line 43) | deleteAuthorExecLastID = `-- name: DeleteAuthorExecLastID :execlastid method DeleteAuthorExecLastID (line 48) | func (q *Queries) DeleteAuthorExecLastID(ctx context.Context) (int64, er... constant deleteAuthorExecResult (line 56) | deleteAuthorExecResult = `-- name: DeleteAuthorExecResult :execresult method DeleteAuthorExecResult (line 61) | func (q *Queries) DeleteAuthorExecResult(ctx context.Context) (sql.Resul... constant deleteAuthorExecRows (line 69) | deleteAuthorExecRows = `-- name: DeleteAuthorExecRows :execrows method DeleteAuthorExecRows (line 74) | func (q *Queries) DeleteAuthorExecRows(ctx context.Context) (int64, erro... constant getAuthor (line 82) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 87) | func (q *Queries) GetAuthor(ctx context.Context) (Author, error) { constant listAuthors (line 97) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 102) | func (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) { FILE: internal/endtoend/testdata/wrap_errors/mysql/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/wrap_errors/postgresql/pgx/db/db.go type DBTX (line 14) | type DBTX interface function New (line 20) | func New(db DBTX) *Queries { type Queries (line 24) | type Queries struct method WithTx (line 28) | func (q *Queries) WithTx(tx pgx.Tx) *Queries { FILE: internal/endtoend/testdata/wrap_errors/postgresql/pgx/db/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/wrap_errors/postgresql/pgx/db/query.sql.go constant createAuthor (line 16) | createAuthor = `-- name: CreateAuthor :one type CreateAuthorParams (line 25) | type CreateAuthorParams struct method CreateAuthor (line 30) | func (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorPara... constant deleteAuthorExec (line 40) | deleteAuthorExec = `-- name: DeleteAuthorExec :exec method DeleteAuthorExec (line 45) | func (q *Queries) DeleteAuthorExec(ctx context.Context, id int64) error { constant deleteAuthorExecLastID (line 53) | deleteAuthorExecLastID = `-- name: DeleteAuthorExecLastID :execlastid constant deleteAuthorExecResult (line 58) | deleteAuthorExecResult = `-- name: DeleteAuthorExecResult :execresult method DeleteAuthorExecResult (line 63) | func (q *Queries) DeleteAuthorExecResult(ctx context.Context, id int64) ... constant deleteAuthorExecRows (line 71) | deleteAuthorExecRows = `-- name: DeleteAuthorExecRows :execrows method DeleteAuthorExecRows (line 76) | func (q *Queries) DeleteAuthorExecRows(ctx context.Context, id int64) (i... constant getAuthor (line 84) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 89) | func (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, erro... constant listAuthors (line 99) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 104) | func (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) { FILE: internal/endtoend/testdata/wrap_errors/postgresql/pgx/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/wrap_errors/postgresql/stdlib/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/wrap_errors/postgresql/stdlib/db/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/wrap_errors/postgresql/stdlib/db/query.sql.go constant createAuthor (line 14) | createAuthor = `-- name: CreateAuthor :one type CreateAuthorParams (line 23) | type CreateAuthorParams struct method CreateAuthor (line 28) | func (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorPara... constant deleteAuthorExec (line 38) | deleteAuthorExec = `-- name: DeleteAuthorExec :exec method DeleteAuthorExec (line 43) | func (q *Queries) DeleteAuthorExec(ctx context.Context, id int64) error { constant deleteAuthorExecLastID (line 51) | deleteAuthorExecLastID = `-- name: DeleteAuthorExecLastID :execlastid method DeleteAuthorExecLastID (line 56) | func (q *Queries) DeleteAuthorExecLastID(ctx context.Context, id int64) ... constant deleteAuthorExecResult (line 64) | deleteAuthorExecResult = `-- name: DeleteAuthorExecResult :execresult method DeleteAuthorExecResult (line 69) | func (q *Queries) DeleteAuthorExecResult(ctx context.Context, id int64) ... constant deleteAuthorExecRows (line 77) | deleteAuthorExecRows = `-- name: DeleteAuthorExecRows :execrows method DeleteAuthorExecRows (line 82) | func (q *Queries) DeleteAuthorExecRows(ctx context.Context, id int64) (i... constant getAuthor (line 90) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 95) | func (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, erro... constant listAuthors (line 105) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 110) | func (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) { FILE: internal/endtoend/testdata/wrap_errors/postgresql/stdlib/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/wrap_errors/sqlite/db/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/wrap_errors/sqlite/db/models.go type Author (line 11) | type Author struct FILE: internal/endtoend/testdata/wrap_errors/sqlite/db/query.sql.go constant createAuthor (line 14) | createAuthor = `-- name: CreateAuthor :execlastid type CreateAuthorParams (line 22) | type CreateAuthorParams struct method CreateAuthor (line 27) | func (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorPara... constant deleteAuthorExec (line 35) | deleteAuthorExec = `-- name: DeleteAuthorExec :exec method DeleteAuthorExec (line 40) | func (q *Queries) DeleteAuthorExec(ctx context.Context, id int64) error { constant deleteAuthorExecLastID (line 48) | deleteAuthorExecLastID = `-- name: DeleteAuthorExecLastID :execlastid method DeleteAuthorExecLastID (line 53) | func (q *Queries) DeleteAuthorExecLastID(ctx context.Context, id int64) ... constant deleteAuthorExecResult (line 61) | deleteAuthorExecResult = `-- name: DeleteAuthorExecResult :execresult method DeleteAuthorExecResult (line 66) | func (q *Queries) DeleteAuthorExecResult(ctx context.Context, id int64) ... constant deleteAuthorExecRows (line 74) | deleteAuthorExecRows = `-- name: DeleteAuthorExecRows :execrows method DeleteAuthorExecRows (line 79) | func (q *Queries) DeleteAuthorExecRows(ctx context.Context, id int64) (i... constant getAuthor (line 87) | getAuthor = `-- name: GetAuthor :one method GetAuthor (line 92) | func (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, erro... constant listAuthors (line 102) | listAuthors = `-- name: ListAuthors :many method ListAuthors (line 107) | func (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) { FILE: internal/endtoend/testdata/wrap_errors/sqlite/schema.sql type authors (line 1) | CREATE TABLE authors ( FILE: internal/endtoend/testdata/yaml_overrides/go/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: internal/endtoend/testdata/yaml_overrides/go/models.go type Foo (line 12) | type Foo struct FILE: internal/endtoend/testdata/yaml_overrides/go/query.sql.go constant test (line 12) | test = `-- name: Test :one method Test (line 16) | func (q *Queries) Test(ctx context.Context) (int32, error) { FILE: internal/endtoend/testdata/yaml_overrides/sql/schema.sql type foo (line 1) | CREATE TABLE foo ( FILE: internal/endtoend/vet_test.go function findSchema (line 19) | func findSchema(t *testing.T, path string) (string, bool) { function TestExamplesVet (line 31) | func TestExamplesVet(t *testing.T) { FILE: internal/engine/clickhouse/catalog.go function NewCatalog (line 7) | func NewCatalog() *catalog.Catalog { FILE: internal/engine/clickhouse/convert.go type cc (line 12) | type cc struct method convert (line 16) | func (c *cc) convert(node chast.Node) ast.Node { method convertSelectWithUnionQuery (line 41) | func (c *cc) convertSelectWithUnionQuery(n *chast.SelectWithUnionQuery... method convertSelectQuery (line 81) | func (c *cc) convertSelectQuery(n *chast.SelectQuery) *ast.SelectStmt { method convertToResTarget (line 174) | func (c *cc) convertToResTarget(expr chast.Expression) *ast.ResTarget { method convertTablesInSelectQuery (line 219) | func (c *cc) convertTablesInSelectQuery(n *chast.TablesInSelectQuery) ... method convertTableExpression (line 247) | func (c *cc) convertTableExpression(n *chast.TableExpression) ast.Node { method convertTableJoin (line 289) | func (c *cc) convertTableJoin(n *chast.TableJoin, left, right ast.Node... method convertExpr (line 330) | func (c *cc) convertExpr(expr chast.Expression) ast.Node { method convertIdentifier (line 376) | func (c *cc) convertIdentifier(n *chast.Identifier) *ast.ColumnRef { method convertLiteral (line 387) | func (c *cc) convertLiteral(n *chast.Literal) *ast.A_Const { method convertBinaryExpr (line 449) | func (c *cc) convertBinaryExpr(n *chast.BinaryExpr) ast.Node { method convertFunctionCall (line 483) | func (c *cc) convertFunctionCall(n *chast.FunctionCall) *ast.FuncCall { method convertParameter (line 520) | func (c *cc) convertParameter(n *chast.Parameter) ast.Node { method convertAsterisk (line 533) | func (c *cc) convertAsterisk(n *chast.Asterisk) *ast.ColumnRef { method convertCaseExpr (line 545) | func (c *cc) convertCaseExpr(n *chast.CaseExpr) *ast.CaseExpr { method convertCastExpr (line 575) | func (c *cc) convertCastExpr(n *chast.CastExpr) *ast.TypeCast { method convertBetweenExpr (line 590) | func (c *cc) convertBetweenExpr(n *chast.BetweenExpr) *ast.BetweenExpr { method convertInExpr (line 600) | func (c *cc) convertInExpr(n *chast.InExpr) *ast.In { method convertIsNullExpr (line 623) | func (c *cc) convertIsNullExpr(n *chast.IsNullExpr) *ast.NullTest { method convertLikeExpr (line 636) | func (c *cc) convertLikeExpr(n *chast.LikeExpr) *ast.A_Expr { method convertSubquery (line 660) | func (c *cc) convertSubquery(n *chast.Subquery) *ast.SubLink { method convertArrayAccess (line 667) | func (c *cc) convertArrayAccess(n *chast.ArrayAccess) *ast.A_Indirecti... method convertUnaryExpr (line 680) | func (c *cc) convertUnaryExpr(n *chast.UnaryExpr) ast.Node { method convertOrderByElement (line 702) | func (c *cc) convertOrderByElement(n *chast.OrderByElement) *ast.SortBy { method convertInsertQuery (line 725) | func (c *cc) convertInsertQuery(n *chast.InsertQuery) *ast.InsertStmt { method convertCreateQuery (line 770) | func (c *cc) convertCreateQuery(n *chast.CreateQuery) ast.Node { method convertColumnDeclaration (line 821) | func (c *cc) convertColumnDeclaration(n *chast.ColumnDeclaration) *ast... method convertUpdateQuery (line 858) | func (c *cc) convertUpdateQuery(n *chast.UpdateQuery) *ast.UpdateStmt { method convertDeleteQuery (line 891) | func (c *cc) convertDeleteQuery(n *chast.DeleteQuery) *ast.DeleteStmt { method convertDropQuery (line 912) | func (c *cc) convertDropQuery(n *chast.DropQuery) ast.Node { method convertAlterQuery (line 944) | func (c *cc) convertAlterQuery(n *chast.AlterQuery) ast.Node { method convertTruncateQuery (line 1002) | func (c *cc) convertTruncateQuery(n *chast.TruncateQuery) *ast.Truncat... FILE: internal/engine/clickhouse/format.go method QuoteIdent (line 5) | func (p *Parser) QuoteIdent(s string) string { method TypeName (line 11) | func (p *Parser) TypeName(ns, name string) string { method Param (line 21) | func (p *Parser) Param(n int) string { method NamedParam (line 27) | func (p *Parser) NamedParam(name string) string { method Cast (line 33) | func (p *Parser) Cast(arg, typeName string) string { FILE: internal/engine/clickhouse/parse.go function NewParser (line 14) | func NewParser() *Parser { type Parser (line 18) | type Parser struct method Parse (line 20) | func (p *Parser) Parse(r io.Reader) ([]ast.Statement, error) { method CommentSyntax (line 58) | func (p *Parser) CommentSyntax() source.CommentSyntax { FILE: internal/engine/clickhouse/reserved.go method IsReservedKeyword (line 6) | func (p *Parser) IsReservedKeyword(s string) bool { FILE: internal/engine/clickhouse/stdlib.go function defaultSchema (line 7) | func defaultSchema(name string) *catalog.Schema { FILE: internal/engine/clickhouse/utils.go function todo (line 13) | func todo(n chast.Node) *ast.TODO { function identifier (line 20) | func identifier(id string) string { function NewIdentifier (line 24) | func NewIdentifier(t string) *ast.String { function parseTableName (line 28) | func parseTableName(n *chast.TableIdentifier) *ast.TableName { function parseTableIdentifierToRangeVar (line 35) | func parseTableIdentifierToRangeVar(n *chast.TableIdentifier) *ast.Range... function isNotNull (line 44) | func isNotNull(n *chast.ColumnDeclaration) bool { FILE: internal/engine/dolphin/catalog.go function NewCatalog (line 7) | func NewCatalog() *catalog.Catalog { FILE: internal/engine/dolphin/convert.go type cc (line 18) | type cc struct method convertAlterTableStmt (line 37) | func (c *cc) convertAlterTableStmt(n *pcast.AlterTableStmt) ast.Node { method convertAssignment (line 125) | func (c *cc) convertAssignment(n *pcast.Assignment) *ast.ResTarget { method convertBinaryOperationExpr (line 189) | func (c *cc) convertBinaryOperationExpr(n *pcast.BinaryOperationExpr) ... method convertCreateTableStmt (line 220) | func (c *cc) convertCreateTableStmt(n *pcast.CreateTableStmt) ast.Node { method convertColumnNameExpr (line 302) | func (c *cc) convertColumnNameExpr(n *pcast.ColumnNameExpr) *ast.Colum... method convertColumnNames (line 319) | func (c *cc) convertColumnNames(cols []*pcast.ColumnName) *ast.List { method convertDeleteStmt (line 330) | func (c *cc) convertDeleteStmt(n *pcast.DeleteStmt) *ast.DeleteStmt { method convertDropTableStmt (line 382) | func (c *cc) convertDropTableStmt(n *pcast.DropTableStmt) ast.Node { method convertRenameTableStmt (line 390) | func (c *cc) convertRenameTableStmt(n *pcast.RenameTableStmt) ast.Node { method convertExistsSubqueryExpr (line 401) | func (c *cc) convertExistsSubqueryExpr(n *pcast.ExistsSubqueryExpr) *a... method convertFieldList (line 411) | func (c *cc) convertFieldList(n *pcast.FieldList) *ast.List { method convertFuncCallExpr (line 419) | func (c *cc) convertFuncCallExpr(n *pcast.FuncCallExpr) ast.Node { method convertInsertStmt (line 481) | func (c *cc) convertInsertStmt(n *pcast.InsertStmt) *ast.InsertStmt { method convertLists (line 522) | func (c *cc) convertLists(lists [][]pcast.ExprNode) *ast.List { method convertParamMarkerExpr (line 534) | func (c *cc) convertParamMarkerExpr(n *driver.ParamMarkerExpr) *ast.Pa... method convertSelectField (line 543) | func (c *cc) convertSelectField(n *pcast.SelectField) *ast.ResTarget { method convertSelectStmt (line 563) | func (c *cc) convertSelectStmt(n *pcast.SelectStmt) *ast.SelectStmt { method convertSubqueryExpr (line 589) | func (c *cc) convertSubqueryExpr(n *pcast.SubqueryExpr) ast.Node { method convertTableRefsClause (line 597) | func (c *cc) convertTableRefsClause(n *pcast.TableRefsClause) *ast.List { method convertCommonTableExpression (line 604) | func (c *cc) convertCommonTableExpression(n *pcast.CommonTableExpressi... method convertWithClause (line 631) | func (c *cc) convertWithClause(n *pcast.WithClause) *ast.WithClause { method convertUpdateStmt (line 647) | func (c *cc) convertUpdateStmt(n *pcast.UpdateStmt) *ast.UpdateStmt { method convertValueExpr (line 675) | func (c *cc) convertValueExpr(n *driver.ValueExpr) *ast.A_Const { method convertWildCardField (line 721) | func (c *cc) convertWildCardField(n *pcast.WildCardField) *ast.ColumnR... method convertAdminStmt (line 735) | func (c *cc) convertAdminStmt(n *pcast.AdminStmt) ast.Node { method convertAggregateFuncExpr (line 739) | func (c *cc) convertAggregateFuncExpr(n *pcast.AggregateFuncExpr) *ast... method convertAlterDatabaseStmt (line 788) | func (c *cc) convertAlterDatabaseStmt(n *pcast.AlterDatabaseStmt) ast.... method convertAlterInstanceStmt (line 792) | func (c *cc) convertAlterInstanceStmt(n *pcast.AlterInstanceStmt) ast.... method convertAlterTableSpec (line 796) | func (c *cc) convertAlterTableSpec(n *pcast.AlterTableSpec) ast.Node { method convertAlterUserStmt (line 800) | func (c *cc) convertAlterUserStmt(n *pcast.AlterUserStmt) ast.Node { method convertAnalyzeTableStmt (line 804) | func (c *cc) convertAnalyzeTableStmt(n *pcast.AnalyzeTableStmt) ast.No... method convertBRIEStmt (line 808) | func (c *cc) convertBRIEStmt(n *pcast.BRIEStmt) ast.Node { method convertBeginStmt (line 812) | func (c *cc) convertBeginStmt(n *pcast.BeginStmt) ast.Node { method convertBetweenExpr (line 816) | func (c *cc) convertBetweenExpr(n *pcast.BetweenExpr) ast.Node { method convertBinlogStmt (line 826) | func (c *cc) convertBinlogStmt(n *pcast.BinlogStmt) ast.Node { method convertByItem (line 830) | func (c *cc) convertByItem(n *pcast.ByItem) ast.Node { method convertCaseExpr (line 841) | func (c *cc) convertCaseExpr(n *pcast.CaseExpr) ast.Node { method convertCleanupTableLockStmt (line 857) | func (c *cc) convertCleanupTableLockStmt(n *pcast.CleanupTableLockStmt... method convertColumnDef (line 861) | func (c *cc) convertColumnDef(n *pcast.ColumnDef) ast.Node { method convertColumnName (line 865) | func (c *cc) convertColumnName(n *pcast.ColumnName) ast.Node { method convertColumnPosition (line 869) | func (c *cc) convertColumnPosition(n *pcast.ColumnPosition) ast.Node { method convertCommitStmt (line 873) | func (c *cc) convertCommitStmt(n *pcast.CommitStmt) ast.Node { method convertCompareSubqueryExpr (line 877) | func (c *cc) convertCompareSubqueryExpr(n *pcast.CompareSubqueryExpr) ... method convertConstraint (line 881) | func (c *cc) convertConstraint(n *pcast.Constraint) ast.Node { method convertCreateBindingStmt (line 885) | func (c *cc) convertCreateBindingStmt(n *pcast.CreateBindingStmt) ast.... method convertCreateDatabaseStmt (line 889) | func (c *cc) convertCreateDatabaseStmt(n *pcast.CreateDatabaseStmt) as... method convertCreateIndexStmt (line 896) | func (c *cc) convertCreateIndexStmt(n *pcast.CreateIndexStmt) ast.Node { method convertCreateSequenceStmt (line 900) | func (c *cc) convertCreateSequenceStmt(n *pcast.CreateSequenceStmt) as... method convertCreateStatisticsStmt (line 904) | func (c *cc) convertCreateStatisticsStmt(n *pcast.CreateStatisticsStmt... method convertCreateUserStmt (line 908) | func (c *cc) convertCreateUserStmt(n *pcast.CreateUserStmt) ast.Node { method convertCreateViewStmt (line 912) | func (c *cc) convertCreateViewStmt(n *pcast.CreateViewStmt) ast.Node { method convertDeallocateStmt (line 923) | func (c *cc) convertDeallocateStmt(n *pcast.DeallocateStmt) ast.Node { method convertDefaultExpr (line 927) | func (c *cc) convertDefaultExpr(n *pcast.DefaultExpr) ast.Node { method convertDeleteTableList (line 931) | func (c *cc) convertDeleteTableList(n *pcast.DeleteTableList) ast.Node { method convertDoStmt (line 935) | func (c *cc) convertDoStmt(n *pcast.DoStmt) ast.Node { method convertDropBindingStmt (line 939) | func (c *cc) convertDropBindingStmt(n *pcast.DropBindingStmt) ast.Node { method convertDropDatabaseStmt (line 943) | func (c *cc) convertDropDatabaseStmt(n *pcast.DropDatabaseStmt) ast.No... method convertDropIndexStmt (line 952) | func (c *cc) convertDropIndexStmt(n *pcast.DropIndexStmt) ast.Node { method convertDropSequenceStmt (line 956) | func (c *cc) convertDropSequenceStmt(n *pcast.DropSequenceStmt) ast.No... method convertDropStatisticsStmt (line 960) | func (c *cc) convertDropStatisticsStmt(n *pcast.DropStatisticsStmt) as... method convertDropStatsStmt (line 964) | func (c *cc) convertDropStatsStmt(n *pcast.DropStatsStmt) ast.Node { method convertDropUserStmt (line 968) | func (c *cc) convertDropUserStmt(n *pcast.DropUserStmt) ast.Node { method convertExecuteStmt (line 972) | func (c *cc) convertExecuteStmt(n *pcast.ExecuteStmt) ast.Node { method convertExplainForStmt (line 976) | func (c *cc) convertExplainForStmt(n *pcast.ExplainForStmt) ast.Node { method convertExplainStmt (line 980) | func (c *cc) convertExplainStmt(n *pcast.ExplainStmt) ast.Node { method convertFlashBackTableStmt (line 984) | func (c *cc) convertFlashBackTableStmt(n *pcast.FlashBackTableStmt) as... method convertFlushStmt (line 988) | func (c *cc) convertFlushStmt(n *pcast.FlushStmt) ast.Node { method convertFrameBound (line 992) | func (c *cc) convertFrameBound(n *pcast.FrameBound) ast.Node { method convertFrameClause (line 996) | func (c *cc) convertFrameClause(n *pcast.FrameClause) ast.Node { method convertFuncCastExpr (line 1000) | func (c *cc) convertFuncCastExpr(n *pcast.FuncCastExpr) ast.Node { method convertGetFormatSelectorExpr (line 1019) | func (c *cc) convertGetFormatSelectorExpr(n *pcast.GetFormatSelectorEx... method convertGrantRoleStmt (line 1023) | func (c *cc) convertGrantRoleStmt(n *pcast.GrantRoleStmt) ast.Node { method convertGrantStmt (line 1027) | func (c *cc) convertGrantStmt(n *pcast.GrantStmt) ast.Node { method convertGroupByClause (line 1031) | func (c *cc) convertGroupByClause(n *pcast.GroupByClause) *ast.List { method convertHavingClause (line 1046) | func (c *cc) convertHavingClause(n *pcast.HavingClause) ast.Node { method convertIndexLockAndAlgorithm (line 1053) | func (c *cc) convertIndexLockAndAlgorithm(n *pcast.IndexLockAndAlgorit... method convertIndexPartSpecification (line 1057) | func (c *cc) convertIndexPartSpecification(n *pcast.IndexPartSpecifica... method convertIsNullExpr (line 1061) | func (c *cc) convertIsNullExpr(n *pcast.IsNullExpr) ast.Node { method convertIsTruthExpr (line 1076) | func (c *cc) convertIsTruthExpr(n *pcast.IsTruthExpr) ast.Node { method convertJoin (line 1080) | func (c *cc) convertJoin(n *pcast.Join) *ast.List { method convertKillStmt (line 1122) | func (c *cc) convertKillStmt(n *pcast.KillStmt) ast.Node { method convertLimit (line 1126) | func (c *cc) convertLimit(n *pcast.Limit) ast.Node { method convertLoadDataStmt (line 1130) | func (c *cc) convertLoadDataStmt(n *pcast.LoadDataStmt) ast.Node { method convertLoadStatsStmt (line 1134) | func (c *cc) convertLoadStatsStmt(n *pcast.LoadStatsStmt) ast.Node { method convertLockTablesStmt (line 1138) | func (c *cc) convertLockTablesStmt(n *pcast.LockTablesStmt) ast.Node { method convertMatchAgainst (line 1142) | func (c *cc) convertMatchAgainst(n *pcast.MatchAgainst) ast.Node { method convertMaxValueExpr (line 1169) | func (c *cc) convertMaxValueExpr(n *pcast.MaxValueExpr) ast.Node { method convertOnCondition (line 1173) | func (c *cc) convertOnCondition(n *pcast.OnCondition) ast.Node { method convertOnDeleteOpt (line 1180) | func (c *cc) convertOnDeleteOpt(n *pcast.OnDeleteOpt) ast.Node { method convertOnUpdateOpt (line 1184) | func (c *cc) convertOnUpdateOpt(n *pcast.OnUpdateOpt) ast.Node { method convertOrderByClause (line 1188) | func (c *cc) convertOrderByClause(n *pcast.OrderByClause) ast.Node { method convertParenthesesExpr (line 1199) | func (c *cc) convertParenthesesExpr(n *pcast.ParenthesesExpr) ast.Node { method convertPartitionByClause (line 1215) | func (c *cc) convertPartitionByClause(n *pcast.PartitionByClause) ast.... method convertPatternInExpr (line 1219) | func (c *cc) convertPatternInExpr(n *pcast.PatternInExpr) ast.Node { method convertPatternLikeExpr (line 1245) | func (c *cc) convertPatternLikeExpr(n *pcast.PatternLikeOrIlikeExpr) a... method convertPatternRegexpExpr (line 1258) | func (c *cc) convertPatternRegexpExpr(n *pcast.PatternRegexpExpr) ast.... method convertPositionExpr (line 1262) | func (c *cc) convertPositionExpr(n *pcast.PositionExpr) ast.Node { method convertPrepareStmt (line 1266) | func (c *cc) convertPrepareStmt(n *pcast.PrepareStmt) ast.Node { method convertPrivElem (line 1270) | func (c *cc) convertPrivElem(n *pcast.PrivElem) ast.Node { method convertRecoverTableStmt (line 1274) | func (c *cc) convertRecoverTableStmt(n *pcast.RecoverTableStmt) ast.No... method convertReferenceDef (line 1278) | func (c *cc) convertReferenceDef(n *pcast.ReferenceDef) ast.Node { method convertRepairTableStmt (line 1282) | func (c *cc) convertRepairTableStmt(n *pcast.RepairTableStmt) ast.Node { method convertRevokeRoleStmt (line 1286) | func (c *cc) convertRevokeRoleStmt(n *pcast.RevokeRoleStmt) ast.Node { method convertRevokeStmt (line 1290) | func (c *cc) convertRevokeStmt(n *pcast.RevokeStmt) ast.Node { method convertRollbackStmt (line 1294) | func (c *cc) convertRollbackStmt(n *pcast.RollbackStmt) ast.Node { method convertRowExpr (line 1298) | func (c *cc) convertRowExpr(n *pcast.RowExpr) ast.Node { method convertSetCollationExpr (line 1302) | func (c *cc) convertSetCollationExpr(n *pcast.SetCollationExpr) ast.No... method convertSetConfigStmt (line 1306) | func (c *cc) convertSetConfigStmt(n *pcast.SetConfigStmt) ast.Node { method convertSetDefaultRoleStmt (line 1310) | func (c *cc) convertSetDefaultRoleStmt(n *pcast.SetDefaultRoleStmt) as... method convertSetOprType (line 1314) | func (c *cc) convertSetOprType(n *pcast.SetOprType) (op ast.SetOperati... method convertSetOprSelectList (line 1361) | func (c *cc) convertSetOprSelectList(n *pcast.SetOprSelectList) ast.No... method convertSetOprStmt (line 1431) | func (c *cc) convertSetOprStmt(n *pcast.SetOprStmt) ast.Node { method convertSetPwdStmt (line 1443) | func (c *cc) convertSetPwdStmt(n *pcast.SetPwdStmt) ast.Node { method convertSetRoleStmt (line 1447) | func (c *cc) convertSetRoleStmt(n *pcast.SetRoleStmt) ast.Node { method convertSetStmt (line 1451) | func (c *cc) convertSetStmt(n *pcast.SetStmt) ast.Node { method convertShowStmt (line 1455) | func (c *cc) convertShowStmt(n *pcast.ShowStmt) ast.Node { method convertShutdownStmt (line 1484) | func (c *cc) convertShutdownStmt(n *pcast.ShutdownStmt) ast.Node { method convertSplitRegionStmt (line 1488) | func (c *cc) convertSplitRegionStmt(n *pcast.SplitRegionStmt) ast.Node { method convertTableName (line 1492) | func (c *cc) convertTableName(n *pcast.TableName) *ast.RangeVar { method convertTableNameExpr (line 1501) | func (c *cc) convertTableNameExpr(n *pcast.TableNameExpr) ast.Node { method convertTableOptimizerHint (line 1505) | func (c *cc) convertTableOptimizerHint(n *pcast.TableOptimizerHint) as... method convertTableSource (line 1509) | func (c *cc) convertTableSource(node *pcast.TableSource) ast.Node { method convertTableToTable (line 1537) | func (c *cc) convertTableToTable(n *pcast.TableToTable) ast.Node { method convertTimeUnitExpr (line 1541) | func (c *cc) convertTimeUnitExpr(n *pcast.TimeUnitExpr) ast.Node { method convertTraceStmt (line 1545) | func (c *cc) convertTraceStmt(n *pcast.TraceStmt) ast.Node { method convertTrimDirectionExpr (line 1549) | func (c *cc) convertTrimDirectionExpr(n *pcast.TrimDirectionExpr) ast.... method convertTruncateTableStmt (line 1553) | func (c *cc) convertTruncateTableStmt(n *pcast.TruncateTableStmt) *ast... method convertUnaryOperationExpr (line 1559) | func (c *cc) convertUnaryOperationExpr(n *pcast.UnaryOperationExpr) as... method convertUnlockTablesStmt (line 1563) | func (c *cc) convertUnlockTablesStmt(n *pcast.UnlockTablesStmt) ast.No... method convertUseStmt (line 1567) | func (c *cc) convertUseStmt(n *pcast.UseStmt) ast.Node { method convertValuesExpr (line 1571) | func (c *cc) convertValuesExpr(n *pcast.ValuesExpr) ast.Node { method convertVariableAssignment (line 1575) | func (c *cc) convertVariableAssignment(n *pcast.VariableAssignment) as... method convertVariableExpr (line 1579) | func (c *cc) convertVariableExpr(n *pcast.VariableExpr) ast.Node { method convertWhenClause (line 1588) | func (c *cc) convertWhenClause(n *pcast.WhenClause) ast.Node { method convertWindowFuncExpr (line 1599) | func (c *cc) convertWindowFuncExpr(n *pcast.WindowFuncExpr) ast.Node { method convertWindowSpec (line 1603) | func (c *cc) convertWindowSpec(n *pcast.WindowSpec) ast.Node { method convertCallStmt (line 1607) | func (c *cc) convertCallStmt(n *pcast.CallStmt) ast.Node { method convertProcedureInfo (line 1631) | func (c *cc) convertProcedureInfo(n *pcast.ProcedureInfo) ast.Node { method convert (line 1649) | func (c *cc) convert(node pcast.Node) ast.Node { function todo (line 22) | func todo(n pcast.Node) *ast.TODO { function identifier (line 29) | func identifier(id string) string { function NewIdentifier (line 33) | func NewIdentifier(t string) *ast.String { function opToName (line 134) | func opToName(o opcode.Op) string { function convertColumnDef (line 240) | func convertColumnDef(def *pcast.ColumnDef) *ast.ColumnDef { FILE: internal/engine/dolphin/format.go method QuoteIdent (line 5) | func (p *Parser) QuoteIdent(s string) string { method TypeName (line 12) | func (p *Parser) TypeName(ns, name string) string { method Param (line 28) | func (p *Parser) Param(n int) string { method NamedParam (line 35) | func (p *Parser) NamedParam(name string) string { method Cast (line 41) | func (p *Parser) Cast(arg, typeName string) string { FILE: internal/engine/dolphin/parse.go function NewParser (line 18) | func NewParser() *Parser { type Parser (line 22) | type Parser struct method Parse (line 51) | func (p *Parser) Parse(r io.Reader) ([]ast.Statement, error) { method CommentSyntax (line 89) | func (p *Parser) CommentSyntax() source.CommentSyntax { function normalizeErr (line 28) | func normalizeErr(err error) error { FILE: internal/engine/dolphin/reserved.go method IsReservedKeyword (line 6) | func (p *Parser) IsReservedKeyword(s string) bool { FILE: internal/engine/dolphin/stdlib.go function defaultSchema (line 8) | func defaultSchema(name string) *catalog.Schema { FILE: internal/engine/dolphin/utils.go function parseTableName (line 10) | func parseTableName(n *pcast.TableName) *ast.TableName { function toList (line 17) | func toList(node pcast.Node) *ast.List { function isNotNull (line 31) | func isNotNull(n *pcast.ColumnDef) bool { function convertToRangeVarList (line 43) | func convertToRangeVarList(list *ast.List, result *ast.List) { function isUnsigned (line 92) | func isUnsigned(n *pcast.ColumnDef) bool { FILE: internal/engine/postgresql/analyzer/analyze.go type Analyzer (line 25) | type Analyzer struct method tableInfo (line 75) | func (a *Analyzer) tableInfo(ctx context.Context, oid uint32) (*pgTabl... method columnInfo (line 104) | func (a *Analyzer) columnInfo(ctx context.Context, field pgconn.FieldD... method formatType (line 128) | func (a *Analyzer) formatType(ctx context.Context, oid uint32, modifie... method Analyze (line 186) | func (a *Analyzer) Analyze(ctx context.Context, n ast.Node, query stri... method Close (line 318) | func (a *Analyzer) Close(_ context.Context) error { method IntrospectSchema (line 392) | func (a *Analyzer) IntrospectSchema(ctx context.Context, schemas []str... method EnsureConn (line 487) | func (a *Analyzer) EnsureConn(ctx context.Context, migrations []string... method GetColumnNames (line 525) | func (a *Analyzer) GetColumnNames(ctx context.Context, query string) (... function New (line 36) | func New(client dbmanager.Client, db config.Database) *Analyzer { constant columnQuery (line 45) | columnQuery = ` constant tableQuery (line 57) | tableQuery = ` type pgTable (line 69) | type pgTable struct type pgColumn (line 92) | type pgColumn struct type columnKey (line 98) | type columnKey struct type formatKey (line 122) | type formatKey struct function rewriteType (line 147) | func rewriteType(dt string) string { function parseType (line 173) | func parseType(dt string) (string, bool, int) { constant introspectTablesQuery (line 326) | introspectTablesQuery = ` constant introspectEnumsQuery (line 356) | introspectEnumsQuery = ` type introspectedColumn (line 374) | type introspectedColumn struct type introspectedEnum (line 384) | type introspectedEnum struct FILE: internal/engine/postgresql/catalog.go function toPointer (line 7) | func toPointer(x int) *int { function NewCatalog (line 11) | func NewCatalog() *catalog.Catalog { FILE: internal/engine/postgresql/catalog_test.go function TestUpdateErrors (line 14) | func TestUpdateErrors(t *testing.T) { FILE: internal/engine/postgresql/contrib/adminpack.go function Adminpack (line 78) | func Adminpack() *catalog.Schema { FILE: internal/engine/postgresql/contrib/amcheck.go function Amcheck (line 114) | func Amcheck() *catalog.Schema { FILE: internal/engine/postgresql/contrib/btree_gin.go function BtreeGin (line 37) | func BtreeGin() *catalog.Schema { FILE: internal/engine/postgresql/contrib/btree_gist.go function BtreeGist (line 265) | func BtreeGist() *catalog.Schema { FILE: internal/engine/postgresql/contrib/citext.go function Citext (line 568) | func Citext() *catalog.Schema { FILE: internal/engine/postgresql/contrib/cube.go function Cube (line 391) | func Cube() *catalog.Schema { FILE: internal/engine/postgresql/contrib/dblink.go function Dblink (line 501) | func Dblink() *catalog.Schema { FILE: internal/engine/postgresql/contrib/earthdistance.go function Earthdistance (line 102) | func Earthdistance() *catalog.Schema { FILE: internal/engine/postgresql/contrib/file_fdw.go function FileFdw (line 30) | func FileFdw() *catalog.Schema { FILE: internal/engine/postgresql/contrib/fuzzystrmatch.go function Fuzzystrmatch (line 145) | func Fuzzystrmatch() *catalog.Schema { FILE: internal/engine/postgresql/contrib/hstore.go function Hstore (line 518) | func Hstore() *catalog.Schema { FILE: internal/engine/postgresql/contrib/intagg.go function Intagg (line 31) | func Intagg() *catalog.Schema { FILE: internal/engine/postgresql/contrib/intarray.go function Intarray (line 331) | func Intarray() *catalog.Schema { FILE: internal/engine/postgresql/contrib/isn.go function Isn (line 2802) | func Isn() *catalog.Schema { FILE: internal/engine/postgresql/contrib/lo.go function Lo (line 27) | func Lo() *catalog.Schema { FILE: internal/engine/postgresql/contrib/ltree.go function Ltree (line 748) | func Ltree() *catalog.Schema { FILE: internal/engine/postgresql/contrib/pageinspect.go function Pageinspect (line 396) | func Pageinspect() *catalog.Schema { FILE: internal/engine/postgresql/contrib/pg_buffercache.go function PgBuffercache (line 18) | func PgBuffercache() *catalog.Schema { FILE: internal/engine/postgresql/contrib/pg_freespacemap.go function PgFreespacemap (line 35) | func PgFreespacemap() *catalog.Schema { FILE: internal/engine/postgresql/contrib/pg_prewarm.go function PgPrewarm (line 52) | func PgPrewarm() *catalog.Schema { FILE: internal/engine/postgresql/contrib/pg_stat_statements.go function PgStatStatements (line 49) | func PgStatStatements() *catalog.Schema { FILE: internal/engine/postgresql/contrib/pg_trgm.go function PgTrgm (line 210) | func PgTrgm() *catalog.Schema { FILE: internal/engine/postgresql/contrib/pg_visibility.go function PgVisibility (line 93) | func PgVisibility() *catalog.Schema { FILE: internal/engine/postgresql/contrib/pgcrypto.go function Pgcrypto (line 478) | func Pgcrypto() *catalog.Schema { FILE: internal/engine/postgresql/contrib/pgrowlocks.go function Pgrowlocks (line 23) | func Pgrowlocks() *catalog.Schema { FILE: internal/engine/postgresql/contrib/pgstattuple.go function Pgstattuple (line 103) | func Pgstattuple() *catalog.Schema { FILE: internal/engine/postgresql/contrib/postgres_fdw.go function PostgresFdw (line 49) | func PostgresFdw() *catalog.Schema { FILE: internal/engine/postgresql/contrib/seg.go function Seg (line 259) | func Seg() *catalog.Schema { FILE: internal/engine/postgresql/contrib/sslinfo.go function Sslinfo (line 71) | func Sslinfo() *catalog.Schema { FILE: internal/engine/postgresql/contrib/tablefunc.go function Tablefunc (line 184) | func Tablefunc() *catalog.Schema { FILE: internal/engine/postgresql/contrib/tcn.go function Tcn (line 18) | func Tcn() *catalog.Schema { FILE: internal/engine/postgresql/contrib/unaccent.go function Unaccent (line 34) | func Unaccent() *catalog.Schema { FILE: internal/engine/postgresql/contrib/uuid_ossp.go function UuidOssp (line 81) | func UuidOssp() *catalog.Schema { FILE: internal/engine/postgresql/contrib/xml2.go function Xml2 (line 187) | func Xml2() *catalog.Schema { FILE: internal/engine/postgresql/convert.go function convertFuncParamMode (line 11) | func convertFuncParamMode(m pg.FunctionParameterMode) (ast.FuncParamMode... function convertSubLinkType (line 30) | func convertSubLinkType(t pg.SubLinkType) (ast.SubLinkType, error) { function convertSetOperation (line 53) | func convertSetOperation(t pg.SetOperation) (ast.SetOperation, error) { function convertList (line 68) | func convertList(l *pg.List) *ast.List { function convertSlice (line 76) | func convertSlice(nodes []*pg.Node) *ast.List { function convert (line 84) | func convert(node *pg.Node) (ast.Node, error) { function convertA_ArrayExpr (line 88) | func convertA_ArrayExpr(n *pg.A_ArrayExpr) *ast.A_ArrayExpr { function convertA_Const (line 98) | func convertA_Const(n *pg.A_Const) *ast.A_Const { function convertA_Expr (line 125) | func convertA_Expr(n *pg.A_Expr) *ast.A_Expr { function convertA_Indices (line 138) | func convertA_Indices(n *pg.A_Indices) *ast.A_Indices { function convertA_Indirection (line 149) | func convertA_Indirection(n *pg.A_Indirection) *ast.A_Indirection { function convertA_Star (line 159) | func convertA_Star(n *pg.A_Star) *ast.A_Star { function convertAccessPriv (line 166) | func convertAccessPriv(n *pg.AccessPriv) *ast.AccessPriv { function convertAggref (line 176) | func convertAggref(n *pg.Aggref) *ast.Aggref { function convertAlias (line 201) | func convertAlias(n *pg.Alias) *ast.Alias { function convertAlterCollationStmt (line 211) | func convertAlterCollationStmt(n *pg.AlterCollationStmt) *ast.AlterColla... function convertAlterDatabaseSetStmt (line 220) | func convertAlterDatabaseSetStmt(n *pg.AlterDatabaseSetStmt) *ast.AlterD... function convertAlterDatabaseStmt (line 230) | func convertAlterDatabaseStmt(n *pg.AlterDatabaseStmt) *ast.AlterDatabas... function convertAlterDefaultPrivilegesStmt (line 240) | func convertAlterDefaultPrivilegesStmt(n *pg.AlterDefaultPrivilegesStmt)... function convertAlterDomainStmt (line 250) | func convertAlterDomainStmt(n *pg.AlterDomainStmt) *ast.AlterDomainStmt { function convertAlterEnumStmt (line 264) | func convertAlterEnumStmt(n *pg.AlterEnumStmt) *ast.AlterEnumStmt { function convertAlterEventTrigStmt (line 278) | func convertAlterEventTrigStmt(n *pg.AlterEventTrigStmt) *ast.AlterEvent... function convertAlterExtensionContentsStmt (line 288) | func convertAlterExtensionContentsStmt(n *pg.AlterExtensionContentsStmt)... function convertAlterExtensionStmt (line 300) | func convertAlterExtensionStmt(n *pg.AlterExtensionStmt) *ast.AlterExten... function convertAlterFdwStmt (line 310) | func convertAlterFdwStmt(n *pg.AlterFdwStmt) *ast.AlterFdwStmt { function convertAlterForeignServerStmt (line 321) | func convertAlterForeignServerStmt(n *pg.AlterForeignServerStmt) *ast.Al... function convertAlterFunctionStmt (line 333) | func convertAlterFunctionStmt(n *pg.AlterFunctionStmt) *ast.AlterFunctio... function convertAlterObjectDependsStmt (line 343) | func convertAlterObjectDependsStmt(n *pg.AlterObjectDependsStmt) *ast.Al... function convertAlterObjectSchemaStmt (line 355) | func convertAlterObjectSchemaStmt(n *pg.AlterObjectSchemaStmt) *ast.Alte... function convertAlterOpFamilyStmt (line 368) | func convertAlterOpFamilyStmt(n *pg.AlterOpFamilyStmt) *ast.AlterOpFamil... function convertAlterOperatorStmt (line 380) | func convertAlterOperatorStmt(n *pg.AlterOperatorStmt) *ast.AlterOperato... function convertAlterOwnerStmt (line 390) | func convertAlterOwnerStmt(n *pg.AlterOwnerStmt) *ast.AlterOwnerStmt { function convertAlterPolicyStmt (line 402) | func convertAlterPolicyStmt(n *pg.AlterPolicyStmt) *ast.AlterPolicyStmt { function convertAlterPublicationStmt (line 415) | func convertAlterPublicationStmt(n *pg.AlterPublicationStmt) *ast.AlterP... function convertAlterRoleSetStmt (line 428) | func convertAlterRoleSetStmt(n *pg.AlterRoleSetStmt) *ast.AlterRoleSetSt... function convertAlterRoleStmt (line 439) | func convertAlterRoleStmt(n *pg.AlterRoleStmt) *ast.AlterRoleStmt { function convertAlterSeqStmt (line 450) | func convertAlterSeqStmt(n *pg.AlterSeqStmt) *ast.AlterSeqStmt { function convertAlterSubscriptionStmt (line 462) | func convertAlterSubscriptionStmt(n *pg.AlterSubscriptionStmt) *ast.Alte... function convertAlterSystemStmt (line 475) | func convertAlterSystemStmt(n *pg.AlterSystemStmt) *ast.AlterSystemStmt { function convertAlterTSConfigurationStmt (line 484) | func convertAlterTSConfigurationStmt(n *pg.AlterTSConfigurationStmt) *as... function convertAlterTSDictionaryStmt (line 499) | func convertAlterTSDictionaryStmt(n *pg.AlterTSDictionaryStmt) *ast.Alte... function convertAlterTableCmd (line 509) | func convertAlterTableCmd(n *pg.AlterTableCmd) *ast.AlterTableCmd { function convertAlterTableMoveAllStmt (line 525) | func convertAlterTableMoveAllStmt(n *pg.AlterTableMoveAllStmt) *ast.Alte... function convertAlterTableSpaceOptionsStmt (line 538) | func convertAlterTableSpaceOptionsStmt(n *pg.AlterTableSpaceOptionsStmt)... function convertAlterTableStmt (line 549) | func convertAlterTableStmt(n *pg.AlterTableStmt) *ast.AlterTableStmt { function convertAlterUserMappingStmt (line 561) | func convertAlterUserMappingStmt(n *pg.AlterUserMappingStmt) *ast.AlterU... function convertAlternativeSubPlan (line 572) | func convertAlternativeSubPlan(n *pg.AlternativeSubPlan) *ast.Alternativ... function convertArrayCoerceExpr (line 582) | func convertArrayCoerceExpr(n *pg.ArrayCoerceExpr) *ast.ArrayCoerceExpr { function convertArrayExpr (line 597) | func convertArrayExpr(n *pg.ArrayExpr) *ast.ArrayExpr { function convertBitString (line 612) | func convertBitString(n *pg.BitString) *ast.BitString { function convertBoolExpr (line 621) | func convertBoolExpr(n *pg.BoolExpr) *ast.BoolExpr { function convertBoolean (line 633) | func convertBoolean(n *pg.Boolean) *ast.Boolean { function convertBooleanTest (line 642) | func convertBooleanTest(n *pg.BooleanTest) *ast.BooleanTest { function convertCallStmt (line 654) | func convertCallStmt(n *pg.CallStmt) *ast.CallStmt { function convertCaseExpr (line 681) | func convertCaseExpr(n *pg.CaseExpr) *ast.CaseExpr { function convertCaseTestExpr (line 696) | func convertCaseTestExpr(n *pg.CaseTestExpr) *ast.CaseTestExpr { function convertCaseWhen (line 708) | func convertCaseWhen(n *pg.CaseWhen) *ast.CaseWhen { function convertCheckPointStmt (line 720) | func convertCheckPointStmt(n *pg.CheckPointStmt) *ast.CheckPointStmt { function convertClosePortalStmt (line 727) | func convertClosePortalStmt(n *pg.ClosePortalStmt) *ast.ClosePortalStmt { function convertClusterStmt (line 736) | func convertClusterStmt(n *pg.ClusterStmt) *ast.ClusterStmt { function convertCoalesceExpr (line 746) | func convertCoalesceExpr(n *pg.CoalesceExpr) *ast.CoalesceExpr { function convertCoerceToDomain (line 759) | func convertCoerceToDomain(n *pg.CoerceToDomain) *ast.CoerceToDomain { function convertCoerceToDomainValue (line 774) | func convertCoerceToDomainValue(n *pg.CoerceToDomainValue) *ast.CoerceTo... function convertCoerceViaIO (line 787) | func convertCoerceViaIO(n *pg.CoerceViaIO) *ast.CoerceViaIO { function convertCollateClause (line 801) | func convertCollateClause(n *pg.CollateClause) *ast.CollateClause { function convertCollateExpr (line 812) | func convertCollateExpr(n *pg.CollateExpr) *ast.CollateExpr { function convertColumnDef (line 824) | func convertColumnDef(n *pg.ColumnDef) *ast.ColumnDef { function convertColumnRef (line 847) | func convertColumnRef(n *pg.ColumnRef) *ast.ColumnRef { function convertCommentStmt (line 857) | func convertCommentStmt(n *pg.CommentStmt) *ast.CommentStmt { function convertCommonTableExpr (line 868) | func convertCommonTableExpr(n *pg.CommonTableExpr) *ast.CommonTableExpr { function convertCompositeTypeStmt (line 886) | func convertCompositeTypeStmt(n *pg.CompositeTypeStmt) *ast.CompositeTyp... function convertConstraint (line 896) | func convertConstraint(n *pg.Constraint) *ast.Constraint { function convertConstraintsSetStmt (line 930) | func convertConstraintsSetStmt(n *pg.ConstraintsSetStmt) *ast.Constraint... function convertConvertRowtypeExpr (line 940) | func convertConvertRowtypeExpr(n *pg.ConvertRowtypeExpr) *ast.ConvertRow... function convertCopyStmt (line 953) | func convertCopyStmt(n *pg.CopyStmt) *ast.CopyStmt { function convertCreateAmStmt (line 968) | func convertCreateAmStmt(n *pg.CreateAmStmt) *ast.CreateAmStmt { function convertCreateCastStmt (line 979) | func convertCreateCastStmt(n *pg.CreateCastStmt) *ast.CreateCastStmt { function convertCreateConversionStmt (line 992) | func convertCreateConversionStmt(n *pg.CreateConversionStmt) *ast.Create... function convertCreateDomainStmt (line 1005) | func convertCreateDomainStmt(n *pg.CreateDomainStmt) *ast.CreateDomainSt... function convertCreateEnumStmt (line 1017) | func convertCreateEnumStmt(n *pg.CreateEnumStmt) *ast.CreateEnumStmt { function convertCreateEventTrigStmt (line 1031) | func convertCreateEventTrigStmt(n *pg.CreateEventTrigStmt) *ast.CreateEv... function convertCreateExtensionStmt (line 1043) | func convertCreateExtensionStmt(n *pg.CreateExtensionStmt) *ast.CreateEx... function convertCreateFdwStmt (line 1054) | func convertCreateFdwStmt(n *pg.CreateFdwStmt) *ast.CreateFdwStmt { function convertCreateForeignServerStmt (line 1065) | func convertCreateForeignServerStmt(n *pg.CreateForeignServerStmt) *ast.... function convertCreateForeignTableStmt (line 1079) | func convertCreateForeignTableStmt(n *pg.CreateForeignTableStmt) *ast.Cr... function convertCreateFunctionStmt (line 1089) | func convertCreateFunctionStmt(n *pg.CreateFunctionStmt) *ast.CreateFunc... function convertCreateOpClassItem (line 1106) | func convertCreateOpClassItem(n *pg.CreateOpClassItem) *ast.CreateOpClas... function convertCreateOpClassStmt (line 1120) | func convertCreateOpClassStmt(n *pg.CreateOpClassStmt) *ast.CreateOpClas... function convertCreateOpFamilyStmt (line 1134) | func convertCreateOpFamilyStmt(n *pg.CreateOpFamilyStmt) *ast.CreateOpFa... function convertCreatePLangStmt (line 1144) | func convertCreatePLangStmt(n *pg.CreatePLangStmt) *ast.CreatePLangStmt { function convertCreatePolicyStmt (line 1158) | func convertCreatePolicyStmt(n *pg.CreatePolicyStmt) *ast.CreatePolicySt... function convertCreatePublicationStmt (line 1173) | func convertCreatePublicationStmt(n *pg.CreatePublicationStmt) *ast.Crea... function convertCreateRangeStmt (line 1185) | func convertCreateRangeStmt(n *pg.CreateRangeStmt) *ast.CreateRangeStmt { function convertCreateRoleStmt (line 1195) | func convertCreateRoleStmt(n *pg.CreateRoleStmt) *ast.CreateRoleStmt { function convertCreateSchemaStmt (line 1206) | func convertCreateSchemaStmt(n *pg.CreateSchemaStmt) *ast.CreateSchemaSt... function convertCreateSeqStmt (line 1218) | func convertCreateSeqStmt(n *pg.CreateSeqStmt) *ast.CreateSeqStmt { function convertCreateStatsStmt (line 1231) | func convertCreateStatsStmt(n *pg.CreateStatsStmt) *ast.CreateStatsStmt { function convertCreateStmt (line 1244) | func convertCreateStmt(n *pg.CreateStmt) *ast.CreateStmt { function convertCreateSubscriptionStmt (line 1263) | func convertCreateSubscriptionStmt(n *pg.CreateSubscriptionStmt) *ast.Cr... function convertCreateTableAsStmt (line 1275) | func convertCreateTableAsStmt(n *pg.CreateTableAsStmt) *ast.CreateTableA... function convertCreateTableSpaceStmt (line 1289) | func convertCreateTableSpaceStmt(n *pg.CreateTableSpaceStmt) *ast.Create... function convertCreateTransformStmt (line 1301) | func convertCreateTransformStmt(n *pg.CreateTransformStmt) *ast.CreateTr... function convertCreateTrigStmt (line 1314) | func convertCreateTrigStmt(n *pg.CreateTrigStmt) *ast.CreateTrigStmt { function convertCreateUserMappingStmt (line 1336) | func convertCreateUserMappingStmt(n *pg.CreateUserMappingStmt) *ast.Crea... function convertCreatedbStmt (line 1348) | func convertCreatedbStmt(n *pg.CreatedbStmt) *ast.CreatedbStmt { function convertCurrentOfExpr (line 1358) | func convertCurrentOfExpr(n *pg.CurrentOfExpr) *ast.CurrentOfExpr { function convertDeallocateStmt (line 1370) | func convertDeallocateStmt(n *pg.DeallocateStmt) *ast.DeallocateStmt { function convertDeclareCursorStmt (line 1379) | func convertDeclareCursorStmt(n *pg.DeclareCursorStmt) *ast.DeclareCurso... function convertDefElem (line 1390) | func convertDefElem(n *pg.DefElem) *ast.DefElem { function convertDefineStmt (line 1403) | func convertDefineStmt(n *pg.DefineStmt) *ast.DefineStmt { function convertDeleteStmt (line 1417) | func convertDeleteStmt(n *pg.DeleteStmt) *ast.DeleteStmt { function convertDiscardStmt (line 1432) | func convertDiscardStmt(n *pg.DiscardStmt) *ast.DiscardStmt { function convertDoStmt (line 1441) | func convertDoStmt(n *pg.DoStmt) *ast.DoStmt { function convertDropOwnedStmt (line 1450) | func convertDropOwnedStmt(n *pg.DropOwnedStmt) *ast.DropOwnedStmt { function convertDropRoleStmt (line 1460) | func convertDropRoleStmt(n *pg.DropRoleStmt) *ast.DropRoleStmt { function convertDropStmt (line 1470) | func convertDropStmt(n *pg.DropStmt) *ast.DropStmt { function convertDropSubscriptionStmt (line 1483) | func convertDropSubscriptionStmt(n *pg.DropSubscriptionStmt) *ast.DropSu... function convertDropTableSpaceStmt (line 1494) | func convertDropTableSpaceStmt(n *pg.DropTableSpaceStmt) *ast.DropTableS... function convertDropUserMappingStmt (line 1504) | func convertDropUserMappingStmt(n *pg.DropUserMappingStmt) *ast.DropUser... function convertDropdbStmt (line 1515) | func convertDropdbStmt(n *pg.DropdbStmt) *ast.DropdbStmt { function convertExecuteStmt (line 1525) | func convertExecuteStmt(n *pg.ExecuteStmt) *ast.ExecuteStmt { function convertExplainStmt (line 1535) | func convertExplainStmt(n *pg.ExplainStmt) *ast.ExplainStmt { function convertFetchStmt (line 1545) | func convertFetchStmt(n *pg.FetchStmt) *ast.FetchStmt { function convertFieldSelect (line 1557) | func convertFieldSelect(n *pg.FieldSelect) *ast.FieldSelect { function convertFieldStore (line 1571) | func convertFieldStore(n *pg.FieldStore) *ast.FieldStore { function convertFloat (line 1584) | func convertFloat(n *pg.Float) *ast.Float { function convertFromExpr (line 1593) | func convertFromExpr(n *pg.FromExpr) *ast.FromExpr { function convertFuncCall (line 1603) | func convertFuncCall(n *pg.FuncCall) *ast.FuncCall { function convertFuncExpr (line 1627) | func convertFuncExpr(n *pg.FuncExpr) *ast.FuncExpr { function convertFunctionParameter (line 1645) | func convertFunctionParameter(n *pg.FunctionParameter) *ast.FunctionPara... function convertGrantRoleStmt (line 1657) | func convertGrantRoleStmt(n *pg.GrantRoleStmt) *ast.GrantRoleStmt { function convertGrantStmt (line 1670) | func convertGrantStmt(n *pg.GrantStmt) *ast.GrantStmt { function convertGroupingFunc (line 1686) | func convertGroupingFunc(n *pg.GroupingFunc) *ast.GroupingFunc { function convertGroupingSet (line 1699) | func convertGroupingSet(n *pg.GroupingSet) *ast.GroupingSet { function convertImportForeignSchemaStmt (line 1710) | func convertImportForeignSchemaStmt(n *pg.ImportForeignSchemaStmt) *ast.... function convertIndexElem (line 1724) | func convertIndexElem(n *pg.IndexElem) *ast.IndexElem { function convertIndexStmt (line 1739) | func convertIndexStmt(n *pg.IndexStmt) *ast.IndexStmt { function convertInferClause (line 1765) | func convertInferClause(n *pg.InferClause) *ast.InferClause { function convertInferenceElem (line 1777) | func convertInferenceElem(n *pg.InferenceElem) *ast.InferenceElem { function convertInlineCodeBlock (line 1789) | func convertInlineCodeBlock(n *pg.InlineCodeBlock) *ast.InlineCodeBlock { function convertInsertStmt (line 1800) | func convertInsertStmt(n *pg.InsertStmt) *ast.InsertStmt { function convertInteger (line 1815) | func convertInteger(n *pg.Integer) *ast.Integer { function convertIntoClause (line 1824) | func convertIntoClause(n *pg.IntoClause) *ast.IntoClause { function convertJoinExpr (line 1839) | func convertJoinExpr(n *pg.JoinExpr) *ast.JoinExpr { function convertListenStmt (line 1855) | func convertListenStmt(n *pg.ListenStmt) *ast.ListenStmt { function convertLoadStmt (line 1864) | func convertLoadStmt(n *pg.LoadStmt) *ast.LoadStmt { function convertLockStmt (line 1873) | func convertLockStmt(n *pg.LockStmt) *ast.LockStmt { function convertLockingClause (line 1884) | func convertLockingClause(n *pg.LockingClause) *ast.LockingClause { function convertMinMaxExpr (line 1895) | func convertMinMaxExpr(n *pg.MinMaxExpr) *ast.MinMaxExpr { function convertMultiAssignRef (line 1910) | func convertMultiAssignRef(n *pg.MultiAssignRef) *ast.MultiAssignRef { function convertNamedArgExpr (line 1921) | func convertNamedArgExpr(n *pg.NamedArgExpr) *ast.NamedArgExpr { function convertNextValueExpr (line 1934) | func convertNextValueExpr(n *pg.NextValueExpr) *ast.NextValueExpr { function convertNotifyStmt (line 1945) | func convertNotifyStmt(n *pg.NotifyStmt) *ast.NotifyStmt { function convertNullTest (line 1955) | func convertNullTest(n *pg.NullTest) *ast.NullTest { function convertNullIfExpr (line 1968) | func convertNullIfExpr(n *pg.NullIfExpr) *ast.NullIfExpr { function convertObjectWithArgs (line 1984) | func convertObjectWithArgs(n *pg.ObjectWithArgs) *ast.ObjectWithArgs { function convertOnConflictClause (line 1995) | func convertOnConflictClause(n *pg.OnConflictClause) *ast.OnConflictClau... function convertOnConflictExpr (line 2008) | func convertOnConflictExpr(n *pg.OnConflictExpr) *ast.OnConflictExpr { function convertOpExpr (line 2024) | func convertOpExpr(n *pg.OpExpr) *ast.OpExpr { function convertParam (line 2040) | func convertParam(n *pg.Param) *ast.Param { function convertParamRef (line 2055) | func convertParamRef(n *pg.ParamRef) *ast.ParamRef { function convertPartitionBoundSpec (line 2070) | func convertPartitionBoundSpec(n *pg.PartitionBoundSpec) *ast.PartitionB... function convertPartitionCmd (line 2083) | func convertPartitionCmd(n *pg.PartitionCmd) *ast.PartitionCmd { function convertPartitionElem (line 2093) | func convertPartitionElem(n *pg.PartitionElem) *ast.PartitionElem { function convertPartitionRangeDatum (line 2106) | func convertPartitionRangeDatum(n *pg.PartitionRangeDatum) *ast.Partitio... function convertPartitionSpec (line 2117) | func convertPartitionSpec(n *pg.PartitionSpec) *ast.PartitionSpec { function convertPrepareStmt (line 2128) | func convertPrepareStmt(n *pg.PrepareStmt) *ast.PrepareStmt { function convertQuery (line 2139) | func convertQuery(n *pg.Query) *ast.Query { function convertRangeFunction (line 2182) | func convertRangeFunction(n *pg.RangeFunction) *ast.RangeFunction { function convertRangeSubselect (line 2196) | func convertRangeSubselect(n *pg.RangeSubselect) *ast.RangeSubselect { function convertRangeTableFunc (line 2207) | func convertRangeTableFunc(n *pg.RangeTableFunc) *ast.RangeTableFunc { function convertRangeTableFuncCol (line 2222) | func convertRangeTableFuncCol(n *pg.RangeTableFuncCol) *ast.RangeTableFu... function convertRangeTableSample (line 2237) | func convertRangeTableSample(n *pg.RangeTableSample) *ast.RangeTableSamp... function convertRangeTblEntry (line 2250) | func convertRangeTblEntry(n *pg.RangeTblEntry) *ast.RangeTblEntry { function convertRangeTblFunction (line 2284) | func convertRangeTblFunction(n *pg.RangeTblFunction) *ast.RangeTblFuncti... function convertRangeTblRef (line 2299) | func convertRangeTblRef(n *pg.RangeTblRef) *ast.RangeTblRef { function convertRangeVar (line 2308) | func convertRangeVar(n *pg.RangeVar) *ast.RangeVar { function convertRawStmt (line 2323) | func convertRawStmt(n *pg.RawStmt) *ast.RawStmt { function convertReassignOwnedStmt (line 2334) | func convertReassignOwnedStmt(n *pg.ReassignOwnedStmt) *ast.ReassignOwne... function convertRefreshMatViewStmt (line 2344) | func convertRefreshMatViewStmt(n *pg.RefreshMatViewStmt) *ast.RefreshMat... function convertReindexStmt (line 2355) | func convertReindexStmt(n *pg.ReindexStmt) *ast.ReindexStmt { function convertRelabelType (line 2367) | func convertRelabelType(n *pg.RelabelType) *ast.RelabelType { function convertRenameStmt (line 2382) | func convertRenameStmt(n *pg.RenameStmt) *ast.RenameStmt { function convertReplicaIdentityStmt (line 2398) | func convertReplicaIdentityStmt(n *pg.ReplicaIdentityStmt) *ast.ReplicaI... function convertResTarget (line 2408) | func convertResTarget(n *pg.ResTarget) *ast.ResTarget { function convertRoleSpec (line 2420) | func convertRoleSpec(n *pg.RoleSpec) *ast.RoleSpec { function convertRowCompareExpr (line 2431) | func convertRowCompareExpr(n *pg.RowCompareExpr) *ast.RowCompareExpr { function convertRowExpr (line 2446) | func convertRowExpr(n *pg.RowExpr) *ast.RowExpr { function convertRowMarkClause (line 2460) | func convertRowMarkClause(n *pg.RowMarkClause) *ast.RowMarkClause { function convertRuleStmt (line 2472) | func convertRuleStmt(n *pg.RuleStmt) *ast.RuleStmt { function convertSQLValueFunction (line 2487) | func convertSQLValueFunction(n *pg.SQLValueFunction) *ast.SQLValueFuncti... function convertScalarArrayOpExpr (line 2500) | func convertScalarArrayOpExpr(n *pg.ScalarArrayOpExpr) *ast.ScalarArrayO... function convertSecLabelStmt (line 2514) | func convertSecLabelStmt(n *pg.SecLabelStmt) *ast.SecLabelStmt { function convertSelectStmt (line 2526) | func convertSelectStmt(n *pg.SelectStmt) *ast.SelectStmt { function convertSetOperationStmt (line 2556) | func convertSetOperationStmt(n *pg.SetOperationStmt) *ast.SetOperationSt... function convertSetToDefault (line 2576) | func convertSetToDefault(n *pg.SetToDefault) *ast.SetToDefault { function convertSortBy (line 2589) | func convertSortBy(n *pg.SortBy) *ast.SortBy { function convertSortGroupClause (line 2602) | func convertSortGroupClause(n *pg.SortGroupClause) *ast.SortGroupClause { function convertString (line 2615) | func convertString(n *pg.String) *ast.String { function convertSubLink (line 2624) | func convertSubLink(n *pg.SubLink) *ast.SubLink { function convertSubPlan (line 2643) | func convertSubPlan(n *pg.SubPlan) *ast.SubPlan { function convertTableFunc (line 2672) | func convertTableFunc(n *pg.TableFunc) *ast.TableFunc { function convertTableLikeClause (line 2693) | func convertTableLikeClause(n *pg.TableLikeClause) *ast.TableLikeClause { function convertTableSampleClause (line 2703) | func convertTableSampleClause(n *pg.TableSampleClause) *ast.TableSampleC... function convertTargetEntry (line 2714) | func convertTargetEntry(n *pg.TargetEntry) *ast.TargetEntry { function convertTransactionStmt (line 2730) | func convertTransactionStmt(n *pg.TransactionStmt) *ast.TransactionStmt { function convertTriggerTransition (line 2741) | func convertTriggerTransition(n *pg.TriggerTransition) *ast.TriggerTrans... function convertTruncateStmt (line 2752) | func convertTruncateStmt(n *pg.TruncateStmt) *ast.TruncateStmt { function convertTypeCast (line 2763) | func convertTypeCast(n *pg.TypeCast) *ast.TypeCast { function convertTypeName (line 2774) | func convertTypeName(n *pg.TypeName) *ast.TypeName { function convertUnlistenStmt (line 2790) | func convertUnlistenStmt(n *pg.UnlistenStmt) *ast.UnlistenStmt { function convertUpdateStmt (line 2799) | func convertUpdateStmt(n *pg.UpdateStmt) *ast.UpdateStmt { function convertVacuumStmt (line 2816) | func convertVacuumStmt(n *pg.VacuumStmt) *ast.VacuumStmt { function convertVar (line 2828) | func convertVar(n *pg.Var) *ast.Var { function convertVariableSetStmt (line 2844) | func convertVariableSetStmt(n *pg.VariableSetStmt) *ast.VariableSetStmt { function convertVariableShowStmt (line 2856) | func convertVariableShowStmt(n *pg.VariableShowStmt) *ast.VariableShowSt... function convertViewStmt (line 2865) | func convertViewStmt(n *pg.ViewStmt) *ast.ViewStmt { function convertWindowClause (line 2879) | func convertWindowClause(n *pg.WindowClause) *ast.WindowClause { function convertWindowDef (line 2896) | func convertWindowDef(n *pg.WindowDef) *ast.WindowDef { function convertWindowFunc (line 2912) | func convertWindowFunc(n *pg.WindowFunc) *ast.WindowFunc { function convertWithCheckOption (line 2931) | func convertWithCheckOption(n *pg.WithCheckOption) *ast.WithCheckOption { function convertWithClause (line 2944) | func convertWithClause(n *pg.WithClause) *ast.WithClause { function convertXmlExpr (line 2955) | func convertXmlExpr(n *pg.XmlExpr) *ast.XmlExpr { function convertXmlSerialize (line 2973) | func convertXmlSerialize(n *pg.XmlSerialize) *ast.XmlSerialize { function convertNode (line 2985) | func convertNode(node *pg.Node) ast.Node { FILE: internal/engine/postgresql/extension.go function loadExtension (line 10) | func loadExtension(name string) *catalog.Schema { FILE: internal/engine/postgresql/information_schema.go function genInformationSchema (line 12) | func genInformationSchema() *catalog.Schema { FILE: internal/engine/postgresql/parse.go function stringSlice (line 17) | func stringSlice(list *nodes.List) []string { function stringSliceFromNodes (line 27) | func stringSliceFromNodes(s []*nodes.Node) []string { type relation (line 37) | type relation struct method TableName (line 43) | func (r relation) TableName() *ast.TableName { method TypeName (line 51) | func (r relation) TypeName() *ast.TypeName { method FuncName (line 59) | func (r relation) FuncName() *ast.FuncName { function parseRelationFromNodes (line 67) | func parseRelationFromNodes(list []*nodes.Node) (*relation, error) { function parseRelationFromRangeVar (line 90) | func parseRelationFromRangeVar(rv *nodes.RangeVar) *relation { function parseRelation (line 98) | func parseRelation(in *nodes.Node) (*relation, error) { function parseColName (line 111) | func parseColName(node *nodes.Node) (*ast.ColumnRef, *ast.TableName, err... function joinNodes (line 136) | func joinNodes(list []*nodes.Node, sep string) string { function NewParser (line 140) | func NewParser() *Parser { type Parser (line 144) | type Parser struct method Parse (line 149) | func (p *Parser) Parse(r io.Reader) ([]ast.Statement, error) { method CommentSyntax (line 199) | func (p *Parser) CommentSyntax() source.CommentSyntax { function normalizeErr (line 183) | func normalizeErr(err error) error { function translate (line 206) | func translate(node *nodes.Node) (ast.Node, error) { FILE: internal/engine/postgresql/pg_catalog.go function genPGCatalog (line 30178) | func genPGCatalog() *catalog.Schema { FILE: internal/engine/postgresql/pg_temp.go function pgTemp (line 7) | func pgTemp() *catalog.Schema { FILE: internal/engine/postgresql/reserved.go function hasMixedCase (line 10) | func hasMixedCase(s string) bool { method QuoteIdent (line 21) | func (p *Parser) QuoteIdent(s string) string { method TypeName (line 30) | func (p *Parser) TypeName(ns, name string) string { method Param (line 63) | func (p *Parser) Param(n int) string { method NamedParam (line 69) | func (p *Parser) NamedParam(name string) string { method Cast (line 75) | func (p *Parser) Cast(arg, typeName string) string { method IsReservedKeyword (line 80) | func (p *Parser) IsReservedKeyword(s string) bool { FILE: internal/engine/postgresql/rewrite_test.go function TestApply (line 13) | func TestApply(t *testing.T) { FILE: internal/engine/postgresql/utils.go function isArray (line 7) | func isArray(n *nodes.TypeName) bool { function isNotNull (line 14) | func isNotNull(n *nodes.ColumnDef) bool { function IsNamedParamFunc (line 32) | func IsNamedParamFunc(node *nodes.Node) bool { function IsNamedParamSign (line 37) | func IsNamedParamSign(node *nodes.Node) bool { function makeByte (line 42) | func makeByte(s string) byte { function makeUint32Slice (line 50) | func makeUint32Slice(in []uint64) []uint32 { function makeString (line 58) | func makeString(s string) *string { FILE: internal/engine/sqlite/analyzer/analyze.go type Analyzer (line 22) | type Analyzer struct method Analyze (line 38) | func (a *Analyzer) Analyze(ctx context.Context, n ast.Node, query stri... method extractSqlErr (line 153) | func (a *Analyzer) extractSqlErr(n ast.Node, err error) error { method Close (line 175) | func (a *Analyzer) Close(_ context.Context) error { method EnsureConn (line 188) | func (a *Analyzer) EnsureConn(ctx context.Context, migrations []string... method GetColumnNames (line 236) | func (a *Analyzer) GetColumnNames(ctx context.Context, query string) (... method IntrospectSchema (line 261) | func (a *Analyzer) IntrospectSchema(ctx context.Context, schemas []str... function New (line 30) | func New(db config.Database) *Analyzer { function isInMemoryDatabase (line 325) | func isInMemoryDatabase(uri string) bool { function normalizeType (line 338) | func normalizeType(declType string) string { FILE: internal/engine/sqlite/analyzer/analyze_test.go function TestAnalyzer_Analyze (line 11) | func TestAnalyzer_Analyze(t *testing.T) { function TestAnalyzer_InvalidQuery (line 70) | func TestAnalyzer_InvalidQuery(t *testing.T) { function TestNormalizeType (line 92) | func TestNormalizeType(t *testing.T) { FILE: internal/engine/sqlite/catalog.go function NewCatalog (line 5) | func NewCatalog() *catalog.Catalog { function newTestCatalog (line 16) | func newTestCatalog() *catalog.Catalog { FILE: internal/engine/sqlite/catalog_test.go function TestUpdate (line 15) | func TestUpdate(t *testing.T) { FILE: internal/engine/sqlite/convert.go type cc (line 15) | type cc struct method convertAlter_table_stmtContext (line 42) | func (c *cc) convertAlter_table_stmtContext(n *parser.Alter_table_stmt... method convertAttach_stmtContext (line 102) | func (c *cc) convertAttach_stmtContext(n *parser.Attach_stmtContext) a... method convertCreate_table_stmtContext (line 109) | func (c *cc) convertCreate_table_stmtContext(n *parser.Create_table_st... method convertCreate_virtual_table_stmtContext (line 130) | func (c *cc) convertCreate_virtual_table_stmtContext(n *parser.Create_... method convertCreate_virtual_table_fts5 (line 143) | func (c *cc) convertCreate_virtual_table_fts5(n *parser.Create_virtual... method convertCreate_view_stmtContext (line 174) | func (c *cc) convertCreate_view_stmtContext(n *parser.Create_view_stmt... method convertDelete_stmtContext (line 203) | func (c *cc) convertDelete_stmtContext(n Delete_stmt) ast.Node { method convertDrop_stmtContext (line 254) | func (c *cc) convertDrop_stmtContext(n *parser.Drop_stmtContext) ast.N... method convertFuncContext (line 271) | func (c *cc) convertFuncContext(n *parser.Expr_functionContext) ast.No... method convertExprContext (line 314) | func (c *cc) convertExprContext(n *parser.ExprContext) ast.Node { method convertColumnNameExpr (line 318) | func (c *cc) convertColumnNameExpr(n *parser.Expr_qualified_column_nam... method convertComparison (line 341) | func (c *cc) convertComparison(n *parser.Expr_comparisonContext) ast.N... method convertMultiSelect_stmtContext (line 376) | func (c *cc) convertMultiSelect_stmtContext(n *parser.Select_stmtConte... method convertExprListContext (line 524) | func (c *cc) convertExprListContext(n *parser.Expr_listContext) ast.No... method getTables (line 532) | func (c *cc) getTables(core *parser.Select_coreContext) []ast.Node { method getCols (line 575) | func (c *cc) getCols(core *parser.Select_coreContext) []ast.Node { method convertWildCardField (line 609) | func (c *cc) convertWildCardField(n *parser.Result_columnContext) *ast... method convertOrderby_stmtContext (line 624) | func (c *cc) convertOrderby_stmtContext(n parser.IOrder_by_stmtContext... method convertLimit_stmtContext (line 642) | func (c *cc) convertLimit_stmtContext(n parser.ILimit_stmtContext) (as... method convertSql_stmtContext (line 658) | func (c *cc) convertSql_stmtContext(n *parser.Sql_stmtContext) ast.Node { method convertLiteral (line 734) | func (c *cc) convertLiteral(n *parser.Expr_literalContext) ast.Node { method convertBinaryNode (line 776) | func (c *cc) convertBinaryNode(n *parser.Expr_binaryContext) ast.Node { method convertBoolNode (line 788) | func (c *cc) convertBoolNode(n *parser.Expr_boolContext) ast.Node { method convertUnaryExpr (line 806) | func (c *cc) convertUnaryExpr(n *parser.Expr_unaryContext) ast.Node { method convertParam (line 849) | func (c *cc) convertParam(n *parser.Expr_bindContext) ast.Node { method convertInSelectNode (line 877) | func (c *cc) convertInSelectNode(n *parser.Expr_in_selectContext) ast.... method convertReturning_caluseContext (line 926) | func (c *cc) convertReturning_caluseContext(n parser.IReturning_clause... method convertInsert_stmtContext (line 960) | func (c *cc) convertInsert_stmtContext(n *parser.Insert_stmtContext) a... method convertColumnNames (line 1037) | func (c *cc) convertColumnNames(cols []parser.IColumn_nameContext) *as... method convertTablesOrSubquery (line 1048) | func (c *cc) convertTablesOrSubquery(n []parser.ITable_or_subqueryCont... method convertUpdate_stmtContext (line 1137) | func (c *cc) convertUpdate_stmtContext(n Update_stmt) ast.Node { method convertBetweenExpr (line 1188) | func (c *cc) convertBetweenExpr(n *parser.Expr_betweenContext) ast.Node { method convertCastExpr (line 1198) | func (c *cc) convertCastExpr(n *parser.Expr_castContext) ast.Node { method convertCollateExpr (line 1213) | func (c *cc) convertCollateExpr(n *parser.Expr_collateContext) ast.Node { method convertCase (line 1221) | func (c *cc) convertCase(n *parser.Expr_caseContext) ast.Node { method convert (line 1243) | func (c *cc) convert(node node) ast.Node { type node (line 19) | type node interface function todo (line 23) | func todo(funcname string, n node) *ast.TODO { function identifier (line 30) | func identifier(id string) string { function NewIdentifier (line 38) | func NewIdentifier(t string) *ast.String { type Delete_stmt (line 195) | type Delete_stmt interface type Update_stmt (line 1128) | type Update_stmt interface FILE: internal/engine/sqlite/format.go method QuoteIdent (line 6) | func (p *Parser) QuoteIdent(s string) string { method TypeName (line 12) | func (p *Parser) TypeName(ns, name string) string { method Param (line 21) | func (p *Parser) Param(n int) string { method NamedParam (line 27) | func (p *Parser) NamedParam(name string) string { method Cast (line 33) | func (p *Parser) Cast(arg, typeName string) string { FILE: internal/engine/sqlite/parse.go type errorListener (line 14) | type errorListener struct method SyntaxError (line 20) | func (el *errorListener) SyntaxError(recognizer antlr.Recognizer, offe... function NewParser (line 33) | func NewParser() *Parser { type Parser (line 37) | type Parser struct method Parse (line 40) | func (p *Parser) Parse(r io.Reader) ([]ast.Statement, error) { method CommentSyntax (line 89) | func (p *Parser) CommentSyntax() source.CommentSyntax { FILE: internal/engine/sqlite/parser/sqlite_lexer.go type SQLiteLexer (line 17) | type SQLiteLexer struct function sqlitelexerLexerInit (line 37) | func sqlitelexerLexerInit() { function SQLiteLexerInit (line 990) | func SQLiteLexerInit() { function NewSQLiteLexer (line 996) | func NewSQLiteLexer(input antlr.CharStream) *SQLiteLexer { constant SQLiteLexerSCOL (line 1015) | SQLiteLexerSCOL = 1 constant SQLiteLexerDOT (line 1016) | SQLiteLexerDOT = 2 constant SQLiteLexerOPEN_PAR (line 1017) | SQLiteLexerOPEN_PAR = 3 constant SQLiteLexerCLOSE_PAR (line 1018) | SQLiteLexerCLOSE_PAR = 4 constant SQLiteLexerCOMMA (line 1019) | SQLiteLexerCOMMA = 5 constant SQLiteLexerASSIGN (line 1020) | SQLiteLexerASSIGN = 6 constant SQLiteLexerSTAR (line 1021) | SQLiteLexerSTAR = 7 constant SQLiteLexerPLUS (line 1022) | SQLiteLexerPLUS = 8 constant SQLiteLexerPTR2 (line 1023) | SQLiteLexerPTR2 = 9 constant SQLiteLexerPTR (line 1024) | SQLiteLexerPTR = 10 constant SQLiteLexerMINUS (line 1025) | SQLiteLexerMINUS = 11 constant SQLiteLexerTILDE (line 1026) | SQLiteLexerTILDE = 12 constant SQLiteLexerPIPE2 (line 1027) | SQLiteLexerPIPE2 = 13 constant SQLiteLexerDIV (line 1028) | SQLiteLexerDIV = 14 constant SQLiteLexerMOD (line 1029) | SQLiteLexerMOD = 15 constant SQLiteLexerLT2 (line 1030) | SQLiteLexerLT2 = 16 constant SQLiteLexerGT2 (line 1031) | SQLiteLexerGT2 = 17 constant SQLiteLexerAMP (line 1032) | SQLiteLexerAMP = 18 constant SQLiteLexerPIPE (line 1033) | SQLiteLexerPIPE = 19 constant SQLiteLexerLT (line 1034) | SQLiteLexerLT = 20 constant SQLiteLexerLT_EQ (line 1035) | SQLiteLexerLT_EQ = 21 constant SQLiteLexerGT (line 1036) | SQLiteLexerGT = 22 constant SQLiteLexerGT_EQ (line 1037) | SQLiteLexerGT_EQ = 23 constant SQLiteLexerEQ (line 1038) | SQLiteLexerEQ = 24 constant SQLiteLexerNOT_EQ1 (line 1039) | SQLiteLexerNOT_EQ1 = 25 constant SQLiteLexerNOT_EQ2 (line 1040) | SQLiteLexerNOT_EQ2 = 26 constant SQLiteLexerABORT_ (line 1041) | SQLiteLexerABORT_ = 27 constant SQLiteLexerACTION_ (line 1042) | SQLiteLexerACTION_ = 28 constant SQLiteLexerADD_ (line 1043) | SQLiteLexerADD_ = 29 constant SQLiteLexerAFTER_ (line 1044) | SQLiteLexerAFTER_ = 30 constant SQLiteLexerALL_ (line 1045) | SQLiteLexerALL_ = 31 constant SQLiteLexerALTER_ (line 1046) | SQLiteLexerALTER_ = 32 constant SQLiteLexerANALYZE_ (line 1047) | SQLiteLexerANALYZE_ = 33 constant SQLiteLexerAND_ (line 1048) | SQLiteLexerAND_ = 34 constant SQLiteLexerAS_ (line 1049) | SQLiteLexerAS_ = 35 constant SQLiteLexerASC_ (line 1050) | SQLiteLexerASC_ = 36 constant SQLiteLexerATTACH_ (line 1051) | SQLiteLexerATTACH_ = 37 constant SQLiteLexerAUTOINCREMENT_ (line 1052) | SQLiteLexerAUTOINCREMENT_ = 38 constant SQLiteLexerBEFORE_ (line 1053) | SQLiteLexerBEFORE_ = 39 constant SQLiteLexerBEGIN_ (line 1054) | SQLiteLexerBEGIN_ = 40 constant SQLiteLexerBETWEEN_ (line 1055) | SQLiteLexerBETWEEN_ = 41 constant SQLiteLexerBY_ (line 1056) | SQLiteLexerBY_ = 42 constant SQLiteLexerCASCADE_ (line 1057) | SQLiteLexerCASCADE_ = 43 constant SQLiteLexerCASE_ (line 1058) | SQLiteLexerCASE_ = 44 constant SQLiteLexerCAST_ (line 1059) | SQLiteLexerCAST_ = 45 constant SQLiteLexerCHECK_ (line 1060) | SQLiteLexerCHECK_ = 46 constant SQLiteLexerCOLLATE_ (line 1061) | SQLiteLexerCOLLATE_ = 47 constant SQLiteLexerCOLUMN_ (line 1062) | SQLiteLexerCOLUMN_ = 48 constant SQLiteLexerCOMMIT_ (line 1063) | SQLiteLexerCOMMIT_ = 49 constant SQLiteLexerCONFLICT_ (line 1064) | SQLiteLexerCONFLICT_ = 50 constant SQLiteLexerCONSTRAINT_ (line 1065) | SQLiteLexerCONSTRAINT_ = 51 constant SQLiteLexerCREATE_ (line 1066) | SQLiteLexerCREATE_ = 52 constant SQLiteLexerCROSS_ (line 1067) | SQLiteLexerCROSS_ = 53 constant SQLiteLexerCURRENT_DATE_ (line 1068) | SQLiteLexerCURRENT_DATE_ = 54 constant SQLiteLexerCURRENT_TIME_ (line 1069) | SQLiteLexerCURRENT_TIME_ = 55 constant SQLiteLexerCURRENT_TIMESTAMP_ (line 1070) | SQLiteLexerCURRENT_TIMESTAMP_ = 56 constant SQLiteLexerDATABASE_ (line 1071) | SQLiteLexerDATABASE_ = 57 constant SQLiteLexerDEFAULT_ (line 1072) | SQLiteLexerDEFAULT_ = 58 constant SQLiteLexerDEFERRABLE_ (line 1073) | SQLiteLexerDEFERRABLE_ = 59 constant SQLiteLexerDEFERRED_ (line 1074) | SQLiteLexerDEFERRED_ = 60 constant SQLiteLexerDELETE_ (line 1075) | SQLiteLexerDELETE_ = 61 constant SQLiteLexerDESC_ (line 1076) | SQLiteLexerDESC_ = 62 constant SQLiteLexerDETACH_ (line 1077) | SQLiteLexerDETACH_ = 63 constant SQLiteLexerDISTINCT_ (line 1078) | SQLiteLexerDISTINCT_ = 64 constant SQLiteLexerDROP_ (line 1079) | SQLiteLexerDROP_ = 65 constant SQLiteLexerEACH_ (line 1080) | SQLiteLexerEACH_ = 66 constant SQLiteLexerELSE_ (line 1081) | SQLiteLexerELSE_ = 67 constant SQLiteLexerEND_ (line 1082) | SQLiteLexerEND_ = 68 constant SQLiteLexerESCAPE_ (line 1083) | SQLiteLexerESCAPE_ = 69 constant SQLiteLexerEXCEPT_ (line 1084) | SQLiteLexerEXCEPT_ = 70 constant SQLiteLexerEXCLUSIVE_ (line 1085) | SQLiteLexerEXCLUSIVE_ = 71 constant SQLiteLexerEXISTS_ (line 1086) | SQLiteLexerEXISTS_ = 72 constant SQLiteLexerEXPLAIN_ (line 1087) | SQLiteLexerEXPLAIN_ = 73 constant SQLiteLexerFAIL_ (line 1088) | SQLiteLexerFAIL_ = 74 constant SQLiteLexerFOR_ (line 1089) | SQLiteLexerFOR_ = 75 constant SQLiteLexerFOREIGN_ (line 1090) | SQLiteLexerFOREIGN_ = 76 constant SQLiteLexerFROM_ (line 1091) | SQLiteLexerFROM_ = 77 constant SQLiteLexerFULL_ (line 1092) | SQLiteLexerFULL_ = 78 constant SQLiteLexerGLOB_ (line 1093) | SQLiteLexerGLOB_ = 79 constant SQLiteLexerGROUP_ (line 1094) | SQLiteLexerGROUP_ = 80 constant SQLiteLexerHAVING_ (line 1095) | SQLiteLexerHAVING_ = 81 constant SQLiteLexerIF_ (line 1096) | SQLiteLexerIF_ = 82 constant SQLiteLexerIGNORE_ (line 1097) | SQLiteLexerIGNORE_ = 83 constant SQLiteLexerIMMEDIATE_ (line 1098) | SQLiteLexerIMMEDIATE_ = 84 constant SQLiteLexerIN_ (line 1099) | SQLiteLexerIN_ = 85 constant SQLiteLexerINDEX_ (line 1100) | SQLiteLexerINDEX_ = 86 constant SQLiteLexerINDEXED_ (line 1101) | SQLiteLexerINDEXED_ = 87 constant SQLiteLexerINITIALLY_ (line 1102) | SQLiteLexerINITIALLY_ = 88 constant SQLiteLexerINNER_ (line 1103) | SQLiteLexerINNER_ = 89 constant SQLiteLexerINSERT_ (line 1104) | SQLiteLexerINSERT_ = 90 constant SQLiteLexerINSTEAD_ (line 1105) | SQLiteLexerINSTEAD_ = 91 constant SQLiteLexerINTERSECT_ (line 1106) | SQLiteLexerINTERSECT_ = 92 constant SQLiteLexerINTO_ (line 1107) | SQLiteLexerINTO_ = 93 constant SQLiteLexerIS_ (line 1108) | SQLiteLexerIS_ = 94 constant SQLiteLexerISNULL_ (line 1109) | SQLiteLexerISNULL_ = 95 constant SQLiteLexerJOIN_ (line 1110) | SQLiteLexerJOIN_ = 96 constant SQLiteLexerKEY_ (line 1111) | SQLiteLexerKEY_ = 97 constant SQLiteLexerLEFT_ (line 1112) | SQLiteLexerLEFT_ = 98 constant SQLiteLexerLIKE_ (line 1113) | SQLiteLexerLIKE_ = 99 constant SQLiteLexerLIMIT_ (line 1114) | SQLiteLexerLIMIT_ = 100 constant SQLiteLexerMATCH_ (line 1115) | SQLiteLexerMATCH_ = 101 constant SQLiteLexerNATURAL_ (line 1116) | SQLiteLexerNATURAL_ = 102 constant SQLiteLexerNO_ (line 1117) | SQLiteLexerNO_ = 103 constant SQLiteLexerNOT_ (line 1118) | SQLiteLexerNOT_ = 104 constant SQLiteLexerNOTNULL_ (line 1119) | SQLiteLexerNOTNULL_ = 105 constant SQLiteLexerNULL_ (line 1120) | SQLiteLexerNULL_ = 106 constant SQLiteLexerOF_ (line 1121) | SQLiteLexerOF_ = 107 constant SQLiteLexerOFFSET_ (line 1122) | SQLiteLexerOFFSET_ = 108 constant SQLiteLexerON_ (line 1123) | SQLiteLexerON_ = 109 constant SQLiteLexerOR_ (line 1124) | SQLiteLexerOR_ = 110 constant SQLiteLexerORDER_ (line 1125) | SQLiteLexerORDER_ = 111 constant SQLiteLexerOUTER_ (line 1126) | SQLiteLexerOUTER_ = 112 constant SQLiteLexerPLAN_ (line 1127) | SQLiteLexerPLAN_ = 113 constant SQLiteLexerPRAGMA_ (line 1128) | SQLiteLexerPRAGMA_ = 114 constant SQLiteLexerPRIMARY_ (line 1129) | SQLiteLexerPRIMARY_ = 115 constant SQLiteLexerQUERY_ (line 1130) | SQLiteLexerQUERY_ = 116 constant SQLiteLexerRAISE_ (line 1131) | SQLiteLexerRAISE_ = 117 constant SQLiteLexerRECURSIVE_ (line 1132) | SQLiteLexerRECURSIVE_ = 118 constant SQLiteLexerREFERENCES_ (line 1133) | SQLiteLexerREFERENCES_ = 119 constant SQLiteLexerREGEXP_ (line 1134) | SQLiteLexerREGEXP_ = 120 constant SQLiteLexerREINDEX_ (line 1135) | SQLiteLexerREINDEX_ = 121 constant SQLiteLexerRELEASE_ (line 1136) | SQLiteLexerRELEASE_ = 122 constant SQLiteLexerRENAME_ (line 1137) | SQLiteLexerRENAME_ = 123 constant SQLiteLexerREPLACE_ (line 1138) | SQLiteLexerREPLACE_ = 124 constant SQLiteLexerRESTRICT_ (line 1139) | SQLiteLexerRESTRICT_ = 125 constant SQLiteLexerRETURNING_ (line 1140) | SQLiteLexerRETURNING_ = 126 constant SQLiteLexerRIGHT_ (line 1141) | SQLiteLexerRIGHT_ = 127 constant SQLiteLexerROLLBACK_ (line 1142) | SQLiteLexerROLLBACK_ = 128 constant SQLiteLexerROW_ (line 1143) | SQLiteLexerROW_ = 129 constant SQLiteLexerROWS_ (line 1144) | SQLiteLexerROWS_ = 130 constant SQLiteLexerSAVEPOINT_ (line 1145) | SQLiteLexerSAVEPOINT_ = 131 constant SQLiteLexerSELECT_ (line 1146) | SQLiteLexerSELECT_ = 132 constant SQLiteLexerSET_ (line 1147) | SQLiteLexerSET_ = 133 constant SQLiteLexerSTRICT_ (line 1148) | SQLiteLexerSTRICT_ = 134 constant SQLiteLexerTABLE_ (line 1149) | SQLiteLexerTABLE_ = 135 constant SQLiteLexerTEMP_ (line 1150) | SQLiteLexerTEMP_ = 136 constant SQLiteLexerTEMPORARY_ (line 1151) | SQLiteLexerTEMPORARY_ = 137 constant SQLiteLexerTHEN_ (line 1152) | SQLiteLexerTHEN_ = 138 constant SQLiteLexerTO_ (line 1153) | SQLiteLexerTO_ = 139 constant SQLiteLexerTRANSACTION_ (line 1154) | SQLiteLexerTRANSACTION_ = 140 constant SQLiteLexerTRIGGER_ (line 1155) | SQLiteLexerTRIGGER_ = 141 constant SQLiteLexerUNION_ (line 1156) | SQLiteLexerUNION_ = 142 constant SQLiteLexerUNIQUE_ (line 1157) | SQLiteLexerUNIQUE_ = 143 constant SQLiteLexerUPDATE_ (line 1158) | SQLiteLexerUPDATE_ = 144 constant SQLiteLexerUSING_ (line 1159) | SQLiteLexerUSING_ = 145 constant SQLiteLexerVACUUM_ (line 1160) | SQLiteLexerVACUUM_ = 146 constant SQLiteLexerVALUES_ (line 1161) | SQLiteLexerVALUES_ = 147 constant SQLiteLexerVIEW_ (line 1162) | SQLiteLexerVIEW_ = 148 constant SQLiteLexerVIRTUAL_ (line 1163) | SQLiteLexerVIRTUAL_ = 149 constant SQLiteLexerWHEN_ (line 1164) | SQLiteLexerWHEN_ = 150 constant SQLiteLexerWHERE_ (line 1165) | SQLiteLexerWHERE_ = 151 constant SQLiteLexerWITH_ (line 1166) | SQLiteLexerWITH_ = 152 constant SQLiteLexerWITHOUT_ (line 1167) | SQLiteLexerWITHOUT_ = 153 constant SQLiteLexerFIRST_VALUE_ (line 1168) | SQLiteLexerFIRST_VALUE_ = 154 constant SQLiteLexerOVER_ (line 1169) | SQLiteLexerOVER_ = 155 constant SQLiteLexerPARTITION_ (line 1170) | SQLiteLexerPARTITION_ = 156 constant SQLiteLexerRANGE_ (line 1171) | SQLiteLexerRANGE_ = 157 constant SQLiteLexerPRECEDING_ (line 1172) | SQLiteLexerPRECEDING_ = 158 constant SQLiteLexerUNBOUNDED_ (line 1173) | SQLiteLexerUNBOUNDED_ = 159 constant SQLiteLexerCURRENT_ (line 1174) | SQLiteLexerCURRENT_ = 160 constant SQLiteLexerFOLLOWING_ (line 1175) | SQLiteLexerFOLLOWING_ = 161 constant SQLiteLexerCUME_DIST_ (line 1176) | SQLiteLexerCUME_DIST_ = 162 constant SQLiteLexerDENSE_RANK_ (line 1177) | SQLiteLexerDENSE_RANK_ = 163 constant SQLiteLexerLAG_ (line 1178) | SQLiteLexerLAG_ = 164 constant SQLiteLexerLAST_VALUE_ (line 1179) | SQLiteLexerLAST_VALUE_ = 165 constant SQLiteLexerLEAD_ (line 1180) | SQLiteLexerLEAD_ = 166 constant SQLiteLexerNTH_VALUE_ (line 1181) | SQLiteLexerNTH_VALUE_ = 167 constant SQLiteLexerNTILE_ (line 1182) | SQLiteLexerNTILE_ = 168 constant SQLiteLexerPERCENT_RANK_ (line 1183) | SQLiteLexerPERCENT_RANK_ = 169 constant SQLiteLexerRANK_ (line 1184) | SQLiteLexerRANK_ = 170 constant SQLiteLexerROW_NUMBER_ (line 1185) | SQLiteLexerROW_NUMBER_ = 171 constant SQLiteLexerGENERATED_ (line 1186) | SQLiteLexerGENERATED_ = 172 constant SQLiteLexerALWAYS_ (line 1187) | SQLiteLexerALWAYS_ = 173 constant SQLiteLexerSTORED_ (line 1188) | SQLiteLexerSTORED_ = 174 constant SQLiteLexerTRUE_ (line 1189) | SQLiteLexerTRUE_ = 175 constant SQLiteLexerFALSE_ (line 1190) | SQLiteLexerFALSE_ = 176 constant SQLiteLexerWINDOW_ (line 1191) | SQLiteLexerWINDOW_ = 177 constant SQLiteLexerNULLS_ (line 1192) | SQLiteLexerNULLS_ = 178 constant SQLiteLexerFIRST_ (line 1193) | SQLiteLexerFIRST_ = 179 constant SQLiteLexerLAST_ (line 1194) | SQLiteLexerLAST_ = 180 constant SQLiteLexerFILTER_ (line 1195) | SQLiteLexerFILTER_ = 181 constant SQLiteLexerGROUPS_ (line 1196) | SQLiteLexerGROUPS_ = 182 constant SQLiteLexerEXCLUDE_ (line 1197) | SQLiteLexerEXCLUDE_ = 183 constant SQLiteLexerTIES_ (line 1198) | SQLiteLexerTIES_ = 184 constant SQLiteLexerOTHERS_ (line 1199) | SQLiteLexerOTHERS_ = 185 constant SQLiteLexerDO_ (line 1200) | SQLiteLexerDO_ = 186 constant SQLiteLexerNOTHING_ (line 1201) | SQLiteLexerNOTHING_ = 187 constant SQLiteLexerIDENTIFIER (line 1202) | SQLiteLexerIDENTIFIER = 188 constant SQLiteLexerNUMERIC_LITERAL (line 1203) | SQLiteLexerNUMERIC_LITERAL = 189 constant SQLiteLexerNUMBERED_BIND_PARAMETER (line 1204) | SQLiteLexerNUMBERED_BIND_PARAMETER = 190 constant SQLiteLexerNAMED_BIND_PARAMETER (line 1205) | SQLiteLexerNAMED_BIND_PARAMETER = 191 constant SQLiteLexerSTRING_LITERAL (line 1206) | SQLiteLexerSTRING_LITERAL = 192 constant SQLiteLexerBLOB_LITERAL (line 1207) | SQLiteLexerBLOB_LITERAL = 193 constant SQLiteLexerSINGLE_LINE_COMMENT (line 1208) | SQLiteLexerSINGLE_LINE_COMMENT = 194 constant SQLiteLexerMULTILINE_COMMENT (line 1209) | SQLiteLexerMULTILINE_COMMENT = 195 constant SQLiteLexerSPACES (line 1210) | SQLiteLexerSPACES = 196 constant SQLiteLexerUNEXPECTED_CHAR (line 1211) | SQLiteLexerUNEXPECTED_CHAR = 197 FILE: internal/engine/sqlite/parser/sqlite_parser.go type SQLiteParser (line 18) | type SQLiteParser struct method Parse (line 1665) | func (p *SQLiteParser) Parse() (localctx IParseContext) { method Sql_stmt_list (line 1831) | func (p *SQLiteParser) Sql_stmt_list() (localctx ISql_stmt_listContext) { method Sql_stmt (line 2451) | func (p *SQLiteParser) Sql_stmt() (localctx ISql_stmtContext) { method Alter_table_stmt (line 2907) | func (p *SQLiteParser) Alter_table_stmt() (localctx IAlter_table_stmtC... method Analyze_stmt (line 3219) | func (p *SQLiteParser) Analyze_stmt() (localctx IAnalyze_stmtContext) { method Attach_stmt (line 3399) | func (p *SQLiteParser) Attach_stmt() (localctx IAttach_stmtContext) { method Begin_stmt (line 3564) | func (p *SQLiteParser) Begin_stmt() (localctx IBegin_stmtContext) { method Commit_stmt (line 3723) | func (p *SQLiteParser) Commit_stmt() (localctx ICommit_stmtContext) { method Rollback_stmt (line 3874) | func (p *SQLiteParser) Rollback_stmt() (localctx IRollback_stmtContext) { method Savepoint_stmt (line 4045) | func (p *SQLiteParser) Savepoint_stmt() (localctx ISavepoint_stmtConte... method Release_stmt (line 4167) | func (p *SQLiteParser) Release_stmt() (localctx IRelease_stmtContext) { method Create_index_stmt (line 4454) | func (p *SQLiteParser) Create_index_stmt() (localctx ICreate_index_stm... method Indexed_column (line 4784) | func (p *SQLiteParser) Indexed_column() (localctx IIndexed_columnConte... method Table_option (line 4953) | func (p *SQLiteParser) Table_option() (localctx ITable_optionContext) { method Create_table_stmt (line 5324) | func (p *SQLiteParser) Create_table_stmt() (localctx ICreate_table_stm... method Column_def (line 5733) | func (p *SQLiteParser) Column_def() (localctx IColumn_defContext) { method Type_name (line 5955) | func (p *SQLiteParser) Type_name() (localctx IType_nameContext) { method Column_constraint (line 6351) | func (p *SQLiteParser) Column_constraint() (localctx IColumn_constrain... method Signed_number (line 6784) | func (p *SQLiteParser) Signed_number() (localctx ISigned_numberContext) { method Table_constraint (line 7102) | func (p *SQLiteParser) Table_constraint() (localctx ITable_constraintC... method Foreign_key_clause (line 7686) | func (p *SQLiteParser) Foreign_key_clause() (localctx IForeign_key_cla... method Conflict_clause (line 8071) | func (p *SQLiteParser) Conflict_clause() (localctx IConflict_clauseCon... method Create_trigger_stmt (line 8601) | func (p *SQLiteParser) Create_trigger_stmt() (localctx ICreate_trigger... method Create_view_stmt (line 9219) | func (p *SQLiteParser) Create_view_stmt() (localctx ICreate_view_stmtC... method Create_virtual_table_stmt (line 9621) | func (p *SQLiteParser) Create_virtual_table_stmt() (localctx ICreate_v... method With_clause (line 9992) | func (p *SQLiteParser) With_clause() (localctx IWith_clauseContext) { method Cte_table_name (line 10269) | func (p *SQLiteParser) Cte_table_name() (localctx ICte_table_nameConte... method Recursive_cte (line 10492) | func (p *SQLiteParser) Recursive_cte() (localctx IRecursive_cteContext) { method Common_table_expression (line 10751) | func (p *SQLiteParser) Common_table_expression() (localctx ICommon_tab... method Returning_clause (line 11047) | func (p *SQLiteParser) Returning_clause() (localctx IReturning_clauseC... method Delete_stmt (line 11366) | func (p *SQLiteParser) Delete_stmt() (localctx IDelete_stmtContext) { method Delete_stmt_limited (line 11638) | func (p *SQLiteParser) Delete_stmt_limited() (localctx IDelete_stmt_li... method Detach_stmt (line 11848) | func (p *SQLiteParser) Detach_stmt() (localctx IDetach_stmtContext) { method Drop_stmt (line 12044) | func (p *SQLiteParser) Drop_stmt() (localctx IDrop_stmtContext) { method Expr (line 13588) | func (p *SQLiteParser) Expr() (localctx IExprContext) { method expr (line 13592) | func (p *SQLiteParser) expr(_p int) (localctx IExprContext) { method Raise_function (line 15039) | func (p *SQLiteParser) Raise_function() (localctx IRaise_functionConte... method Literal_value (line 15239) | func (p *SQLiteParser) Literal_value() (localctx ILiteral_valueContext) { method Insert_stmt (line 15630) | func (p *SQLiteParser) Insert_stmt() (localctx IInsert_stmtContext) { method Upsert_clause (line 16335) | func (p *SQLiteParser) Upsert_clause() (localctx IUpsert_clauseContext) { method Pragma_stmt (line 16754) | func (p *SQLiteParser) Pragma_stmt() (localctx IPragma_stmtContext) { method Pragma_value (line 16954) | func (p *SQLiteParser) Pragma_value() (localctx IPragma_valueContext) { method Reindex_stmt (line 17149) | func (p *SQLiteParser) Reindex_stmt() (localctx IReindex_stmtContext) { method Select_stmt (line 17435) | func (p *SQLiteParser) Select_stmt() (localctx ISelect_stmtContext) { method Join_clause (line 17728) | func (p *SQLiteParser) Join_clause() (localctx IJoin_clauseContext) { method Select_core (line 18167) | func (p *SQLiteParser) Select_core() (localctx ISelect_coreContext) { method Factored_select_stmt (line 18716) | func (p *SQLiteParser) Factored_select_stmt() (localctx IFactored_sele... method Simple_select_stmt (line 18871) | func (p *SQLiteParser) Simple_select_stmt() (localctx ISimple_select_s... method Compound_select_stmt (line 19136) | func (p *SQLiteParser) Compound_select_stmt() (localctx ICompound_sele... method Table_or_subquery (line 19613) | func (p *SQLiteParser) Table_or_subquery() (localctx ITable_or_subquer... method Result_column (line 20441) | func (p *SQLiteParser) Result_column() (localctx IResult_columnContext) { method Join_operator (line 20653) | func (p *SQLiteParser) Join_operator() (localctx IJoin_operatorContext) { method Join_constraint (line 20948) | func (p *SQLiteParser) Join_constraint() (localctx IJoin_constraintCon... method Compound_operator (line 21133) | func (p *SQLiteParser) Compound_operator() (localctx ICompound_operato... method Update_stmt (line 21524) | func (p *SQLiteParser) Update_stmt() (localctx IUpdate_stmtContext) { method Column_name_list (line 21861) | func (p *SQLiteParser) Column_name_list() (localctx IColumn_name_listC... method Update_stmt_limited (line 22256) | func (p *SQLiteParser) Update_stmt_limited() (localctx IUpdate_stmt_li... method Qualified_table_name (line 22637) | func (p *SQLiteParser) Qualified_table_name() (localctx IQualified_tab... method Vacuum_stmt (line 22862) | func (p *SQLiteParser) Vacuum_stmt() (localctx IVacuum_stmtContext) { method Filter_clause (line 23026) | func (p *SQLiteParser) Filter_clause() (localctx IFilter_clauseContext) { method Window_defn (line 23305) | func (p *SQLiteParser) Window_defn() (localctx IWindow_defnContext) { method Over_clause (line 23722) | func (p *SQLiteParser) Over_clause() (localctx IOver_clauseContext) { method Frame_spec (line 24043) | func (p *SQLiteParser) Frame_spec() (localctx IFrame_specContext) { method Frame_clause (line 24281) | func (p *SQLiteParser) Frame_clause() (localctx IFrame_clauseContext) { method Simple_function_invocation (line 24504) | func (p *SQLiteParser) Simple_function_invocation() (localctx ISimple_... method Aggregate_function_invocation (line 24771) | func (p *SQLiteParser) Aggregate_function_invocation() (localctx IAggr... method Window_function_invocation (line 25101) | func (p *SQLiteParser) Window_function_invocation() (localctx IWindow_... method Common_table_stmt (line 25367) | func (p *SQLiteParser) Common_table_stmt() (localctx ICommon_table_stm... method Order_by_stmt (line 25571) | func (p *SQLiteParser) Order_by_stmt() (localctx IOrder_by_stmtContext) { method Limit_stmt (line 25762) | func (p *SQLiteParser) Limit_stmt() (localctx ILimit_stmtContext) { method Ordering_term (line 25955) | func (p *SQLiteParser) Ordering_term() (localctx IOrdering_termContext) { method Asc_desc (line 26119) | func (p *SQLiteParser) Asc_desc() (localctx IAsc_descContext) { method Frame_left (line 26257) | func (p *SQLiteParser) Frame_left() (localctx IFrame_leftContext) { method Frame_right (line 26459) | func (p *SQLiteParser) Frame_right() (localctx IFrame_rightContext) { method Frame_single (line 26656) | func (p *SQLiteParser) Frame_single() (localctx IFrame_singleContext) { method Window_function (line 27022) | func (p *SQLiteParser) Window_function() (localctx IWindow_functionCon... method Of_OF_fset (line 27657) | func (p *SQLiteParser) Of_OF_fset() (localctx IOf_OF_fsetContext) { method Default_DEFAULT__value (line 27774) | func (p *SQLiteParser) Default_DEFAULT__value() (localctx IDefault_DEF... method Partition_by (line 27922) | func (p *SQLiteParser) Partition_by() (localctx IPartition_byContext) { method Order_by_expr (line 28102) | func (p *SQLiteParser) Order_by_expr() (localctx IOrder_by_exprContext) { method Order_by_expr_asc_desc (line 28250) | func (p *SQLiteParser) Order_by_expr_asc_desc() (localctx IOrder_by_ex... method Expr_asc_desc (line 28449) | func (p *SQLiteParser) Expr_asc_desc() (localctx IExpr_asc_descContext) { method Initial_select (line 28611) | func (p *SQLiteParser) Initial_select() (localctx IInitial_selectConte... method Recursive__select (line 28715) | func (p *SQLiteParser) Recursive__select() (localctx IRecursive__selec... method Unary_operator (line 28822) | func (p *SQLiteParser) Unary_operator() (localctx IUnary_operatorConte... method Error_message (line 28923) | func (p *SQLiteParser) Error_message() (localctx IError_messageContext) { method Module_argument (line 29048) | func (p *SQLiteParser) Module_argument() (localctx IModule_argumentCon... method Column_alias (line 29164) | func (p *SQLiteParser) Column_alias() (localctx IColumn_aliasContext) { method Keyword (line 30045) | func (p *SQLiteParser) Keyword() (localctx IKeywordContext) { method Name (line 30158) | func (p *SQLiteParser) Name() (localctx INameContext) { method Function_name (line 30262) | func (p *SQLiteParser) Function_name() (localctx IFunction_nameContext) { method Qualified_function_name (line 30388) | func (p *SQLiteParser) Qualified_function_name() (localctx IQualified_... method Schema_name (line 30512) | func (p *SQLiteParser) Schema_name() (localctx ISchema_nameContext) { method Table_name (line 30616) | func (p *SQLiteParser) Table_name() (localctx ITable_nameContext) { method Table_or_index_name (line 30720) | func (p *SQLiteParser) Table_or_index_name() (localctx ITable_or_index... method New_table_name (line 30824) | func (p *SQLiteParser) New_table_name() (localctx INew_table_nameConte... method Column_name (line 30928) | func (p *SQLiteParser) Column_name() (localctx IColumn_nameContext) { method Collation_name (line 31032) | func (p *SQLiteParser) Collation_name() (localctx ICollation_nameConte... method Foreign_table (line 31136) | func (p *SQLiteParser) Foreign_table() (localctx IForeign_tableContext) { method Index_name (line 31240) | func (p *SQLiteParser) Index_name() (localctx IIndex_nameContext) { method Trigger_name (line 31344) | func (p *SQLiteParser) Trigger_name() (localctx ITrigger_nameContext) { method View_name (line 31448) | func (p *SQLiteParser) View_name() (localctx IView_nameContext) { method Module_name (line 31552) | func (p *SQLiteParser) Module_name() (localctx IModule_nameContext) { method Pragma_name (line 31656) | func (p *SQLiteParser) Pragma_name() (localctx IPragma_nameContext) { method Savepoint_name (line 31760) | func (p *SQLiteParser) Savepoint_name() (localctx ISavepoint_nameConte... method Table_alias (line 31857) | func (p *SQLiteParser) Table_alias() (localctx ITable_aliasContext) { method Table_alias_fallback (line 31970) | func (p *SQLiteParser) Table_alias_fallback() (localctx ITable_alias_f... method Transaction_name (line 32074) | func (p *SQLiteParser) Transaction_name() (localctx ITransaction_nameC... method Window_name (line 32178) | func (p *SQLiteParser) Window_name() (localctx IWindow_nameContext) { method Alias (line 32282) | func (p *SQLiteParser) Alias() (localctx IAliasContext) { method Filename (line 32386) | func (p *SQLiteParser) Filename() (localctx IFilenameContext) { method Base_window_name (line 32490) | func (p *SQLiteParser) Base_window_name() (localctx IBase_window_nameC... method Simple_func (line 32594) | func (p *SQLiteParser) Simple_func() (localctx ISimple_funcContext) { method Aggregate_func (line 32698) | func (p *SQLiteParser) Aggregate_func() (localctx IAggregate_funcConte... method Table_function_name (line 32802) | func (p *SQLiteParser) Table_function_name() (localctx ITable_function... method Any_name (line 32943) | func (p *SQLiteParser) Any_name() (localctx IAny_nameContext) { method Sempred (line 33023) | func (p *SQLiteParser) Sempred(localctx antlr.RuleContext, ruleIndex, ... method Expr_Sempred (line 33037) | func (p *SQLiteParser) Expr_Sempred(localctx antlr.RuleContext, predIn... function sqliteparserParserInit (line 33) | func sqliteparserParserInit() { function SQLiteParserInit (line 1211) | func SQLiteParserInit() { function NewSQLiteParser (line 1217) | func NewSQLiteParser(input antlr.TokenStream) *SQLiteParser { constant SQLiteParserEOF (line 1233) | SQLiteParserEOF = antlr.TokenEOF constant SQLiteParserSCOL (line 1234) | SQLiteParserSCOL = 1 constant SQLiteParserDOT (line 1235) | SQLiteParserDOT = 2 constant SQLiteParserOPEN_PAR (line 1236) | SQLiteParserOPEN_PAR = 3 constant SQLiteParserCLOSE_PAR (line 1237) | SQLiteParserCLOSE_PAR = 4 constant SQLiteParserCOMMA (line 1238) | SQLiteParserCOMMA = 5 constant SQLiteParserASSIGN (line 1239) | SQLiteParserASSIGN = 6 constant SQLiteParserSTAR (line 1240) | SQLiteParserSTAR = 7 constant SQLiteParserPLUS (line 1241) | SQLiteParserPLUS = 8 constant SQLiteParserPTR2 (line 1242) | SQLiteParserPTR2 = 9 constant SQLiteParserPTR (line 1243) | SQLiteParserPTR = 10 constant SQLiteParserMINUS (line 1244) | SQLiteParserMINUS = 11 constant SQLiteParserTILDE (line 1245) | SQLiteParserTILDE = 12 constant SQLiteParserPIPE2 (line 1246) | SQLiteParserPIPE2 = 13 constant SQLiteParserDIV (line 1247) | SQLiteParserDIV = 14 constant SQLiteParserMOD (line 1248) | SQLiteParserMOD = 15 constant SQLiteParserLT2 (line 1249) | SQLiteParserLT2 = 16 constant SQLiteParserGT2 (line 1250) | SQLiteParserGT2 = 17 constant SQLiteParserAMP (line 1251) | SQLiteParserAMP = 18 constant SQLiteParserPIPE (line 1252) | SQLiteParserPIPE = 19 constant SQLiteParserLT (line 1253) | SQLiteParserLT = 20 constant SQLiteParserLT_EQ (line 1254) | SQLiteParserLT_EQ = 21 constant SQLiteParserGT (line 1255) | SQLiteParserGT = 22 constant SQLiteParserGT_EQ (line 1256) | SQLiteParserGT_EQ = 23 constant SQLiteParserEQ (line 1257) | SQLiteParserEQ = 24 constant SQLiteParserNOT_EQ1 (line 1258) | SQLiteParserNOT_EQ1 = 25 constant SQLiteParserNOT_EQ2 (line 1259) | SQLiteParserNOT_EQ2 = 26 constant SQLiteParserABORT_ (line 1260) | SQLiteParserABORT_ = 27 constant SQLiteParserACTION_ (line 1261) | SQLiteParserACTION_ = 28 constant SQLiteParserADD_ (line 1262) | SQLiteParserADD_ = 29 constant SQLiteParserAFTER_ (line 1263) | SQLiteParserAFTER_ = 30 constant SQLiteParserALL_ (line 1264) | SQLiteParserALL_ = 31 constant SQLiteParserALTER_ (line 1265) | SQLiteParserALTER_ = 32 constant SQLiteParserANALYZE_ (line 1266) | SQLiteParserANALYZE_ = 33 constant SQLiteParserAND_ (line 1267) | SQLiteParserAND_ = 34 constant SQLiteParserAS_ (line 1268) | SQLiteParserAS_ = 35 constant SQLiteParserASC_ (line 1269) | SQLiteParserASC_ = 36 constant SQLiteParserATTACH_ (line 1270) | SQLiteParserATTACH_ = 37 constant SQLiteParserAUTOINCREMENT_ (line 1271) | SQLiteParserAUTOINCREMENT_ = 38 constant SQLiteParserBEFORE_ (line 1272) | SQLiteParserBEFORE_ = 39 constant SQLiteParserBEGIN_ (line 1273) | SQLiteParserBEGIN_ = 40 constant SQLiteParserBETWEEN_ (line 1274) | SQLiteParserBETWEEN_ = 41 constant SQLiteParserBY_ (line 1275) | SQLiteParserBY_ = 42 constant SQLiteParserCASCADE_ (line 1276) | SQLiteParserCASCADE_ = 43 constant SQLiteParserCASE_ (line 1277) | SQLiteParserCASE_ = 44 constant SQLiteParserCAST_ (line 1278) | SQLiteParserCAST_ = 45 constant SQLiteParserCHECK_ (line 1279) | SQLiteParserCHECK_ = 46 constant SQLiteParserCOLLATE_ (line 1280) | SQLiteParserCOLLATE_ = 47 constant SQLiteParserCOLUMN_ (line 1281) | SQLiteParserCOLUMN_ = 48 constant SQLiteParserCOMMIT_ (line 1282) | SQLiteParserCOMMIT_ = 49 constant SQLiteParserCONFLICT_ (line 1283) | SQLiteParserCONFLICT_ = 50 constant SQLiteParserCONSTRAINT_ (line 1284) | SQLiteParserCONSTRAINT_ = 51 constant SQLiteParserCREATE_ (line 1285) | SQLiteParserCREATE_ = 52 constant SQLiteParserCROSS_ (line 1286) | SQLiteParserCROSS_ = 53 constant SQLiteParserCURRENT_DATE_ (line 1287) | SQLiteParserCURRENT_DATE_ = 54 constant SQLiteParserCURRENT_TIME_ (line 1288) | SQLiteParserCURRENT_TIME_ = 55 constant SQLiteParserCURRENT_TIMESTAMP_ (line 1289) | SQLiteParserCURRENT_TIMESTAMP_ = 56 constant SQLiteParserDATABASE_ (line 1290) | SQLiteParserDATABASE_ = 57 constant SQLiteParserDEFAULT_ (line 1291) | SQLiteParserDEFAULT_ = 58 constant SQLiteParserDEFERRABLE_ (line 1292) | SQLiteParserDEFERRABLE_ = 59 constant SQLiteParserDEFERRED_ (line 1293) | SQLiteParserDEFERRED_ = 60 constant SQLiteParserDELETE_ (line 1294) | SQLiteParserDELETE_ = 61 constant SQLiteParserDESC_ (line 1295) | SQLiteParserDESC_ = 62 constant SQLiteParserDETACH_ (line 1296) | SQLiteParserDETACH_ = 63 constant SQLiteParserDISTINCT_ (line 1297) | SQLiteParserDISTINCT_ = 64 constant SQLiteParserDROP_ (line 1298) | SQLiteParserDROP_ = 65 constant SQLiteParserEACH_ (line 1299) | SQLiteParserEACH_ = 66 constant SQLiteParserELSE_ (line 1300) | SQLiteParserELSE_ = 67 constant SQLiteParserEND_ (line 1301) | SQLiteParserEND_ = 68 constant SQLiteParserESCAPE_ (line 1302) | SQLiteParserESCAPE_ = 69 constant SQLiteParserEXCEPT_ (line 1303) | SQLiteParserEXCEPT_ = 70 constant SQLiteParserEXCLUSIVE_ (line 1304) | SQLiteParserEXCLUSIVE_ = 71 constant SQLiteParserEXISTS_ (line 1305) | SQLiteParserEXISTS_ = 72 constant SQLiteParserEXPLAIN_ (line 1306) | SQLiteParserEXPLAIN_ = 73 constant SQLiteParserFAIL_ (line 1307) | SQLiteParserFAIL_ = 74 constant SQLiteParserFOR_ (line 1308) | SQLiteParserFOR_ = 75 constant SQLiteParserFOREIGN_ (line 1309) | SQLiteParserFOREIGN_ = 76 constant SQLiteParserFROM_ (line 1310) | SQLiteParserFROM_ = 77 constant SQLiteParserFULL_ (line 1311) | SQLiteParserFULL_ = 78 constant SQLiteParserGLOB_ (line 1312) | SQLiteParserGLOB_ = 79 constant SQLiteParserGROUP_ (line 1313) | SQLiteParserGROUP_ = 80 constant SQLiteParserHAVING_ (line 1314) | SQLiteParserHAVING_ = 81 constant SQLiteParserIF_ (line 1315) | SQLiteParserIF_ = 82 constant SQLiteParserIGNORE_ (line 1316) | SQLiteParserIGNORE_ = 83 constant SQLiteParserIMMEDIATE_ (line 1317) | SQLiteParserIMMEDIATE_ = 84 constant SQLiteParserIN_ (line 1318) | SQLiteParserIN_ = 85 constant SQLiteParserINDEX_ (line 1319) | SQLiteParserINDEX_ = 86 constant SQLiteParserINDEXED_ (line 1320) | SQLiteParserINDEXED_ = 87 constant SQLiteParserINITIALLY_ (line 1321) | SQLiteParserINITIALLY_ = 88 constant SQLiteParserINNER_ (line 1322) | SQLiteParserINNER_ = 89 constant SQLiteParserINSERT_ (line 1323) | SQLiteParserINSERT_ = 90 constant SQLiteParserINSTEAD_ (line 1324) | SQLiteParserINSTEAD_ = 91 constant SQLiteParserINTERSECT_ (line 1325) | SQLiteParserINTERSECT_ = 92 constant SQLiteParserINTO_ (line 1326) | SQLiteParserINTO_ = 93 constant SQLiteParserIS_ (line 1327) | SQLiteParserIS_ = 94 constant SQLiteParserISNULL_ (line 1328) | SQLiteParserISNULL_ = 95 constant SQLiteParserJOIN_ (line 1329) | SQLiteParserJOIN_ = 96 constant SQLiteParserKEY_ (line 1330) | SQLiteParserKEY_ = 97 constant SQLiteParserLEFT_ (line 1331) | SQLiteParserLEFT_ = 98 constant SQLiteParserLIKE_ (line 1332) | SQLiteParserLIKE_ = 99 constant SQLiteParserLIMIT_ (line 1333) | SQLiteParserLIMIT_ = 100 constant SQLiteParserMATCH_ (line 1334) | SQLiteParserMATCH_ = 101 constant SQLiteParserNATURAL_ (line 1335) | SQLiteParserNATURAL_ = 102 constant SQLiteParserNO_ (line 1336) | SQLiteParserNO_ = 103 constant SQLiteParserNOT_ (line 1337) | SQLiteParserNOT_ = 104 constant SQLiteParserNOTNULL_ (line 1338) | SQLiteParserNOTNULL_ = 105 constant SQLiteParserNULL_ (line 1339) | SQLiteParserNULL_ = 106 constant SQLiteParserOF_ (line 1340) | SQLiteParserOF_ = 107 constant SQLiteParserOFFSET_ (line 1341) | SQLiteParserOFFSET_ = 108 constant SQLiteParserON_ (line 1342) | SQLiteParserON_ = 109 constant SQLiteParserOR_ (line 1343) | SQLiteParserOR_ = 110 constant SQLiteParserORDER_ (line 1344) | SQLiteParserORDER_ = 111 constant SQLiteParserOUTER_ (line 1345) | SQLiteParserOUTER_ = 112 constant SQLiteParserPLAN_ (line 1346) | SQLiteParserPLAN_ = 113 constant SQLiteParserPRAGMA_ (line 1347) | SQLiteParserPRAGMA_ = 114 constant SQLiteParserPRIMARY_ (line 1348) | SQLiteParserPRIMARY_ = 115 constant SQLiteParserQUERY_ (line 1349) | SQLiteParserQUERY_ = 116 constant SQLiteParserRAISE_ (line 1350) | SQLiteParserRAISE_ = 117 constant SQLiteParserRECURSIVE_ (line 1351) | SQLiteParserRECURSIVE_ = 118 constant SQLiteParserREFERENCES_ (line 1352) | SQLiteParserREFERENCES_ = 119 constant SQLiteParserREGEXP_ (line 1353) | SQLiteParserREGEXP_ = 120 constant SQLiteParserREINDEX_ (line 1354) | SQLiteParserREINDEX_ = 121 constant SQLiteParserRELEASE_ (line 1355) | SQLiteParserRELEASE_ = 122 constant SQLiteParserRENAME_ (line 1356) | SQLiteParserRENAME_ = 123 constant SQLiteParserREPLACE_ (line 1357) | SQLiteParserREPLACE_ = 124 constant SQLiteParserRESTRICT_ (line 1358) | SQLiteParserRESTRICT_ = 125 constant SQLiteParserRETURNING_ (line 1359) | SQLiteParserRETURNING_ = 126 constant SQLiteParserRIGHT_ (line 1360) | SQLiteParserRIGHT_ = 127 constant SQLiteParserROLLBACK_ (line 1361) | SQLiteParserROLLBACK_ = 128 constant SQLiteParserROW_ (line 1362) | SQLiteParserROW_ = 129 constant SQLiteParserROWS_ (line 1363) | SQLiteParserROWS_ = 130 constant SQLiteParserSAVEPOINT_ (line 1364) | SQLiteParserSAVEPOINT_ = 131 constant SQLiteParserSELECT_ (line 1365) | SQLiteParserSELECT_ = 132 constant SQLiteParserSET_ (line 1366) | SQLiteParserSET_ = 133 constant SQLiteParserSTRICT_ (line 1367) | SQLiteParserSTRICT_ = 134 constant SQLiteParserTABLE_ (line 1368) | SQLiteParserTABLE_ = 135 constant SQLiteParserTEMP_ (line 1369) | SQLiteParserTEMP_ = 136 constant SQLiteParserTEMPORARY_ (line 1370) | SQLiteParserTEMPORARY_ = 137 constant SQLiteParserTHEN_ (line 1371) | SQLiteParserTHEN_ = 138 constant SQLiteParserTO_ (line 1372) | SQLiteParserTO_ = 139 constant SQLiteParserTRANSACTION_ (line 1373) | SQLiteParserTRANSACTION_ = 140 constant SQLiteParserTRIGGER_ (line 1374) | SQLiteParserTRIGGER_ = 141 constant SQLiteParserUNION_ (line 1375) | SQLiteParserUNION_ = 142 constant SQLiteParserUNIQUE_ (line 1376) | SQLiteParserUNIQUE_ = 143 constant SQLiteParserUPDATE_ (line 1377) | SQLiteParserUPDATE_ = 144 constant SQLiteParserUSING_ (line 1378) | SQLiteParserUSING_ = 145 constant SQLiteParserVACUUM_ (line 1379) | SQLiteParserVACUUM_ = 146 constant SQLiteParserVALUES_ (line 1380) | SQLiteParserVALUES_ = 147 constant SQLiteParserVIEW_ (line 1381) | SQLiteParserVIEW_ = 148 constant SQLiteParserVIRTUAL_ (line 1382) | SQLiteParserVIRTUAL_ = 149 constant SQLiteParserWHEN_ (line 1383) | SQLiteParserWHEN_ = 150 constant SQLiteParserWHERE_ (line 1384) | SQLiteParserWHERE_ = 151 constant SQLiteParserWITH_ (line 1385) | SQLiteParserWITH_ = 152 constant SQLiteParserWITHOUT_ (line 1386) | SQLiteParserWITHOUT_ = 153 constant SQLiteParserFIRST_VALUE_ (line 1387) | SQLiteParserFIRST_VALUE_ = 154 constant SQLiteParserOVER_ (line 1388) | SQLiteParserOVER_ = 155 constant SQLiteParserPARTITION_ (line 1389) | SQLiteParserPARTITION_ = 156 constant SQLiteParserRANGE_ (line 1390) | SQLiteParserRANGE_ = 157 constant SQLiteParserPRECEDING_ (line 1391) | SQLiteParserPRECEDING_ = 158 constant SQLiteParserUNBOUNDED_ (line 1392) | SQLiteParserUNBOUNDED_ = 159 constant SQLiteParserCURRENT_ (line 1393) | SQLiteParserCURRENT_ = 160 constant SQLiteParserFOLLOWING_ (line 1394) | SQLiteParserFOLLOWING_ = 161 constant SQLiteParserCUME_DIST_ (line 1395) | SQLiteParserCUME_DIST_ = 162 constant SQLiteParserDENSE_RANK_ (line 1396) | SQLiteParserDENSE_RANK_ = 163 constant SQLiteParserLAG_ (line 1397) | SQLiteParserLAG_ = 164 constant SQLiteParserLAST_VALUE_ (line 1398) | SQLiteParserLAST_VALUE_ = 165 constant SQLiteParserLEAD_ (line 1399) | SQLiteParserLEAD_ = 166 constant SQLiteParserNTH_VALUE_ (line 1400) | SQLiteParserNTH_VALUE_ = 167 constant SQLiteParserNTILE_ (line 1401) | SQLiteParserNTILE_ = 168 constant SQLiteParserPERCENT_RANK_ (line 1402) | SQLiteParserPERCENT_RANK_ = 169 constant SQLiteParserRANK_ (line 1403) | SQLiteParserRANK_ = 170 constant SQLiteParserROW_NUMBER_ (line 1404) | SQLiteParserROW_NUMBER_ = 171 constant SQLiteParserGENERATED_ (line 1405) | SQLiteParserGENERATED_ = 172 constant SQLiteParserALWAYS_ (line 1406) | SQLiteParserALWAYS_ = 173 constant SQLiteParserSTORED_ (line 1407) | SQLiteParserSTORED_ = 174 constant SQLiteParserTRUE_ (line 1408) | SQLiteParserTRUE_ = 175 constant SQLiteParserFALSE_ (line 1409) | SQLiteParserFALSE_ = 176 constant SQLiteParserWINDOW_ (line 1410) | SQLiteParserWINDOW_ = 177 constant SQLiteParserNULLS_ (line 1411) | SQLiteParserNULLS_ = 178 constant SQLiteParserFIRST_ (line 1412) | SQLiteParserFIRST_ = 179 constant SQLiteParserLAST_ (line 1413) | SQLiteParserLAST_ = 180 constant SQLiteParserFILTER_ (line 1414) | SQLiteParserFILTER_ = 181 constant SQLiteParserGROUPS_ (line 1415) | SQLiteParserGROUPS_ = 182 constant SQLiteParserEXCLUDE_ (line 1416) | SQLiteParserEXCLUDE_ = 183 constant SQLiteParserTIES_ (line 1417) | SQLiteParserTIES_ = 184 constant SQLiteParserOTHERS_ (line 1418) | SQLiteParserOTHERS_ = 185 constant SQLiteParserDO_ (line 1419) | SQLiteParserDO_ = 186 constant SQLiteParserNOTHING_ (line 1420) | SQLiteParserNOTHING_ = 187 constant SQLiteParserIDENTIFIER (line 1421) | SQLiteParserIDENTIFIER = 188 constant SQLiteParserNUMERIC_LITERAL (line 1422) | SQLiteParserNUMERIC_LITERAL = 189 constant SQLiteParserNUMBERED_BIND_PARAMETER (line 1423) | SQLiteParserNUMBERED_BIND_PARAMETER = 190 constant SQLiteParserNAMED_BIND_PARAMETER (line 1424) | SQLiteParserNAMED_BIND_PARAMETER = 191 constant SQLiteParserSTRING_LITERAL (line 1425) | SQLiteParserSTRING_LITERAL = 192 constant SQLiteParserBLOB_LITERAL (line 1426) | SQLiteParserBLOB_LITERAL = 193 constant SQLiteParserSINGLE_LINE_COMMENT (line 1427) | SQLiteParserSINGLE_LINE_COMMENT = 194 constant SQLiteParserMULTILINE_COMMENT (line 1428) | SQLiteParserMULTILINE_COMMENT = 195 constant SQLiteParserSPACES (line 1429) | SQLiteParserSPACES = 196 constant SQLiteParserUNEXPECTED_CHAR (line 1430) | SQLiteParserUNEXPECTED_CHAR = 197 constant SQLiteParserRULE_parse (line 1435) | SQLiteParserRULE_parse = 0 constant SQLiteParserRULE_sql_stmt_list (line 1436) | SQLiteParserRULE_sql_stmt_list = 1 constant SQLiteParserRULE_sql_stmt (line 1437) | SQLiteParserRULE_sql_stmt = 2 constant SQLiteParserRULE_alter_table_stmt (line 1438) | SQLiteParserRULE_alter_table_stmt = 3 constant SQLiteParserRULE_analyze_stmt (line 1439) | SQLiteParserRULE_analyze_stmt = 4 constant SQLiteParserRULE_attach_stmt (line 1440) | SQLiteParserRULE_attach_stmt = 5 constant SQLiteParserRULE_begin_stmt (line 1441) | SQLiteParserRULE_begin_stmt = 6 constant SQLiteParserRULE_commit_stmt (line 1442) | SQLiteParserRULE_commit_stmt = 7 constant SQLiteParserRULE_rollback_stmt (line 1443) | SQLiteParserRULE_rollback_stmt = 8 constant SQLiteParserRULE_savepoint_stmt (line 1444) | SQLiteParserRULE_savepoint_stmt = 9 constant SQLiteParserRULE_release_stmt (line 1445) | SQLiteParserRULE_release_stmt = 10 constant SQLiteParserRULE_create_index_stmt (line 1446) | SQLiteParserRULE_create_index_stmt = 11 constant SQLiteParserRULE_indexed_column (line 1447) | SQLiteParserRULE_indexed_column = 12 constant SQLiteParserRULE_table_option (line 1448) | SQLiteParserRULE_table_option = 13 constant SQLiteParserRULE_create_table_stmt (line 1449) | SQLiteParserRULE_create_table_stmt = 14 constant SQLiteParserRULE_column_def (line 1450) | SQLiteParserRULE_column_def = 15 constant SQLiteParserRULE_type_name (line 1451) | SQLiteParserRULE_type_name = 16 constant SQLiteParserRULE_column_constraint (line 1452) | SQLiteParserRULE_column_constraint = 17 constant SQLiteParserRULE_signed_number (line 1453) | SQLiteParserRULE_signed_number = 18 constant SQLiteParserRULE_table_constraint (line 1454) | SQLiteParserRULE_table_constraint = 19 constant SQLiteParserRULE_foreign_key_clause (line 1455) | SQLiteParserRULE_foreign_key_clause = 20 constant SQLiteParserRULE_conflict_clause (line 1456) | SQLiteParserRULE_conflict_clause = 21 constant SQLiteParserRULE_create_trigger_stmt (line 1457) | SQLiteParserRULE_create_trigger_stmt = 22 constant SQLiteParserRULE_create_view_stmt (line 1458) | SQLiteParserRULE_create_view_stmt = 23 constant SQLiteParserRULE_create_virtual_table_stmt (line 1459) | SQLiteParserRULE_create_virtual_table_stmt = 24 constant SQLiteParserRULE_with_clause (line 1460) | SQLiteParserRULE_with_clause = 25 constant SQLiteParserRULE_cte_table_name (line 1461) | SQLiteParserRULE_cte_table_name = 26 constant SQLiteParserRULE_recursive_cte (line 1462) | SQLiteParserRULE_recursive_cte = 27 constant SQLiteParserRULE_common_table_expression (line 1463) | SQLiteParserRULE_common_table_expression = 28 constant SQLiteParserRULE_returning_clause (line 1464) | SQLiteParserRULE_returning_clause = 29 constant SQLiteParserRULE_delete_stmt (line 1465) | SQLiteParserRULE_delete_stmt = 30 constant SQLiteParserRULE_delete_stmt_limited (line 1466) | SQLiteParserRULE_delete_stmt_limited = 31 constant SQLiteParserRULE_detach_stmt (line 1467) | SQLiteParserRULE_detach_stmt = 32 constant SQLiteParserRULE_drop_stmt (line 1468) | SQLiteParserRULE_drop_stmt = 33 constant SQLiteParserRULE_expr (line 1469) | SQLiteParserRULE_expr = 34 constant SQLiteParserRULE_raise_function (line 1470) | SQLiteParserRULE_raise_function = 35 constant SQLiteParserRULE_literal_value (line 1471) | SQLiteParserRULE_literal_value = 36 constant SQLiteParserRULE_insert_stmt (line 1472) | SQLiteParserRULE_insert_stmt = 37 constant SQLiteParserRULE_upsert_clause (line 1473) | SQLiteParserRULE_upsert_clause = 38 constant SQLiteParserRULE_pragma_stmt (line 1474) | SQLiteParserRULE_pragma_stmt = 39 constant SQLiteParserRULE_pragma_value (line 1475) | SQLiteParserRULE_pragma_value = 40 constant SQLiteParserRULE_reindex_stmt (line 1476) | SQLiteParserRULE_reindex_stmt = 41 constant SQLiteParserRULE_select_stmt (line 1477) | SQLiteParserRULE_select_stmt = 42 constant SQLiteParserRULE_join_clause (line 1478) | SQLiteParserRULE_join_clause = 43 constant SQLiteParserRULE_select_core (line 1479) | SQLiteParserRULE_select_core = 44 constant SQLiteParserRULE_factored_select_stmt (line 1480) | SQLiteParserRULE_factored_select_stmt = 45 constant SQLiteParserRULE_simple_select_stmt (line 1481) | SQLiteParserRULE_simple_select_stmt = 46 constant SQLiteParserRULE_compound_select_stmt (line 1482) | SQLiteParserRULE_compound_select_stmt = 47 constant SQLiteParserRULE_table_or_subquery (line 1483) | SQLiteParserRULE_table_or_subquery = 48 constant SQLiteParserRULE_result_column (line 1484) | SQLiteParserRULE_result_column = 49 constant SQLiteParserRULE_join_operator (line 1485) | SQLiteParserRULE_join_operator = 50 constant SQLiteParserRULE_join_constraint (line 1486) | SQLiteParserRULE_join_constraint = 51 constant SQLiteParserRULE_compound_operator (line 1487) | SQLiteParserRULE_compound_operator = 52 constant SQLiteParserRULE_update_stmt (line 1488) | SQLiteParserRULE_update_stmt = 53 constant SQLiteParserRULE_column_name_list (line 1489) | SQLiteParserRULE_column_name_list = 54 constant SQLiteParserRULE_update_stmt_limited (line 1490) | SQLiteParserRULE_update_stmt_limited = 55 constant SQLiteParserRULE_qualified_table_name (line 1491) | SQLiteParserRULE_qualified_table_name = 56 constant SQLiteParserRULE_vacuum_stmt (line 1492) | SQLiteParserRULE_vacuum_stmt = 57 constant SQLiteParserRULE_filter_clause (line 1493) | SQLiteParserRULE_filter_clause = 58 constant SQLiteParserRULE_window_defn (line 1494) | SQLiteParserRULE_window_defn = 59 constant SQLiteParserRULE_over_clause (line 1495) | SQLiteParserRULE_over_clause = 60 constant SQLiteParserRULE_frame_spec (line 1496) | SQLiteParserRULE_frame_spec = 61 constant SQLiteParserRULE_frame_clause (line 1497) | SQLiteParserRULE_frame_clause = 62 constant SQLiteParserRULE_simple_function_invocation (line 1498) | SQLiteParserRULE_simple_function_invocation = 63 constant SQLiteParserRULE_aggregate_function_invocation (line 1499) | SQLiteParserRULE_aggregate_function_invocation = 64 constant SQLiteParserRULE_window_function_invocation (line 1500) | SQLiteParserRULE_window_function_invocation = 65 constant SQLiteParserRULE_common_table_stmt (line 1501) | SQLiteParserRULE_common_table_stmt = 66 constant SQLiteParserRULE_order_by_stmt (line 1502) | SQLiteParserRULE_order_by_stmt = 67 constant SQLiteParserRULE_limit_stmt (line 1503) | SQLiteParserRULE_limit_stmt = 68 constant SQLiteParserRULE_ordering_term (line 1504) | SQLiteParserRULE_ordering_term = 69 constant SQLiteParserRULE_asc_desc (line 1505) | SQLiteParserRULE_asc_desc = 70 constant SQLiteParserRULE_frame_left (line 1506) | SQLiteParserRULE_frame_left = 71 constant SQLiteParserRULE_frame_right (line 1507) | SQLiteParserRULE_frame_right = 72 constant SQLiteParserRULE_frame_single (line 1508) | SQLiteParserRULE_frame_single = 73 constant SQLiteParserRULE_window_function (line 1509) | SQLiteParserRULE_window_function = 74 constant SQLiteParserRULE_of_OF_fset (line 1510) | SQLiteParserRULE_of_OF_fset = 75 constant SQLiteParserRULE_default_DEFAULT__value (line 1511) | SQLiteParserRULE_default_DEFAULT__value = 76 constant SQLiteParserRULE_partition_by (line 1512) | SQLiteParserRULE_partition_by = 77 constant SQLiteParserRULE_order_by_expr (line 1513) | SQLiteParserRULE_order_by_expr = 78 constant SQLiteParserRULE_order_by_expr_asc_desc (line 1514) | SQLiteParserRULE_order_by_expr_asc_desc = 79 constant SQLiteParserRULE_expr_asc_desc (line 1515) | SQLiteParserRULE_expr_asc_desc = 80 constant SQLiteParserRULE_initial_select (line 1516) | SQLiteParserRULE_initial_select = 81 constant SQLiteParserRULE_recursive__select (line 1517) | SQLiteParserRULE_recursive__select = 82 constant SQLiteParserRULE_unary_operator (line 1518) | SQLiteParserRULE_unary_operator = 83 constant SQLiteParserRULE_error_message (line 1519) | SQLiteParserRULE_error_message = 84 constant SQLiteParserRULE_module_argument (line 1520) | SQLiteParserRULE_module_argument = 85 constant SQLiteParserRULE_column_alias (line 1521) | SQLiteParserRULE_column_alias = 86 constant SQLiteParserRULE_keyword (line 1522) | SQLiteParserRULE_keyword = 87 constant SQLiteParserRULE_name (line 1523) | SQLiteParserRULE_name = 88 constant SQLiteParserRULE_function_name (line 1524) | SQLiteParserRULE_function_name = 89 constant SQLiteParserRULE_qualified_function_name (line 1525) | SQLiteParserRULE_qualified_function_name = 90 constant SQLiteParserRULE_schema_name (line 1526) | SQLiteParserRULE_schema_name = 91 constant SQLiteParserRULE_table_name (line 1527) | SQLiteParserRULE_table_name = 92 constant SQLiteParserRULE_table_or_index_name (line 1528) | SQLiteParserRULE_table_or_index_name = 93 constant SQLiteParserRULE_new_table_name (line 1529) | SQLiteParserRULE_new_table_name = 94 constant SQLiteParserRULE_column_name (line 1530) | SQLiteParserRULE_column_name = 95 constant SQLiteParserRULE_collation_name (line 1531) | SQLiteParserRULE_collation_name = 96 constant SQLiteParserRULE_foreign_table (line 1532) | SQLiteParserRULE_foreign_table = 97 constant SQLiteParserRULE_index_name (line 1533) | SQLiteParserRULE_index_name = 98 constant SQLiteParserRULE_trigger_name (line 1534) | SQLiteParserRULE_trigger_name = 99 constant SQLiteParserRULE_view_name (line 1535) | SQLiteParserRULE_view_name = 100 constant SQLiteParserRULE_module_name (line 1536) | SQLiteParserRULE_module_name = 101 constant SQLiteParserRULE_pragma_name (line 1537) | SQLiteParserRULE_pragma_name = 102 constant SQLiteParserRULE_savepoint_name (line 1538) | SQLiteParserRULE_savepoint_name = 103 constant SQLiteParserRULE_table_alias (line 1539) | SQLiteParserRULE_table_alias = 104 constant SQLiteParserRULE_table_alias_fallback (line 1540) | SQLiteParserRULE_table_alias_fallback = 105 constant SQLiteParserRULE_transaction_name (line 1541) | SQLiteParserRULE_transaction_name = 106 constant SQLiteParserRULE_window_name (line 1542) | SQLiteParserRULE_window_name = 107 constant SQLiteParserRULE_alias (line 1543) | SQLiteParserRULE_alias = 108 constant SQLiteParserRULE_filename (line 1544) | SQLiteParserRULE_filename = 109 constant SQLiteParserRULE_base_window_name (line 1545) | SQLiteParserRULE_base_window_name = 110 constant SQLiteParserRULE_simple_func (line 1546) | SQLiteParserRULE_simple_func = 111 constant SQLiteParserRULE_aggregate_func (line 1547) | SQLiteParserRULE_aggregate_func = 112 constant SQLiteParserRULE_table_function_name (line 1548) | SQLiteParserRULE_table_function_name = 113 constant SQLiteParserRULE_any_name (line 1549) | SQLiteParserRULE_any_name = 114 type IParseContext (line 1553) | type IParseContext interface type ParseContext (line 1568) | type ParseContext struct method IsParseContext (line 1585) | func (*ParseContext) IsParseContext() {} method GetParser (line 1598) | func (s *ParseContext) GetParser() antlr.Parser { return s.parser } method EOF (line 1600) | func (s *ParseContext) EOF() antlr.TerminalNode { method AllSql_stmt_list (line 1604) | func (s *ParseContext) AllSql_stmt_list() []ISql_stmt_listContext { method Sql_stmt_list (line 1625) | func (s *ParseContext) Sql_stmt_list(i int) ISql_stmt_listContext { method GetRuleContext (line 1645) | func (s *ParseContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 1649) | func (s *ParseContext) ToStringTree(ruleNames []string, recog antlr.Re... method EnterRule (line 1653) | func (s *ParseContext) EnterRule(listener antlr.ParseTreeListener) { method ExitRule (line 1659) | func (s *ParseContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyParseContext (line 1573) | func NewEmptyParseContext() *ParseContext { function InitEmptyParseContext (line 1580) | func InitEmptyParseContext(p *ParseContext) { function NewParseContext (line 1587) | func NewParseContext(parser antlr.Parser, parent antlr.ParserRuleContext... type ISql_stmt_listContext (line 1714) | type ISql_stmt_listContext interface type Sql_stmt_listContext (line 1730) | type Sql_stmt_listContext struct method IsSql_stmt_listContext (line 1747) | func (*Sql_stmt_listContext) IsSql_stmt_listContext() {} method GetParser (line 1760) | func (s *Sql_stmt_listContext) GetParser() antlr.Parser { return s.par... method AllSql_stmt (line 1762) | func (s *Sql_stmt_listContext) AllSql_stmt() []ISql_stmtContext { method Sql_stmt (line 1783) | func (s *Sql_stmt_listContext) Sql_stmt(i int) ISql_stmtContext { method AllSCOL (line 1803) | func (s *Sql_stmt_listContext) AllSCOL() []antlr.TerminalNode { method SCOL (line 1807) | func (s *Sql_stmt_listContext) SCOL(i int) antlr.TerminalNode { method GetRuleContext (line 1811) | func (s *Sql_stmt_listContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 1815) | func (s *Sql_stmt_listContext) ToStringTree(ruleNames []string, recog ... method EnterRule (line 1819) | func (s *Sql_stmt_listContext) EnterRule(listener antlr.ParseTreeListe... method ExitRule (line 1825) | func (s *Sql_stmt_listContext) ExitRule(listener antlr.ParseTreeListen... function NewEmptySql_stmt_listContext (line 1735) | func NewEmptySql_stmt_listContext() *Sql_stmt_listContext { function InitEmptySql_stmt_listContext (line 1742) | func InitEmptySql_stmt_listContext(p *Sql_stmt_listContext) { function NewSql_stmt_listContext (line 1749) | func NewSql_stmt_listContext(parser antlr.Parser, parent antlr.ParserRul... type ISql_stmtContext (line 1964) | type ISql_stmtContext interface type Sql_stmtContext (line 2003) | type Sql_stmtContext struct method IsSql_stmtContext (line 2020) | func (*Sql_stmtContext) IsSql_stmtContext() {} method GetParser (line 2033) | func (s *Sql_stmtContext) GetParser() antlr.Parser { return s.parser } method Alter_table_stmt (line 2035) | func (s *Sql_stmtContext) Alter_table_stmt() IAlter_table_stmtContext { method Analyze_stmt (line 2051) | func (s *Sql_stmtContext) Analyze_stmt() IAnalyze_stmtContext { method Attach_stmt (line 2067) | func (s *Sql_stmtContext) Attach_stmt() IAttach_stmtContext { method Begin_stmt (line 2083) | func (s *Sql_stmtContext) Begin_stmt() IBegin_stmtContext { method Commit_stmt (line 2099) | func (s *Sql_stmtContext) Commit_stmt() ICommit_stmtContext { method Create_index_stmt (line 2115) | func (s *Sql_stmtContext) Create_index_stmt() ICreate_index_stmtContext { method Create_table_stmt (line 2131) | func (s *Sql_stmtContext) Create_table_stmt() ICreate_table_stmtContext { method Create_trigger_stmt (line 2147) | func (s *Sql_stmtContext) Create_trigger_stmt() ICreate_trigger_stmtCo... method Create_view_stmt (line 2163) | func (s *Sql_stmtContext) Create_view_stmt() ICreate_view_stmtContext { method Create_virtual_table_stmt (line 2179) | func (s *Sql_stmtContext) Create_virtual_table_stmt() ICreate_virtual_... method Delete_stmt (line 2195) | func (s *Sql_stmtContext) Delete_stmt() IDelete_stmtContext { method Delete_stmt_limited (line 2211) | func (s *Sql_stmtContext) Delete_stmt_limited() IDelete_stmt_limitedCo... method Detach_stmt (line 2227) | func (s *Sql_stmtContext) Detach_stmt() IDetach_stmtContext { method Drop_stmt (line 2243) | func (s *Sql_stmtContext) Drop_stmt() IDrop_stmtContext { method Insert_stmt (line 2259) | func (s *Sql_stmtContext) Insert_stmt() IInsert_stmtContext { method Pragma_stmt (line 2275) | func (s *Sql_stmtContext) Pragma_stmt() IPragma_stmtContext { method Reindex_stmt (line 2291) | func (s *Sql_stmtContext) Reindex_stmt() IReindex_stmtContext { method Release_stmt (line 2307) | func (s *Sql_stmtContext) Release_stmt() IRelease_stmtContext { method Rollback_stmt (line 2323) | func (s *Sql_stmtContext) Rollback_stmt() IRollback_stmtContext { method Savepoint_stmt (line 2339) | func (s *Sql_stmtContext) Savepoint_stmt() ISavepoint_stmtContext { method Select_stmt (line 2355) | func (s *Sql_stmtContext) Select_stmt() ISelect_stmtContext { method Update_stmt (line 2371) | func (s *Sql_stmtContext) Update_stmt() IUpdate_stmtContext { method Update_stmt_limited (line 2387) | func (s *Sql_stmtContext) Update_stmt_limited() IUpdate_stmt_limitedCo... method Vacuum_stmt (line 2403) | func (s *Sql_stmtContext) Vacuum_stmt() IVacuum_stmtContext { method EXPLAIN_ (line 2419) | func (s *Sql_stmtContext) EXPLAIN_() antlr.TerminalNode { method QUERY_ (line 2423) | func (s *Sql_stmtContext) QUERY_() antlr.TerminalNode { method PLAN_ (line 2427) | func (s *Sql_stmtContext) PLAN_() antlr.TerminalNode { method GetRuleContext (line 2431) | func (s *Sql_stmtContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 2435) | func (s *Sql_stmtContext) ToStringTree(ruleNames []string, recog antlr... method EnterRule (line 2439) | func (s *Sql_stmtContext) EnterRule(listener antlr.ParseTreeListener) { method ExitRule (line 2445) | func (s *Sql_stmtContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptySql_stmtContext (line 2008) | func NewEmptySql_stmtContext() *Sql_stmtContext { function InitEmptySql_stmtContext (line 2015) | func InitEmptySql_stmtContext(p *Sql_stmtContext) { function NewSql_stmtContext (line 2022) | func NewSql_stmtContext(parser antlr.Parser, parent antlr.ParserRuleCont... type IAlter_table_stmtContext (line 2670) | type IAlter_table_stmtContext interface type Alter_table_stmtContext (line 2708) | type Alter_table_stmtContext struct method IsAlter_table_stmtContext (line 2727) | func (*Alter_table_stmtContext) IsAlter_table_stmtContext() {} method GetParser (line 2740) | func (s *Alter_table_stmtContext) GetParser() antlr.Parser { return s.... method GetOld_column_name (line 2742) | func (s *Alter_table_stmtContext) GetOld_column_name() IColumn_nameCon... method GetNew_column_name (line 2744) | func (s *Alter_table_stmtContext) GetNew_column_name() IColumn_nameCon... method SetOld_column_name (line 2746) | func (s *Alter_table_stmtContext) SetOld_column_name(v IColumn_nameCon... method SetNew_column_name (line 2748) | func (s *Alter_table_stmtContext) SetNew_column_name(v IColumn_nameCon... method ALTER_ (line 2750) | func (s *Alter_table_stmtContext) ALTER_() antlr.TerminalNode { method TABLE_ (line 2754) | func (s *Alter_table_stmtContext) TABLE_() antlr.TerminalNode { method Table_name (line 2758) | func (s *Alter_table_stmtContext) Table_name() ITable_nameContext { method RENAME_ (line 2774) | func (s *Alter_table_stmtContext) RENAME_() antlr.TerminalNode { method ADD_ (line 2778) | func (s *Alter_table_stmtContext) ADD_() antlr.TerminalNode { method Column_def (line 2782) | func (s *Alter_table_stmtContext) Column_def() IColumn_defContext { method DROP_ (line 2798) | func (s *Alter_table_stmtContext) DROP_() antlr.TerminalNode { method AllColumn_name (line 2802) | func (s *Alter_table_stmtContext) AllColumn_name() []IColumn_nameConte... method Column_name (line 2823) | func (s *Alter_table_stmtContext) Column_name(i int) IColumn_nameConte... method Schema_name (line 2843) | func (s *Alter_table_stmtContext) Schema_name() ISchema_nameContext { method DOT (line 2859) | func (s *Alter_table_stmtContext) DOT() antlr.TerminalNode { method TO_ (line 2863) | func (s *Alter_table_stmtContext) TO_() antlr.TerminalNode { method New_table_name (line 2867) | func (s *Alter_table_stmtContext) New_table_name() INew_table_nameCont... method COLUMN_ (line 2883) | func (s *Alter_table_stmtContext) COLUMN_() antlr.TerminalNode { method GetRuleContext (line 2887) | func (s *Alter_table_stmtContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 2891) | func (s *Alter_table_stmtContext) ToStringTree(ruleNames []string, rec... method EnterRule (line 2895) | func (s *Alter_table_stmtContext) EnterRule(listener antlr.ParseTreeLi... method ExitRule (line 2901) | func (s *Alter_table_stmtContext) ExitRule(listener antlr.ParseTreeLis... function NewEmptyAlter_table_stmtContext (line 2715) | func NewEmptyAlter_table_stmtContext() *Alter_table_stmtContext { function InitEmptyAlter_table_stmtContext (line 2722) | func InitEmptyAlter_table_stmtContext(p *Alter_table_stmtContext) { function NewAlter_table_stmtContext (line 2729) | func NewAlter_table_stmtContext(parser antlr.Parser, parent antlr.Parser... type IAnalyze_stmtContext (line 3111) | type IAnalyze_stmtContext interface type Analyze_stmtContext (line 3127) | type Analyze_stmtContext struct method IsAnalyze_stmtContext (line 3144) | func (*Analyze_stmtContext) IsAnalyze_stmtContext() {} method GetParser (line 3157) | func (s *Analyze_stmtContext) GetParser() antlr.Parser { return s.pars... method ANALYZE_ (line 3159) | func (s *Analyze_stmtContext) ANALYZE_() antlr.TerminalNode { method Schema_name (line 3163) | func (s *Analyze_stmtContext) Schema_name() ISchema_nameContext { method Table_or_index_name (line 3179) | func (s *Analyze_stmtContext) Table_or_index_name() ITable_or_index_na... method DOT (line 3195) | func (s *Analyze_stmtContext) DOT() antlr.TerminalNode { method GetRuleContext (line 3199) | func (s *Analyze_stmtContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 3203) | func (s *Analyze_stmtContext) ToStringTree(ruleNames []string, recog a... method EnterRule (line 3207) | func (s *Analyze_stmtContext) EnterRule(listener antlr.ParseTreeListen... method ExitRule (line 3213) | func (s *Analyze_stmtContext) ExitRule(listener antlr.ParseTreeListene... function NewEmptyAnalyze_stmtContext (line 3132) | func NewEmptyAnalyze_stmtContext() *Analyze_stmtContext { function InitEmptyAnalyze_stmtContext (line 3139) | func InitEmptyAnalyze_stmtContext(p *Analyze_stmtContext) { function NewAnalyze_stmtContext (line 3146) | func NewAnalyze_stmtContext(parser antlr.Parser, parent antlr.ParserRule... type IAttach_stmtContext (line 3286) | type IAttach_stmtContext interface type Attach_stmtContext (line 3303) | type Attach_stmtContext struct method IsAttach_stmtContext (line 3320) | func (*Attach_stmtContext) IsAttach_stmtContext() {} method GetParser (line 3333) | func (s *Attach_stmtContext) GetParser() antlr.Parser { return s.parser } method ATTACH_ (line 3335) | func (s *Attach_stmtContext) ATTACH_() antlr.TerminalNode { method Expr (line 3339) | func (s *Attach_stmtContext) Expr() IExprContext { method AS_ (line 3355) | func (s *Attach_stmtContext) AS_() antlr.TerminalNode { method Schema_name (line 3359) | func (s *Attach_stmtContext) Schema_name() ISchema_nameContext { method DATABASE_ (line 3375) | func (s *Attach_stmtContext) DATABASE_() antlr.TerminalNode { method GetRuleContext (line 3379) | func (s *Attach_stmtContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 3383) | func (s *Attach_stmtContext) ToStringTree(ruleNames []string, recog an... method EnterRule (line 3387) | func (s *Attach_stmtContext) EnterRule(listener antlr.ParseTreeListene... method ExitRule (line 3393) | func (s *Attach_stmtContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyAttach_stmtContext (line 3308) | func NewEmptyAttach_stmtContext() *Attach_stmtContext { function InitEmptyAttach_stmtContext (line 3315) | func InitEmptyAttach_stmtContext(p *Attach_stmtContext) { function NewAttach_stmtContext (line 3322) | func NewAttach_stmtContext(parser antlr.Parser, parent antlr.ParserRuleC... type IBegin_stmtContext (line 3458) | type IBegin_stmtContext interface type Begin_stmtContext (line 3476) | type Begin_stmtContext struct method IsBegin_stmtContext (line 3493) | func (*Begin_stmtContext) IsBegin_stmtContext() {} method GetParser (line 3506) | func (s *Begin_stmtContext) GetParser() antlr.Parser { return s.parser } method BEGIN_ (line 3508) | func (s *Begin_stmtContext) BEGIN_() antlr.TerminalNode { method TRANSACTION_ (line 3512) | func (s *Begin_stmtContext) TRANSACTION_() antlr.TerminalNode { method DEFERRED_ (line 3516) | func (s *Begin_stmtContext) DEFERRED_() antlr.TerminalNode { method IMMEDIATE_ (line 3520) | func (s *Begin_stmtContext) IMMEDIATE_() antlr.TerminalNode { method EXCLUSIVE_ (line 3524) | func (s *Begin_stmtContext) EXCLUSIVE_() antlr.TerminalNode { method Transaction_name (line 3528) | func (s *Begin_stmtContext) Transaction_name() ITransaction_nameContext { method GetRuleContext (line 3544) | func (s *Begin_stmtContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 3548) | func (s *Begin_stmtContext) ToStringTree(ruleNames []string, recog ant... method EnterRule (line 3552) | func (s *Begin_stmtContext) EnterRule(listener antlr.ParseTreeListener) { method ExitRule (line 3558) | func (s *Begin_stmtContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyBegin_stmtContext (line 3481) | func NewEmptyBegin_stmtContext() *Begin_stmtContext { function InitEmptyBegin_stmtContext (line 3488) | func InitEmptyBegin_stmtContext(p *Begin_stmtContext) { function NewBegin_stmtContext (line 3495) | func NewBegin_stmtContext(parser antlr.Parser, parent antlr.ParserRuleCo... type ICommit_stmtContext (line 3644) | type ICommit_stmtContext interface type Commit_stmtContext (line 3659) | type Commit_stmtContext struct method IsCommit_stmtContext (line 3676) | func (*Commit_stmtContext) IsCommit_stmtContext() {} method GetParser (line 3689) | func (s *Commit_stmtContext) GetParser() antlr.Parser { return s.parser } method COMMIT_ (line 3691) | func (s *Commit_stmtContext) COMMIT_() antlr.TerminalNode { method END_ (line 3695) | func (s *Commit_stmtContext) END_() antlr.TerminalNode { method TRANSACTION_ (line 3699) | func (s *Commit_stmtContext) TRANSACTION_() antlr.TerminalNode { method GetRuleContext (line 3703) | func (s *Commit_stmtContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 3707) | func (s *Commit_stmtContext) ToStringTree(ruleNames []string, recog an... method EnterRule (line 3711) | func (s *Commit_stmtContext) EnterRule(listener antlr.ParseTreeListene... method ExitRule (line 3717) | func (s *Commit_stmtContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyCommit_stmtContext (line 3664) | func NewEmptyCommit_stmtContext() *Commit_stmtContext { function InitEmptyCommit_stmtContext (line 3671) | func InitEmptyCommit_stmtContext(p *Commit_stmtContext) { function NewCommit_stmtContext (line 3678) | func NewCommit_stmtContext(parser antlr.Parser, parent antlr.ParserRuleC... type IRollback_stmtContext (line 3773) | type IRollback_stmtContext interface type Rollback_stmtContext (line 3790) | type Rollback_stmtContext struct method IsRollback_stmtContext (line 3807) | func (*Rollback_stmtContext) IsRollback_stmtContext() {} method GetParser (line 3820) | func (s *Rollback_stmtContext) GetParser() antlr.Parser { return s.par... method ROLLBACK_ (line 3822) | func (s *Rollback_stmtContext) ROLLBACK_() antlr.TerminalNode { method TRANSACTION_ (line 3826) | func (s *Rollback_stmtContext) TRANSACTION_() antlr.TerminalNode { method TO_ (line 3830) | func (s *Rollback_stmtContext) TO_() antlr.TerminalNode { method Savepoint_name (line 3834) | func (s *Rollback_stmtContext) Savepoint_name() ISavepoint_nameContext { method SAVEPOINT_ (line 3850) | func (s *Rollback_stmtContext) SAVEPOINT_() antlr.TerminalNode { method GetRuleContext (line 3854) | func (s *Rollback_stmtContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 3858) | func (s *Rollback_stmtContext) ToStringTree(ruleNames []string, recog ... method EnterRule (line 3862) | func (s *Rollback_stmtContext) EnterRule(listener antlr.ParseTreeListe... method ExitRule (line 3868) | func (s *Rollback_stmtContext) ExitRule(listener antlr.ParseTreeListen... function NewEmptyRollback_stmtContext (line 3795) | func NewEmptyRollback_stmtContext() *Rollback_stmtContext { function InitEmptyRollback_stmtContext (line 3802) | func InitEmptyRollback_stmtContext(p *Rollback_stmtContext) { function NewRollback_stmtContext (line 3809) | func NewRollback_stmtContext(parser antlr.Parser, parent antlr.ParserRul... type ISavepoint_stmtContext (line 3959) | type ISavepoint_stmtContext interface type Savepoint_stmtContext (line 3973) | type Savepoint_stmtContext struct method IsSavepoint_stmtContext (line 3990) | func (*Savepoint_stmtContext) IsSavepoint_stmtContext() {} method GetParser (line 4003) | func (s *Savepoint_stmtContext) GetParser() antlr.Parser { return s.pa... method SAVEPOINT_ (line 4005) | func (s *Savepoint_stmtContext) SAVEPOINT_() antlr.TerminalNode { method Savepoint_name (line 4009) | func (s *Savepoint_stmtContext) Savepoint_name() ISavepoint_nameContext { method GetRuleContext (line 4025) | func (s *Savepoint_stmtContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 4029) | func (s *Savepoint_stmtContext) ToStringTree(ruleNames []string, recog... method EnterRule (line 4033) | func (s *Savepoint_stmtContext) EnterRule(listener antlr.ParseTreeList... method ExitRule (line 4039) | func (s *Savepoint_stmtContext) ExitRule(listener antlr.ParseTreeListe... function NewEmptySavepoint_stmtContext (line 3978) | func NewEmptySavepoint_stmtContext() *Savepoint_stmtContext { function InitEmptySavepoint_stmtContext (line 3985) | func InitEmptySavepoint_stmtContext(p *Savepoint_stmtContext) { function NewSavepoint_stmtContext (line 3992) | func NewSavepoint_stmtContext(parser antlr.Parser, parent antlr.ParserRu... type IRelease_stmtContext (line 4076) | type IRelease_stmtContext interface type Release_stmtContext (line 4091) | type Release_stmtContext struct method IsRelease_stmtContext (line 4108) | func (*Release_stmtContext) IsRelease_stmtContext() {} method GetParser (line 4121) | func (s *Release_stmtContext) GetParser() antlr.Parser { return s.pars... method RELEASE_ (line 4123) | func (s *Release_stmtContext) RELEASE_() antlr.TerminalNode { method Savepoint_name (line 4127) | func (s *Release_stmtContext) Savepoint_name() ISavepoint_nameContext { method SAVEPOINT_ (line 4143) | func (s *Release_stmtContext) SAVEPOINT_() antlr.TerminalNode { method GetRuleContext (line 4147) | func (s *Release_stmtContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 4151) | func (s *Release_stmtContext) ToStringTree(ruleNames []string, recog a... method EnterRule (line 4155) | func (s *Release_stmtContext) EnterRule(listener antlr.ParseTreeListen... method ExitRule (line 4161) | func (s *Release_stmtContext) ExitRule(listener antlr.ParseTreeListene... function NewEmptyRelease_stmtContext (line 4096) | func NewEmptyRelease_stmtContext() *Release_stmtContext { function InitEmptyRelease_stmtContext (line 4103) | func InitEmptyRelease_stmtContext(p *Release_stmtContext) { function NewRelease_stmtContext (line 4110) | func NewRelease_stmtContext(parser antlr.Parser, parent antlr.ParserRule... type ICreate_index_stmtContext (line 4214) | type ICreate_index_stmtContext interface type Create_index_stmtContext (line 4245) | type Create_index_stmtContext struct method IsCreate_index_stmtContext (line 4262) | func (*Create_index_stmtContext) IsCreate_index_stmtContext() {} method GetParser (line 4275) | func (s *Create_index_stmtContext) GetParser() antlr.Parser { return s... method CREATE_ (line 4277) | func (s *Create_index_stmtContext) CREATE_() antlr.TerminalNode { method INDEX_ (line 4281) | func (s *Create_index_stmtContext) INDEX_() antlr.TerminalNode { method Index_name (line 4285) | func (s *Create_index_stmtContext) Index_name() IIndex_nameContext { method ON_ (line 4301) | func (s *Create_index_stmtContext) ON_() antlr.TerminalNode { method Table_name (line 4305) | func (s *Create_index_stmtContext) Table_name() ITable_nameContext { method OPEN_PAR (line 4321) | func (s *Create_index_stmtContext) OPEN_PAR() antlr.TerminalNode { method AllIndexed_column (line 4325) | func (s *Create_index_stmtContext) AllIndexed_column() []IIndexed_colu... method Indexed_column (line 4346) | func (s *Create_index_stmtContext) Indexed_column(i int) IIndexed_colu... method CLOSE_PAR (line 4366) | func (s *Create_index_stmtContext) CLOSE_PAR() antlr.TerminalNode { method UNIQUE_ (line 4370) | func (s *Create_index_stmtContext) UNIQUE_() antlr.TerminalNode { method IF_ (line 4374) | func (s *Create_index_stmtContext) IF_() antlr.TerminalNode { method NOT_ (line 4378) | func (s *Create_index_stmtContext) NOT_() antlr.TerminalNode { method EXISTS_ (line 4382) | func (s *Create_index_stmtContext) EXISTS_() antlr.TerminalNode { method Schema_name (line 4386) | func (s *Create_index_stmtContext) Schema_name() ISchema_nameContext { method DOT (line 4402) | func (s *Create_index_stmtContext) DOT() antlr.TerminalNode { method AllCOMMA (line 4406) | func (s *Create_index_stmtContext) AllCOMMA() []antlr.TerminalNode { method COMMA (line 4410) | func (s *Create_index_stmtContext) COMMA(i int) antlr.TerminalNode { method WHERE_ (line 4414) | func (s *Create_index_stmtContext) WHERE_() antlr.TerminalNode { method Expr (line 4418) | func (s *Create_index_stmtContext) Expr() IExprContext { method GetRuleContext (line 4434) | func (s *Create_index_stmtContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 4438) | func (s *Create_index_stmtContext) ToStringTree(ruleNames []string, re... method EnterRule (line 4442) | func (s *Create_index_stmtContext) EnterRule(listener antlr.ParseTreeL... method ExitRule (line 4448) | func (s *Create_index_stmtContext) ExitRule(listener antlr.ParseTreeLi... function NewEmptyCreate_index_stmtContext (line 4250) | func NewEmptyCreate_index_stmtContext() *Create_index_stmtContext { function InitEmptyCreate_index_stmtContext (line 4257) | func InitEmptyCreate_index_stmtContext(p *Create_index_stmtContext) { function NewCreate_index_stmtContext (line 4264) | func NewCreate_index_stmtContext(parser antlr.Parser, parent antlr.Parse... type IIndexed_columnContext (line 4647) | type IIndexed_columnContext interface type Indexed_columnContext (line 4664) | type Indexed_columnContext struct method IsIndexed_columnContext (line 4681) | func (*Indexed_columnContext) IsIndexed_columnContext() {} method GetParser (line 4694) | func (s *Indexed_columnContext) GetParser() antlr.Parser { return s.pa... method Column_name (line 4696) | func (s *Indexed_columnContext) Column_name() IColumn_nameContext { method Expr (line 4712) | func (s *Indexed_columnContext) Expr() IExprContext { method COLLATE_ (line 4728) | func (s *Indexed_columnContext) COLLATE_() antlr.TerminalNode { method Collation_name (line 4732) | func (s *Indexed_columnContext) Collation_name() ICollation_nameContext { method Asc_desc (line 4748) | func (s *Indexed_columnContext) Asc_desc() IAsc_descContext { method GetRuleContext (line 4764) | func (s *Indexed_columnContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 4768) | func (s *Indexed_columnContext) ToStringTree(ruleNames []string, recog... method EnterRule (line 4772) | func (s *Indexed_columnContext) EnterRule(listener antlr.ParseTreeList... method ExitRule (line 4778) | func (s *Indexed_columnContext) ExitRule(listener antlr.ParseTreeListe... function NewEmptyIndexed_columnContext (line 4669) | func NewEmptyIndexed_columnContext() *Indexed_columnContext { function InitEmptyIndexed_columnContext (line 4676) | func InitEmptyIndexed_columnContext(p *Indexed_columnContext) { function NewIndexed_columnContext (line 4683) | func NewIndexed_columnContext(parser antlr.Parser, parent antlr.ParserRu... type ITable_optionContext (line 4863) | type ITable_optionContext interface type Table_optionContext (line 4884) | type Table_optionContext struct method IsTable_optionContext (line 4902) | func (*Table_optionContext) IsTable_optionContext() {} method GetParser (line 4915) | func (s *Table_optionContext) GetParser() antlr.Parser { return s.pars... method GetRow_ROW_ID (line 4917) | func (s *Table_optionContext) GetRow_ROW_ID() antlr.Token { return s.r... method SetRow_ROW_ID (line 4919) | func (s *Table_optionContext) SetRow_ROW_ID(v antlr.Token) { s.row_ROW... method WITHOUT_ (line 4921) | func (s *Table_optionContext) WITHOUT_() antlr.TerminalNode { method IDENTIFIER (line 4925) | func (s *Table_optionContext) IDENTIFIER() antlr.TerminalNode { method STRICT_ (line 4929) | func (s *Table_optionContext) STRICT_() antlr.TerminalNode { method GetRuleContext (line 4933) | func (s *Table_optionContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 4937) | func (s *Table_optionContext) ToStringTree(ruleNames []string, recog a... method EnterRule (line 4941) | func (s *Table_optionContext) EnterRule(listener antlr.ParseTreeListen... method ExitRule (line 4947) | func (s *Table_optionContext) ExitRule(listener antlr.ParseTreeListene... function NewEmptyTable_optionContext (line 4890) | func NewEmptyTable_optionContext() *Table_optionContext { function InitEmptyTable_optionContext (line 4897) | func InitEmptyTable_optionContext(p *Table_optionContext) { function NewTable_optionContext (line 4904) | func NewTable_optionContext(parser antlr.Parser, parent antlr.ParserRule... type ICreate_table_stmtContext (line 5015) | type ICreate_table_stmtContext interface type Create_table_stmtContext (line 5049) | type Create_table_stmtContext struct method IsCreate_table_stmtContext (line 5066) | func (*Create_table_stmtContext) IsCreate_table_stmtContext() {} method GetParser (line 5079) | func (s *Create_table_stmtContext) GetParser() antlr.Parser { return s... method CREATE_ (line 5081) | func (s *Create_table_stmtContext) CREATE_() antlr.TerminalNode { method TABLE_ (line 5085) | func (s *Create_table_stmtContext) TABLE_() antlr.TerminalNode { method Table_name (line 5089) | func (s *Create_table_stmtContext) Table_name() ITable_nameContext { method OPEN_PAR (line 5105) | func (s *Create_table_stmtContext) OPEN_PAR() antlr.TerminalNode { method AllColumn_def (line 5109) | func (s *Create_table_stmtContext) AllColumn_def() []IColumn_defContext { method Column_def (line 5130) | func (s *Create_table_stmtContext) Column_def(i int) IColumn_defContext { method CLOSE_PAR (line 5150) | func (s *Create_table_stmtContext) CLOSE_PAR() antlr.TerminalNode { method AS_ (line 5154) | func (s *Create_table_stmtContext) AS_() antlr.TerminalNode { method Select_stmt (line 5158) | func (s *Create_table_stmtContext) Select_stmt() ISelect_stmtContext { method IF_ (line 5174) | func (s *Create_table_stmtContext) IF_() antlr.TerminalNode { method NOT_ (line 5178) | func (s *Create_table_stmtContext) NOT_() antlr.TerminalNode { method EXISTS_ (line 5182) | func (s *Create_table_stmtContext) EXISTS_() antlr.TerminalNode { method Schema_name (line 5186) | func (s *Create_table_stmtContext) Schema_name() ISchema_nameContext { method DOT (line 5202) | func (s *Create_table_stmtContext) DOT() antlr.TerminalNode { method TEMP_ (line 5206) | func (s *Create_table_stmtContext) TEMP_() antlr.TerminalNode { method TEMPORARY_ (line 5210) | func (s *Create_table_stmtContext) TEMPORARY_() antlr.TerminalNode { method AllCOMMA (line 5214) | func (s *Create_table_stmtContext) AllCOMMA() []antlr.TerminalNode { method COMMA (line 5218) | func (s *Create_table_stmtContext) COMMA(i int) antlr.TerminalNode { method AllTable_constraint (line 5222) | func (s *Create_table_stmtContext) AllTable_constraint() []ITable_cons... method Table_constraint (line 5243) | func (s *Create_table_stmtContext) Table_constraint(i int) ITable_cons... method AllTable_option (line 5263) | func (s *Create_table_stmtContext) AllTable_option() []ITable_optionCo... method Table_option (line 5284) | func (s *Create_table_stmtContext) Table_option(i int) ITable_optionCo... method GetRuleContext (line 5304) | func (s *Create_table_stmtContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 5308) | func (s *Create_table_stmtContext) ToStringTree(ruleNames []string, re... method EnterRule (line 5312) | func (s *Create_table_stmtContext) EnterRule(listener antlr.ParseTreeL... method ExitRule (line 5318) | func (s *Create_table_stmtContext) ExitRule(listener antlr.ParseTreeLi... function NewEmptyCreate_table_stmtContext (line 5054) | func NewEmptyCreate_table_stmtContext() *Create_table_stmtContext { function InitEmptyCreate_table_stmtContext (line 5061) | func InitEmptyCreate_table_stmtContext(p *Create_table_stmtContext) { function NewCreate_table_stmtContext (line 5068) | func NewCreate_table_stmtContext(parser antlr.Parser, parent antlr.Parse... type IColumn_defContext (line 5592) | type IColumn_defContext interface type Column_defContext (line 5608) | type Column_defContext struct method IsColumn_defContext (line 5625) | func (*Column_defContext) IsColumn_defContext() {} method GetParser (line 5638) | func (s *Column_defContext) GetParser() antlr.Parser { return s.parser } method Column_name (line 5640) | func (s *Column_defContext) Column_name() IColumn_nameContext { method Type_name (line 5656) | func (s *Column_defContext) Type_name() IType_nameContext { method AllColumn_constraint (line 5672) | func (s *Column_defContext) AllColumn_constraint() []IColumn_constrain... method Column_constraint (line 5693) | func (s *Column_defContext) Column_constraint(i int) IColumn_constrain... method GetRuleContext (line 5713) | func (s *Column_defContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 5717) | func (s *Column_defContext) ToStringTree(ruleNames []string, recog ant... method EnterRule (line 5721) | func (s *Column_defContext) EnterRule(listener antlr.ParseTreeListener) { method ExitRule (line 5727) | func (s *Column_defContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyColumn_defContext (line 5613) | func NewEmptyColumn_defContext() *Column_defContext { function InitEmptyColumn_defContext (line 5620) | func InitEmptyColumn_defContext(p *Column_defContext) { function NewColumn_defContext (line 5627) | func NewColumn_defContext(parser antlr.Parser, parent antlr.ParserRuleCo... type IType_nameContext (line 5790) | type IType_nameContext interface type Type_nameContext (line 5809) | type Type_nameContext struct method IsType_nameContext (line 5826) | func (*Type_nameContext) IsType_nameContext() {} method GetParser (line 5839) | func (s *Type_nameContext) GetParser() antlr.Parser { return s.parser } method AllName (line 5841) | func (s *Type_nameContext) AllName() []INameContext { method Name (line 5862) | func (s *Type_nameContext) Name(i int) INameContext { method OPEN_PAR (line 5882) | func (s *Type_nameContext) OPEN_PAR() antlr.TerminalNode { method AllSigned_number (line 5886) | func (s *Type_nameContext) AllSigned_number() []ISigned_numberContext { method Signed_number (line 5907) | func (s *Type_nameContext) Signed_number(i int) ISigned_numberContext { method CLOSE_PAR (line 5927) | func (s *Type_nameContext) CLOSE_PAR() antlr.TerminalNode { method COMMA (line 5931) | func (s *Type_nameContext) COMMA() antlr.TerminalNode { method GetRuleContext (line 5935) | func (s *Type_nameContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 5939) | func (s *Type_nameContext) ToStringTree(ruleNames []string, recog antl... method EnterRule (line 5943) | func (s *Type_nameContext) EnterRule(listener antlr.ParseTreeListener) { method ExitRule (line 5949) | func (s *Type_nameContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyType_nameContext (line 5814) | func NewEmptyType_nameContext() *Type_nameContext { function InitEmptyType_nameContext (line 5821) | func InitEmptyType_nameContext(p *Type_nameContext) { function NewType_nameContext (line 5828) | func NewType_nameContext(parser antlr.Parser, parent antlr.ParserRuleCon... type IColumn_constraintContext (line 6066) | type IColumn_constraintContext interface type Column_constraintContext (line 6103) | type Column_constraintContext struct method IsColumn_constraintContext (line 6120) | func (*Column_constraintContext) IsColumn_constraintContext() {} method GetParser (line 6133) | func (s *Column_constraintContext) GetParser() antlr.Parser { return s... method CHECK_ (line 6135) | func (s *Column_constraintContext) CHECK_() antlr.TerminalNode { method OPEN_PAR (line 6139) | func (s *Column_constraintContext) OPEN_PAR() antlr.TerminalNode { method Expr (line 6143) | func (s *Column_constraintContext) Expr() IExprContext { method CLOSE_PAR (line 6159) | func (s *Column_constraintContext) CLOSE_PAR() antlr.TerminalNode { method DEFAULT_ (line 6163) | func (s *Column_constraintContext) DEFAULT_() antlr.TerminalNode { method COLLATE_ (line 6167) | func (s *Column_constraintContext) COLLATE_() antlr.TerminalNode { method Collation_name (line 6171) | func (s *Column_constraintContext) Collation_name() ICollation_nameCon... method Foreign_key_clause (line 6187) | func (s *Column_constraintContext) Foreign_key_clause() IForeign_key_c... method AS_ (line 6203) | func (s *Column_constraintContext) AS_() antlr.TerminalNode { method CONSTRAINT_ (line 6207) | func (s *Column_constraintContext) CONSTRAINT_() antlr.TerminalNode { method Name (line 6211) | func (s *Column_constraintContext) Name() INameContext { method PRIMARY_ (line 6227) | func (s *Column_constraintContext) PRIMARY_() antlr.TerminalNode { method KEY_ (line 6231) | func (s *Column_constraintContext) KEY_() antlr.TerminalNode { method NOT_ (line 6235) | func (s *Column_constraintContext) NOT_() antlr.TerminalNode { method NULL_ (line 6239) | func (s *Column_constraintContext) NULL_() antlr.TerminalNode { method UNIQUE_ (line 6243) | func (s *Column_constraintContext) UNIQUE_() antlr.TerminalNode { method Signed_number (line 6247) | func (s *Column_constraintContext) Signed_number() ISigned_numberConte... method Literal_value (line 6263) | func (s *Column_constraintContext) Literal_value() ILiteral_valueConte... method Conflict_clause (line 6279) | func (s *Column_constraintContext) Conflict_clause() IConflict_clauseC... method GENERATED_ (line 6295) | func (s *Column_constraintContext) GENERATED_() antlr.TerminalNode { method ALWAYS_ (line 6299) | func (s *Column_constraintContext) ALWAYS_() antlr.TerminalNode { method STORED_ (line 6303) | func (s *Column_constraintContext) STORED_() antlr.TerminalNode { method VIRTUAL_ (line 6307) | func (s *Column_constraintContext) VIRTUAL_() antlr.TerminalNode { method Asc_desc (line 6311) | func (s *Column_constraintContext) Asc_desc() IAsc_descContext { method AUTOINCREMENT_ (line 6327) | func (s *Column_constraintContext) AUTOINCREMENT_() antlr.TerminalNode { method GetRuleContext (line 6331) | func (s *Column_constraintContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 6335) | func (s *Column_constraintContext) ToStringTree(ruleNames []string, re... method EnterRule (line 6339) | func (s *Column_constraintContext) EnterRule(listener antlr.ParseTreeL... method ExitRule (line 6345) | func (s *Column_constraintContext) ExitRule(listener antlr.ParseTreeLi... function NewEmptyColumn_constraintContext (line 6108) | func NewEmptyColumn_constraintContext() *Column_constraintContext { function InitEmptyColumn_constraintContext (line 6115) | func InitEmptyColumn_constraintContext(p *Column_constraintContext) { function NewColumn_constraintContext (line 6122) | func NewColumn_constraintContext(parser antlr.Parser, parent antlr.Parse... type ISigned_numberContext (line 6705) | type ISigned_numberContext interface type Signed_numberContext (line 6720) | type Signed_numberContext struct method IsSigned_numberContext (line 6737) | func (*Signed_numberContext) IsSigned_numberContext() {} method GetParser (line 6750) | func (s *Signed_numberContext) GetParser() antlr.Parser { return s.par... method NUMERIC_LITERAL (line 6752) | func (s *Signed_numberContext) NUMERIC_LITERAL() antlr.TerminalNode { method PLUS (line 6756) | func (s *Signed_numberContext) PLUS() antlr.TerminalNode { method MINUS (line 6760) | func (s *Signed_numberContext) MINUS() antlr.TerminalNode { method GetRuleContext (line 6764) | func (s *Signed_numberContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 6768) | func (s *Signed_numberContext) ToStringTree(ruleNames []string, recog ... method EnterRule (line 6772) | func (s *Signed_numberContext) EnterRule(listener antlr.ParseTreeListe... method ExitRule (line 6778) | func (s *Signed_numberContext) ExitRule(listener antlr.ParseTreeListen... function NewEmptySigned_numberContext (line 6725) | func NewEmptySigned_numberContext() *Signed_numberContext { function InitEmptySigned_numberContext (line 6732) | func InitEmptySigned_numberContext(p *Signed_numberContext) { function NewSigned_numberContext (line 6739) | func NewSigned_numberContext(parser antlr.Parser, parent antlr.ParserRul... type ITable_constraintContext (line 6834) | type ITable_constraintContext interface type Table_constraintContext (line 6864) | type Table_constraintContext struct method IsTable_constraintContext (line 6881) | func (*Table_constraintContext) IsTable_constraintContext() {} method GetParser (line 6894) | func (s *Table_constraintContext) GetParser() antlr.Parser { return s.... method OPEN_PAR (line 6896) | func (s *Table_constraintContext) OPEN_PAR() antlr.TerminalNode { method AllIndexed_column (line 6900) | func (s *Table_constraintContext) AllIndexed_column() []IIndexed_colum... method Indexed_column (line 6921) | func (s *Table_constraintContext) Indexed_column(i int) IIndexed_colum... method CLOSE_PAR (line 6941) | func (s *Table_constraintContext) CLOSE_PAR() antlr.TerminalNode { method CHECK_ (line 6945) | func (s *Table_constraintContext) CHECK_() antlr.TerminalNode { method Expr (line 6949) | func (s *Table_constraintContext) Expr() IExprContext { method FOREIGN_ (line 6965) | func (s *Table_constraintContext) FOREIGN_() antlr.TerminalNode { method KEY_ (line 6969) | func (s *Table_constraintContext) KEY_() antlr.TerminalNode { method AllColumn_name (line 6973) | func (s *Table_constraintContext) AllColumn_name() []IColumn_nameConte... method Column_name (line 6994) | func (s *Table_constraintContext) Column_name(i int) IColumn_nameConte... method Foreign_key_clause (line 7014) | func (s *Table_constraintContext) Foreign_key_clause() IForeign_key_cl... method CONSTRAINT_ (line 7030) | func (s *Table_constraintContext) CONSTRAINT_() antlr.TerminalNode { method Name (line 7034) | func (s *Table_constraintContext) Name() INameContext { method PRIMARY_ (line 7050) | func (s *Table_constraintContext) PRIMARY_() antlr.TerminalNode { method UNIQUE_ (line 7054) | func (s *Table_constraintContext) UNIQUE_() antlr.TerminalNode { method AllCOMMA (line 7058) | func (s *Table_constraintContext) AllCOMMA() []antlr.TerminalNode { method COMMA (line 7062) | func (s *Table_constraintContext) COMMA(i int) antlr.TerminalNode { method Conflict_clause (line 7066) | func (s *Table_constraintContext) Conflict_clause() IConflict_clauseCo... method GetRuleContext (line 7082) | func (s *Table_constraintContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 7086) | func (s *Table_constraintContext) ToStringTree(ruleNames []string, rec... method EnterRule (line 7090) | func (s *Table_constraintContext) EnterRule(listener antlr.ParseTreeLi... method ExitRule (line 7096) | func (s *Table_constraintContext) ExitRule(listener antlr.ParseTreeLis... function NewEmptyTable_constraintContext (line 6869) | func NewEmptyTable_constraintContext() *Table_constraintContext { function InitEmptyTable_constraintContext (line 6876) | func InitEmptyTable_constraintContext(p *Table_constraintContext) { function NewTable_constraintContext (line 6883) | func NewTable_constraintContext(parser antlr.Parser, parent antlr.Parser... type IForeign_key_clauseContext (line 7359) | type IForeign_key_clauseContext interface type Foreign_key_clauseContext (line 7408) | type Foreign_key_clauseContext struct method IsForeign_key_clauseContext (line 7425) | func (*Foreign_key_clauseContext) IsForeign_key_clauseContext() {} method GetParser (line 7438) | func (s *Foreign_key_clauseContext) GetParser() antlr.Parser { return ... method REFERENCES_ (line 7440) | func (s *Foreign_key_clauseContext) REFERENCES_() antlr.TerminalNode { method Foreign_table (line 7444) | func (s *Foreign_key_clauseContext) Foreign_table() IForeign_tableCont... method OPEN_PAR (line 7460) | func (s *Foreign_key_clauseContext) OPEN_PAR() antlr.TerminalNode { method AllColumn_name (line 7464) | func (s *Foreign_key_clauseContext) AllColumn_name() []IColumn_nameCon... method Column_name (line 7485) | func (s *Foreign_key_clauseContext) Column_name(i int) IColumn_nameCon... method CLOSE_PAR (line 7505) | func (s *Foreign_key_clauseContext) CLOSE_PAR() antlr.TerminalNode { method AllON_ (line 7509) | func (s *Foreign_key_clauseContext) AllON_() []antlr.TerminalNode { method ON_ (line 7513) | func (s *Foreign_key_clauseContext) ON_(i int) antlr.TerminalNode { method AllMATCH_ (line 7517) | func (s *Foreign_key_clauseContext) AllMATCH_() []antlr.TerminalNode { method MATCH_ (line 7521) | func (s *Foreign_key_clauseContext) MATCH_(i int) antlr.TerminalNode { method AllName (line 7525) | func (s *Foreign_key_clauseContext) AllName() []INameContext { method Name (line 7546) | func (s *Foreign_key_clauseContext) Name(i int) INameContext { method DEFERRABLE_ (line 7566) | func (s *Foreign_key_clauseContext) DEFERRABLE_() antlr.TerminalNode { method AllDELETE_ (line 7570) | func (s *Foreign_key_clauseContext) AllDELETE_() []antlr.TerminalNode { method DELETE_ (line 7574) | func (s *Foreign_key_clauseContext) DELETE_(i int) antlr.TerminalNode { method AllUPDATE_ (line 7578) | func (s *Foreign_key_clauseContext) AllUPDATE_() []antlr.TerminalNode { method UPDATE_ (line 7582) | func (s *Foreign_key_clauseContext) UPDATE_(i int) antlr.TerminalNode { method AllSET_ (line 7586) | func (s *Foreign_key_clauseContext) AllSET_() []antlr.TerminalNode { method SET_ (line 7590) | func (s *Foreign_key_clauseContext) SET_(i int) antlr.TerminalNode { method AllCASCADE_ (line 7594) | func (s *Foreign_key_clauseContext) AllCASCADE_() []antlr.TerminalNode { method CASCADE_ (line 7598) | func (s *Foreign_key_clauseContext) CASCADE_(i int) antlr.TerminalNode { method AllRESTRICT_ (line 7602) | func (s *Foreign_key_clauseContext) AllRESTRICT_() []antlr.TerminalNode { method RESTRICT_ (line 7606) | func (s *Foreign_key_clauseContext) RESTRICT_(i int) antlr.TerminalNode { method AllNO_ (line 7610) | func (s *Foreign_key_clauseContext) AllNO_() []antlr.TerminalNode { method NO_ (line 7614) | func (s *Foreign_key_clauseContext) NO_(i int) antlr.TerminalNode { method AllACTION_ (line 7618) | func (s *Foreign_key_clauseContext) AllACTION_() []antlr.TerminalNode { method ACTION_ (line 7622) | func (s *Foreign_key_clauseContext) ACTION_(i int) antlr.TerminalNode { method AllCOMMA (line 7626) | func (s *Foreign_key_clauseContext) AllCOMMA() []antlr.TerminalNode { method COMMA (line 7630) | func (s *Foreign_key_clauseContext) COMMA(i int) antlr.TerminalNode { method AllNULL_ (line 7634) | func (s *Foreign_key_clauseContext) AllNULL_() []antlr.TerminalNode { method NULL_ (line 7638) | func (s *Foreign_key_clauseContext) NULL_(i int) antlr.TerminalNode { method AllDEFAULT_ (line 7642) | func (s *Foreign_key_clauseContext) AllDEFAULT_() []antlr.TerminalNode { method DEFAULT_ (line 7646) | func (s *Foreign_key_clauseContext) DEFAULT_(i int) antlr.TerminalNode { method NOT_ (line 7650) | func (s *Foreign_key_clauseContext) NOT_() antlr.TerminalNode { method INITIALLY_ (line 7654) | func (s *Foreign_key_clauseContext) INITIALLY_() antlr.TerminalNode { method DEFERRED_ (line 7658) | func (s *Foreign_key_clauseContext) DEFERRED_() antlr.TerminalNode { method IMMEDIATE_ (line 7662) | func (s *Foreign_key_clauseContext) IMMEDIATE_() antlr.TerminalNode { method GetRuleContext (line 7666) | func (s *Foreign_key_clauseContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 7670) | func (s *Foreign_key_clauseContext) ToStringTree(ruleNames []string, r... method EnterRule (line 7674) | func (s *Foreign_key_clauseContext) EnterRule(listener antlr.ParseTree... method ExitRule (line 7680) | func (s *Foreign_key_clauseContext) ExitRule(listener antlr.ParseTreeL... function NewEmptyForeign_key_clauseContext (line 7413) | func NewEmptyForeign_key_clauseContext() *Foreign_key_clauseContext { function InitEmptyForeign_key_clauseContext (line 7420) | func InitEmptyForeign_key_clauseContext(p *Foreign_key_clauseContext) { function NewForeign_key_clauseContext (line 7427) | func NewForeign_key_clauseContext(parser antlr.Parser, parent antlr.Pars... type IConflict_clauseContext (line 7972) | type IConflict_clauseContext interface type Conflict_clauseContext (line 7991) | type Conflict_clauseContext struct method IsConflict_clauseContext (line 8008) | func (*Conflict_clauseContext) IsConflict_clauseContext() {} method GetParser (line 8021) | func (s *Conflict_clauseContext) GetParser() antlr.Parser { return s.p... method ON_ (line 8023) | func (s *Conflict_clauseContext) ON_() antlr.TerminalNode { method CONFLICT_ (line 8027) | func (s *Conflict_clauseContext) CONFLICT_() antlr.TerminalNode { method ROLLBACK_ (line 8031) | func (s *Conflict_clauseContext) ROLLBACK_() antlr.TerminalNode { method ABORT_ (line 8035) | func (s *Conflict_clauseContext) ABORT_() antlr.TerminalNode { method FAIL_ (line 8039) | func (s *Conflict_clauseContext) FAIL_() antlr.TerminalNode { method IGNORE_ (line 8043) | func (s *Conflict_clauseContext) IGNORE_() antlr.TerminalNode { method REPLACE_ (line 8047) | func (s *Conflict_clauseContext) REPLACE_() antlr.TerminalNode { method GetRuleContext (line 8051) | func (s *Conflict_clauseContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 8055) | func (s *Conflict_clauseContext) ToStringTree(ruleNames []string, reco... method EnterRule (line 8059) | func (s *Conflict_clauseContext) EnterRule(listener antlr.ParseTreeLis... method ExitRule (line 8065) | func (s *Conflict_clauseContext) ExitRule(listener antlr.ParseTreeList... function NewEmptyConflict_clauseContext (line 7996) | func NewEmptyConflict_clauseContext() *Conflict_clauseContext { function InitEmptyConflict_clauseContext (line 8003) | func InitEmptyConflict_clauseContext(p *Conflict_clauseContext) { function NewConflict_clauseContext (line 8010) | func NewConflict_clauseContext(parser antlr.Parser, parent antlr.ParserR... type ICreate_trigger_stmtContext (line 8119) | type ICreate_trigger_stmtContext interface type Create_trigger_stmtContext (line 8172) | type Create_trigger_stmtContext struct method IsCreate_trigger_stmtContext (line 8189) | func (*Create_trigger_stmtContext) IsCreate_trigger_stmtContext() {} method GetParser (line 8202) | func (s *Create_trigger_stmtContext) GetParser() antlr.Parser { return... method CREATE_ (line 8204) | func (s *Create_trigger_stmtContext) CREATE_() antlr.TerminalNode { method TRIGGER_ (line 8208) | func (s *Create_trigger_stmtContext) TRIGGER_() antlr.TerminalNode { method Trigger_name (line 8212) | func (s *Create_trigger_stmtContext) Trigger_name() ITrigger_nameConte... method ON_ (line 8228) | func (s *Create_trigger_stmtContext) ON_() antlr.TerminalNode { method Table_name (line 8232) | func (s *Create_trigger_stmtContext) Table_name() ITable_nameContext { method BEGIN_ (line 8248) | func (s *Create_trigger_stmtContext) BEGIN_() antlr.TerminalNode { method END_ (line 8252) | func (s *Create_trigger_stmtContext) END_() antlr.TerminalNode { method DELETE_ (line 8256) | func (s *Create_trigger_stmtContext) DELETE_() antlr.TerminalNode { method INSERT_ (line 8260) | func (s *Create_trigger_stmtContext) INSERT_() antlr.TerminalNode { method UPDATE_ (line 8264) | func (s *Create_trigger_stmtContext) UPDATE_() antlr.TerminalNode { method IF_ (line 8268) | func (s *Create_trigger_stmtContext) IF_() antlr.TerminalNode { method NOT_ (line 8272) | func (s *Create_trigger_stmtContext) NOT_() antlr.TerminalNode { method EXISTS_ (line 8276) | func (s *Create_trigger_stmtContext) EXISTS_() antlr.TerminalNode { method Schema_name (line 8280) | func (s *Create_trigger_stmtContext) Schema_name() ISchema_nameContext { method DOT (line 8296) | func (s *Create_trigger_stmtContext) DOT() antlr.TerminalNode { method BEFORE_ (line 8300) | func (s *Create_trigger_stmtContext) BEFORE_() antlr.TerminalNode { method AFTER_ (line 8304) | func (s *Create_trigger_stmtContext) AFTER_() antlr.TerminalNode { method INSTEAD_ (line 8308) | func (s *Create_trigger_stmtContext) INSTEAD_() antlr.TerminalNode { method AllOF_ (line 8312) | func (s *Create_trigger_stmtContext) AllOF_() []antlr.TerminalNode { method OF_ (line 8316) | func (s *Create_trigger_stmtContext) OF_(i int) antlr.TerminalNode { method FOR_ (line 8320) | func (s *Create_trigger_stmtContext) FOR_() antlr.TerminalNode { method EACH_ (line 8324) | func (s *Create_trigger_stmtContext) EACH_() antlr.TerminalNode { method ROW_ (line 8328) | func (s *Create_trigger_stmtContext) ROW_() antlr.TerminalNode { method WHEN_ (line 8332) | func (s *Create_trigger_stmtContext) WHEN_() antlr.TerminalNode { method Expr (line 8336) | func (s *Create_trigger_stmtContext) Expr() IExprContext { method AllSCOL (line 8352) | func (s *Create_trigger_stmtContext) AllSCOL() []antlr.TerminalNode { method SCOL (line 8356) | func (s *Create_trigger_stmtContext) SCOL(i int) antlr.TerminalNode { method TEMP_ (line 8360) | func (s *Create_trigger_stmtContext) TEMP_() antlr.TerminalNode { method TEMPORARY_ (line 8364) | func (s *Create_trigger_stmtContext) TEMPORARY_() antlr.TerminalNode { method AllColumn_name (line 8368) | func (s *Create_trigger_stmtContext) AllColumn_name() []IColumn_nameCo... method Column_name (line 8389) | func (s *Create_trigger_stmtContext) Column_name(i int) IColumn_nameCo... method AllUpdate_stmt (line 8409) | func (s *Create_trigger_stmtContext) AllUpdate_stmt() []IUpdate_stmtCo... method Update_stmt (line 8430) | func (s *Create_trigger_stmtContext) Update_stmt(i int) IUpdate_stmtCo... method AllInsert_stmt (line 8450) | func (s *Create_trigger_stmtContext) AllInsert_stmt() []IInsert_stmtCo... method Insert_stmt (line 8471) | func (s *Create_trigger_stmtContext) Insert_stmt(i int) IInsert_stmtCo... method AllDelete_stmt (line 8491) | func (s *Create_trigger_stmtContext) AllDelete_stmt() []IDelete_stmtCo... method Delete_stmt (line 8512) | func (s *Create_trigger_stmtContext) Delete_stmt(i int) IDelete_stmtCo... method AllSelect_stmt (line 8532) | func (s *Create_trigger_stmtContext) AllSelect_stmt() []ISelect_stmtCo... method Select_stmt (line 8553) | func (s *Create_trigger_stmtContext) Select_stmt(i int) ISelect_stmtCo... method AllCOMMA (line 8573) | func (s *Create_trigger_stmtContext) AllCOMMA() []antlr.TerminalNode { method COMMA (line 8577) | func (s *Create_trigger_stmtContext) COMMA(i int) antlr.TerminalNode { method GetRuleContext (line 8581) | func (s *Create_trigger_stmtContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 8585) | func (s *Create_trigger_stmtContext) ToStringTree(ruleNames []string, ... method EnterRule (line 8589) | func (s *Create_trigger_stmtContext) EnterRule(listener antlr.ParseTre... method ExitRule (line 8595) | func (s *Create_trigger_stmtContext) ExitRule(listener antlr.ParseTree... function NewEmptyCreate_trigger_stmtContext (line 8177) | func NewEmptyCreate_trigger_stmtContext() *Create_trigger_stmtContext { function InitEmptyCreate_trigger_stmtContext (line 8184) | func InitEmptyCreate_trigger_stmtContext(p *Create_trigger_stmtContext) { function NewCreate_trigger_stmtContext (line 8191) | func NewCreate_trigger_stmtContext(parser antlr.Parser, parent antlr.Par... type ICreate_view_stmtContext (line 8996) | type ICreate_view_stmtContext interface type Create_view_stmtContext (line 9026) | type Create_view_stmtContext struct method IsCreate_view_stmtContext (line 9043) | func (*Create_view_stmtContext) IsCreate_view_stmtContext() {} method GetParser (line 9056) | func (s *Create_view_stmtContext) GetParser() antlr.Parser { return s.... method CREATE_ (line 9058) | func (s *Create_view_stmtContext) CREATE_() antlr.TerminalNode { method VIEW_ (line 9062) | func (s *Create_view_stmtContext) VIEW_() antlr.TerminalNode { method View_name (line 9066) | func (s *Create_view_stmtContext) View_name() IView_nameContext { method AS_ (line 9082) | func (s *Create_view_stmtContext) AS_() antlr.TerminalNode { method Select_stmt (line 9086) | func (s *Create_view_stmtContext) Select_stmt() ISelect_stmtContext { method IF_ (line 9102) | func (s *Create_view_stmtContext) IF_() antlr.TerminalNode { method NOT_ (line 9106) | func (s *Create_view_stmtContext) NOT_() antlr.TerminalNode { method EXISTS_ (line 9110) | func (s *Create_view_stmtContext) EXISTS_() antlr.TerminalNode { method Schema_name (line 9114) | func (s *Create_view_stmtContext) Schema_name() ISchema_nameContext { method DOT (line 9130) | func (s *Create_view_stmtContext) DOT() antlr.TerminalNode { method OPEN_PAR (line 9134) | func (s *Create_view_stmtContext) OPEN_PAR() antlr.TerminalNode { method AllColumn_name (line 9138) | func (s *Create_view_stmtContext) AllColumn_name() []IColumn_nameConte... method Column_name (line 9159) | func (s *Create_view_stmtContext) Column_name(i int) IColumn_nameConte... method CLOSE_PAR (line 9179) | func (s *Create_view_stmtContext) CLOSE_PAR() antlr.TerminalNode { method TEMP_ (line 9183) | func (s *Create_view_stmtContext) TEMP_() antlr.TerminalNode { method TEMPORARY_ (line 9187) | func (s *Create_view_stmtContext) TEMPORARY_() antlr.TerminalNode { method AllCOMMA (line 9191) | func (s *Create_view_stmtContext) AllCOMMA() []antlr.TerminalNode { method COMMA (line 9195) | func (s *Create_view_stmtContext) COMMA(i int) antlr.TerminalNode { method GetRuleContext (line 9199) | func (s *Create_view_stmtContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 9203) | func (s *Create_view_stmtContext) ToStringTree(ruleNames []string, rec... method EnterRule (line 9207) | func (s *Create_view_stmtContext) EnterRule(listener antlr.ParseTreeLi... method ExitRule (line 9213) | func (s *Create_view_stmtContext) ExitRule(listener antlr.ParseTreeLis... function NewEmptyCreate_view_stmtContext (line 9031) | func NewEmptyCreate_view_stmtContext() *Create_view_stmtContext { function InitEmptyCreate_view_stmtContext (line 9038) | func InitEmptyCreate_view_stmtContext(p *Create_view_stmtContext) { function NewCreate_view_stmtContext (line 9045) | func NewCreate_view_stmtContext(parser antlr.Parser, parent antlr.Parser... type ICreate_virtual_table_stmtContext (line 9403) | type ICreate_virtual_table_stmtContext interface type Create_virtual_table_stmtContext (line 9432) | type Create_virtual_table_stmtContext struct method IsCreate_virtual_table_stmtContext (line 9449) | func (*Create_virtual_table_stmtContext) IsCreate_virtual_table_stmtCo... method GetParser (line 9462) | func (s *Create_virtual_table_stmtContext) GetParser() antlr.Parser { ... method CREATE_ (line 9464) | func (s *Create_virtual_table_stmtContext) CREATE_() antlr.TerminalNode { method VIRTUAL_ (line 9468) | func (s *Create_virtual_table_stmtContext) VIRTUAL_() antlr.TerminalNo... method TABLE_ (line 9472) | func (s *Create_virtual_table_stmtContext) TABLE_() antlr.TerminalNode { method Table_name (line 9476) | func (s *Create_virtual_table_stmtContext) Table_name() ITable_nameCon... method USING_ (line 9492) | func (s *Create_virtual_table_stmtContext) USING_() antlr.TerminalNode { method Module_name (line 9496) | func (s *Create_virtual_table_stmtContext) Module_name() IModule_nameC... method IF_ (line 9512) | func (s *Create_virtual_table_stmtContext) IF_() antlr.TerminalNode { method NOT_ (line 9516) | func (s *Create_virtual_table_stmtContext) NOT_() antlr.TerminalNode { method EXISTS_ (line 9520) | func (s *Create_virtual_table_stmtContext) EXISTS_() antlr.TerminalNode { method Schema_name (line 9524) | func (s *Create_virtual_table_stmtContext) Schema_name() ISchema_nameC... method DOT (line 9540) | func (s *Create_virtual_table_stmtContext) DOT() antlr.TerminalNode { method OPEN_PAR (line 9544) | func (s *Create_virtual_table_stmtContext) OPEN_PAR() antlr.TerminalNo... method AllModule_argument (line 9548) | func (s *Create_virtual_table_stmtContext) AllModule_argument() []IMod... method Module_argument (line 9569) | func (s *Create_virtual_table_stmtContext) Module_argument(i int) IMod... method CLOSE_PAR (line 9589) | func (s *Create_virtual_table_stmtContext) CLOSE_PAR() antlr.TerminalN... method AllCOMMA (line 9593) | func (s *Create_virtual_table_stmtContext) AllCOMMA() []antlr.Terminal... method COMMA (line 9597) | func (s *Create_virtual_table_stmtContext) COMMA(i int) antlr.Terminal... method GetRuleContext (line 9601) | func (s *Create_virtual_table_stmtContext) GetRuleContext() antlr.Rule... method ToStringTree (line 9605) | func (s *Create_virtual_table_stmtContext) ToStringTree(ruleNames []st... method EnterRule (line 9609) | func (s *Create_virtual_table_stmtContext) EnterRule(listener antlr.Pa... method ExitRule (line 9615) | func (s *Create_virtual_table_stmtContext) ExitRule(listener antlr.Par... function NewEmptyCreate_virtual_table_stmtContext (line 9437) | func NewEmptyCreate_virtual_table_stmtContext() *Create_virtual_table_st... function InitEmptyCreate_virtual_table_stmtContext (line 9444) | func InitEmptyCreate_virtual_table_stmtContext(p *Create_virtual_table_s... function NewCreate_virtual_table_stmtContext (line 9451) | func NewCreate_virtual_table_stmtContext(parser antlr.Parser, parent ant... type IWith_clauseContext (line 9792) | type IWith_clauseContext interface type With_clauseContext (line 9818) | type With_clauseContext struct method IsWith_clauseContext (line 9835) | func (*With_clauseContext) IsWith_clauseContext() {} method GetParser (line 9848) | func (s *With_clauseContext) GetParser() antlr.Parser { return s.parser } method WITH_ (line 9850) | func (s *With_clauseContext) WITH_() antlr.TerminalNode { method AllCte_table_name (line 9854) | func (s *With_clauseContext) AllCte_table_name() []ICte_table_nameCont... method Cte_table_name (line 9875) | func (s *With_clauseContext) Cte_table_name(i int) ICte_table_nameCont... method AllAS_ (line 9895) | func (s *With_clauseContext) AllAS_() []antlr.TerminalNode { method AS_ (line 9899) | func (s *With_clauseContext) AS_(i int) antlr.TerminalNode { method AllOPEN_PAR (line 9903) | func (s *With_clauseContext) AllOPEN_PAR() []antlr.TerminalNode { method OPEN_PAR (line 9907) | func (s *With_clauseContext) OPEN_PAR(i int) antlr.TerminalNode { method AllSelect_stmt (line 9911) | func (s *With_clauseContext) AllSelect_stmt() []ISelect_stmtContext { method Select_stmt (line 9932) | func (s *With_clauseContext) Select_stmt(i int) ISelect_stmtContext { method AllCLOSE_PAR (line 9952) | func (s *With_clauseContext) AllCLOSE_PAR() []antlr.TerminalNode { method CLOSE_PAR (line 9956) | func (s *With_clauseContext) CLOSE_PAR(i int) antlr.TerminalNode { method RECURSIVE_ (line 9960) | func (s *With_clauseContext) RECURSIVE_() antlr.TerminalNode { method AllCOMMA (line 9964) | func (s *With_clauseContext) AllCOMMA() []antlr.TerminalNode { method COMMA (line 9968) | func (s *With_clauseContext) COMMA(i int) antlr.TerminalNode { method GetRuleContext (line 9972) | func (s *With_clauseContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 9976) | func (s *With_clauseContext) ToStringTree(ruleNames []string, recog an... method EnterRule (line 9980) | func (s *With_clauseContext) EnterRule(listener antlr.ParseTreeListene... method ExitRule (line 9986) | func (s *With_clauseContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyWith_clauseContext (line 9823) | func NewEmptyWith_clauseContext() *With_clauseContext { function InitEmptyWith_clauseContext (line 9830) | func InitEmptyWith_clauseContext(p *With_clauseContext) { function NewWith_clauseContext (line 9837) | func NewWith_clauseContext(parser antlr.Parser, parent antlr.ParserRuleC... type ICte_table_nameContext (line 10125) | type ICte_table_nameContext interface type Cte_table_nameContext (line 10144) | type Cte_table_nameContext struct method IsCte_table_nameContext (line 10161) | func (*Cte_table_nameContext) IsCte_table_nameContext() {} method GetParser (line 10174) | func (s *Cte_table_nameContext) GetParser() antlr.Parser { return s.pa... method Table_name (line 10176) | func (s *Cte_table_nameContext) Table_name() ITable_nameContext { method OPEN_PAR (line 10192) | func (s *Cte_table_nameContext) OPEN_PAR() antlr.TerminalNode { method AllColumn_name (line 10196) | func (s *Cte_table_nameContext) AllColumn_name() []IColumn_nameContext { method Column_name (line 10217) | func (s *Cte_table_nameContext) Column_name(i int) IColumn_nameContext { method CLOSE_PAR (line 10237) | func (s *Cte_table_nameContext) CLOSE_PAR() antlr.TerminalNode { method AllCOMMA (line 10241) | func (s *Cte_table_nameContext) AllCOMMA() []antlr.TerminalNode { method COMMA (line 10245) | func (s *Cte_table_nameContext) COMMA(i int) antlr.TerminalNode { method GetRuleContext (line 10249) | func (s *Cte_table_nameContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 10253) | func (s *Cte_table_nameContext) ToStringTree(ruleNames []string, recog... method EnterRule (line 10257) | func (s *Cte_table_nameContext) EnterRule(listener antlr.ParseTreeList... method ExitRule (line 10263) | func (s *Cte_table_nameContext) ExitRule(listener antlr.ParseTreeListe... function NewEmptyCte_table_nameContext (line 10149) | func NewEmptyCte_table_nameContext() *Cte_table_nameContext { function InitEmptyCte_table_nameContext (line 10156) | func InitEmptyCte_table_nameContext(p *Cte_table_nameContext) { function NewCte_table_nameContext (line 10163) | func NewCte_table_nameContext(parser antlr.Parser, parent antlr.ParserRu... type IRecursive_cteContext (line 10352) | type IRecursive_cteContext interface type Recursive_cteContext (line 10372) | type Recursive_cteContext struct method IsRecursive_cteContext (line 10389) | func (*Recursive_cteContext) IsRecursive_cteContext() {} method GetParser (line 10402) | func (s *Recursive_cteContext) GetParser() antlr.Parser { return s.par... method Cte_table_name (line 10404) | func (s *Recursive_cteContext) Cte_table_name() ICte_table_nameContext { method AS_ (line 10420) | func (s *Recursive_cteContext) AS_() antlr.TerminalNode { method OPEN_PAR (line 10424) | func (s *Recursive_cteContext) OPEN_PAR() antlr.TerminalNode { method Initial_select (line 10428) | func (s *Recursive_cteContext) Initial_select() IInitial_selectContext { method UNION_ (line 10444) | func (s *Recursive_cteContext) UNION_() antlr.TerminalNode { method Recursive__select (line 10448) | func (s *Recursive_cteContext) Recursive__select() IRecursive__selectC... method CLOSE_PAR (line 10464) | func (s *Recursive_cteContext) CLOSE_PAR() antlr.TerminalNode { method ALL_ (line 10468) | func (s *Recursive_cteContext) ALL_() antlr.TerminalNode { method GetRuleContext (line 10472) | func (s *Recursive_cteContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 10476) | func (s *Recursive_cteContext) ToStringTree(ruleNames []string, recog ... method EnterRule (line 10480) | func (s *Recursive_cteContext) EnterRule(listener antlr.ParseTreeListe... method ExitRule (line 10486) | func (s *Recursive_cteContext) ExitRule(listener antlr.ParseTreeListen... function NewEmptyRecursive_cteContext (line 10377) | func NewEmptyRecursive_cteContext() *Recursive_cteContext { function InitEmptyRecursive_cteContext (line 10384) | func InitEmptyRecursive_cteContext(p *Recursive_cteContext) { function NewRecursive_cteContext (line 10391) | func NewRecursive_cteContext(parser antlr.Parser, parent antlr.ParserRul... type ICommon_table_expressionContext (line 10575) | type ICommon_table_expressionContext interface type Common_table_expressionContext (line 10598) | type Common_table_expressionContext struct method IsCommon_table_expressionContext (line 10615) | func (*Common_table_expressionContext) IsCommon_table_expressionContex... method GetParser (line 10628) | func (s *Common_table_expressionContext) GetParser() antlr.Parser { re... method Table_name (line 10630) | func (s *Common_table_expressionContext) Table_name() ITable_nameConte... method AS_ (line 10646) | func (s *Common_table_expressionContext) AS_() antlr.TerminalNode { method AllOPEN_PAR (line 10650) | func (s *Common_table_expressionContext) AllOPEN_PAR() []antlr.Termina... method OPEN_PAR (line 10654) | func (s *Common_table_expressionContext) OPEN_PAR(i int) antlr.Termina... method Select_stmt (line 10658) | func (s *Common_table_expressionContext) Select_stmt() ISelect_stmtCon... method AllCLOSE_PAR (line 10674) | func (s *Common_table_expressionContext) AllCLOSE_PAR() []antlr.Termin... method CLOSE_PAR (line 10678) | func (s *Common_table_expressionContext) CLOSE_PAR(i int) antlr.Termin... method AllColumn_name (line 10682) | func (s *Common_table_expressionContext) AllColumn_name() []IColumn_na... method Column_name (line 10703) | func (s *Common_table_expressionContext) Column_name(i int) IColumn_na... method AllCOMMA (line 10723) | func (s *Common_table_expressionContext) AllCOMMA() []antlr.TerminalNo... method COMMA (line 10727) | func (s *Common_table_expressionContext) COMMA(i int) antlr.TerminalNo... method GetRuleContext (line 10731) | func (s *Common_table_expressionContext) GetRuleContext() antlr.RuleCo... method ToStringTree (line 10735) | func (s *Common_table_expressionContext) ToStringTree(ruleNames []stri... method EnterRule (line 10739) | func (s *Common_table_expressionContext) EnterRule(listener antlr.Pars... method ExitRule (line 10745) | func (s *Common_table_expressionContext) ExitRule(listener antlr.Parse... function NewEmptyCommon_table_expressionContext (line 10603) | func NewEmptyCommon_table_expressionContext() *Common_table_expressionCo... function InitEmptyCommon_table_expressionContext (line 10610) | func InitEmptyCommon_table_expressionContext(p *Common_table_expressionC... function NewCommon_table_expressionContext (line 10617) | func NewCommon_table_expressionContext(parser antlr.Parser, parent antlr... type IReturning_clauseContext (line 10862) | type IReturning_clauseContext interface type Returning_clauseContext (line 10885) | type Returning_clauseContext struct method IsReturning_clauseContext (line 10902) | func (*Returning_clauseContext) IsReturning_clauseContext() {} method GetParser (line 10915) | func (s *Returning_clauseContext) GetParser() antlr.Parser { return s.... method RETURNING_ (line 10917) | func (s *Returning_clauseContext) RETURNING_() antlr.TerminalNode { method AllSTAR (line 10921) | func (s *Returning_clauseContext) AllSTAR() []antlr.TerminalNode { method STAR (line 10925) | func (s *Returning_clauseContext) STAR(i int) antlr.TerminalNode { method AllExpr (line 10929) | func (s *Returning_clauseContext) AllExpr() []IExprContext { method Expr (line 10950) | func (s *Returning_clauseContext) Expr(i int) IExprContext { method AllCOMMA (line 10970) | func (s *Returning_clauseContext) AllCOMMA() []antlr.TerminalNode { method COMMA (line 10974) | func (s *Returning_clauseContext) COMMA(i int) antlr.TerminalNode { method AllColumn_alias (line 10978) | func (s *Returning_clauseContext) AllColumn_alias() []IColumn_aliasCon... method Column_alias (line 10999) | func (s *Returning_clauseContext) Column_alias(i int) IColumn_aliasCon... method AllAS_ (line 11019) | func (s *Returning_clauseContext) AllAS_() []antlr.TerminalNode { method AS_ (line 11023) | func (s *Returning_clauseContext) AS_(i int) antlr.TerminalNode { method GetRuleContext (line 11027) | func (s *Returning_clauseContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 11031) | func (s *Returning_clauseContext) ToStringTree(ruleNames []string, rec... method EnterRule (line 11035) | func (s *Returning_clauseContext) EnterRule(listener antlr.ParseTreeLi... method ExitRule (line 11041) | func (s *Returning_clauseContext) ExitRule(listener antlr.ParseTreeLis... function NewEmptyReturning_clauseContext (line 10890) | func NewEmptyReturning_clauseContext() *Returning_clauseContext { function InitEmptyReturning_clauseContext (line 10897) | func InitEmptyReturning_clauseContext(p *Returning_clauseContext) { function NewReturning_clauseContext (line 10904) | func NewReturning_clauseContext(parser antlr.Parser, parent antlr.Parser... type IDelete_stmtContext (line 11219) | type IDelete_stmtContext interface type Delete_stmtContext (line 11238) | type Delete_stmtContext struct method IsDelete_stmtContext (line 11255) | func (*Delete_stmtContext) IsDelete_stmtContext() {} method GetParser (line 11268) | func (s *Delete_stmtContext) GetParser() antlr.Parser { return s.parser } method DELETE_ (line 11270) | func (s *Delete_stmtContext) DELETE_() antlr.TerminalNode { method FROM_ (line 11274) | func (s *Delete_stmtContext) FROM_() antlr.TerminalNode { method Qualified_table_name (line 11278) | func (s *Delete_stmtContext) Qualified_table_name() IQualified_table_n... method With_clause (line 11294) | func (s *Delete_stmtContext) With_clause() IWith_clauseContext { method WHERE_ (line 11310) | func (s *Delete_stmtContext) WHERE_() antlr.TerminalNode { method Expr (line 11314) | func (s *Delete_stmtContext) Expr() IExprContext { method Returning_clause (line 11330) | func (s *Delete_stmtContext) Returning_clause() IReturning_clauseConte... method GetRuleContext (line 11346) | func (s *Delete_stmtContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 11350) | func (s *Delete_stmtContext) ToStringTree(ruleNames []string, recog an... method EnterRule (line 11354) | func (s *Delete_stmtContext) EnterRule(listener antlr.ParseTreeListene... method ExitRule (line 11360) | func (s *Delete_stmtContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyDelete_stmtContext (line 11243) | func NewEmptyDelete_stmtContext() *Delete_stmtContext { function InitEmptyDelete_stmtContext (line 11250) | func InitEmptyDelete_stmtContext(p *Delete_stmtContext) { function NewDelete_stmtContext (line 11257) | func NewDelete_stmtContext(parser antlr.Parser, parent antlr.ParserRuleC... type IDelete_stmt_limitedContext (line 11457) | type IDelete_stmt_limitedContext interface type Delete_stmt_limitedContext (line 11478) | type Delete_stmt_limitedContext struct method IsDelete_stmt_limitedContext (line 11495) | func (*Delete_stmt_limitedContext) IsDelete_stmt_limitedContext() {} method GetParser (line 11508) | func (s *Delete_stmt_limitedContext) GetParser() antlr.Parser { return... method DELETE_ (line 11510) | func (s *Delete_stmt_limitedContext) DELETE_() antlr.TerminalNode { method FROM_ (line 11514) | func (s *Delete_stmt_limitedContext) FROM_() antlr.TerminalNode { method Qualified_table_name (line 11518) | func (s *Delete_stmt_limitedContext) Qualified_table_name() IQualified... method With_clause (line 11534) | func (s *Delete_stmt_limitedContext) With_clause() IWith_clauseContext { method WHERE_ (line 11550) | func (s *Delete_stmt_limitedContext) WHERE_() antlr.TerminalNode { method Expr (line 11554) | func (s *Delete_stmt_limitedContext) Expr() IExprContext { method Limit_stmt (line 11570) | func (s *Delete_stmt_limitedContext) Limit_stmt() ILimit_stmtContext { method Returning_clause (line 11586) | func (s *Delete_stmt_limitedContext) Returning_clause() IReturning_cla... method Order_by_stmt (line 11602) | func (s *Delete_stmt_limitedContext) Order_by_stmt() IOrder_by_stmtCon... method GetRuleContext (line 11618) | func (s *Delete_stmt_limitedContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 11622) | func (s *Delete_stmt_limitedContext) ToStringTree(ruleNames []string, ... method EnterRule (line 11626) | func (s *Delete_stmt_limitedContext) EnterRule(listener antlr.ParseTre... method ExitRule (line 11632) | func (s *Delete_stmt_limitedContext) ExitRule(listener antlr.ParseTree... function NewEmptyDelete_stmt_limitedContext (line 11483) | func NewEmptyDelete_stmt_limitedContext() *Delete_stmt_limitedContext { function InitEmptyDelete_stmt_limitedContext (line 11490) | func InitEmptyDelete_stmt_limitedContext(p *Delete_stmt_limitedContext) { function NewDelete_stmt_limitedContext (line 11497) | func NewDelete_stmt_limitedContext(parser antlr.Parser, parent antlr.Par... type IDetach_stmtContext (line 11757) | type IDetach_stmtContext interface type Detach_stmtContext (line 11772) | type Detach_stmtContext struct method IsDetach_stmtContext (line 11789) | func (*Detach_stmtContext) IsDetach_stmtContext() {} method GetParser (line 11802) | func (s *Detach_stmtContext) GetParser() antlr.Parser { return s.parser } method DETACH_ (line 11804) | func (s *Detach_stmtContext) DETACH_() antlr.TerminalNode { method Schema_name (line 11808) | func (s *Detach_stmtContext) Schema_name() ISchema_nameContext { method DATABASE_ (line 11824) | func (s *Detach_stmtContext) DATABASE_() antlr.TerminalNode { method GetRuleContext (line 11828) | func (s *Detach_stmtContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 11832) | func (s *Detach_stmtContext) ToStringTree(ruleNames []string, recog an... method EnterRule (line 11836) | func (s *Detach_stmtContext) EnterRule(listener antlr.ParseTreeListene... method ExitRule (line 11842) | func (s *Detach_stmtContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyDetach_stmtContext (line 11777) | func NewEmptyDetach_stmtContext() *Detach_stmtContext { function InitEmptyDetach_stmtContext (line 11784) | func InitEmptyDetach_stmtContext(p *Detach_stmtContext) { function NewDetach_stmtContext (line 11791) | func NewDetach_stmtContext(parser antlr.Parser, parent antlr.ParserRuleC... type IDrop_stmtContext (line 11895) | type IDrop_stmtContext interface type Drop_stmtContext (line 11923) | type Drop_stmtContext struct method IsDrop_stmtContext (line 11941) | func (*Drop_stmtContext) IsDrop_stmtContext() {} method GetParser (line 11954) | func (s *Drop_stmtContext) GetParser() antlr.Parser { return s.parser } method GetObject (line 11956) | func (s *Drop_stmtContext) GetObject() antlr.Token { return s.object } method SetObject (line 11958) | func (s *Drop_stmtContext) SetObject(v antlr.Token) { s.object = v } method DROP_ (line 11960) | func (s *Drop_stmtContext) DROP_() antlr.TerminalNode { method Any_name (line 11964) | func (s *Drop_stmtContext) Any_name() IAny_nameContext { method INDEX_ (line 11980) | func (s *Drop_stmtContext) INDEX_() antlr.TerminalNode { method TABLE_ (line 11984) | func (s *Drop_stmtContext) TABLE_() antlr.TerminalNode { method TRIGGER_ (line 11988) | func (s *Drop_stmtContext) TRIGGER_() antlr.TerminalNode { method VIEW_ (line 11992) | func (s *Drop_stmtContext) VIEW_() antlr.TerminalNode { method IF_ (line 11996) | func (s *Drop_stmtContext) IF_() antlr.TerminalNode { method EXISTS_ (line 12000) | func (s *Drop_stmtContext) EXISTS_() antlr.TerminalNode { method Schema_name (line 12004) | func (s *Drop_stmtContext) Schema_name() ISchema_nameContext { method DOT (line 12020) | func (s *Drop_stmtContext) DOT() antlr.TerminalNode { method GetRuleContext (line 12024) | func (s *Drop_stmtContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 12028) | func (s *Drop_stmtContext) ToStringTree(ruleNames []string, recog antl... method EnterRule (line 12032) | func (s *Drop_stmtContext) EnterRule(listener antlr.ParseTreeListener) { method ExitRule (line 12038) | func (s *Drop_stmtContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyDrop_stmtContext (line 11929) | func NewEmptyDrop_stmtContext() *Drop_stmtContext { function InitEmptyDrop_stmtContext (line 11936) | func InitEmptyDrop_stmtContext(p *Drop_stmtContext) { function NewDrop_stmtContext (line 11943) | func NewDrop_stmtContext(parser antlr.Parser, parent antlr.ParserRuleCon... type IExprContext (line 12139) | type IExprContext interface type ExprContext (line 12148) | type ExprContext struct method IsExprContext (line 12165) | func (*ExprContext) IsExprContext() {} method GetParser (line 12178) | func (s *ExprContext) GetParser() antlr.Parser { return s.parser } method CopyAll (line 12180) | func (s *ExprContext) CopyAll(ctx *ExprContext) { method GetRuleContext (line 12184) | func (s *ExprContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 12188) | func (s *ExprContext) ToStringTree(ruleNames []string, recog antlr.Rec... function NewEmptyExprContext (line 12153) | func NewEmptyExprContext() *ExprContext { function InitEmptyExprContext (line 12160) | func InitEmptyExprContext(p *ExprContext) { function NewExprContext (line 12167) | func NewExprContext(parser antlr.Parser, parent antlr.ParserRuleContext,... type Expr_caseContext (line 12192) | type Expr_caseContext struct method GetRuleContext (line 12206) | func (s *Expr_caseContext) GetRuleContext() antlr.RuleContext { method CASE_ (line 12210) | func (s *Expr_caseContext) CASE_() antlr.TerminalNode { method END_ (line 12214) | func (s *Expr_caseContext) END_() antlr.TerminalNode { method AllExpr (line 12218) | func (s *Expr_caseContext) AllExpr() []IExprContext { method Expr (line 12239) | func (s *Expr_caseContext) Expr(i int) IExprContext { method AllWHEN_ (line 12259) | func (s *Expr_caseContext) AllWHEN_() []antlr.TerminalNode { method WHEN_ (line 12263) | func (s *Expr_caseContext) WHEN_(i int) antlr.TerminalNode { method AllTHEN_ (line 12267) | func (s *Expr_caseContext) AllTHEN_() []antlr.TerminalNode { method THEN_ (line 12271) | func (s *Expr_caseContext) THEN_(i int) antlr.TerminalNode { method ELSE_ (line 12275) | func (s *Expr_caseContext) ELSE_() antlr.TerminalNode { method EnterRule (line 12279) | func (s *Expr_caseContext) EnterRule(listener antlr.ParseTreeListener) { method ExitRule (line 12285) | func (s *Expr_caseContext) ExitRule(listener antlr.ParseTreeListener) { function NewExpr_caseContext (line 12196) | func NewExpr_caseContext(parser antlr.Parser, ctx antlr.ParserRuleContex... type Expr_raiseContext (line 12291) | type Expr_raiseContext struct method GetRuleContext (line 12305) | func (s *Expr_raiseContext) GetRuleContext() antlr.RuleContext { method Raise_function (line 12309) | func (s *Expr_raiseContext) Raise_function() IRaise_functionContext { method EnterRule (line 12325) | func (s *Expr_raiseContext) EnterRule(listener antlr.ParseTreeListener) { method ExitRule (line 12331) | func (s *Expr_raiseContext) ExitRule(listener antlr.ParseTreeListener) { function NewExpr_raiseContext (line 12295) | func NewExpr_raiseContext(parser antlr.Parser, ctx antlr.ParserRuleConte... type Expr_functionContext (line 12337) | type Expr_functionContext struct method GetRuleContext (line 12351) | func (s *Expr_functionContext) GetRuleContext() antlr.RuleContext { method Qualified_function_name (line 12355) | func (s *Expr_functionContext) Qualified_function_name() IQualified_fu... method OPEN_PAR (line 12371) | func (s *Expr_functionContext) OPEN_PAR() antlr.TerminalNode { method CLOSE_PAR (line 12375) | func (s *Expr_functionContext) CLOSE_PAR() antlr.TerminalNode { method STAR (line 12379) | func (s *Expr_functionContext) STAR() antlr.TerminalNode { method Filter_clause (line 12383) | func (s *Expr_functionContext) Filter_clause() IFilter_clauseContext { method Over_clause (line 12399) | func (s *Expr_functionContext) Over_clause() IOver_clauseContext { method AllExpr (line 12415) | func (s *Expr_functionContext) AllExpr() []IExprContext { method Expr (line 12436) | func (s *Expr_functionContext) Expr(i int) IExprContext { method DISTINCT_ (line 12456) | func (s *Expr_functionContext) DISTINCT_() antlr.TerminalNode { method AllCOMMA (line 12460) | func (s *Expr_functionContext) AllCOMMA() []antlr.TerminalNode { method COMMA (line 12464) | func (s *Expr_functionContext) COMMA(i int) antlr.TerminalNode { method EnterRule (line 12468) | func (s *Expr_functionContext) EnterRule(listener antlr.ParseTreeListe... method ExitRule (line 12474) | func (s *Expr_functionContext) ExitRule(listener antlr.ParseTreeListen... function NewExpr_functionContext (line 12341) | func NewExpr_functionContext(parser antlr.Parser, ctx antlr.ParserRuleCo... type Expr_comparisonContext (line 12480) | type Expr_comparisonContext struct method GetRuleContext (line 12494) | func (s *Expr_comparisonContext) GetRuleContext() antlr.RuleContext { method AllExpr (line 12498) | func (s *Expr_comparisonContext) AllExpr() []IExprContext { method Expr (line 12519) | func (s *Expr_comparisonContext) Expr(i int) IExprContext { method LT2 (line 12539) | func (s *Expr_comparisonContext) LT2() antlr.TerminalNode { method GT2 (line 12543) | func (s *Expr_comparisonContext) GT2() antlr.TerminalNode { method AMP (line 12547) | func (s *Expr_comparisonContext) AMP() antlr.TerminalNode { method PIPE (line 12551) | func (s *Expr_comparisonContext) PIPE() antlr.TerminalNode { method LT (line 12555) | func (s *Expr_comparisonContext) LT() antlr.TerminalNode { method LT_EQ (line 12559) | func (s *Expr_comparisonContext) LT_EQ() antlr.TerminalNode { method GT (line 12563) | func (s *Expr_comparisonContext) GT() antlr.TerminalNode { method GT_EQ (line 12567) | func (s *Expr_comparisonContext) GT_EQ() antlr.TerminalNode { method ASSIGN (line 12571) | func (s *Expr_comparisonContext) ASSIGN() antlr.TerminalNode { method EQ (line 12575) | func (s *Expr_comparisonContext) EQ() antlr.TerminalNode { method NOT_EQ1 (line 12579) | func (s *Expr_comparisonContext) NOT_EQ1() antlr.TerminalNode { method NOT_EQ2 (line 12583) | func (s *Expr_comparisonContext) NOT_EQ2() antlr.TerminalNode { method IS_ (line 12587) | func (s *Expr_comparisonContext) IS_() antlr.TerminalNode { method NOT_ (line 12591) | func (s *Expr_comparisonContext) NOT_() antlr.TerminalNode { method IN_ (line 12595) | func (s *Expr_comparisonContext) IN_() antlr.TerminalNode { method LIKE_ (line 12599) | func (s *Expr_comparisonContext) LIKE_() antlr.TerminalNode { method GLOB_ (line 12603) | func (s *Expr_comparisonContext) GLOB_() antlr.TerminalNode { method MATCH_ (line 12607) | func (s *Expr_comparisonContext) MATCH_() antlr.TerminalNode { method REGEXP_ (line 12611) | func (s *Expr_comparisonContext) REGEXP_() antlr.TerminalNode { method ESCAPE_ (line 12615) | func (s *Expr_comparisonContext) ESCAPE_() antlr.TerminalNode { method EnterRule (line 12619) | func (s *Expr_comparisonContext) EnterRule(listener antlr.ParseTreeLis... method ExitRule (line 12625) | func (s *Expr_comparisonContext) ExitRule(listener antlr.ParseTreeList... function NewExpr_comparisonContext (line 12484) | func NewExpr_comparisonContext(parser antlr.Parser, ctx antlr.ParserRule... type Expr_boolContext (line 12631) | type Expr_boolContext struct method GetRuleContext (line 12645) | func (s *Expr_boolContext) GetRuleContext() antlr.RuleContext { method AllExpr (line 12649) | func (s *Expr_boolContext) AllExpr() []IExprContext { method Expr (line 12670) | func (s *Expr_boolContext) Expr(i int) IExprContext { method AND_ (line 12690) | func (s *Expr_boolContext) AND_() antlr.TerminalNode { method OR_ (line 12694) | func (s *Expr_boolContext) OR_() antlr.TerminalNode { method EnterRule (line 12698) | func (s *Expr_boolContext) EnterRule(listener antlr.ParseTreeListener) { method ExitRule (line 12704) | func (s *Expr_boolContext) ExitRule(listener antlr.ParseTreeListener) { function NewExpr_boolContext (line 12635) | func NewExpr_boolContext(parser antlr.Parser, ctx antlr.ParserRuleContex... type Expr_binaryContext (line 12710) | type Expr_binaryContext struct method GetRuleContext (line 12724) | func (s *Expr_binaryContext) GetRuleContext() antlr.RuleContext { method AllExpr (line 12728) | func (s *Expr_binaryContext) AllExpr() []IExprContext { method Expr (line 12749) | func (s *Expr_binaryContext) Expr(i int) IExprContext { method PIPE2 (line 12769) | func (s *Expr_binaryContext) PIPE2() antlr.TerminalNode { method PTR (line 12773) | func (s *Expr_binaryContext) PTR() antlr.TerminalNode { method PTR2 (line 12777) | func (s *Expr_binaryContext) PTR2() antlr.TerminalNode { method STAR (line 12781) | func (s *Expr_binaryContext) STAR() antlr.TerminalNode { method DIV (line 12785) | func (s *Expr_binaryContext) DIV() antlr.TerminalNode { method MOD (line 12789) | func (s *Expr_binaryContext) MOD() antlr.TerminalNode { method PLUS (line 12793) | func (s *Expr_binaryContext) PLUS() antlr.TerminalNode { method MINUS (line 12797) | func (s *Expr_binaryContext) MINUS() antlr.TerminalNode { method EnterRule (line 12801) | func (s *Expr_binaryContext) EnterRule(listener antlr.ParseTreeListene... method ExitRule (line 12807) | func (s *Expr_binaryContext) ExitRule(listener antlr.ParseTreeListener) { function NewExpr_binaryContext (line 12714) | func NewExpr_binaryContext(parser antlr.Parser, ctx antlr.ParserRuleCont... type Expr_literalContext (line 12813) | type Expr_literalContext struct method GetRuleContext (line 12827) | func (s *Expr_literalContext) GetRuleContext() antlr.RuleContext { method Literal_value (line 12831) | func (s *Expr_literalContext) Literal_value() ILiteral_valueContext { method EnterRule (line 12847) | func (s *Expr_literalContext) EnterRule(listener antlr.ParseTreeListen... method ExitRule (line 12853) | func (s *Expr_literalContext) ExitRule(listener antlr.ParseTreeListene... function NewExpr_literalContext (line 12817) | func NewExpr_literalContext(parser antlr.Parser, ctx antlr.ParserRuleCon... type Expr_castContext (line 12859) | type Expr_castContext struct method GetRuleContext (line 12873) | func (s *Expr_castContext) GetRuleContext() antlr.RuleContext { method CAST_ (line 12877) | func (s *Expr_castContext) CAST_() antlr.TerminalNode { method OPEN_PAR (line 12881) | func (s *Expr_castContext) OPEN_PAR() antlr.TerminalNode { method Expr (line 12885) | func (s *Expr_castContext) Expr() IExprContext { method AS_ (line 12901) | func (s *Expr_castContext) AS_() antlr.TerminalNode { method Type_name (line 12905) | func (s *Expr_castContext) Type_name() IType_nameContext { method CLOSE_PAR (line 12921) | func (s *Expr_castContext) CLOSE_PAR() antlr.TerminalNode { method EnterRule (line 12925) | func (s *Expr_castContext) EnterRule(listener antlr.ParseTreeListener) { method ExitRule (line 12931) | func (s *Expr_castContext) ExitRule(listener antlr.ParseTreeListener) { function NewExpr_castContext (line 12863) | func NewExpr_castContext(parser antlr.Parser, ctx antlr.ParserRuleContex... type Expr_in_selectContext (line 12937) | type Expr_in_selectContext struct method GetRuleContext (line 12951) | func (s *Expr_in_selectContext) GetRuleContext() antlr.RuleContext { method OPEN_PAR (line 12955) | func (s *Expr_in_selectContext) OPEN_PAR() antlr.TerminalNode { method Select_stmt (line 12959) | func (s *Expr_in_selectContext) Select_stmt() ISelect_stmtContext { method CLOSE_PAR (line 12975) | func (s *Expr_in_selectContext) CLOSE_PAR() antlr.TerminalNode { method EXISTS_ (line 12979) | func (s *Expr_in_selectContext) EXISTS_() antlr.TerminalNode { method NOT_ (line 12983) | func (s *Expr_in_selectContext) NOT_() antlr.TerminalNode { method AllExpr (line 12987) | func (s *Expr_in_selectContext) AllExpr() []IExprContext { method Expr (line 13008) | func (s *Expr_in_selectContext) Expr(i int) IExprContext { method IN_ (line 13028) | func (s *Expr_in_selectContext) IN_() antlr.TerminalNode { method Table_name (line 13032) | func (s *Expr_in_selectContext) Table_name() ITable_nameContext { method Table_function_name (line 13048) | func (s *Expr_in_selectContext) Table_function_name() ITable_function_... method Schema_name (line 13064) | func (s *Expr_in_selectContext) Schema_name() ISchema_nameContext { method DOT (line 13080) | func (s *Expr_in_selectContext) DOT() antlr.TerminalNode { method AllCOMMA (line 13084) | func (s *Expr_in_selectContext) AllCOMMA() []antlr.TerminalNode { method COMMA (line 13088) | func (s *Expr_in_selectContext) COMMA(i int) antlr.TerminalNode { method EnterRule (line 13092) | func (s *Expr_in_selectContext) EnterRule(listener antlr.ParseTreeList... method ExitRule (line 13098) | func (s *Expr_in_selectContext) ExitRule(listener antlr.ParseTreeListe... function NewExpr_in_selectContext (line 12941) | func NewExpr_in_selectContext(parser antlr.Parser, ctx antlr.ParserRuleC... type Expr_listContext (line 13104) | type Expr_listContext struct method GetRuleContext (line 13118) | func (s *Expr_listContext) GetRuleContext() antlr.RuleContext { method OPEN_PAR (line 13122) | func (s *Expr_listContext) OPEN_PAR() antlr.TerminalNode { method AllExpr (line 13126) | func (s *Expr_listContext) AllExpr() []IExprContext { method Expr (line 13147) | func (s *Expr_listContext) Expr(i int) IExprContext { method CLOSE_PAR (line 13167) | func (s *Expr_listContext) CLOSE_PAR() antlr.TerminalNode { method AllCOMMA (line 13171) | func (s *Expr_listContext) AllCOMMA() []antlr.TerminalNode { method COMMA (line 13175) | func (s *Expr_listContext) COMMA(i int) antlr.TerminalNode { method EnterRule (line 13179) | func (s *Expr_listContext) EnterRule(listener antlr.ParseTreeListener) { method ExitRule (line 13185) | func (s *Expr_listContext) ExitRule(listener antlr.ParseTreeListener) { function NewExpr_listContext (line 13108) | func NewExpr_listContext(parser antlr.Parser, ctx antlr.ParserRuleContex... type Expr_betweenContext (line 13191) | type Expr_betweenContext struct method GetRuleContext (line 13205) | func (s *Expr_betweenContext) GetRuleContext() antlr.RuleContext { method AllExpr (line 13209) | func (s *Expr_betweenContext) AllExpr() []IExprContext { method Expr (line 13230) | func (s *Expr_betweenContext) Expr(i int) IExprContext { method BETWEEN_ (line 13250) | func (s *Expr_betweenContext) BETWEEN_() antlr.TerminalNode { method AND_ (line 13254) | func (s *Expr_betweenContext) AND_() antlr.TerminalNode { method NOT_ (line 13258) | func (s *Expr_betweenContext) NOT_() antlr.TerminalNode { method EnterRule (line 13262) | func (s *Expr_betweenContext) EnterRule(listener antlr.ParseTreeListen... method ExitRule (line 13268) | func (s *Expr_betweenContext) ExitRule(listener antlr.ParseTreeListene... function NewExpr_betweenContext (line 13195) | func NewExpr_betweenContext(parser antlr.Parser, ctx antlr.ParserRuleCon... type Expr_collateContext (line 13274) | type Expr_collateContext struct method GetRuleContext (line 13288) | func (s *Expr_collateContext) GetRuleContext() antlr.RuleContext { method Expr (line 13292) | func (s *Expr_collateContext) Expr() IExprContext { method COLLATE_ (line 13308) | func (s *Expr_collateContext) COLLATE_() antlr.TerminalNode { method Collation_name (line 13312) | func (s *Expr_collateContext) Collation_name() ICollation_nameContext { method EnterRule (line 13328) | func (s *Expr_collateContext) EnterRule(listener antlr.ParseTreeListen... method ExitRule (line 13334) | func (s *Expr_collateContext) ExitRule(listener antlr.ParseTreeListene... function NewExpr_collateContext (line 13278) | func NewExpr_collateContext(parser antlr.Parser, ctx antlr.ParserRuleCon... type Expr_qualified_column_nameContext (line 13340) | type Expr_qualified_column_nameContext struct method GetRuleContext (line 13354) | func (s *Expr_qualified_column_nameContext) GetRuleContext() antlr.Rul... method Column_name (line 13358) | func (s *Expr_qualified_column_nameContext) Column_name() IColumn_name... method Table_name (line 13374) | func (s *Expr_qualified_column_nameContext) Table_name() ITable_nameCo... method AllDOT (line 13390) | func (s *Expr_qualified_column_nameContext) AllDOT() []antlr.TerminalN... method DOT (line 13394) | func (s *Expr_qualified_column_nameContext) DOT(i int) antlr.TerminalN... method Schema_name (line 13398) | func (s *Expr_qualified_column_nameContext) Schema_name() ISchema_name... method EnterRule (line 13414) | func (s *Expr_qualified_column_nameContext) EnterRule(listener antlr.P... method ExitRule (line 13420) | func (s *Expr_qualified_column_nameContext) ExitRule(listener antlr.Pa... function NewExpr_qualified_column_nameContext (line 13344) | func NewExpr_qualified_column_nameContext(parser antlr.Parser, ctx antlr... type Expr_unaryContext (line 13426) | type Expr_unaryContext struct method GetRuleContext (line 13440) | func (s *Expr_unaryContext) GetRuleContext() antlr.RuleContext { method Unary_operator (line 13444) | func (s *Expr_unaryContext) Unary_operator() IUnary_operatorContext { method Expr (line 13460) | func (s *Expr_unaryContext) Expr() IExprContext { method EnterRule (line 13476) | func (s *Expr_unaryContext) EnterRule(listener antlr.ParseTreeListener) { method ExitRule (line 13482) | func (s *Expr_unaryContext) ExitRule(listener antlr.ParseTreeListener) { function NewExpr_unaryContext (line 13430) | func NewExpr_unaryContext(parser antlr.Parser, ctx antlr.ParserRuleConte... type Expr_null_compContext (line 13488) | type Expr_null_compContext struct method GetRuleContext (line 13502) | func (s *Expr_null_compContext) GetRuleContext() antlr.RuleContext { method Expr (line 13506) | func (s *Expr_null_compContext) Expr() IExprContext { method ISNULL_ (line 13522) | func (s *Expr_null_compContext) ISNULL_() antlr.TerminalNode { method NOTNULL_ (line 13526) | func (s *Expr_null_compContext) NOTNULL_() antlr.TerminalNode { method NOT_ (line 13530) | func (s *Expr_null_compContext) NOT_() antlr.TerminalNode { method NULL_ (line 13534) | func (s *Expr_null_compContext) NULL_() antlr.TerminalNode { method EnterRule (line 13538) | func (s *Expr_null_compContext) EnterRule(listener antlr.ParseTreeList... method ExitRule (line 13544) | func (s *Expr_null_compContext) ExitRule(listener antlr.ParseTreeListe... function NewExpr_null_compContext (line 13492) | func NewExpr_null_compContext(parser antlr.Parser, ctx antlr.ParserRuleC... type Expr_bindContext (line 13550) | type Expr_bindContext struct method GetRuleContext (line 13564) | func (s *Expr_bindContext) GetRuleContext() antlr.RuleContext { method NUMBERED_BIND_PARAMETER (line 13568) | func (s *Expr_bindContext) NUMBERED_BIND_PARAMETER() antlr.TerminalNode { method NAMED_BIND_PARAMETER (line 13572) | func (s *Expr_bindContext) NAMED_BIND_PARAMETER() antlr.TerminalNode { method EnterRule (line 13576) | func (s *Expr_bindContext) EnterRule(listener antlr.ParseTreeListener) { method ExitRule (line 13582) | func (s *Expr_bindContext) ExitRule(listener antlr.ParseTreeListener) { function NewExpr_bindContext (line 13554) | func NewExpr_bindContext(parser antlr.Parser, ctx antlr.ParserRuleContex... type IRaise_functionContext (line 14918) | type IRaise_functionContext interface type Raise_functionContext (line 14939) | type Raise_functionContext struct method IsRaise_functionContext (line 14956) | func (*Raise_functionContext) IsRaise_functionContext() {} method GetParser (line 14969) | func (s *Raise_functionContext) GetParser() antlr.Parser { return s.pa... method RAISE_ (line 14971) | func (s *Raise_functionContext) RAISE_() antlr.TerminalNode { method OPEN_PAR (line 14975) | func (s *Raise_functionContext) OPEN_PAR() antlr.TerminalNode { method CLOSE_PAR (line 14979) | func (s *Raise_functionContext) CLOSE_PAR() antlr.TerminalNode { method IGNORE_ (line 14983) | func (s *Raise_functionContext) IGNORE_() antlr.TerminalNode { method COMMA (line 14987) | func (s *Raise_functionContext) COMMA() antlr.TerminalNode { method Error_message (line 14991) | func (s *Raise_functionContext) Error_message() IError_messageContext { method ROLLBACK_ (line 15007) | func (s *Raise_functionContext) ROLLBACK_() antlr.TerminalNode { method ABORT_ (line 15011) | func (s *Raise_functionContext) ABORT_() antlr.TerminalNode { method FAIL_ (line 15015) | func (s *Raise_functionContext) FAIL_() antlr.TerminalNode { method GetRuleContext (line 15019) | func (s *Raise_functionContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 15023) | func (s *Raise_functionContext) ToStringTree(ruleNames []string, recog... method EnterRule (line 15027) | func (s *Raise_functionContext) EnterRule(listener antlr.ParseTreeList... method ExitRule (line 15033) | func (s *Raise_functionContext) ExitRule(listener antlr.ParseTreeListe... function NewEmptyRaise_functionContext (line 14944) | func NewEmptyRaise_functionContext() *Raise_functionContext { function InitEmptyRaise_functionContext (line 14951) | func InitEmptyRaise_functionContext(p *Raise_functionContext) { function NewRaise_functionContext (line 14958) | func NewRaise_functionContext(parser antlr.Parser, parent antlr.ParserRu... type ILiteral_valueContext (line 15130) | type ILiteral_valueContext interface type Literal_valueContext (line 15151) | type Literal_valueContext struct method IsLiteral_valueContext (line 15168) | func (*Literal_valueContext) IsLiteral_valueContext() {} method GetParser (line 15181) | func (s *Literal_valueContext) GetParser() antlr.Parser { return s.par... method NUMERIC_LITERAL (line 15183) | func (s *Literal_valueContext) NUMERIC_LITERAL() antlr.TerminalNode { method STRING_LITERAL (line 15187) | func (s *Literal_valueContext) STRING_LITERAL() antlr.TerminalNode { method BLOB_LITERAL (line 15191) | func (s *Literal_valueContext) BLOB_LITERAL() antlr.TerminalNode { method NULL_ (line 15195) | func (s *Literal_valueContext) NULL_() antlr.TerminalNode { method TRUE_ (line 15199) | func (s *Literal_valueContext) TRUE_() antlr.TerminalNode { method FALSE_ (line 15203) | func (s *Literal_valueContext) FALSE_() antlr.TerminalNode { method CURRENT_TIME_ (line 15207) | func (s *Literal_valueContext) CURRENT_TIME_() antlr.TerminalNode { method CURRENT_DATE_ (line 15211) | func (s *Literal_valueContext) CURRENT_DATE_() antlr.TerminalNode { method CURRENT_TIMESTAMP_ (line 15215) | func (s *Literal_valueContext) CURRENT_TIMESTAMP_() antlr.TerminalNode { method GetRuleContext (line 15219) | func (s *Literal_valueContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 15223) | func (s *Literal_valueContext) ToStringTree(ruleNames []string, recog ... method EnterRule (line 15227) | func (s *Literal_valueContext) EnterRule(listener antlr.ParseTreeListe... method ExitRule (line 15233) | func (s *Literal_valueContext) ExitRule(listener antlr.ParseTreeListen... function NewEmptyLiteral_valueContext (line 15156) | func NewEmptyLiteral_valueContext() *Literal_valueContext { function InitEmptyLiteral_valueContext (line 15163) | func InitEmptyLiteral_valueContext(p *Literal_valueContext) { function NewLiteral_valueContext (line 15170) | func NewLiteral_valueContext(parser antlr.Parser, parent antlr.ParserRul... type IInsert_stmtContext (line 15271) | type IInsert_stmtContext interface type Insert_stmtContext (line 15312) | type Insert_stmtContext struct method IsInsert_stmtContext (line 15329) | func (*Insert_stmtContext) IsInsert_stmtContext() {} method GetParser (line 15342) | func (s *Insert_stmtContext) GetParser() antlr.Parser { return s.parser } method INTO_ (line 15344) | func (s *Insert_stmtContext) INTO_() antlr.TerminalNode { method Table_name (line 15348) | func (s *Insert_stmtContext) Table_name() ITable_nameContext { method INSERT_ (line 15364) | func (s *Insert_stmtContext) INSERT_() antlr.TerminalNode { method REPLACE_ (line 15368) | func (s *Insert_stmtContext) REPLACE_() antlr.TerminalNode { method OR_ (line 15372) | func (s *Insert_stmtContext) OR_() antlr.TerminalNode { method With_clause (line 15376) | func (s *Insert_stmtContext) With_clause() IWith_clauseContext { method ROLLBACK_ (line 15392) | func (s *Insert_stmtContext) ROLLBACK_() antlr.TerminalNode { method ABORT_ (line 15396) | func (s *Insert_stmtContext) ABORT_() antlr.TerminalNode { method FAIL_ (line 15400) | func (s *Insert_stmtContext) FAIL_() antlr.TerminalNode { method IGNORE_ (line 15404) | func (s *Insert_stmtContext) IGNORE_() antlr.TerminalNode { method Schema_name (line 15408) | func (s *Insert_stmtContext) Schema_name() ISchema_nameContext { method DOT (line 15424) | func (s *Insert_stmtContext) DOT() antlr.TerminalNode { method AS_ (line 15428) | func (s *Insert_stmtContext) AS_() antlr.TerminalNode { method Table_alias (line 15432) | func (s *Insert_stmtContext) Table_alias() ITable_aliasContext { method AllOPEN_PAR (line 15448) | func (s *Insert_stmtContext) AllOPEN_PAR() []antlr.TerminalNode { method OPEN_PAR (line 15452) | func (s *Insert_stmtContext) OPEN_PAR(i int) antlr.TerminalNode { method AllColumn_name (line 15456) | func (s *Insert_stmtContext) AllColumn_name() []IColumn_nameContext { method Column_name (line 15477) | func (s *Insert_stmtContext) Column_name(i int) IColumn_nameContext { method AllCLOSE_PAR (line 15497) | func (s *Insert_stmtContext) AllCLOSE_PAR() []antlr.TerminalNode { method CLOSE_PAR (line 15501) | func (s *Insert_stmtContext) CLOSE_PAR(i int) antlr.TerminalNode { method VALUES_ (line 15505) | func (s *Insert_stmtContext) VALUES_() antlr.TerminalNode { method AllExpr (line 15509) | func (s *Insert_stmtContext) AllExpr() []IExprContext { method Expr (line 15530) | func (s *Insert_stmtContext) Expr(i int) IExprContext { method Select_stmt (line 15550) | func (s *Insert_stmtContext) Select_stmt() ISelect_stmtContext { method DEFAULT_ (line 15566) | func (s *Insert_stmtContext) DEFAULT_() antlr.TerminalNode { method Upsert_clause (line 15570) | func (s *Insert_stmtContext) Upsert_clause() IUpsert_clauseContext { method Returning_clause (line 15586) | func (s *Insert_stmtContext) Returning_clause() IReturning_clauseConte... method AllCOMMA (line 15602) | func (s *Insert_stmtContext) AllCOMMA() []antlr.TerminalNode { method COMMA (line 15606) | func (s *Insert_stmtContext) COMMA(i int) antlr.TerminalNode { method GetRuleContext (line 15610) | func (s *Insert_stmtContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 15614) | func (s *Insert_stmtContext) ToStringTree(ruleNames []string, recog an... method EnterRule (line 15618) | func (s *Insert_stmtContext) EnterRule(listener antlr.ParseTreeListene... method ExitRule (line 15624) | func (s *Insert_stmtContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyInsert_stmtContext (line 15317) | func NewEmptyInsert_stmtContext() *Insert_stmtContext { function InitEmptyInsert_stmtContext (line 15324) | func InitEmptyInsert_stmtContext(p *Insert_stmtContext) { function NewInsert_stmtContext (line 15331) | func NewInsert_stmtContext(parser antlr.Parser, parent antlr.ParserRuleC... type IUpsert_clauseContext (line 16029) | type IUpsert_clauseContext interface type Upsert_clauseContext (line 16063) | type Upsert_clauseContext struct method IsUpsert_clauseContext (line 16080) | func (*Upsert_clauseContext) IsUpsert_clauseContext() {} method GetParser (line 16093) | func (s *Upsert_clauseContext) GetParser() antlr.Parser { return s.par... method ON_ (line 16095) | func (s *Upsert_clauseContext) ON_() antlr.TerminalNode { method CONFLICT_ (line 16099) | func (s *Upsert_clauseContext) CONFLICT_() antlr.TerminalNode { method DO_ (line 16103) | func (s *Upsert_clauseContext) DO_() antlr.TerminalNode { method NOTHING_ (line 16107) | func (s *Upsert_clauseContext) NOTHING_() antlr.TerminalNode { method UPDATE_ (line 16111) | func (s *Upsert_clauseContext) UPDATE_() antlr.TerminalNode { method SET_ (line 16115) | func (s *Upsert_clauseContext) SET_() antlr.TerminalNode { method OPEN_PAR (line 16119) | func (s *Upsert_clauseContext) OPEN_PAR() antlr.TerminalNode { method AllIndexed_column (line 16123) | func (s *Upsert_clauseContext) AllIndexed_column() []IIndexed_columnCo... method Indexed_column (line 16144) | func (s *Upsert_clauseContext) Indexed_column(i int) IIndexed_columnCo... method CLOSE_PAR (line 16164) | func (s *Upsert_clauseContext) CLOSE_PAR() antlr.TerminalNode { method AllASSIGN (line 16168) | func (s *Upsert_clauseContext) AllASSIGN() []antlr.TerminalNode { method ASSIGN (line 16172) | func (s *Upsert_clauseContext) ASSIGN(i int) antlr.TerminalNode { method AllExpr (line 16176) | func (s *Upsert_clauseContext) AllExpr() []IExprContext { method Expr (line 16197) | func (s *Upsert_clauseContext) Expr(i int) IExprContext { method AllCOMMA (line 16217) | func (s *Upsert_clauseContext) AllCOMMA() []antlr.TerminalNode { method COMMA (line 16221) | func (s *Upsert_clauseContext) COMMA(i int) antlr.TerminalNode { method AllWHERE_ (line 16225) | func (s *Upsert_clauseContext) AllWHERE_() []antlr.TerminalNode { method WHERE_ (line 16229) | func (s *Upsert_clauseContext) WHERE_(i int) antlr.TerminalNode { method AllColumn_name (line 16233) | func (s *Upsert_clauseContext) AllColumn_name() []IColumn_nameContext { method Column_name (line 16254) | func (s *Upsert_clauseContext) Column_name(i int) IColumn_nameContext { method AllColumn_name_list (line 16274) | func (s *Upsert_clauseContext) AllColumn_name_list() []IColumn_name_li... method Column_name_list (line 16295) | func (s *Upsert_clauseContext) Column_name_list(i int) IColumn_name_li... method GetRuleContext (line 16315) | func (s *Upsert_clauseContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 16319) | func (s *Upsert_clauseContext) ToStringTree(ruleNames []string, recog ... method EnterRule (line 16323) | func (s *Upsert_clauseContext) EnterRule(listener antlr.ParseTreeListe... method ExitRule (line 16329) | func (s *Upsert_clauseContext) ExitRule(listener antlr.ParseTreeListen... function NewEmptyUpsert_clauseContext (line 16068) | func NewEmptyUpsert_clauseContext() *Upsert_clauseContext { function InitEmptyUpsert_clauseContext (line 16075) | func InitEmptyUpsert_clauseContext(p *Upsert_clauseContext) { function NewUpsert_clauseContext (line 16082) | func NewUpsert_clauseContext(parser antlr.Parser, parent antlr.ParserRul... type IPragma_stmtContext (line 16614) | type IPragma_stmtContext interface type Pragma_stmtContext (line 16634) | type Pragma_stmtContext struct method IsPragma_stmtContext (line 16651) | func (*Pragma_stmtContext) IsPragma_stmtContext() {} method GetParser (line 16664) | func (s *Pragma_stmtContext) GetParser() antlr.Parser { return s.parser } method PRAGMA_ (line 16666) | func (s *Pragma_stmtContext) PRAGMA_() antlr.TerminalNode { method Pragma_name (line 16670) | func (s *Pragma_stmtContext) Pragma_name() IPragma_nameContext { method Schema_name (line 16686) | func (s *Pragma_stmtContext) Schema_name() ISchema_nameContext { method DOT (line 16702) | func (s *Pragma_stmtContext) DOT() antlr.TerminalNode { method ASSIGN (line 16706) | func (s *Pragma_stmtContext) ASSIGN() antlr.TerminalNode { method Pragma_value (line 16710) | func (s *Pragma_stmtContext) Pragma_value() IPragma_valueContext { method OPEN_PAR (line 16726) | func (s *Pragma_stmtContext) OPEN_PAR() antlr.TerminalNode { method CLOSE_PAR (line 16730) | func (s *Pragma_stmtContext) CLOSE_PAR() antlr.TerminalNode { method GetRuleContext (line 16734) | func (s *Pragma_stmtContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 16738) | func (s *Pragma_stmtContext) ToStringTree(ruleNames []string, recog an... method EnterRule (line 16742) | func (s *Pragma_stmtContext) EnterRule(listener antlr.ParseTreeListene... method ExitRule (line 16748) | func (s *Pragma_stmtContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyPragma_stmtContext (line 16639) | func NewEmptyPragma_stmtContext() *Pragma_stmtContext { function InitEmptyPragma_stmtContext (line 16646) | func InitEmptyPragma_stmtContext(p *Pragma_stmtContext) { function NewPragma_stmtContext (line 16653) | func NewPragma_stmtContext(parser antlr.Parser, parent antlr.ParserRuleC... type IPragma_valueContext (line 16851) | type IPragma_valueContext interface type Pragma_valueContext (line 16866) | type Pragma_valueContext struct method IsPragma_valueContext (line 16883) | func (*Pragma_valueContext) IsPragma_valueContext() {} method GetParser (line 16896) | func (s *Pragma_valueContext) GetParser() antlr.Parser { return s.pars... method Signed_number (line 16898) | func (s *Pragma_valueContext) Signed_number() ISigned_numberContext { method Name (line 16914) | func (s *Pragma_valueContext) Name() INameContext { method STRING_LITERAL (line 16930) | func (s *Pragma_valueContext) STRING_LITERAL() antlr.TerminalNode { method GetRuleContext (line 16934) | func (s *Pragma_valueContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 16938) | func (s *Pragma_valueContext) ToStringTree(ruleNames []string, recog a... method EnterRule (line 16942) | func (s *Pragma_valueContext) EnterRule(listener antlr.ParseTreeListen... method ExitRule (line 16948) | func (s *Pragma_valueContext) ExitRule(listener antlr.ParseTreeListene... function NewEmptyPragma_valueContext (line 16871) | func NewEmptyPragma_valueContext() *Pragma_valueContext { function InitEmptyPragma_valueContext (line 16878) | func InitEmptyPragma_valueContext(p *Pragma_valueContext) { function NewPragma_valueContext (line 16885) | func NewPragma_valueContext(parser antlr.Parser, parent antlr.ParserRule... type IReindex_stmtContext (line 17007) | type IReindex_stmtContext interface type Reindex_stmtContext (line 17025) | type Reindex_stmtContext struct method IsReindex_stmtContext (line 17042) | func (*Reindex_stmtContext) IsReindex_stmtContext() {} method GetParser (line 17055) | func (s *Reindex_stmtContext) GetParser() antlr.Parser { return s.pars... method REINDEX_ (line 17057) | func (s *Reindex_stmtContext) REINDEX_() antlr.TerminalNode { method Collation_name (line 17061) | func (s *Reindex_stmtContext) Collation_name() ICollation_nameContext { method Table_name (line 17077) | func (s *Reindex_stmtContext) Table_name() ITable_nameContext { method Index_name (line 17093) | func (s *Reindex_stmtContext) Index_name() IIndex_nameContext { method Schema_name (line 17109) | func (s *Reindex_stmtContext) Schema_name() ISchema_nameContext { method DOT (line 17125) | func (s *Reindex_stmtContext) DOT() antlr.TerminalNode { method GetRuleContext (line 17129) | func (s *Reindex_stmtContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 17133) | func (s *Reindex_stmtContext) ToStringTree(ruleNames []string, recog a... method EnterRule (line 17137) | func (s *Reindex_stmtContext) EnterRule(listener antlr.ParseTreeListen... method ExitRule (line 17143) | func (s *Reindex_stmtContext) ExitRule(listener antlr.ParseTreeListene... function NewEmptyReindex_stmtContext (line 17030) | func NewEmptyReindex_stmtContext() *Reindex_stmtContext { function InitEmptyReindex_stmtContext (line 17037) | func InitEmptyReindex_stmtContext(p *Reindex_stmtContext) { function NewReindex_stmtContext (line 17044) | func NewReindex_stmtContext(parser antlr.Parser, parent antlr.ParserRule... type ISelect_stmtContext (line 17234) | type ISelect_stmtContext interface type Select_stmtContext (line 17253) | type Select_stmtContext struct method IsSelect_stmtContext (line 17270) | func (*Select_stmtContext) IsSelect_stmtContext() {} method GetParser (line 17283) | func (s *Select_stmtContext) GetParser() antlr.Parser { return s.parser } method AllSelect_core (line 17285) | func (s *Select_stmtContext) AllSelect_core() []ISelect_coreContext { method Select_core (line 17306) | func (s *Select_stmtContext) Select_core(i int) ISelect_coreContext { method Common_table_stmt (line 17326) | func (s *Select_stmtContext) Common_table_stmt() ICommon_table_stmtCon... method AllCompound_operator (line 17342) | func (s *Select_stmtContext) AllCompound_operator() []ICompound_operat... method Compound_operator (line 17363) | func (s *Select_stmtContext) Compound_operator(i int) ICompound_operat... method Order_by_stmt (line 17383) | func (s *Select_stmtContext) Order_by_stmt() IOrder_by_stmtContext { method Limit_stmt (line 17399) | func (s *Select_stmtContext) Limit_stmt() ILimit_stmtContext { method GetRuleContext (line 17415) | func (s *Select_stmtContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 17419) | func (s *Select_stmtContext) ToStringTree(ruleNames []string, recog an... method EnterRule (line 17423) | func (s *Select_stmtContext) EnterRule(listener antlr.ParseTreeListene... method ExitRule (line 17429) | func (s *Select_stmtContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptySelect_stmtContext (line 17258) | func NewEmptySelect_stmtContext() *Select_stmtContext { function InitEmptySelect_stmtContext (line 17265) | func InitEmptySelect_stmtContext(p *Select_stmtContext) { function NewSelect_stmtContext (line 17272) | func NewSelect_stmtContext(parser antlr.Parser, parent antlr.ParserRuleC... type IJoin_clauseContext (line 17535) | type IJoin_clauseContext interface type Join_clauseContext (line 17553) | type Join_clauseContext struct method IsJoin_clauseContext (line 17570) | func (*Join_clauseContext) IsJoin_clauseContext() {} method GetParser (line 17583) | func (s *Join_clauseContext) GetParser() antlr.Parser { return s.parser } method AllTable_or_subquery (line 17585) | func (s *Join_clauseContext) AllTable_or_subquery() []ITable_or_subque... method Table_or_subquery (line 17606) | func (s *Join_clauseContext) Table_or_subquery(i int) ITable_or_subque... method AllJoin_operator (line 17626) | func (s *Join_clauseContext) AllJoin_operator() []IJoin_operatorContext { method Join_operator (line 17647) | func (s *Join_clauseContext) Join_operator(i int) IJoin_operatorContext { method AllJoin_constraint (line 17667) | func (s *Join_clauseContext) AllJoin_constraint() []IJoin_constraintCo... method Join_constraint (line 17688) | func (s *Join_clauseContext) Join_constraint(i int) IJoin_constraintCo... method GetRuleContext (line 17708) | func (s *Join_clauseContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 17712) | func (s *Join_clauseContext) ToStringTree(ruleNames []string, recog an... method EnterRule (line 17716) | func (s *Join_clauseContext) EnterRule(listener antlr.ParseTreeListene... method ExitRule (line 17722) | func (s *Join_clauseContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyJoin_clauseContext (line 17558) | func NewEmptyJoin_clauseContext() *Join_clauseContext { function InitEmptyJoin_clauseContext (line 17565) | func InitEmptyJoin_clauseContext(p *Join_clauseContext) { function NewJoin_clauseContext (line 17572) | func NewJoin_clauseContext(parser antlr.Parser, parent antlr.ParserRuleC... type ISelect_coreContext (line 17781) | type ISelect_coreContext interface type Select_coreContext (line 17822) | type Select_coreContext struct method IsSelect_coreContext (line 17839) | func (*Select_coreContext) IsSelect_coreContext() {} method GetParser (line 17852) | func (s *Select_coreContext) GetParser() antlr.Parser { return s.parser } method SELECT_ (line 17854) | func (s *Select_coreContext) SELECT_() antlr.TerminalNode { method AllResult_column (line 17858) | func (s *Select_coreContext) AllResult_column() []IResult_columnContext { method Result_column (line 17879) | func (s *Select_coreContext) Result_column(i int) IResult_columnContext { method AllCOMMA (line 17899) | func (s *Select_coreContext) AllCOMMA() []antlr.TerminalNode { method COMMA (line 17903) | func (s *Select_coreContext) COMMA(i int) antlr.TerminalNode { method FROM_ (line 17907) | func (s *Select_coreContext) FROM_() antlr.TerminalNode { method WHERE_ (line 17911) | func (s *Select_coreContext) WHERE_() antlr.TerminalNode { method AllExpr (line 17915) | func (s *Select_coreContext) AllExpr() []IExprContext { method Expr (line 17936) | func (s *Select_coreContext) Expr(i int) IExprContext { method GROUP_ (line 17956) | func (s *Select_coreContext) GROUP_() antlr.TerminalNode { method BY_ (line 17960) | func (s *Select_coreContext) BY_() antlr.TerminalNode { method WINDOW_ (line 17964) | func (s *Select_coreContext) WINDOW_() antlr.TerminalNode { method AllWindow_name (line 17968) | func (s *Select_coreContext) AllWindow_name() []IWindow_nameContext { method Window_name (line 17989) | func (s *Select_coreContext) Window_name(i int) IWindow_nameContext { method AllAS_ (line 18009) | func (s *Select_coreContext) AllAS_() []antlr.TerminalNode { method AS_ (line 18013) | func (s *Select_coreContext) AS_(i int) antlr.TerminalNode { method AllWindow_defn (line 18017) | func (s *Select_coreContext) AllWindow_defn() []IWindow_defnContext { method Window_defn (line 18038) | func (s *Select_coreContext) Window_defn(i int) IWindow_defnContext { method DISTINCT_ (line 18058) | func (s *Select_coreContext) DISTINCT_() antlr.TerminalNode { method ALL_ (line 18062) | func (s *Select_coreContext) ALL_() antlr.TerminalNode { method AllTable_or_subquery (line 18066) | func (s *Select_coreContext) AllTable_or_subquery() []ITable_or_subque... method Table_or_subquery (line 18087) | func (s *Select_coreContext) Table_or_subquery(i int) ITable_or_subque... method Join_clause (line 18107) | func (s *Select_coreContext) Join_clause() IJoin_clauseContext { method HAVING_ (line 18123) | func (s *Select_coreContext) HAVING_() antlr.TerminalNode { method VALUES_ (line 18127) | func (s *Select_coreContext) VALUES_() antlr.TerminalNode { method AllOPEN_PAR (line 18131) | func (s *Select_coreContext) AllOPEN_PAR() []antlr.TerminalNode { method OPEN_PAR (line 18135) | func (s *Select_coreContext) OPEN_PAR(i int) antlr.TerminalNode { method AllCLOSE_PAR (line 18139) | func (s *Select_coreContext) AllCLOSE_PAR() []antlr.TerminalNode { method CLOSE_PAR (line 18143) | func (s *Select_coreContext) CLOSE_PAR(i int) antlr.TerminalNode { method GetRuleContext (line 18147) | func (s *Select_coreContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 18151) | func (s *Select_coreContext) ToStringTree(ruleNames []string, recog an... method EnterRule (line 18155) | func (s *Select_coreContext) EnterRule(listener antlr.ParseTreeListene... method ExitRule (line 18161) | func (s *Select_coreContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptySelect_coreContext (line 17827) | func NewEmptySelect_coreContext() *Select_coreContext { function InitEmptySelect_coreContext (line 17834) | func InitEmptySelect_coreContext(p *Select_coreContext) { function NewSelect_coreContext (line 17841) | func NewSelect_coreContext(parser antlr.Parser, parent antlr.ParserRuleC... type IFactored_select_stmtContext (line 18635) | type IFactored_select_stmtContext interface type Factored_select_stmtContext (line 18648) | type Factored_select_stmtContext struct method IsFactored_select_stmtContext (line 18665) | func (*Factored_select_stmtContext) IsFactored_select_stmtContext() {} method GetParser (line 18678) | func (s *Factored_select_stmtContext) GetParser() antlr.Parser { retur... method Select_stmt (line 18680) | func (s *Factored_select_stmtContext) Select_stmt() ISelect_stmtContext { method GetRuleContext (line 18696) | func (s *Factored_select_stmtContext) GetRuleContext() antlr.RuleConte... method ToStringTree (line 18700) | func (s *Factored_select_stmtContext) ToStringTree(ruleNames []string,... method EnterRule (line 18704) | func (s *Factored_select_stmtContext) EnterRule(listener antlr.ParseTr... method ExitRule (line 18710) | func (s *Factored_select_stmtContext) ExitRule(listener antlr.ParseTre... function NewEmptyFactored_select_stmtContext (line 18653) | func NewEmptyFactored_select_stmtContext() *Factored_select_stmtContext { function InitEmptyFactored_select_stmtContext (line 18660) | func InitEmptyFactored_select_stmtContext(p *Factored_select_stmtContext) { function NewFactored_select_stmtContext (line 18667) | func NewFactored_select_stmtContext(parser antlr.Parser, parent antlr.Pa... type ISimple_select_stmtContext (line 18739) | type ISimple_select_stmtContext interface type Simple_select_stmtContext (line 18755) | type Simple_select_stmtContext struct method IsSimple_select_stmtContext (line 18772) | func (*Simple_select_stmtContext) IsSimple_select_stmtContext() {} method GetParser (line 18785) | func (s *Simple_select_stmtContext) GetParser() antlr.Parser { return ... method Select_core (line 18787) | func (s *Simple_select_stmtContext) Select_core() ISelect_coreContext { method Common_table_stmt (line 18803) | func (s *Simple_select_stmtContext) Common_table_stmt() ICommon_table_... method Order_by_stmt (line 18819) | func (s *Simple_select_stmtContext) Order_by_stmt() IOrder_by_stmtCont... method Limit_stmt (line 18835) | func (s *Simple_select_stmtContext) Limit_stmt() ILimit_stmtContext { method GetRuleContext (line 18851) | func (s *Simple_select_stmtContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 18855) | func (s *Simple_select_stmtContext) ToStringTree(ruleNames []string, r... method EnterRule (line 18859) | func (s *Simple_select_stmtContext) EnterRule(listener antlr.ParseTree... method ExitRule (line 18865) | func (s *Simple_select_stmtContext) ExitRule(listener antlr.ParseTreeL... function NewEmptySimple_select_stmtContext (line 18760) | func NewEmptySimple_select_stmtContext() *Simple_select_stmtContext { function InitEmptySimple_select_stmtContext (line 18767) | func InitEmptySimple_select_stmtContext(p *Simple_select_stmtContext) { function NewSimple_select_stmtContext (line 18774) | func NewSimple_select_stmtContext(parser antlr.Parser, parent antlr.Pars... type ICompound_select_stmtContext (line 18938) | type ICompound_select_stmtContext interface type Compound_select_stmtContext (line 18963) | type Compound_select_stmtContext struct method IsCompound_select_stmtContext (line 18980) | func (*Compound_select_stmtContext) IsCompound_select_stmtContext() {} method GetParser (line 18993) | func (s *Compound_select_stmtContext) GetParser() antlr.Parser { retur... method AllSelect_core (line 18995) | func (s *Compound_select_stmtContext) AllSelect_core() []ISelect_coreC... method Select_core (line 19016) | func (s *Compound_select_stmtContext) Select_core(i int) ISelect_coreC... method Common_table_stmt (line 19036) | func (s *Compound_select_stmtContext) Common_table_stmt() ICommon_tabl... method Order_by_stmt (line 19052) | func (s *Compound_select_stmtContext) Order_by_stmt() IOrder_by_stmtCo... method Limit_stmt (line 19068) | func (s *Compound_select_stmtContext) Limit_stmt() ILimit_stmtContext { method AllUNION_ (line 19084) | func (s *Compound_select_stmtContext) AllUNION_() []antlr.TerminalNode { method UNION_ (line 19088) | func (s *Compound_select_stmtContext) UNION_(i int) antlr.TerminalNode { method AllINTERSECT_ (line 19092) | func (s *Compound_select_stmtContext) AllINTERSECT_() []antlr.Terminal... method INTERSECT_ (line 19096) | func (s *Compound_select_stmtContext) INTERSECT_(i int) antlr.Terminal... method AllEXCEPT_ (line 19100) | func (s *Compound_select_stmtContext) AllEXCEPT_() []antlr.TerminalNode { method EXCEPT_ (line 19104) | func (s *Compound_select_stmtContext) EXCEPT_(i int) antlr.TerminalNode { method AllALL_ (line 19108) | func (s *Compound_select_stmtContext) AllALL_() []antlr.TerminalNode { method ALL_ (line 19112) | func (s *Compound_select_stmtContext) ALL_(i int) antlr.TerminalNode { method GetRuleContext (line 19116) | func (s *Compound_select_stmtContext) GetRuleContext() antlr.RuleConte... method ToStringTree (line 19120) | func (s *Compound_select_stmtContext) ToStringTree(ruleNames []string,... method EnterRule (line 19124) | func (s *Compound_select_stmtContext) EnterRule(listener antlr.ParseTr... method ExitRule (line 19130) | func (s *Compound_select_stmtContext) ExitRule(listener antlr.ParseTre... function NewEmptyCompound_select_stmtContext (line 18968) | func NewEmptyCompound_select_stmtContext() *Compound_select_stmtContext { function InitEmptyCompound_select_stmtContext (line 18975) | func InitEmptyCompound_select_stmtContext(p *Compound_select_stmtContext) { function NewCompound_select_stmtContext (line 18982) | func NewCompound_select_stmtContext(parser antlr.Parser, parent antlr.Pa... type ITable_or_subqueryContext (line 19282) | type ITable_or_subqueryContext interface type Table_or_subqueryContext (line 19315) | type Table_or_subqueryContext struct method IsTable_or_subqueryContext (line 19332) | func (*Table_or_subqueryContext) IsTable_or_subqueryContext() {} method GetParser (line 19345) | func (s *Table_or_subqueryContext) GetParser() antlr.Parser { return s... method Table_name (line 19347) | func (s *Table_or_subqueryContext) Table_name() ITable_nameContext { method Schema_name (line 19363) | func (s *Table_or_subqueryContext) Schema_name() ISchema_nameContext { method DOT (line 19379) | func (s *Table_or_subqueryContext) DOT() antlr.TerminalNode { method Table_alias (line 19383) | func (s *Table_or_subqueryContext) Table_alias() ITable_aliasContext { method INDEXED_ (line 19399) | func (s *Table_or_subqueryContext) INDEXED_() antlr.TerminalNode { method BY_ (line 19403) | func (s *Table_or_subqueryContext) BY_() antlr.TerminalNode { method Index_name (line 19407) | func (s *Table_or_subqueryContext) Index_name() IIndex_nameContext { method NOT_ (line 19423) | func (s *Table_or_subqueryContext) NOT_() antlr.TerminalNode { method AS_ (line 19427) | func (s *Table_or_subqueryContext) AS_() antlr.TerminalNode { method Table_function_name (line 19431) | func (s *Table_or_subqueryContext) Table_function_name() ITable_functi... method OPEN_PAR (line 19447) | func (s *Table_or_subqueryContext) OPEN_PAR() antlr.TerminalNode { method AllExpr (line 19451) | func (s *Table_or_subqueryContext) AllExpr() []IExprContext { method Expr (line 19472) | func (s *Table_or_subqueryContext) Expr(i int) IExprContext { method CLOSE_PAR (line 19492) | func (s *Table_or_subqueryContext) CLOSE_PAR() antlr.TerminalNode { method AllCOMMA (line 19496) | func (s *Table_or_subqueryContext) AllCOMMA() []antlr.TerminalNode { method COMMA (line 19500) | func (s *Table_or_subqueryContext) COMMA(i int) antlr.TerminalNode { method AllTable_or_subquery (line 19504) | func (s *Table_or_subqueryContext) AllTable_or_subquery() []ITable_or_... method Table_or_subquery (line 19525) | func (s *Table_or_subqueryContext) Table_or_subquery(i int) ITable_or_... method Join_clause (line 19545) | func (s *Table_or_subqueryContext) Join_clause() IJoin_clauseContext { method Select_stmt (line 19561) | func (s *Table_or_subqueryContext) Select_stmt() ISelect_stmtContext { method Table_alias_fallback (line 19577) | func (s *Table_or_subqueryContext) Table_alias_fallback() ITable_alias... method GetRuleContext (line 19593) | func (s *Table_or_subqueryContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 19597) | func (s *Table_or_subqueryContext) ToStringTree(ruleNames []string, re... method EnterRule (line 19601) | func (s *Table_or_subqueryContext) EnterRule(listener antlr.ParseTreeL... method ExitRule (line 19607) | func (s *Table_or_subqueryContext) ExitRule(listener antlr.ParseTreeLi... function NewEmptyTable_or_subqueryContext (line 19320) | func NewEmptyTable_or_subqueryContext() *Table_or_subqueryContext { function InitEmptyTable_or_subqueryContext (line 19327) | func InitEmptyTable_or_subqueryContext(p *Table_or_subqueryContext) { function NewTable_or_subqueryContext (line 19334) | func NewTable_or_subqueryContext(parser antlr.Parser, parent antlr.Parse... type IResult_columnContext (line 20311) | type IResult_columnContext interface type Result_columnContext (line 20329) | type Result_columnContext struct method IsResult_columnContext (line 20346) | func (*Result_columnContext) IsResult_columnContext() {} method GetParser (line 20359) | func (s *Result_columnContext) GetParser() antlr.Parser { return s.par... method STAR (line 20361) | func (s *Result_columnContext) STAR() antlr.TerminalNode { method Table_name (line 20365) | func (s *Result_columnContext) Table_name() ITable_nameContext { method DOT (line 20381) | func (s *Result_columnContext) DOT() antlr.TerminalNode { method Expr (line 20385) | func (s *Result_columnContext) Expr() IExprContext { method Column_alias (line 20401) | func (s *Result_columnContext) Column_alias() IColumn_aliasContext { method AS_ (line 20417) | func (s *Result_columnContext) AS_() antlr.TerminalNode { method GetRuleContext (line 20421) | func (s *Result_columnContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 20425) | func (s *Result_columnContext) ToStringTree(ruleNames []string, recog ... method EnterRule (line 20429) | func (s *Result_columnContext) EnterRule(listener antlr.ParseTreeListe... method ExitRule (line 20435) | func (s *Result_columnContext) ExitRule(listener antlr.ParseTreeListen... function NewEmptyResult_columnContext (line 20334) | func NewEmptyResult_columnContext() *Result_columnContext { function InitEmptyResult_columnContext (line 20341) | func InitEmptyResult_columnContext(p *Result_columnContext) { function NewResult_columnContext (line 20348) | func NewResult_columnContext(parser antlr.Parser, parent antlr.ParserRul... type IJoin_operatorContext (line 20544) | type IJoin_operatorContext interface type Join_operatorContext (line 20565) | type Join_operatorContext struct method IsJoin_operatorContext (line 20582) | func (*Join_operatorContext) IsJoin_operatorContext() {} method GetParser (line 20595) | func (s *Join_operatorContext) GetParser() antlr.Parser { return s.par... method COMMA (line 20597) | func (s *Join_operatorContext) COMMA() antlr.TerminalNode { method JOIN_ (line 20601) | func (s *Join_operatorContext) JOIN_() antlr.TerminalNode { method NATURAL_ (line 20605) | func (s *Join_operatorContext) NATURAL_() antlr.TerminalNode { method INNER_ (line 20609) | func (s *Join_operatorContext) INNER_() antlr.TerminalNode { method LEFT_ (line 20613) | func (s *Join_operatorContext) LEFT_() antlr.TerminalNode { method RIGHT_ (line 20617) | func (s *Join_operatorContext) RIGHT_() antlr.TerminalNode { method FULL_ (line 20621) | func (s *Join_operatorContext) FULL_() antlr.TerminalNode { method OUTER_ (line 20625) | func (s *Join_operatorContext) OUTER_() antlr.TerminalNode { method CROSS_ (line 20629) | func (s *Join_operatorContext) CROSS_() antlr.TerminalNode { method GetRuleContext (line 20633) | func (s *Join_operatorContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 20637) | func (s *Join_operatorContext) ToStringTree(ruleNames []string, recog ... method EnterRule (line 20641) | func (s *Join_operatorContext) EnterRule(listener antlr.ParseTreeListe... method ExitRule (line 20647) | func (s *Join_operatorContext) ExitRule(listener antlr.ParseTreeListen... function NewEmptyJoin_operatorContext (line 20570) | func NewEmptyJoin_operatorContext() *Join_operatorContext { function InitEmptyJoin_operatorContext (line 20577) | func InitEmptyJoin_operatorContext(p *Join_operatorContext) { function NewJoin_operatorContext (line 20584) | func NewJoin_operatorContext(parser antlr.Parser, parent antlr.ParserRul... type IJoin_constraintContext (line 20794) | type IJoin_constraintContext interface type Join_constraintContext (line 20815) | type Join_constraintContext struct method IsJoin_constraintContext (line 20832) | func (*Join_constraintContext) IsJoin_constraintContext() {} method GetParser (line 20845) | func (s *Join_constraintContext) GetParser() antlr.Parser { return s.p... method ON_ (line 20847) | func (s *Join_constraintContext) ON_() antlr.TerminalNode { method Expr (line 20851) | func (s *Join_constraintContext) Expr() IExprContext { method USING_ (line 20867) | func (s *Join_constraintContext) USING_() antlr.TerminalNode { method OPEN_PAR (line 20871) | func (s *Join_constraintContext) OPEN_PAR() antlr.TerminalNode { method AllColumn_name (line 20875) | func (s *Join_constraintContext) AllColumn_name() []IColumn_nameContext { method Column_name (line 20896) | func (s *Join_constraintContext) Column_name(i int) IColumn_nameContext { method CLOSE_PAR (line 20916) | func (s *Join_constraintContext) CLOSE_PAR() antlr.TerminalNode { method AllCOMMA (line 20920) | func (s *Join_constraintContext) AllCOMMA() []antlr.TerminalNode { method COMMA (line 20924) | func (s *Join_constraintContext) COMMA(i int) antlr.TerminalNode { method GetRuleContext (line 20928) | func (s *Join_constraintContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 20932) | func (s *Join_constraintContext) ToStringTree(ruleNames []string, reco... method EnterRule (line 20936) | func (s *Join_constraintContext) EnterRule(listener antlr.ParseTreeLis... method ExitRule (line 20942) | func (s *Join_constraintContext) ExitRule(listener antlr.ParseTreeList... function NewEmptyJoin_constraintContext (line 20820) | func NewEmptyJoin_constraintContext() *Join_constraintContext { function InitEmptyJoin_constraintContext (line 20827) | func InitEmptyJoin_constraintContext(p *Join_constraintContext) { function NewJoin_constraintContext (line 20834) | func NewJoin_constraintContext(parser antlr.Parser, parent antlr.ParserR... type ICompound_operatorContext (line 21049) | type ICompound_operatorContext interface type Compound_operatorContext (line 21065) | type Compound_operatorContext struct method IsCompound_operatorContext (line 21082) | func (*Compound_operatorContext) IsCompound_operatorContext() {} method GetParser (line 21095) | func (s *Compound_operatorContext) GetParser() antlr.Parser { return s... method UNION_ (line 21097) | func (s *Compound_operatorContext) UNION_() antlr.TerminalNode { method ALL_ (line 21101) | func (s *Compound_operatorContext) ALL_() antlr.TerminalNode { method INTERSECT_ (line 21105) | func (s *Compound_operatorContext) INTERSECT_() antlr.TerminalNode { method EXCEPT_ (line 21109) | func (s *Compound_operatorContext) EXCEPT_() antlr.TerminalNode { method GetRuleContext (line 21113) | func (s *Compound_operatorContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 21117) | func (s *Compound_operatorContext) ToStringTree(ruleNames []string, re... method EnterRule (line 21121) | func (s *Compound_operatorContext) EnterRule(listener antlr.ParseTreeL... method ExitRule (line 21127) | func (s *Compound_operatorContext) ExitRule(listener antlr.ParseTreeLi... function NewEmptyCompound_operatorContext (line 21070) | func NewEmptyCompound_operatorContext() *Compound_operatorContext { function InitEmptyCompound_operatorContext (line 21077) | func InitEmptyCompound_operatorContext(p *Compound_operatorContext) { function NewCompound_operatorContext (line 21084) | func NewCompound_operatorContext(parser antlr.Parser, parent antlr.Parse... type IUpdate_stmtContext (line 21215) | type IUpdate_stmtContext interface type Update_stmtContext (line 21249) | type Update_stmtContext struct method IsUpdate_stmtContext (line 21266) | func (*Update_stmtContext) IsUpdate_stmtContext() {} method GetParser (line 21279) | func (s *Update_stmtContext) GetParser() antlr.Parser { return s.parser } method UPDATE_ (line 21281) | func (s *Update_stmtContext) UPDATE_() antlr.TerminalNode { method Qualified_table_name (line 21285) | func (s *Update_stmtContext) Qualified_table_name() IQualified_table_n... method SET_ (line 21301) | func (s *Update_stmtContext) SET_() antlr.TerminalNode { method AllASSIGN (line 21305) | func (s *Update_stmtContext) AllASSIGN() []antlr.TerminalNode { method ASSIGN (line 21309) | func (s *Update_stmtContext) ASSIGN(i int) antlr.TerminalNode { method AllExpr (line 21313) | func (s *Update_stmtContext) AllExpr() []IExprContext { method Expr (line 21334) | func (s *Update_stmtContext) Expr(i int) IExprContext { method AllColumn_name (line 21354) | func (s *Update_stmtContext) AllColumn_name() []IColumn_nameContext { method Column_name (line 21375) | func (s *Update_stmtContext) Column_name(i int) IColumn_nameContext { method AllColumn_name_list (line 21395) | func (s *Update_stmtContext) AllColumn_name_list() []IColumn_name_list... method Column_name_list (line 21416) | func (s *Update_stmtContext) Column_name_list(i int) IColumn_name_list... method With_clause (line 21436) | func (s *Update_stmtContext) With_clause() IWith_clauseContext { method OR_ (line 21452) | func (s *Update_stmtContext) OR_() antlr.TerminalNode { method AllCOMMA (line 21456) | func (s *Update_stmtContext) AllCOMMA() []antlr.TerminalNode { method COMMA (line 21460) | func (s *Update_stmtContext) COMMA(i int) antlr.TerminalNode { method WHERE_ (line 21464) | func (s *Update_stmtContext) WHERE_() antlr.TerminalNode { method Returning_clause (line 21468) | func (s *Update_stmtContext) Returning_clause() IReturning_clauseConte... method ROLLBACK_ (line 21484) | func (s *Update_stmtContext) ROLLBACK_() antlr.TerminalNode { method ABORT_ (line 21488) | func (s *Update_stmtContext) ABORT_() antlr.TerminalNode { method REPLACE_ (line 21492) | func (s *Update_stmtContext) REPLACE_() antlr.TerminalNode { method FAIL_ (line 21496) | func (s *Update_stmtContext) FAIL_() antlr.TerminalNode { method IGNORE_ (line 21500) | func (s *Update_stmtContext) IGNORE_() antlr.TerminalNode { method GetRuleContext (line 21504) | func (s *Update_stmtContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 21508) | func (s *Update_stmtContext) ToStringTree(ruleNames []string, recog an... method EnterRule (line 21512) | func (s *Update_stmtContext) EnterRule(listener antlr.ParseTreeListene... method ExitRule (line 21518) | func (s *Update_stmtContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyUpdate_stmtContext (line 21254) | func NewEmptyUpdate_stmtContext() *Update_stmtContext { function InitEmptyUpdate_stmtContext (line 21261) | func InitEmptyUpdate_stmtContext(p *Update_stmtContext) { function NewUpdate_stmtContext (line 21268) | func NewUpdate_stmtContext(parser antlr.Parser, parent antlr.ParserRuleC... type IColumn_name_listContext (line 21734) | type IColumn_name_listContext interface type Column_name_listContext (line 21752) | type Column_name_listContext struct method IsColumn_name_listContext (line 21769) | func (*Column_name_listContext) IsColumn_name_listContext() {} method GetParser (line 21782) | func (s *Column_name_listContext) GetParser() antlr.Parser { return s.... method OPEN_PAR (line 21784) | func (s *Column_name_listContext) OPEN_PAR() antlr.TerminalNode { method AllColumn_name (line 21788) | func (s *Column_name_listContext) AllColumn_name() []IColumn_nameConte... method Column_name (line 21809) | func (s *Column_name_listContext) Column_name(i int) IColumn_nameConte... method CLOSE_PAR (line 21829) | func (s *Column_name_listContext) CLOSE_PAR() antlr.TerminalNode { method AllCOMMA (line 21833) | func (s *Column_name_listContext) AllCOMMA() []antlr.TerminalNode { method COMMA (line 21837) | func (s *Column_name_listContext) COMMA(i int) antlr.TerminalNode { method GetRuleContext (line 21841) | func (s *Column_name_listContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 21845) | func (s *Column_name_listContext) ToStringTree(ruleNames []string, rec... method EnterRule (line 21849) | func (s *Column_name_listContext) EnterRule(listener antlr.ParseTreeLi... method ExitRule (line 21855) | func (s *Column_name_listContext) ExitRule(listener antlr.ParseTreeLis... function NewEmptyColumn_name_listContext (line 21757) | func NewEmptyColumn_name_listContext() *Column_name_listContext { function InitEmptyColumn_name_listContext (line 21764) | func InitEmptyColumn_name_listContext(p *Column_name_listContext) { function NewColumn_name_listContext (line 21771) | func NewColumn_name_listContext(parser antlr.Parser, parent antlr.Parser... type IUpdate_stmt_limitedContext (line 21930) | type IUpdate_stmt_limitedContext interface type Update_stmt_limitedContext (line 21965) | type Update_stmt_limitedContext struct method IsUpdate_stmt_limitedContext (line 21982) | func (*Update_stmt_limitedContext) IsUpdate_stmt_limitedContext() {} method GetParser (line 21995) | func (s *Update_stmt_limitedContext) GetParser() antlr.Parser { return... method UPDATE_ (line 21997) | func (s *Update_stmt_limitedContext) UPDATE_() antlr.TerminalNode { method Qualified_table_name (line 22001) | func (s *Update_stmt_limitedContext) Qualified_table_name() IQualified... method SET_ (line 22017) | func (s *Update_stmt_limitedContext) SET_() antlr.TerminalNode { method AllASSIGN (line 22021) | func (s *Update_stmt_limitedContext) AllASSIGN() []antlr.TerminalNode { method ASSIGN (line 22025) | func (s *Update_stmt_limitedContext) ASSIGN(i int) antlr.TerminalNode { method AllExpr (line 22029) | func (s *Update_stmt_limitedContext) AllExpr() []IExprContext { method Expr (line 22050) | func (s *Update_stmt_limitedContext) Expr(i int) IExprContext { method AllColumn_name (line 22070) | func (s *Update_stmt_limitedContext) AllColumn_name() []IColumn_nameCo... method Column_name (line 22091) | func (s *Update_stmt_limitedContext) Column_name(i int) IColumn_nameCo... method AllColumn_name_list (line 22111) | func (s *Update_stmt_limitedContext) AllColumn_name_list() []IColumn_n... method Column_name_list (line 22132) | func (s *Update_stmt_limitedContext) Column_name_list(i int) IColumn_n... method With_clause (line 22152) | func (s *Update_stmt_limitedContext) With_clause() IWith_clauseContext { method OR_ (line 22168) | func (s *Update_stmt_limitedContext) OR_() antlr.TerminalNode { method AllCOMMA (line 22172) | func (s *Update_stmt_limitedContext) AllCOMMA() []antlr.TerminalNode { method COMMA (line 22176) | func (s *Update_stmt_limitedContext) COMMA(i int) antlr.TerminalNode { method WHERE_ (line 22180) | func (s *Update_stmt_limitedContext) WHERE_() antlr.TerminalNode { method Limit_stmt (line 22184) | func (s *Update_stmt_limitedContext) Limit_stmt() ILimit_stmtContext { method ROLLBACK_ (line 22200) | func (s *Update_stmt_limitedContext) ROLLBACK_() antlr.TerminalNode { method ABORT_ (line 22204) | func (s *Update_stmt_limitedContext) ABORT_() antlr.TerminalNode { method REPLACE_ (line 22208) | func (s *Update_stmt_limitedContext) REPLACE_() antlr.TerminalNode { method FAIL_ (line 22212) | func (s *Update_stmt_limitedContext) FAIL_() antlr.TerminalNode { method IGNORE_ (line 22216) | func (s *Update_stmt_limitedContext) IGNORE_() antlr.TerminalNode { method Order_by_stmt (line 22220) | func (s *Update_stmt_limitedContext) Order_by_stmt() IOrder_by_stmtCon... method GetRuleContext (line 22236) | func (s *Update_stmt_limitedContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 22240) | func (s *Update_stmt_limitedContext) ToStringTree(ruleNames []string, ... method EnterRule (line 22244) | func (s *Update_stmt_limitedContext) EnterRule(listener antlr.ParseTre... method ExitRule (line 22250) | func (s *Update_stmt_limitedContext) ExitRule(listener antlr.ParseTree... function NewEmptyUpdate_stmt_limitedContext (line 21970) | func NewEmptyUpdate_stmt_limitedContext() *Update_stmt_limitedContext { function InitEmptyUpdate_stmt_limitedContext (line 21977) | func InitEmptyUpdate_stmt_limitedContext(p *Update_stmt_limitedContext) { function NewUpdate_stmt_limitedContext (line 21984) | func NewUpdate_stmt_limitedContext(parser antlr.Parser, parent antlr.Par... type IQualified_table_nameContext (line 22480) | type IQualified_table_nameContext interface type Qualified_table_nameContext (line 22501) | type Qualified_table_nameContext struct method IsQualified_table_nameContext (line 22518) | func (*Qualified_table_nameContext) IsQualified_table_nameContext() {} method GetParser (line 22531) | func (s *Qualified_table_nameContext) GetParser() antlr.Parser { retur... method Table_name (line 22533) | func (s *Qualified_table_nameContext) Table_name() ITable_nameContext { method Schema_name (line 22549) | func (s *Qualified_table_nameContext) Schema_name() ISchema_nameContext { method DOT (line 22565) | func (s *Qualified_table_nameContext) DOT() antlr.TerminalNode { method AS_ (line 22569) | func (s *Qualified_table_nameContext) AS_() antlr.TerminalNode { method Alias (line 22573) | func (s *Qualified_table_nameContext) Alias() IAliasContext { method INDEXED_ (line 22589) | func (s *Qualified_table_nameContext) INDEXED_() antlr.TerminalNode { method BY_ (line 22593) | func (s *Qualified_table_nameContext) BY_() antlr.TerminalNode { method Index_name (line 22597) | func (s *Qualified_table_nameContext) Index_name() IIndex_nameContext { method NOT_ (line 22613) | func (s *Qualified_table_nameContext) NOT_() antlr.TerminalNode { method GetRuleContext (line 22617) | func (s *Qualified_table_nameContext) GetRuleContext() antlr.RuleConte... method ToStringTree (line 22621) | func (s *Qualified_table_nameContext) ToStringTree(ruleNames []string,... method EnterRule (line 22625) | func (s *Qualified_table_nameContext) EnterRule(listener antlr.ParseTr... method ExitRule (line 22631) | func (s *Qualified_table_nameContext) ExitRule(listener antlr.ParseTre... function NewEmptyQualified_table_nameContext (line 22506) | func NewEmptyQualified_table_nameContext() *Qualified_table_nameContext { function InitEmptyQualified_table_nameContext (line 22513) | func InitEmptyQualified_table_nameContext(p *Qualified_table_nameContext) { function NewQualified_table_nameContext (line 22520) | func NewQualified_table_nameContext(parser antlr.Parser, parent antlr.Pa... type IVacuum_stmtContext (line 22754) | type IVacuum_stmtContext interface type Vacuum_stmtContext (line 22770) | type Vacuum_stmtContext struct method IsVacuum_stmtContext (line 22787) | func (*Vacuum_stmtContext) IsVacuum_stmtContext() {} method GetParser (line 22800) | func (s *Vacuum_stmtContext) GetParser() antlr.Parser { return s.parser } method VACUUM_ (line 22802) | func (s *Vacuum_stmtContext) VACUUM_() antlr.TerminalNode { method Schema_name (line 22806) | func (s *Vacuum_stmtContext) Schema_name() ISchema_nameContext { method INTO_ (line 22822) | func (s *Vacuum_stmtContext) INTO_() antlr.TerminalNode { method Filename (line 22826) | func (s *Vacuum_stmtContext) Filename() IFilenameContext { method GetRuleContext (line 22842) | func (s *Vacuum_stmtContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 22846) | func (s *Vacuum_stmtContext) ToStringTree(ruleNames []string, recog an... method EnterRule (line 22850) | func (s *Vacuum_stmtContext) EnterRule(listener antlr.ParseTreeListene... method ExitRule (line 22856) | func (s *Vacuum_stmtContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyVacuum_stmtContext (line 22775) | func NewEmptyVacuum_stmtContext() *Vacuum_stmtContext { function InitEmptyVacuum_stmtContext (line 22782) | func InitEmptyVacuum_stmtContext(p *Vacuum_stmtContext) { function NewVacuum_stmtContext (line 22789) | func NewVacuum_stmtContext(parser antlr.Parser, parent antlr.ParserRuleC... type IFilter_clauseContext (line 22925) | type IFilter_clauseContext interface type Filter_clauseContext (line 22942) | type Filter_clauseContext struct method IsFilter_clauseContext (line 22959) | func (*Filter_clauseContext) IsFilter_clauseContext() {} method GetParser (line 22972) | func (s *Filter_clauseContext) GetParser() antlr.Parser { return s.par... method FILTER_ (line 22974) | func (s *Filter_clauseContext) FILTER_() antlr.TerminalNode { method OPEN_PAR (line 22978) | func (s *Filter_clauseContext) OPEN_PAR() antlr.TerminalNode { method WHERE_ (line 22982) | func (s *Filter_clauseContext) WHERE_() antlr.TerminalNode { method Expr (line 22986) | func (s *Filter_clauseContext) Expr() IExprContext { method CLOSE_PAR (line 23002) | func (s *Filter_clauseContext) CLOSE_PAR() antlr.TerminalNode { method GetRuleContext (line 23006) | func (s *Filter_clauseContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 23010) | func (s *Filter_clauseContext) ToStringTree(ruleNames []string, recog ... method EnterRule (line 23014) | func (s *Filter_clauseContext) EnterRule(listener antlr.ParseTreeListe... method ExitRule (line 23020) | func (s *Filter_clauseContext) ExitRule(listener antlr.ParseTreeListen... function NewEmptyFilter_clauseContext (line 22947) | func NewEmptyFilter_clauseContext() *Filter_clauseContext { function InitEmptyFilter_clauseContext (line 22954) | func InitEmptyFilter_clauseContext(p *Filter_clauseContext) { function NewFilter_clauseContext (line 22961) | func NewFilter_clauseContext(parser antlr.Parser, parent antlr.ParserRul... type IWindow_defnContext (line 23081) | type IWindow_defnContext interface type Window_defnContext (line 23107) | type Window_defnContext struct method IsWindow_defnContext (line 23124) | func (*Window_defnContext) IsWindow_defnContext() {} method GetParser (line 23137) | func (s *Window_defnContext) GetParser() antlr.Parser { return s.parser } method OPEN_PAR (line 23139) | func (s *Window_defnContext) OPEN_PAR() antlr.TerminalNode { method CLOSE_PAR (line 23143) | func (s *Window_defnContext) CLOSE_PAR() antlr.TerminalNode { method ORDER_ (line 23147) | func (s *Window_defnContext) ORDER_() antlr.TerminalNode { method AllBY_ (line 23151) | func (s *Window_defnContext) AllBY_() []antlr.TerminalNode { method BY_ (line 23155) | func (s *Window_defnContext) BY_(i int) antlr.TerminalNode { method AllOrdering_term (line 23159) | func (s *Window_defnContext) AllOrdering_term() []IOrdering_termContext { method Ordering_term (line 23180) | func (s *Window_defnContext) Ordering_term(i int) IOrdering_termContext { method Base_window_name (line 23200) | func (s *Window_defnContext) Base_window_name() IBase_window_nameConte... method PARTITION_ (line 23216) | func (s *Window_defnContext) PARTITION_() antlr.TerminalNode { method AllExpr (line 23220) | func (s *Window_defnContext) AllExpr() []IExprContext { method Expr (line 23241) | func (s *Window_defnContext) Expr(i int) IExprContext { method Frame_spec (line 23261) | func (s *Window_defnContext) Frame_spec() IFrame_specContext { method AllCOMMA (line 23277) | func (s *Window_defnContext) AllCOMMA() []antlr.TerminalNode { method COMMA (line 23281) | func (s *Window_defnContext) COMMA(i int) antlr.TerminalNode { method GetRuleContext (line 23285) | func (s *Window_defnContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 23289) | func (s *Window_defnContext) ToStringTree(ruleNames []string, recog an... method EnterRule (line 23293) | func (s *Window_defnContext) EnterRule(listener antlr.ParseTreeListene... method ExitRule (line 23299) | func (s *Window_defnContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyWindow_defnContext (line 23112) | func NewEmptyWindow_defnContext() *Window_defnContext { function InitEmptyWindow_defnContext (line 23119) | func InitEmptyWindow_defnContext(p *Window_defnContext) { function NewWindow_defnContext (line 23126) | func NewWindow_defnContext(parser antlr.Parser, parent antlr.ParserRuleC... type IOver_clauseContext (line 23476) | type IOver_clauseContext interface type Over_clauseContext (line 23504) | type Over_clauseContext struct method IsOver_clauseContext (line 23521) | func (*Over_clauseContext) IsOver_clauseContext() {} method GetParser (line 23534) | func (s *Over_clauseContext) GetParser() antlr.Parser { return s.parser } method OVER_ (line 23536) | func (s *Over_clauseContext) OVER_() antlr.TerminalNode { method Window_name (line 23540) | func (s *Over_clauseContext) Window_name() IWindow_nameContext { method OPEN_PAR (line 23556) | func (s *Over_clauseContext) OPEN_PAR() antlr.TerminalNode { method CLOSE_PAR (line 23560) | func (s *Over_clauseContext) CLOSE_PAR() antlr.TerminalNode { method Base_window_name (line 23564) | func (s *Over_clauseContext) Base_window_name() IBase_window_nameConte... method PARTITION_ (line 23580) | func (s *Over_clauseContext) PARTITION_() antlr.TerminalNode { method AllBY_ (line 23584) | func (s *Over_clauseContext) AllBY_() []antlr.TerminalNode { method BY_ (line 23588) | func (s *Over_clauseContext) BY_(i int) antlr.TerminalNode { method AllExpr (line 23592) | func (s *Over_clauseContext) AllExpr() []IExprContext { method Expr (line 23613) | func (s *Over_clauseContext) Expr(i int) IExprContext { method ORDER_ (line 23633) | func (s *Over_clauseContext) ORDER_() antlr.TerminalNode { method AllOrdering_term (line 23637) | func (s *Over_clauseContext) AllOrdering_term() []IOrdering_termContext { method Ordering_term (line 23658) | func (s *Over_clauseContext) Ordering_term(i int) IOrdering_termContext { method Frame_spec (line 23678) | func (s *Over_clauseContext) Frame_spec() IFrame_specContext { method AllCOMMA (line 23694) | func (s *Over_clauseContext) AllCOMMA() []antlr.TerminalNode { method COMMA (line 23698) | func (s *Over_clauseContext) COMMA(i int) antlr.TerminalNode { method GetRuleContext (line 23702) | func (s *Over_clauseContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 23706) | func (s *Over_clauseContext) ToStringTree(ruleNames []string, recog an... method EnterRule (line 23710) | func (s *Over_clauseContext) EnterRule(listener antlr.ParseTreeListene... method ExitRule (line 23716) | func (s *Over_clauseContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyOver_clauseContext (line 23509) | func NewEmptyOver_clauseContext() *Over_clauseContext { function InitEmptyOver_clauseContext (line 23516) | func InitEmptyOver_clauseContext(p *Over_clauseContext) { function NewOver_clauseContext (line 23523) | func NewOver_clauseContext(parser antlr.Parser, parent antlr.ParserRuleC... type IFrame_specContext (line 23927) | type IFrame_specContext interface type Frame_specContext (line 23947) | type Frame_specContext struct method IsFrame_specContext (line 23964) | func (*Frame_specContext) IsFrame_specContext() {} method GetParser (line 23977) | func (s *Frame_specContext) GetParser() antlr.Parser { return s.parser } method Frame_clause (line 23979) | func (s *Frame_specContext) Frame_clause() IFrame_clauseContext { method EXCLUDE_ (line 23995) | func (s *Frame_specContext) EXCLUDE_() antlr.TerminalNode { method CURRENT_ (line 23999) | func (s *Frame_specContext) CURRENT_() antlr.TerminalNode { method ROW_ (line 24003) | func (s *Frame_specContext) ROW_() antlr.TerminalNode { method GROUP_ (line 24007) | func (s *Frame_specContext) GROUP_() antlr.TerminalNode { method TIES_ (line 24011) | func (s *Frame_specContext) TIES_() antlr.TerminalNode { method NO_ (line 24015) | func (s *Frame_specContext) NO_() antlr.TerminalNode { method OTHERS_ (line 24019) | func (s *Frame_specContext) OTHERS_() antlr.TerminalNode { method GetRuleContext (line 24023) | func (s *Frame_specContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 24027) | func (s *Frame_specContext) ToStringTree(ruleNames []string, recog ant... method EnterRule (line 24031) | func (s *Frame_specContext) EnterRule(listener antlr.ParseTreeListener) { method ExitRule (line 24037) | func (s *Frame_specContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyFrame_specContext (line 23952) | func NewEmptyFrame_specContext() *Frame_specContext { function InitEmptyFrame_specContext (line 23959) | func InitEmptyFrame_specContext(p *Frame_specContext) { function NewFrame_specContext (line 23966) | func NewFrame_specContext(parser antlr.Parser, parent antlr.ParserRuleCo... type IFrame_clauseContext (line 24141) | type IFrame_clauseContext interface type Frame_clauseContext (line 24161) | type Frame_clauseContext struct method IsFrame_clauseContext (line 24178) | func (*Frame_clauseContext) IsFrame_clauseContext() {} method GetParser (line 24191) | func (s *Frame_clauseContext) GetParser() antlr.Parser { return s.pars... method RANGE_ (line 24193) | func (s *Frame_clauseContext) RANGE_() antlr.TerminalNode { method ROWS_ (line 24197) | func (s *Frame_clauseContext) ROWS_() antlr.TerminalNode { method GROUPS_ (line 24201) | func (s *Frame_clauseContext) GROUPS_() antlr.TerminalNode { method Frame_single (line 24205) | func (s *Frame_clauseContext) Frame_single() IFrame_singleContext { method BETWEEN_ (line 24221) | func (s *Frame_clauseContext) BETWEEN_() antlr.TerminalNode { method Frame_left (line 24225) | func (s *Frame_clauseContext) Frame_left() IFrame_leftContext { method AND_ (line 24241) | func (s *Frame_clauseContext) AND_() antlr.TerminalNode { method Frame_right (line 24245) | func (s *Frame_clauseContext) Frame_right() IFrame_rightContext { method GetRuleContext (line 24261) | func (s *Frame_clauseContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 24265) | func (s *Frame_clauseContext) ToStringTree(ruleNames []string, recog a... method EnterRule (line 24269) | func (s *Frame_clauseContext) EnterRule(listener antlr.ParseTreeListen... method ExitRule (line 24275) | func (s *Frame_clauseContext) ExitRule(listener antlr.ParseTreeListene... function NewEmptyFrame_clauseContext (line 24166) | func NewEmptyFrame_clauseContext() *Frame_clauseContext { function InitEmptyFrame_clauseContext (line 24173) | func InitEmptyFrame_clauseContext(p *Frame_clauseContext) { function NewFrame_clauseContext (line 24180) | func NewFrame_clauseContext(parser antlr.Parser, parent antlr.ParserRule... type ISimple_function_invocationContext (line 24355) | type ISimple_function_invocationContext interface type Simple_function_invocationContext (line 24375) | type Simple_function_invocationContext struct method IsSimple_function_invocationContext (line 24392) | func (*Simple_function_invocationContext) IsSimple_function_invocation... method GetParser (line 24405) | func (s *Simple_function_invocationContext) GetParser() antlr.Parser {... method Simple_func (line 24407) | func (s *Simple_function_invocationContext) Simple_func() ISimple_func... method OPEN_PAR (line 24423) | func (s *Simple_function_invocationContext) OPEN_PAR() antlr.TerminalN... method CLOSE_PAR (line 24427) | func (s *Simple_function_invocationContext) CLOSE_PAR() antlr.Terminal... method AllExpr (line 24431) | func (s *Simple_function_invocationContext) AllExpr() []IExprContext { method Expr (line 24452) | func (s *Simple_function_invocationContext) Expr(i int) IExprContext { method STAR (line 24472) | func (s *Simple_function_invocationContext) STAR() antlr.TerminalNode { method AllCOMMA (line 24476) | func (s *Simple_function_invocationContext) AllCOMMA() []antlr.Termina... method COMMA (line 24480) | func (s *Simple_function_invocationContext) COMMA(i int) antlr.Termina... method GetRuleContext (line 24484) | func (s *Simple_function_invocationContext) GetRuleContext() antlr.Rul... method ToStringTree (line 24488) | func (s *Simple_function_invocationContext) ToStringTree(ruleNames []s... method EnterRule (line 24492) | func (s *Simple_function_invocationContext) EnterRule(listener antlr.P... method ExitRule (line 24498) | func (s *Simple_function_invocationContext) ExitRule(listener antlr.Pa... function NewEmptySimple_function_invocationContext (line 24380) | func NewEmptySimple_function_invocationContext() *Simple_function_invoca... function InitEmptySimple_function_invocationContext (line 24387) | func InitEmptySimple_function_invocationContext(p *Simple_function_invoc... function NewSimple_function_invocationContext (line 24394) | func NewSimple_function_invocationContext(parser antlr.Parser, parent an... type IAggregate_function_invocationContext (line 24600) | type IAggregate_function_invocationContext interface type Aggregate_function_invocationContext (line 24622) | type Aggregate_function_invocationContext struct method IsAggregate_function_invocationContext (line 24639) | func (*Aggregate_function_invocationContext) IsAggregate_function_invo... method GetParser (line 24652) | func (s *Aggregate_function_invocationContext) GetParser() antlr.Parse... method Aggregate_func (line 24654) | func (s *Aggregate_function_invocationContext) Aggregate_func() IAggre... method OPEN_PAR (line 24670) | func (s *Aggregate_function_invocationContext) OPEN_PAR() antlr.Termin... method CLOSE_PAR (line 24674) | func (s *Aggregate_function_invocationContext) CLOSE_PAR() antlr.Termi... method AllExpr (line 24678) | func (s *Aggregate_function_invocationContext) AllExpr() []IExprContext { method Expr (line 24699) | func (s *Aggregate_function_invocationContext) Expr(i int) IExprContext { method STAR (line 24719) | func (s *Aggregate_function_invocationContext) STAR() antlr.TerminalNo... method Filter_clause (line 24723) | func (s *Aggregate_function_invocationContext) Filter_clause() IFilter... method DISTINCT_ (line 24739) | func (s *Aggregate_function_invocationContext) DISTINCT_() antlr.Termi... method AllCOMMA (line 24743) | func (s *Aggregate_function_invocationContext) AllCOMMA() []antlr.Term... method COMMA (line 24747) | func (s *Aggregate_function_invocationContext) COMMA(i int) antlr.Term... method GetRuleContext (line 24751) | func (s *Aggregate_function_invocationContext) GetRuleContext() antlr.... method ToStringTree (line 24755) | func (s *Aggregate_function_invocationContext) ToStringTree(ruleNames ... method EnterRule (line 24759) | func (s *Aggregate_function_invocationContext) EnterRule(listener antl... method ExitRule (line 24765) | func (s *Aggregate_function_invocationContext) ExitRule(listener antlr... function NewEmptyAggregate_function_invocationContext (line 24627) | func NewEmptyAggregate_function_invocationContext() *Aggregate_function_... function InitEmptyAggregate_function_invocationContext (line 24634) | func InitEmptyAggregate_function_invocationContext(p *Aggregate_function... function NewAggregate_function_invocationContext (line 24641) | func NewAggregate_function_invocationContext(parser antlr.Parser, parent... type IWindow_function_invocationContext (line 24896) | type IWindow_function_invocationContext interface type Window_function_invocationContext (line 24920) | type Window_function_invocationContext struct method IsWindow_function_invocationContext (line 24937) | func (*Window_function_invocationContext) IsWindow_function_invocation... method GetParser (line 24950) | func (s *Window_function_invocationContext) GetParser() antlr.Parser {... method Window_function (line 24952) | func (s *Window_function_invocationContext) Window_function() IWindow_... method OPEN_PAR (line 24968) | func (s *Window_function_invocationContext) OPEN_PAR() antlr.TerminalN... method CLOSE_PAR (line 24972) | func (s *Window_function_invocationContext) CLOSE_PAR() antlr.Terminal... method OVER_ (line 24976) | func (s *Window_function_invocationContext) OVER_() antlr.TerminalNode { method Window_defn (line 24980) | func (s *Window_function_invocationContext) Window_defn() IWindow_defn... method Window_name (line 24996) | func (s *Window_function_invocationContext) Window_name() IWindow_name... method AllExpr (line 25012) | func (s *Window_function_invocationContext) AllExpr() []IExprContext { method Expr (line 25033) | func (s *Window_function_invocationContext) Expr(i int) IExprContext { method STAR (line 25053) | func (s *Window_function_invocationContext) STAR() antlr.TerminalNode { method Filter_clause (line 25057) | func (s *Window_function_invocationContext) Filter_clause() IFilter_cl... method AllCOMMA (line 25073) | func (s *Window_function_invocationContext) AllCOMMA() []antlr.Termina... method COMMA (line 25077) | func (s *Window_function_invocationContext) COMMA(i int) antlr.Termina... method GetRuleContext (line 25081) | func (s *Window_function_invocationContext) GetRuleContext() antlr.Rul... method ToStringTree (line 25085) | func (s *Window_function_invocationContext) ToStringTree(ruleNames []s... method EnterRule (line 25089) | func (s *Window_function_invocationContext) EnterRule(listener antlr.P... method ExitRule (line 25095) | func (s *Window_function_invocationContext) ExitRule(listener antlr.Pa... function NewEmptyWindow_function_invocationContext (line 24925) | func NewEmptyWindow_function_invocationContext() *Window_function_invoca... function InitEmptyWindow_function_invocationContext (line 24932) | func InitEmptyWindow_function_invocationContext(p *Window_function_invoc... function NewWindow_function_invocationContext (line 24939) | func NewWindow_function_invocationContext(parser antlr.Parser, parent an... type ICommon_table_stmtContext (line 25240) | type ICommon_table_stmtContext interface type Common_table_stmtContext (line 25258) | type Common_table_stmtContext struct method IsCommon_table_stmtContext (line 25275) | func (*Common_table_stmtContext) IsCommon_table_stmtContext() {} method GetParser (line 25288) | func (s *Common_table_stmtContext) GetParser() antlr.Parser { return s... method WITH_ (line 25290) | func (s *Common_table_stmtContext) WITH_() antlr.TerminalNode { method AllCommon_table_expression (line 25294) | func (s *Common_table_stmtContext) AllCommon_table_expression() []ICom... method Common_table_expression (line 25315) | func (s *Common_table_stmtContext) Common_table_expression(i int) ICom... method RECURSIVE_ (line 25335) | func (s *Common_table_stmtContext) RECURSIVE_() antlr.TerminalNode { method AllCOMMA (line 25339) | func (s *Common_table_stmtContext) AllCOMMA() []antlr.TerminalNode { method COMMA (line 25343) | func (s *Common_table_stmtContext) COMMA(i int) antlr.TerminalNode { method GetRuleContext (line 25347) | func (s *Common_table_stmtContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 25351) | func (s *Common_table_stmtContext) ToStringTree(ruleNames []string, re... method EnterRule (line 25355) | func (s *Common_table_stmtContext) EnterRule(listener antlr.ParseTreeL... method ExitRule (line 25361) | func (s *Common_table_stmtContext) ExitRule(listener antlr.ParseTreeLi... function NewEmptyCommon_table_stmtContext (line 25263) | func NewEmptyCommon_table_stmtContext() *Common_table_stmtContext { function InitEmptyCommon_table_stmtContext (line 25270) | func InitEmptyCommon_table_stmtContext(p *Common_table_stmtContext) { function NewCommon_table_stmtContext (line 25277) | func NewCommon_table_stmtContext(parser antlr.Parser, parent antlr.Parse... type IOrder_by_stmtContext (line 25444) | type IOrder_by_stmtContext interface type Order_by_stmtContext (line 25462) | type Order_by_stmtContext struct method IsOrder_by_stmtContext (line 25479) | func (*Order_by_stmtContext) IsOrder_by_stmtContext() {} method GetParser (line 25492) | func (s *Order_by_stmtContext) GetParser() antlr.Parser { return s.par... method ORDER_ (line 25494) | func (s *Order_by_stmtContext) ORDER_() antlr.TerminalNode { method BY_ (line 25498) | func (s *Order_by_stmtContext) BY_() antlr.TerminalNode { method AllOrdering_term (line 25502) | func (s *Order_by_stmtContext) AllOrdering_term() []IOrdering_termCont... method Ordering_term (line 25523) | func (s *Order_by_stmtContext) Ordering_term(i int) IOrdering_termCont... method AllCOMMA (line 25543) | func (s *Order_by_stmtContext) AllCOMMA() []antlr.TerminalNode { method COMMA (line 25547) | func (s *Order_by_stmtContext) COMMA(i int) antlr.TerminalNode { method GetRuleContext (line 25551) | func (s *Order_by_stmtContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 25555) | func (s *Order_by_stmtContext) ToStringTree(ruleNames []string, recog ... method EnterRule (line 25559) | func (s *Order_by_stmtContext) EnterRule(listener antlr.ParseTreeListe... method ExitRule (line 25565) | func (s *Order_by_stmtContext) ExitRule(listener antlr.ParseTreeListen... function NewEmptyOrder_by_stmtContext (line 25467) | func NewEmptyOrder_by_stmtContext() *Order_by_stmtContext { function InitEmptyOrder_by_stmtContext (line 25474) | func InitEmptyOrder_by_stmtContext(p *Order_by_stmtContext) { function NewOrder_by_stmtContext (line 25481) | func NewOrder_by_stmtContext(parser antlr.Parser, parent antlr.ParserRul... type ILimit_stmtContext (line 25640) | type ILimit_stmtContext interface type Limit_stmtContext (line 25657) | type Limit_stmtContext struct method IsLimit_stmtContext (line 25674) | func (*Limit_stmtContext) IsLimit_stmtContext() {} method GetParser (line 25687) | func (s *Limit_stmtContext) GetParser() antlr.Parser { return s.parser } method LIMIT_ (line 25689) | func (s *Limit_stmtContext) LIMIT_() antlr.TerminalNode { method AllExpr (line 25693) | func (s *Limit_stmtContext) AllExpr() []IExprContext { method Expr (line 25714) | func (s *Limit_stmtContext) Expr(i int) IExprContext { method OFFSET_ (line 25734) | func (s *Limit_stmtContext) OFFSET_() antlr.TerminalNode { method COMMA (line 25738) | func (s *Limit_stmtContext) COMMA() antlr.TerminalNode { method GetRuleContext (line 25742) | func (s *Limit_stmtContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 25746) | func (s *Limit_stmtContext) ToStringTree(ruleNames []string, recog ant... method EnterRule (line 25750) | func (s *Limit_stmtContext) EnterRule(listener antlr.ParseTreeListener) { method ExitRule (line 25756) | func (s *Limit_stmtContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyLimit_stmtContext (line 25662) | func NewEmptyLimit_stmtContext() *Limit_stmtContext { function InitEmptyLimit_stmtContext (line 25669) | func InitEmptyLimit_stmtContext(p *Limit_stmtContext) { function NewLimit_stmtContext (line 25676) | func NewLimit_stmtContext(parser antlr.Parser, parent antlr.ParserRuleCo... type IOrdering_termContext (line 25820) | type IOrdering_termContext interface type Ordering_termContext (line 25839) | type Ordering_termContext struct method IsOrdering_termContext (line 25856) | func (*Ordering_termContext) IsOrdering_termContext() {} method GetParser (line 25869) | func (s *Ordering_termContext) GetParser() antlr.Parser { return s.par... method Expr (line 25871) | func (s *Ordering_termContext) Expr() IExprContext { method COLLATE_ (line 25887) | func (s *Ordering_termContext) COLLATE_() antlr.TerminalNode { method Collation_name (line 25891) | func (s *Ordering_termContext) Collation_name() ICollation_nameContext { method Asc_desc (line 25907) | func (s *Ordering_termContext) Asc_desc() IAsc_descContext { method NULLS_ (line 25923) | func (s *Ordering_termContext) NULLS_() antlr.TerminalNode { method FIRST_ (line 25927) | func (s *Ordering_termContext) FIRST_() antlr.TerminalNode { method LAST_ (line 25931) | func (s *Ordering_termContext) LAST_() antlr.TerminalNode { method GetRuleContext (line 25935) | func (s *Ordering_termContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 25939) | func (s *Ordering_termContext) ToStringTree(ruleNames []string, recog ... method EnterRule (line 25943) | func (s *Ordering_termContext) EnterRule(listener antlr.ParseTreeListe... method ExitRule (line 25949) | func (s *Ordering_termContext) ExitRule(listener antlr.ParseTreeListen... function NewEmptyOrdering_termContext (line 25844) | func NewEmptyOrdering_termContext() *Ordering_termContext { function InitEmptyOrdering_termContext (line 25851) | func InitEmptyOrdering_termContext(p *Ordering_termContext) { function NewOrdering_termContext (line 25858) | func NewOrdering_termContext(parser antlr.Parser, parent antlr.ParserRul... type IAsc_descContext (line 26045) | type IAsc_descContext interface type Asc_descContext (line 26059) | type Asc_descContext struct method IsAsc_descContext (line 26076) | func (*Asc_descContext) IsAsc_descContext() {} method GetParser (line 26089) | func (s *Asc_descContext) GetParser() antlr.Parser { return s.parser } method ASC_ (line 26091) | func (s *Asc_descContext) ASC_() antlr.TerminalNode { method DESC_ (line 26095) | func (s *Asc_descContext) DESC_() antlr.TerminalNode { method GetRuleContext (line 26099) | func (s *Asc_descContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 26103) | func (s *Asc_descContext) ToStringTree(ruleNames []string, recog antlr... method EnterRule (line 26107) | func (s *Asc_descContext) EnterRule(listener antlr.ParseTreeListener) { method ExitRule (line 26113) | func (s *Asc_descContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyAsc_descContext (line 26064) | func NewEmptyAsc_descContext() *Asc_descContext { function InitEmptyAsc_descContext (line 26071) | func InitEmptyAsc_descContext(p *Asc_descContext) { function NewAsc_descContext (line 26078) | func NewAsc_descContext(parser antlr.Parser, parent antlr.ParserRuleCont... type IFrame_leftContext (line 26151) | type IFrame_leftContext interface type Frame_leftContext (line 26169) | type Frame_leftContext struct method IsFrame_leftContext (line 26186) | func (*Frame_leftContext) IsFrame_leftContext() {} method GetParser (line 26199) | func (s *Frame_leftContext) GetParser() antlr.Parser { return s.parser } method Expr (line 26201) | func (s *Frame_leftContext) Expr() IExprContext { method PRECEDING_ (line 26217) | func (s *Frame_leftContext) PRECEDING_() antlr.TerminalNode { method FOLLOWING_ (line 26221) | func (s *Frame_leftContext) FOLLOWING_() antlr.TerminalNode { method CURRENT_ (line 26225) | func (s *Frame_leftContext) CURRENT_() antlr.TerminalNode { method ROW_ (line 26229) | func (s *Frame_leftContext) ROW_() antlr.TerminalNode { method UNBOUNDED_ (line 26233) | func (s *Frame_leftContext) UNBOUNDED_() antlr.TerminalNode { method GetRuleContext (line 26237) | func (s *Frame_leftContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 26241) | func (s *Frame_leftContext) ToStringTree(ruleNames []string, recog ant... method EnterRule (line 26245) | func (s *Frame_leftContext) EnterRule(listener antlr.ParseTreeListener) { method ExitRule (line 26251) | func (s *Frame_leftContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyFrame_leftContext (line 26174) | func NewEmptyFrame_leftContext() *Frame_leftContext { function InitEmptyFrame_leftContext (line 26181) | func InitEmptyFrame_leftContext(p *Frame_leftContext) { function NewFrame_leftContext (line 26188) | func NewFrame_leftContext(parser antlr.Parser, parent antlr.ParserRuleCo... type IFrame_rightContext (line 26353) | type IFrame_rightContext interface type Frame_rightContext (line 26371) | type Frame_rightContext struct method IsFrame_rightContext (line 26388) | func (*Frame_rightContext) IsFrame_rightContext() {} method GetParser (line 26401) | func (s *Frame_rightContext) GetParser() antlr.Parser { return s.parser } method Expr (line 26403) | func (s *Frame_rightContext) Expr() IExprContext { method PRECEDING_ (line 26419) | func (s *Frame_rightContext) PRECEDING_() antlr.TerminalNode { method FOLLOWING_ (line 26423) | func (s *Frame_rightContext) FOLLOWING_() antlr.TerminalNode { method CURRENT_ (line 26427) | func (s *Frame_rightContext) CURRENT_() antlr.TerminalNode { method ROW_ (line 26431) | func (s *Frame_rightContext) ROW_() antlr.TerminalNode { method UNBOUNDED_ (line 26435) | func (s *Frame_rightContext) UNBOUNDED_() antlr.TerminalNode { method GetRuleContext (line 26439) | func (s *Frame_rightContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 26443) | func (s *Frame_rightContext) ToStringTree(ruleNames []string, recog an... method EnterRule (line 26447) | func (s *Frame_rightContext) EnterRule(listener antlr.ParseTreeListene... method ExitRule (line 26453) | func (s *Frame_rightContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyFrame_rightContext (line 26376) | func NewEmptyFrame_rightContext() *Frame_rightContext { function InitEmptyFrame_rightContext (line 26383) | func InitEmptyFrame_rightContext(p *Frame_rightContext) { function NewFrame_rightContext (line 26390) | func NewFrame_rightContext(parser antlr.Parser, parent antlr.ParserRuleC... type IFrame_singleContext (line 26555) | type IFrame_singleContext interface type Frame_singleContext (line 26572) | type Frame_singleContext struct method IsFrame_singleContext (line 26589) | func (*Frame_singleContext) IsFrame_singleContext() {} method GetParser (line 26602) | func (s *Frame_singleContext) GetParser() antlr.Parser { return s.pars... method Expr (line 26604) | func (s *Frame_singleContext) Expr() IExprContext { method PRECEDING_ (line 26620) | func (s *Frame_singleContext) PRECEDING_() antlr.TerminalNode { method UNBOUNDED_ (line 26624) | func (s *Frame_singleContext) UNBOUNDED_() antlr.TerminalNode { method CURRENT_ (line 26628) | func (s *Frame_singleContext) CURRENT_() antlr.TerminalNode { method ROW_ (line 26632) | func (s *Frame_singleContext) ROW_() antlr.TerminalNode { method GetRuleContext (line 26636) | func (s *Frame_singleContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 26640) | func (s *Frame_singleContext) ToStringTree(ruleNames []string, recog a... method EnterRule (line 26644) | func (s *Frame_singleContext) EnterRule(listener antlr.ParseTreeListen... method ExitRule (line 26650) | func (s *Frame_singleContext) ExitRule(listener antlr.ParseTreeListene... function NewEmptyFrame_singleContext (line 26577) | func NewEmptyFrame_singleContext() *Frame_singleContext { function InitEmptyFrame_singleContext (line 26584) | func InitEmptyFrame_singleContext(p *Frame_singleContext) { function NewFrame_singleContext (line 26591) | func NewFrame_singleContext(parser antlr.Parser, parent antlr.ParserRule... type IWindow_functionContext (line 26737) | type IWindow_functionContext interface type Window_functionContext (line 26774) | type Window_functionContext struct method IsWindow_functionContext (line 26791) | func (*Window_functionContext) IsWindow_functionContext() {} method GetParser (line 26804) | func (s *Window_functionContext) GetParser() antlr.Parser { return s.p... method AllOPEN_PAR (line 26806) | func (s *Window_functionContext) AllOPEN_PAR() []antlr.TerminalNode { method OPEN_PAR (line 26810) | func (s *Window_functionContext) OPEN_PAR(i int) antlr.TerminalNode { method Expr (line 26814) | func (s *Window_functionContext) Expr() IExprContext { method AllCLOSE_PAR (line 26830) | func (s *Window_functionContext) AllCLOSE_PAR() []antlr.TerminalNode { method CLOSE_PAR (line 26834) | func (s *Window_functionContext) CLOSE_PAR(i int) antlr.TerminalNode { method OVER_ (line 26838) | func (s *Window_functionContext) OVER_() antlr.TerminalNode { method Order_by_expr_asc_desc (line 26842) | func (s *Window_functionContext) Order_by_expr_asc_desc() IOrder_by_ex... method FIRST_VALUE_ (line 26858) | func (s *Window_functionContext) FIRST_VALUE_() antlr.TerminalNode { method LAST_VALUE_ (line 26862) | func (s *Window_functionContext) LAST_VALUE_() antlr.TerminalNode { method Partition_by (line 26866) | func (s *Window_functionContext) Partition_by() IPartition_byContext { method Frame_clause (line 26882) | func (s *Window_functionContext) Frame_clause() IFrame_clauseContext { method CUME_DIST_ (line 26898) | func (s *Window_functionContext) CUME_DIST_() antlr.TerminalNode { method PERCENT_RANK_ (line 26902) | func (s *Window_functionContext) PERCENT_RANK_() antlr.TerminalNode { method Order_by_expr (line 26906) | func (s *Window_functionContext) Order_by_expr() IOrder_by_exprContext { method DENSE_RANK_ (line 26922) | func (s *Window_functionContext) DENSE_RANK_() antlr.TerminalNode { method RANK_ (line 26926) | func (s *Window_functionContext) RANK_() antlr.TerminalNode { method ROW_NUMBER_ (line 26930) | func (s *Window_functionContext) ROW_NUMBER_() antlr.TerminalNode { method LAG_ (line 26934) | func (s *Window_functionContext) LAG_() antlr.TerminalNode { method LEAD_ (line 26938) | func (s *Window_functionContext) LEAD_() antlr.TerminalNode { method Of_OF_fset (line 26942) | func (s *Window_functionContext) Of_OF_fset() IOf_OF_fsetContext { method Default_DEFAULT__value (line 26958) | func (s *Window_functionContext) Default_DEFAULT__value() IDefault_DEF... method NTH_VALUE_ (line 26974) | func (s *Window_functionContext) NTH_VALUE_() antlr.TerminalNode { method COMMA (line 26978) | func (s *Window_functionContext) COMMA() antlr.TerminalNode { method Signed_number (line 26982) | func (s *Window_functionContext) Signed_number() ISigned_numberContext { method NTILE_ (line 26998) | func (s *Window_functionContext) NTILE_() antlr.TerminalNode { method GetRuleContext (line 27002) | func (s *Window_functionContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 27006) | func (s *Window_functionContext) ToStringTree(ruleNames []string, reco... method EnterRule (line 27010) | func (s *Window_functionContext) EnterRule(listener antlr.ParseTreeLis... method ExitRule (line 27016) | func (s *Window_functionContext) ExitRule(listener antlr.ParseTreeList... function NewEmptyWindow_functionContext (line 26779) | func NewEmptyWindow_functionContext() *Window_functionContext { function InitEmptyWindow_functionContext (line 26786) | func InitEmptyWindow_functionContext(p *Window_functionContext) { function NewWindow_functionContext (line 26793) | func NewWindow_functionContext(parser antlr.Parser, parent antlr.ParserR... type IOf_OF_fsetContext (line 27571) | type IOf_OF_fsetContext interface type Of_OF_fsetContext (line 27585) | type Of_OF_fsetContext struct method IsOf_OF_fsetContext (line 27602) | func (*Of_OF_fsetContext) IsOf_OF_fsetContext() {} method GetParser (line 27615) | func (s *Of_OF_fsetContext) GetParser() antlr.Parser { return s.parser } method COMMA (line 27617) | func (s *Of_OF_fsetContext) COMMA() antlr.TerminalNode { method Signed_number (line 27621) | func (s *Of_OF_fsetContext) Signed_number() ISigned_numberContext { method GetRuleContext (line 27637) | func (s *Of_OF_fsetContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 27641) | func (s *Of_OF_fsetContext) ToStringTree(ruleNames []string, recog ant... method EnterRule (line 27645) | func (s *Of_OF_fsetContext) EnterRule(listener antlr.ParseTreeListener) { method ExitRule (line 27651) | func (s *Of_OF_fsetContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyOf_OF_fsetContext (line 27590) | func NewEmptyOf_OF_fsetContext() *Of_OF_fsetContext { function InitEmptyOf_OF_fsetContext (line 27597) | func InitEmptyOf_OF_fsetContext(p *Of_OF_fsetContext) { function NewOf_OF_fsetContext (line 27604) | func NewOf_OF_fsetContext(parser antlr.Parser, parent antlr.ParserRuleCo... type IDefault_DEFAULT__valueContext (line 27688) | type IDefault_DEFAULT__valueContext interface type Default_DEFAULT__valueContext (line 27702) | type Default_DEFAULT__valueContext struct method IsDefault_DEFAULT__valueContext (line 27719) | func (*Default_DEFAULT__valueContext) IsDefault_DEFAULT__valueContext(... method GetParser (line 27732) | func (s *Default_DEFAULT__valueContext) GetParser() antlr.Parser { ret... method COMMA (line 27734) | func (s *Default_DEFAULT__valueContext) COMMA() antlr.TerminalNode { method Signed_number (line 27738) | func (s *Default_DEFAULT__valueContext) Signed_number() ISigned_number... method GetRuleContext (line 27754) | func (s *Default_DEFAULT__valueContext) GetRuleContext() antlr.RuleCon... method ToStringTree (line 27758) | func (s *Default_DEFAULT__valueContext) ToStringTree(ruleNames []strin... method EnterRule (line 27762) | func (s *Default_DEFAULT__valueContext) EnterRule(listener antlr.Parse... method ExitRule (line 27768) | func (s *Default_DEFAULT__valueContext) ExitRule(listener antlr.ParseT... function NewEmptyDefault_DEFAULT__valueContext (line 27707) | func NewEmptyDefault_DEFAULT__valueContext() *Default_DEFAULT__valueCont... function InitEmptyDefault_DEFAULT__valueContext (line 27714) | func InitEmptyDefault_DEFAULT__valueContext(p *Default_DEFAULT__valueCon... function NewDefault_DEFAULT__valueContext (line 27721) | func NewDefault_DEFAULT__valueContext(parser antlr.Parser, parent antlr.... type IPartition_byContext (line 27805) | type IPartition_byContext interface type Partition_byContext (line 27821) | type Partition_byContext struct method IsPartition_byContext (line 27838) | func (*Partition_byContext) IsPartition_byContext() {} method GetParser (line 27851) | func (s *Partition_byContext) GetParser() antlr.Parser { return s.pars... method PARTITION_ (line 27853) | func (s *Partition_byContext) PARTITION_() antlr.TerminalNode { method BY_ (line 27857) | func (s *Partition_byContext) BY_() antlr.TerminalNode { method AllExpr (line 27861) | func (s *Partition_byContext) AllExpr() []IExprContext { method Expr (line 27882) | func (s *Partition_byContext) Expr(i int) IExprContext { method GetRuleContext (line 27902) | func (s *Partition_byContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 27906) | func (s *Partition_byContext) ToStringTree(ruleNames []string, recog a... method EnterRule (line 27910) | func (s *Partition_byContext) EnterRule(listener antlr.ParseTreeListen... method ExitRule (line 27916) | func (s *Partition_byContext) ExitRule(listener antlr.ParseTreeListene... function NewEmptyPartition_byContext (line 27826) | func NewEmptyPartition_byContext() *Partition_byContext { function InitEmptyPartition_byContext (line 27833) | func InitEmptyPartition_byContext(p *Partition_byContext) { function NewPartition_byContext (line 27840) | func NewPartition_byContext(parser antlr.Parser, parent antlr.ParserRule... type IOrder_by_exprContext (line 27985) | type IOrder_by_exprContext interface type Order_by_exprContext (line 28001) | type Order_by_exprContext struct method IsOrder_by_exprContext (line 28018) | func (*Order_by_exprContext) IsOrder_by_exprContext() {} method GetParser (line 28031) | func (s *Order_by_exprContext) GetParser() antlr.Parser { return s.par... method ORDER_ (line 28033) | func (s *Order_by_exprContext) ORDER_() antlr.TerminalNode { method BY_ (line 28037) | func (s *Order_by_exprContext) BY_() antlr.TerminalNode { method AllExpr (line 28041) | func (s *Order_by_exprContext) AllExpr() []IExprContext { method Expr (line 28062) | func (s *Order_by_exprContext) Expr(i int) IExprContext { method GetRuleContext (line 28082) | func (s *Order_by_exprContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 28086) | func (s *Order_by_exprContext) ToStringTree(ruleNames []string, recog ... method EnterRule (line 28090) | func (s *Order_by_exprContext) EnterRule(listener antlr.ParseTreeListe... method ExitRule (line 28096) | func (s *Order_by_exprContext) ExitRule(listener antlr.ParseTreeListen... function NewEmptyOrder_by_exprContext (line 28006) | func NewEmptyOrder_by_exprContext() *Order_by_exprContext { function InitEmptyOrder_by_exprContext (line 28013) | func InitEmptyOrder_by_exprContext(p *Order_by_exprContext) { function NewOrder_by_exprContext (line 28020) | func NewOrder_by_exprContext(parser antlr.Parser, parent antlr.ParserRul... type IOrder_by_expr_asc_descContext (line 28159) | type IOrder_by_expr_asc_descContext interface type Order_by_expr_asc_descContext (line 28174) | type Order_by_expr_asc_descContext struct method IsOrder_by_expr_asc_descContext (line 28191) | func (*Order_by_expr_asc_descContext) IsOrder_by_expr_asc_descContext(... method GetParser (line 28204) | func (s *Order_by_expr_asc_descContext) GetParser() antlr.Parser { ret... method ORDER_ (line 28206) | func (s *Order_by_expr_asc_descContext) ORDER_() antlr.TerminalNode { method BY_ (line 28210) | func (s *Order_by_expr_asc_descContext) BY_() antlr.TerminalNode { method Order_by_expr_asc_desc (line 28214) | func (s *Order_by_expr_asc_descContext) Order_by_expr_asc_desc() IOrde... method GetRuleContext (line 28230) | func (s *Order_by_expr_asc_descContext) GetRuleContext() antlr.RuleCon... method ToStringTree (line 28234) | func (s *Order_by_expr_asc_descContext) ToStringTree(ruleNames []strin... method EnterRule (line 28238) | func (s *Order_by_expr_asc_descContext) EnterRule(listener antlr.Parse... method ExitRule (line 28244) | func (s *Order_by_expr_asc_descContext) ExitRule(listener antlr.ParseT... function NewEmptyOrder_by_expr_asc_descContext (line 28179) | func NewEmptyOrder_by_expr_asc_descContext() *Order_by_expr_asc_descCont... function InitEmptyOrder_by_expr_asc_descContext (line 28186) | func InitEmptyOrder_by_expr_asc_descContext(p *Order_by_expr_asc_descCon... function NewOrder_by_expr_asc_descContext (line 28193) | func NewOrder_by_expr_asc_descContext(parser antlr.Parser, parent antlr.... type IExpr_asc_descContext (line 28289) | type IExpr_asc_descContext interface type Expr_asc_descContext (line 28307) | type Expr_asc_descContext struct method IsExpr_asc_descContext (line 28324) | func (*Expr_asc_descContext) IsExpr_asc_descContext() {} method GetParser (line 28337) | func (s *Expr_asc_descContext) GetParser() antlr.Parser { return s.par... method AllExpr (line 28339) | func (s *Expr_asc_descContext) AllExpr() []IExprContext { method Expr (line 28360) | func (s *Expr_asc_descContext) Expr(i int) IExprContext { method AllAsc_desc (line 28380) | func (s *Expr_asc_descContext) AllAsc_desc() []IAsc_descContext { method Asc_desc (line 28401) | func (s *Expr_asc_descContext) Asc_desc(i int) IAsc_descContext { method AllCOMMA (line 28421) | func (s *Expr_asc_descContext) AllCOMMA() []antlr.TerminalNode { method COMMA (line 28425) | func (s *Expr_asc_descContext) COMMA(i int) antlr.TerminalNode { method GetRuleContext (line 28429) | func (s *Expr_asc_descContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 28433) | func (s *Expr_asc_descContext) ToStringTree(ruleNames []string, recog ... method EnterRule (line 28437) | func (s *Expr_asc_descContext) EnterRule(listener antlr.ParseTreeListe... method ExitRule (line 28443) | func (s *Expr_asc_descContext) ExitRule(listener antlr.ParseTreeListen... function NewEmptyExpr_asc_descContext (line 28312) | func NewEmptyExpr_asc_descContext() *Expr_asc_descContext { function InitEmptyExpr_asc_descContext (line 28319) | func InitEmptyExpr_asc_descContext(p *Expr_asc_descContext) { function NewExpr_asc_descContext (line 28326) | func NewExpr_asc_descContext(parser antlr.Parser, parent antlr.ParserRul... type IInitial_selectContext (line 28530) | type IInitial_selectContext interface type Initial_selectContext (line 28543) | type Initial_selectContext struct method IsInitial_selectContext (line 28560) | func (*Initial_selectContext) IsInitial_selectContext() {} method GetParser (line 28573) | func (s *Initial_selectContext) GetParser() antlr.Parser { return s.pa... method Select_stmt (line 28575) | func (s *Initial_selectContext) Select_stmt() ISelect_stmtContext { method GetRuleContext (line 28591) | func (s *Initial_selectContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 28595) | func (s *Initial_selectContext) ToStringTree(ruleNames []string, recog... method EnterRule (line 28599) | func (s *Initial_selectContext) EnterRule(listener antlr.ParseTreeList... method ExitRule (line 28605) | func (s *Initial_selectContext) ExitRule(listener antlr.ParseTreeListe... function NewEmptyInitial_selectContext (line 28548) | func NewEmptyInitial_selectContext() *Initial_selectContext { function InitEmptyInitial_selectContext (line 28555) | func InitEmptyInitial_selectContext(p *Initial_selectContext) { function NewInitial_selectContext (line 28562) | func NewInitial_selectContext(parser antlr.Parser, parent antlr.ParserRu... type IRecursive__selectContext (line 28634) | type IRecursive__selectContext interface type Recursive__selectContext (line 28647) | type Recursive__selectContext struct method IsRecursive__selectContext (line 28664) | func (*Recursive__selectContext) IsRecursive__selectContext() {} method GetParser (line 28677) | func (s *Recursive__selectContext) GetParser() antlr.Parser { return s... method Select_stmt (line 28679) | func (s *Recursive__selectContext) Select_stmt() ISelect_stmtContext { method GetRuleContext (line 28695) | func (s *Recursive__selectContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 28699) | func (s *Recursive__selectContext) ToStringTree(ruleNames []string, re... method EnterRule (line 28703) | func (s *Recursive__selectContext) EnterRule(listener antlr.ParseTreeL... method ExitRule (line 28709) | func (s *Recursive__selectContext) ExitRule(listener antlr.ParseTreeLi... function NewEmptyRecursive__selectContext (line 28652) | func NewEmptyRecursive__selectContext() *Recursive__selectContext { function InitEmptyRecursive__selectContext (line 28659) | func InitEmptyRecursive__selectContext(p *Recursive__selectContext) { function NewRecursive__selectContext (line 28666) | func NewRecursive__selectContext(parser antlr.Parser, parent antlr.Parse... type IUnary_operatorContext (line 28738) | type IUnary_operatorContext interface type Unary_operatorContext (line 28754) | type Unary_operatorContext struct method IsUnary_operatorContext (line 28771) | func (*Unary_operatorContext) IsUnary_operatorContext() {} method GetParser (line 28784) | func (s *Unary_operatorContext) GetParser() antlr.Parser { return s.pa... method MINUS (line 28786) | func (s *Unary_operatorContext) MINUS() antlr.TerminalNode { method PLUS (line 28790) | func (s *Unary_operatorContext) PLUS() antlr.TerminalNode { method TILDE (line 28794) | func (s *Unary_operatorContext) TILDE() antlr.TerminalNode { method NOT_ (line 28798) | func (s *Unary_operatorContext) NOT_() antlr.TerminalNode { method GetRuleContext (line 28802) | func (s *Unary_operatorContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 28806) | func (s *Unary_operatorContext) ToStringTree(ruleNames []string, recog... method EnterRule (line 28810) | func (s *Unary_operatorContext) EnterRule(listener antlr.ParseTreeList... method ExitRule (line 28816) | func (s *Unary_operatorContext) ExitRule(listener antlr.ParseTreeListe... function NewEmptyUnary_operatorContext (line 28759) | func NewEmptyUnary_operatorContext() *Unary_operatorContext { function InitEmptyUnary_operatorContext (line 28766) | func InitEmptyUnary_operatorContext(p *Unary_operatorContext) { function NewUnary_operatorContext (line 28773) | func NewUnary_operatorContext(parser antlr.Parser, parent antlr.ParserRu... type IError_messageContext (line 28854) | type IError_messageContext interface type Error_messageContext (line 28867) | type Error_messageContext struct method IsError_messageContext (line 28884) | func (*Error_messageContext) IsError_messageContext() {} method GetParser (line 28897) | func (s *Error_messageContext) GetParser() antlr.Parser { return s.par... method STRING_LITERAL (line 28899) | func (s *Error_messageContext) STRING_LITERAL() antlr.TerminalNode { method GetRuleContext (line 28903) | func (s *Error_messageContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 28907) | func (s *Error_messageContext) ToStringTree(ruleNames []string, recog ... method EnterRule (line 28911) | func (s *Error_messageContext) EnterRule(listener antlr.ParseTreeListe... method ExitRule (line 28917) | func (s *Error_messageContext) ExitRule(listener antlr.ParseTreeListen... function NewEmptyError_messageContext (line 28872) | func NewEmptyError_messageContext() *Error_messageContext { function InitEmptyError_messageContext (line 28879) | func InitEmptyError_messageContext(p *Error_messageContext) { function NewError_messageContext (line 28886) | func NewError_messageContext(parser antlr.Parser, parent antlr.ParserRul... type IModule_argumentContext (line 28950) | type IModule_argumentContext interface type Module_argumentContext (line 28964) | type Module_argumentContext struct method IsModule_argumentContext (line 28981) | func (*Module_argumentContext) IsModule_argumentContext() {} method GetParser (line 28994) | func (s *Module_argumentContext) GetParser() antlr.Parser { return s.p... method Expr (line 28996) | func (s *Module_argumentContext) Expr() IExprContext { method Column_def (line 29012) | func (s *Module_argumentContext) Column_def() IColumn_defContext { method GetRuleContext (line 29028) | func (s *Module_argumentContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 29032) | func (s *Module_argumentContext) ToStringTree(ruleNames []string, reco... method EnterRule (line 29036) | func (s *Module_argumentContext) EnterRule(listener antlr.ParseTreeLis... method ExitRule (line 29042) | func (s *Module_argumentContext) ExitRule(listener antlr.ParseTreeList... function NewEmptyModule_argumentContext (line 28969) | func NewEmptyModule_argumentContext() *Module_argumentContext { function InitEmptyModule_argumentContext (line 28976) | func InitEmptyModule_argumentContext(p *Module_argumentContext) { function NewModule_argumentContext (line 28983) | func NewModule_argumentContext(parser antlr.Parser, parent antlr.ParserR... type IColumn_aliasContext (line 29090) | type IColumn_aliasContext interface type Column_aliasContext (line 29104) | type Column_aliasContext struct method IsColumn_aliasContext (line 29121) | func (*Column_aliasContext) IsColumn_aliasContext() {} method GetParser (line 29134) | func (s *Column_aliasContext) GetParser() antlr.Parser { return s.pars... method IDENTIFIER (line 29136) | func (s *Column_aliasContext) IDENTIFIER() antlr.TerminalNode { method STRING_LITERAL (line 29140) | func (s *Column_aliasContext) STRING_LITERAL() antlr.TerminalNode { method GetRuleContext (line 29144) | func (s *Column_aliasContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 29148) | func (s *Column_aliasContext) ToStringTree(ruleNames []string, recog a... method EnterRule (line 29152) | func (s *Column_aliasContext) EnterRule(listener antlr.ParseTreeListen... method ExitRule (line 29158) | func (s *Column_aliasContext) ExitRule(listener antlr.ParseTreeListene... function NewEmptyColumn_aliasContext (line 29109) | func NewEmptyColumn_aliasContext() *Column_aliasContext { function InitEmptyColumn_aliasContext (line 29116) | func InitEmptyColumn_aliasContext(p *Column_aliasContext) { function NewColumn_aliasContext (line 29123) | func NewColumn_aliasContext(parser antlr.Parser, parent antlr.ParserRule... type IKeywordContext (line 29196) | type IKeywordContext interface type KeywordContext (line 29365) | type KeywordContext struct method IsKeywordContext (line 29382) | func (*KeywordContext) IsKeywordContext() {} method GetParser (line 29395) | func (s *KeywordContext) GetParser() antlr.Parser { return s.parser } method ABORT_ (line 29397) | func (s *KeywordContext) ABORT_() antlr.TerminalNode { method ACTION_ (line 29401) | func (s *KeywordContext) ACTION_() antlr.TerminalNode { method ADD_ (line 29405) | func (s *KeywordContext) ADD_() antlr.TerminalNode { method AFTER_ (line 29409) | func (s *KeywordContext) AFTER_() antlr.TerminalNode { method ALL_ (line 29413) | func (s *KeywordContext) ALL_() antlr.TerminalNode { method ALTER_ (line 29417) | func (s *KeywordContext) ALTER_() antlr.TerminalNode { method ANALYZE_ (line 29421) | func (s *KeywordContext) ANALYZE_() antlr.TerminalNode { method AND_ (line 29425) | func (s *KeywordContext) AND_() antlr.TerminalNode { method AS_ (line 29429) | func (s *KeywordContext) AS_() antlr.TerminalNode { method ASC_ (line 29433) | func (s *KeywordContext) ASC_() antlr.TerminalNode { method ATTACH_ (line 29437) | func (s *KeywordContext) ATTACH_() antlr.TerminalNode { method AUTOINCREMENT_ (line 29441) | func (s *KeywordContext) AUTOINCREMENT_() antlr.TerminalNode { method BEFORE_ (line 29445) | func (s *KeywordContext) BEFORE_() antlr.TerminalNode { method BEGIN_ (line 29449) | func (s *KeywordContext) BEGIN_() antlr.TerminalNode { method BETWEEN_ (line 29453) | func (s *KeywordContext) BETWEEN_() antlr.TerminalNode { method BY_ (line 29457) | func (s *KeywordContext) BY_() antlr.TerminalNode { method CASCADE_ (line 29461) | func (s *KeywordContext) CASCADE_() antlr.TerminalNode { method CASE_ (line 29465) | func (s *KeywordContext) CASE_() antlr.TerminalNode { method CAST_ (line 29469) | func (s *KeywordContext) CAST_() antlr.TerminalNode { method CHECK_ (line 29473) | func (s *KeywordContext) CHECK_() antlr.TerminalNode { method COLLATE_ (line 29477) | func (s *KeywordContext) COLLATE_() antlr.TerminalNode { method COLUMN_ (line 29481) | func (s *KeywordContext) COLUMN_() antlr.TerminalNode { method COMMIT_ (line 29485) | func (s *KeywordContext) COMMIT_() antlr.TerminalNode { method CONFLICT_ (line 29489) | func (s *KeywordContext) CONFLICT_() antlr.TerminalNode { method CONSTRAINT_ (line 29493) | func (s *KeywordContext) CONSTRAINT_() antlr.TerminalNode { method CREATE_ (line 29497) | func (s *KeywordContext) CREATE_() antlr.TerminalNode { method CROSS_ (line 29501) | func (s *KeywordContext) CROSS_() antlr.TerminalNode { method CURRENT_DATE_ (line 29505) | func (s *KeywordContext) CURRENT_DATE_() antlr.TerminalNode { method CURRENT_TIME_ (line 29509) | func (s *KeywordContext) CURRENT_TIME_() antlr.TerminalNode { method CURRENT_TIMESTAMP_ (line 29513) | func (s *KeywordContext) CURRENT_TIMESTAMP_() antlr.TerminalNode { method DATABASE_ (line 29517) | func (s *KeywordContext) DATABASE_() antlr.TerminalNode { method DEFAULT_ (line 29521) | func (s *KeywordContext) DEFAULT_() antlr.TerminalNode { method DEFERRABLE_ (line 29525) | func (s *KeywordContext) DEFERRABLE_() antlr.TerminalNode { method DEFERRED_ (line 29529) | func (s *KeywordContext) DEFERRED_() antlr.TerminalNode { method DELETE_ (line 29533) | func (s *KeywordContext) DELETE_() antlr.TerminalNode { method DESC_ (line 29537) | func (s *KeywordContext) DESC_() antlr.TerminalNode { method DETACH_ (line 29541) | func (s *KeywordContext) DETACH_() antlr.TerminalNode { method DISTINCT_ (line 29545) | func (s *KeywordContext) DISTINCT_() antlr.TerminalNode { method DROP_ (line 29549) | func (s *KeywordContext) DROP_() antlr.TerminalNode { method EACH_ (line 29553) | func (s *KeywordContext) EACH_() antlr.TerminalNode { method ELSE_ (line 29557) | func (s *KeywordContext) ELSE_() antlr.TerminalNode { method END_ (line 29561) | func (s *KeywordContext) END_() antlr.TerminalNode { method ESCAPE_ (line 29565) | func (s *KeywordContext) ESCAPE_() antlr.TerminalNode { method EXCEPT_ (line 29569) | func (s *KeywordContext) EXCEPT_() antlr.TerminalNode { method EXCLUSIVE_ (line 29573) | func (s *KeywordContext) EXCLUSIVE_() antlr.TerminalNode { method EXISTS_ (line 29577) | func (s *KeywordContext) EXISTS_() antlr.TerminalNode { method EXPLAIN_ (line 29581) | func (s *KeywordContext) EXPLAIN_() antlr.TerminalNode { method FAIL_ (line 29585) | func (s *KeywordContext) FAIL_() antlr.TerminalNode { method FOR_ (line 29589) | func (s *KeywordContext) FOR_() antlr.TerminalNode { method FOREIGN_ (line 29593) | func (s *KeywordContext) FOREIGN_() antlr.TerminalNode { method FROM_ (line 29597) | func (s *KeywordContext) FROM_() antlr.TerminalNode { method FULL_ (line 29601) | func (s *KeywordContext) FULL_() antlr.TerminalNode { method GLOB_ (line 29605) | func (s *KeywordContext) GLOB_() antlr.TerminalNode { method GROUP_ (line 29609) | func (s *KeywordContext) GROUP_() antlr.TerminalNode { method HAVING_ (line 29613) | func (s *KeywordContext) HAVING_() antlr.TerminalNode { method IF_ (line 29617) | func (s *KeywordContext) IF_() antlr.TerminalNode { method IGNORE_ (line 29621) | func (s *KeywordContext) IGNORE_() antlr.TerminalNode { method IMMEDIATE_ (line 29625) | func (s *KeywordContext) IMMEDIATE_() antlr.TerminalNode { method IN_ (line 29629) | func (s *KeywordContext) IN_() antlr.TerminalNode { method INDEX_ (line 29633) | func (s *KeywordContext) INDEX_() antlr.TerminalNode { method INDEXED_ (line 29637) | func (s *KeywordContext) INDEXED_() antlr.TerminalNode { method INITIALLY_ (line 29641) | func (s *KeywordContext) INITIALLY_() antlr.TerminalNode { method INNER_ (line 29645) | func (s *KeywordContext) INNER_() antlr.TerminalNode { method INSERT_ (line 29649) | func (s *KeywordContext) INSERT_() antlr.TerminalNode { method INSTEAD_ (line 29653) | func (s *KeywordContext) INSTEAD_() antlr.TerminalNode { method INTERSECT_ (line 29657) | func (s *KeywordContext) INTERSECT_() antlr.TerminalNode { method INTO_ (line 29661) | func (s *KeywordContext) INTO_() antlr.TerminalNode { method IS_ (line 29665) | func (s *KeywordContext) IS_() antlr.TerminalNode { method ISNULL_ (line 29669) | func (s *KeywordContext) ISNULL_() antlr.TerminalNode { method JOIN_ (line 29673) | func (s *KeywordContext) JOIN_() antlr.TerminalNode { method KEY_ (line 29677) | func (s *KeywordContext) KEY_() antlr.TerminalNode { method LEFT_ (line 29681) | func (s *KeywordContext) LEFT_() antlr.TerminalNode { method LIKE_ (line 29685) | func (s *KeywordContext) LIKE_() antlr.TerminalNode { method LIMIT_ (line 29689) | func (s *KeywordContext) LIMIT_() antlr.TerminalNode { method MATCH_ (line 29693) | func (s *KeywordContext) MATCH_() antlr.TerminalNode { method NATURAL_ (line 29697) | func (s *KeywordContext) NATURAL_() antlr.TerminalNode { method NO_ (line 29701) | func (s *KeywordContext) NO_() antlr.TerminalNode { method NOT_ (line 29705) | func (s *KeywordContext) NOT_() antlr.TerminalNode { method NOTNULL_ (line 29709) | func (s *KeywordContext) NOTNULL_() antlr.TerminalNode { method NULL_ (line 29713) | func (s *KeywordContext) NULL_() antlr.TerminalNode { method OF_ (line 29717) | func (s *KeywordContext) OF_() antlr.TerminalNode { method OFFSET_ (line 29721) | func (s *KeywordContext) OFFSET_() antlr.TerminalNode { method ON_ (line 29725) | func (s *KeywordContext) ON_() antlr.TerminalNode { method OR_ (line 29729) | func (s *KeywordContext) OR_() antlr.TerminalNode { method ORDER_ (line 29733) | func (s *KeywordContext) ORDER_() antlr.TerminalNode { method OUTER_ (line 29737) | func (s *KeywordContext) OUTER_() antlr.TerminalNode { method PLAN_ (line 29741) | func (s *KeywordContext) PLAN_() antlr.TerminalNode { method PRAGMA_ (line 29745) | func (s *KeywordContext) PRAGMA_() antlr.TerminalNode { method PRIMARY_ (line 29749) | func (s *KeywordContext) PRIMARY_() antlr.TerminalNode { method QUERY_ (line 29753) | func (s *KeywordContext) QUERY_() antlr.TerminalNode { method RAISE_ (line 29757) | func (s *KeywordContext) RAISE_() antlr.TerminalNode { method RECURSIVE_ (line 29761) | func (s *KeywordContext) RECURSIVE_() antlr.TerminalNode { method REFERENCES_ (line 29765) | func (s *KeywordContext) REFERENCES_() antlr.TerminalNode { method REGEXP_ (line 29769) | func (s *KeywordContext) REGEXP_() antlr.TerminalNode { method REINDEX_ (line 29773) | func (s *KeywordContext) REINDEX_() antlr.TerminalNode { method RELEASE_ (line 29777) | func (s *KeywordContext) RELEASE_() antlr.TerminalNode { method RENAME_ (line 29781) | func (s *KeywordContext) RENAME_() antlr.TerminalNode { method REPLACE_ (line 29785) | func (s *KeywordContext) REPLACE_() antlr.TerminalNode { method RESTRICT_ (line 29789) | func (s *KeywordContext) RESTRICT_() antlr.TerminalNode { method RETURNING_ (line 29793) | func (s *KeywordContext) RETURNING_() antlr.TerminalNode { method RIGHT_ (line 29797) | func (s *KeywordContext) RIGHT_() antlr.TerminalNode { method ROLLBACK_ (line 29801) | func (s *KeywordContext) ROLLBACK_() antlr.TerminalNode { method ROW_ (line 29805) | func (s *KeywordContext) ROW_() antlr.TerminalNode { method ROWS_ (line 29809) | func (s *KeywordContext) ROWS_() antlr.TerminalNode { method SAVEPOINT_ (line 29813) | func (s *KeywordContext) SAVEPOINT_() antlr.TerminalNode { method SELECT_ (line 29817) | func (s *KeywordContext) SELECT_() antlr.TerminalNode { method SET_ (line 29821) | func (s *KeywordContext) SET_() antlr.TerminalNode { method STRICT_ (line 29825) | func (s *KeywordContext) STRICT_() antlr.TerminalNode { method TABLE_ (line 29829) | func (s *KeywordContext) TABLE_() antlr.TerminalNode { method TEMP_ (line 29833) | func (s *KeywordContext) TEMP_() antlr.TerminalNode { method TEMPORARY_ (line 29837) | func (s *KeywordContext) TEMPORARY_() antlr.TerminalNode { method THEN_ (line 29841) | func (s *KeywordContext) THEN_() antlr.TerminalNode { method TO_ (line 29845) | func (s *KeywordContext) TO_() antlr.TerminalNode { method TRANSACTION_ (line 29849) | func (s *KeywordContext) TRANSACTION_() antlr.TerminalNode { method TRIGGER_ (line 29853) | func (s *KeywordContext) TRIGGER_() antlr.TerminalNode { method UNION_ (line 29857) | func (s *KeywordContext) UNION_() antlr.TerminalNode { method UNIQUE_ (line 29861) | func (s *KeywordContext) UNIQUE_() antlr.TerminalNode { method UPDATE_ (line 29865) | func (s *KeywordContext) UPDATE_() antlr.TerminalNode { method USING_ (line 29869) | func (s *KeywordContext) USING_() antlr.TerminalNode { method VACUUM_ (line 29873) | func (s *KeywordContext) VACUUM_() antlr.TerminalNode { method VALUES_ (line 29877) | func (s *KeywordContext) VALUES_() antlr.TerminalNode { method VIEW_ (line 29881) | func (s *KeywordContext) VIEW_() antlr.TerminalNode { method VIRTUAL_ (line 29885) | func (s *KeywordContext) VIRTUAL_() antlr.TerminalNode { method WHEN_ (line 29889) | func (s *KeywordContext) WHEN_() antlr.TerminalNode { method WHERE_ (line 29893) | func (s *KeywordContext) WHERE_() antlr.TerminalNode { method WITH_ (line 29897) | func (s *KeywordContext) WITH_() antlr.TerminalNode { method WITHOUT_ (line 29901) | func (s *KeywordContext) WITHOUT_() antlr.TerminalNode { method FIRST_VALUE_ (line 29905) | func (s *KeywordContext) FIRST_VALUE_() antlr.TerminalNode { method OVER_ (line 29909) | func (s *KeywordContext) OVER_() antlr.TerminalNode { method PARTITION_ (line 29913) | func (s *KeywordContext) PARTITION_() antlr.TerminalNode { method RANGE_ (line 29917) | func (s *KeywordContext) RANGE_() antlr.TerminalNode { method PRECEDING_ (line 29921) | func (s *KeywordContext) PRECEDING_() antlr.TerminalNode { method UNBOUNDED_ (line 29925) | func (s *KeywordContext) UNBOUNDED_() antlr.TerminalNode { method CURRENT_ (line 29929) | func (s *KeywordContext) CURRENT_() antlr.TerminalNode { method FOLLOWING_ (line 29933) | func (s *KeywordContext) FOLLOWING_() antlr.TerminalNode { method CUME_DIST_ (line 29937) | func (s *KeywordContext) CUME_DIST_() antlr.TerminalNode { method DENSE_RANK_ (line 29941) | func (s *KeywordContext) DENSE_RANK_() antlr.TerminalNode { method LAG_ (line 29945) | func (s *KeywordContext) LAG_() antlr.TerminalNode { method LAST_VALUE_ (line 29949) | func (s *KeywordContext) LAST_VALUE_() antlr.TerminalNode { method LEAD_ (line 29953) | func (s *KeywordContext) LEAD_() antlr.TerminalNode { method NTH_VALUE_ (line 29957) | func (s *KeywordContext) NTH_VALUE_() antlr.TerminalNode { method NTILE_ (line 29961) | func (s *KeywordContext) NTILE_() antlr.TerminalNode { method PERCENT_RANK_ (line 29965) | func (s *KeywordContext) PERCENT_RANK_() antlr.TerminalNode { method RANK_ (line 29969) | func (s *KeywordContext) RANK_() antlr.TerminalNode { method ROW_NUMBER_ (line 29973) | func (s *KeywordContext) ROW_NUMBER_() antlr.TerminalNode { method GENERATED_ (line 29977) | func (s *KeywordContext) GENERATED_() antlr.TerminalNode { method ALWAYS_ (line 29981) | func (s *KeywordContext) ALWAYS_() antlr.TerminalNode { method STORED_ (line 29985) | func (s *KeywordContext) STORED_() antlr.TerminalNode { method TRUE_ (line 29989) | func (s *KeywordContext) TRUE_() antlr.TerminalNode { method FALSE_ (line 29993) | func (s *KeywordContext) FALSE_() antlr.TerminalNode { method WINDOW_ (line 29997) | func (s *KeywordContext) WINDOW_() antlr.TerminalNode { method NULLS_ (line 30001) | func (s *KeywordContext) NULLS_() antlr.TerminalNode { method FIRST_ (line 30005) | func (s *KeywordContext) FIRST_() antlr.TerminalNode { method LAST_ (line 30009) | func (s *KeywordContext) LAST_() antlr.TerminalNode { method FILTER_ (line 30013) | func (s *KeywordContext) FILTER_() antlr.TerminalNode { method GROUPS_ (line 30017) | func (s *KeywordContext) GROUPS_() antlr.TerminalNode { method EXCLUDE_ (line 30021) | func (s *KeywordContext) EXCLUDE_() antlr.TerminalNode { method GetRuleContext (line 30025) | func (s *KeywordContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 30029) | func (s *KeywordContext) ToStringTree(ruleNames []string, recog antlr.... method EnterRule (line 30033) | func (s *KeywordContext) EnterRule(listener antlr.ParseTreeListener) { method ExitRule (line 30039) | func (s *KeywordContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyKeywordContext (line 29370) | func NewEmptyKeywordContext() *KeywordContext { function InitEmptyKeywordContext (line 29377) | func InitEmptyKeywordContext(p *KeywordContext) { function NewKeywordContext (line 29384) | func NewKeywordContext(parser antlr.Parser, parent antlr.ParserRuleConte... type INameContext (line 30077) | type INameContext interface type NameContext (line 30090) | type NameContext struct method IsNameContext (line 30107) | func (*NameContext) IsNameContext() {} method GetParser (line 30120) | func (s *NameContext) GetParser() antlr.Parser { return s.parser } method Any_name (line 30122) | func (s *NameContext) Any_name() IAny_nameContext { method GetRuleContext (line 30138) | func (s *NameContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 30142) | func (s *NameContext) ToStringTree(ruleNames []string, recog antlr.Rec... method EnterRule (line 30146) | func (s *NameContext) EnterRule(listener antlr.ParseTreeListener) { method ExitRule (line 30152) | func (s *NameContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyNameContext (line 30095) | func NewEmptyNameContext() *NameContext { function InitEmptyNameContext (line 30102) | func InitEmptyNameContext(p *NameContext) { function NewNameContext (line 30109) | func NewNameContext(parser antlr.Parser, parent antlr.ParserRuleContext,... type IFunction_nameContext (line 30181) | type IFunction_nameContext interface type Function_nameContext (line 30194) | type Function_nameContext struct method IsFunction_nameContext (line 30211) | func (*Function_nameContext) IsFunction_nameContext() {} method GetParser (line 30224) | func (s *Function_nameContext) GetParser() antlr.Parser { return s.par... method Any_name (line 30226) | func (s *Function_nameContext) Any_name() IAny_nameContext { method GetRuleContext (line 30242) | func (s *Function_nameContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 30246) | func (s *Function_nameContext) ToStringTree(ruleNames []string, recog ... method EnterRule (line 30250) | func (s *Function_nameContext) EnterRule(listener antlr.ParseTreeListe... method ExitRule (line 30256) | func (s *Function_nameContext) ExitRule(listener antlr.ParseTreeListen... function NewEmptyFunction_nameContext (line 30199) | func NewEmptyFunction_nameContext() *Function_nameContext { function InitEmptyFunction_nameContext (line 30206) | func InitEmptyFunction_nameContext(p *Function_nameContext) { function NewFunction_nameContext (line 30213) | func NewFunction_nameContext(parser antlr.Parser, parent antlr.ParserRul... type IQualified_function_nameContext (line 30285) | type IQualified_function_nameContext interface type Qualified_function_nameContext (line 30300) | type Qualified_function_nameContext struct method IsQualified_function_nameContext (line 30317) | func (*Qualified_function_nameContext) IsQualified_function_nameContex... method GetParser (line 30330) | func (s *Qualified_function_nameContext) GetParser() antlr.Parser { re... method Function_name (line 30332) | func (s *Qualified_function_nameContext) Function_name() IFunction_nam... method Schema_name (line 30348) | func (s *Qualified_function_nameContext) Schema_name() ISchema_nameCon... method DOT (line 30364) | func (s *Qualified_function_nameContext) DOT() antlr.TerminalNode { method GetRuleContext (line 30368) | func (s *Qualified_function_nameContext) GetRuleContext() antlr.RuleCo... method ToStringTree (line 30372) | func (s *Qualified_function_nameContext) ToStringTree(ruleNames []stri... method EnterRule (line 30376) | func (s *Qualified_function_nameContext) EnterRule(listener antlr.Pars... method ExitRule (line 30382) | func (s *Qualified_function_nameContext) ExitRule(listener antlr.Parse... function NewEmptyQualified_function_nameContext (line 30305) | func NewEmptyQualified_function_nameContext() *Qualified_function_nameCo... function InitEmptyQualified_function_nameContext (line 30312) | func InitEmptyQualified_function_nameContext(p *Qualified_function_nameC... function NewQualified_function_nameContext (line 30319) | func NewQualified_function_nameContext(parser antlr.Parser, parent antlr... type ISchema_nameContext (line 30431) | type ISchema_nameContext interface type Schema_nameContext (line 30444) | type Schema_nameContext struct method IsSchema_nameContext (line 30461) | func (*Schema_nameContext) IsSchema_nameContext() {} method GetParser (line 30474) | func (s *Schema_nameContext) GetParser() antlr.Parser { return s.parser } method Any_name (line 30476) | func (s *Schema_nameContext) Any_name() IAny_nameContext { method GetRuleContext (line 30492) | func (s *Schema_nameContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 30496) | func (s *Schema_nameContext) ToStringTree(ruleNames []string, recog an... method EnterRule (line 30500) | func (s *Schema_nameContext) EnterRule(listener antlr.ParseTreeListene... method ExitRule (line 30506) | func (s *Schema_nameContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptySchema_nameContext (line 30449) | func NewEmptySchema_nameContext() *Schema_nameContext { function InitEmptySchema_nameContext (line 30456) | func InitEmptySchema_nameContext(p *Schema_nameContext) { function NewSchema_nameContext (line 30463) | func NewSchema_nameContext(parser antlr.Parser, parent antlr.ParserRuleC... type ITable_nameContext (line 30535) | type ITable_nameContext interface type Table_nameContext (line 30548) | type Table_nameContext struct method IsTable_nameContext (line 30565) | func (*Table_nameContext) IsTable_nameContext() {} method GetParser (line 30578) | func (s *Table_nameContext) GetParser() antlr.Parser { return s.parser } method Any_name (line 30580) | func (s *Table_nameContext) Any_name() IAny_nameContext { method GetRuleContext (line 30596) | func (s *Table_nameContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 30600) | func (s *Table_nameContext) ToStringTree(ruleNames []string, recog ant... method EnterRule (line 30604) | func (s *Table_nameContext) EnterRule(listener antlr.ParseTreeListener) { method ExitRule (line 30610) | func (s *Table_nameContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyTable_nameContext (line 30553) | func NewEmptyTable_nameContext() *Table_nameContext { function InitEmptyTable_nameContext (line 30560) | func InitEmptyTable_nameContext(p *Table_nameContext) { function NewTable_nameContext (line 30567) | func NewTable_nameContext(parser antlr.Parser, parent antlr.ParserRuleCo... type ITable_or_index_nameContext (line 30639) | type ITable_or_index_nameContext interface type Table_or_index_nameContext (line 30652) | type Table_or_index_nameContext struct method IsTable_or_index_nameContext (line 30669) | func (*Table_or_index_nameContext) IsTable_or_index_nameContext() {} method GetParser (line 30682) | func (s *Table_or_index_nameContext) GetParser() antlr.Parser { return... method Any_name (line 30684) | func (s *Table_or_index_nameContext) Any_name() IAny_nameContext { method GetRuleContext (line 30700) | func (s *Table_or_index_nameContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 30704) | func (s *Table_or_index_nameContext) ToStringTree(ruleNames []string, ... method EnterRule (line 30708) | func (s *Table_or_index_nameContext) EnterRule(listener antlr.ParseTre... method ExitRule (line 30714) | func (s *Table_or_index_nameContext) ExitRule(listener antlr.ParseTree... function NewEmptyTable_or_index_nameContext (line 30657) | func NewEmptyTable_or_index_nameContext() *Table_or_index_nameContext { function InitEmptyTable_or_index_nameContext (line 30664) | func InitEmptyTable_or_index_nameContext(p *Table_or_index_nameContext) { function NewTable_or_index_nameContext (line 30671) | func NewTable_or_index_nameContext(parser antlr.Parser, parent antlr.Par... type INew_table_nameContext (line 30743) | type INew_table_nameContext interface type New_table_nameContext (line 30756) | type New_table_nameContext struct method IsNew_table_nameContext (line 30773) | func (*New_table_nameContext) IsNew_table_nameContext() {} method GetParser (line 30786) | func (s *New_table_nameContext) GetParser() antlr.Parser { return s.pa... method Any_name (line 30788) | func (s *New_table_nameContext) Any_name() IAny_nameContext { method GetRuleContext (line 30804) | func (s *New_table_nameContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 30808) | func (s *New_table_nameContext) ToStringTree(ruleNames []string, recog... method EnterRule (line 30812) | func (s *New_table_nameContext) EnterRule(listener antlr.ParseTreeList... method ExitRule (line 30818) | func (s *New_table_nameContext) ExitRule(listener antlr.ParseTreeListe... function NewEmptyNew_table_nameContext (line 30761) | func NewEmptyNew_table_nameContext() *New_table_nameContext { function InitEmptyNew_table_nameContext (line 30768) | func InitEmptyNew_table_nameContext(p *New_table_nameContext) { function NewNew_table_nameContext (line 30775) | func NewNew_table_nameContext(parser antlr.Parser, parent antlr.ParserRu... type IColumn_nameContext (line 30847) | type IColumn_nameContext interface type Column_nameContext (line 30860) | type Column_nameContext struct method IsColumn_nameContext (line 30877) | func (*Column_nameContext) IsColumn_nameContext() {} method GetParser (line 30890) | func (s *Column_nameContext) GetParser() antlr.Parser { return s.parser } method Any_name (line 30892) | func (s *Column_nameContext) Any_name() IAny_nameContext { method GetRuleContext (line 30908) | func (s *Column_nameContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 30912) | func (s *Column_nameContext) ToStringTree(ruleNames []string, recog an... method EnterRule (line 30916) | func (s *Column_nameContext) EnterRule(listener antlr.ParseTreeListene... method ExitRule (line 30922) | func (s *Column_nameContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyColumn_nameContext (line 30865) | func NewEmptyColumn_nameContext() *Column_nameContext { function InitEmptyColumn_nameContext (line 30872) | func InitEmptyColumn_nameContext(p *Column_nameContext) { function NewColumn_nameContext (line 30879) | func NewColumn_nameContext(parser antlr.Parser, parent antlr.ParserRuleC... type ICollation_nameContext (line 30951) | type ICollation_nameContext interface type Collation_nameContext (line 30964) | type Collation_nameContext struct method IsCollation_nameContext (line 30981) | func (*Collation_nameContext) IsCollation_nameContext() {} method GetParser (line 30994) | func (s *Collation_nameContext) GetParser() antlr.Parser { return s.pa... method Any_name (line 30996) | func (s *Collation_nameContext) Any_name() IAny_nameContext { method GetRuleContext (line 31012) | func (s *Collation_nameContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 31016) | func (s *Collation_nameContext) ToStringTree(ruleNames []string, recog... method EnterRule (line 31020) | func (s *Collation_nameContext) EnterRule(listener antlr.ParseTreeList... method ExitRule (line 31026) | func (s *Collation_nameContext) ExitRule(listener antlr.ParseTreeListe... function NewEmptyCollation_nameContext (line 30969) | func NewEmptyCollation_nameContext() *Collation_nameContext { function InitEmptyCollation_nameContext (line 30976) | func InitEmptyCollation_nameContext(p *Collation_nameContext) { function NewCollation_nameContext (line 30983) | func NewCollation_nameContext(parser antlr.Parser, parent antlr.ParserRu... type IForeign_tableContext (line 31055) | type IForeign_tableContext interface type Foreign_tableContext (line 31068) | type Foreign_tableContext struct method IsForeign_tableContext (line 31085) | func (*Foreign_tableContext) IsForeign_tableContext() {} method GetParser (line 31098) | func (s *Foreign_tableContext) GetParser() antlr.Parser { return s.par... method Any_name (line 31100) | func (s *Foreign_tableContext) Any_name() IAny_nameContext { method GetRuleContext (line 31116) | func (s *Foreign_tableContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 31120) | func (s *Foreign_tableContext) ToStringTree(ruleNames []string, recog ... method EnterRule (line 31124) | func (s *Foreign_tableContext) EnterRule(listener antlr.ParseTreeListe... method ExitRule (line 31130) | func (s *Foreign_tableContext) ExitRule(listener antlr.ParseTreeListen... function NewEmptyForeign_tableContext (line 31073) | func NewEmptyForeign_tableContext() *Foreign_tableContext { function InitEmptyForeign_tableContext (line 31080) | func InitEmptyForeign_tableContext(p *Foreign_tableContext) { function NewForeign_tableContext (line 31087) | func NewForeign_tableContext(parser antlr.Parser, parent antlr.ParserRul... type IIndex_nameContext (line 31159) | type IIndex_nameContext interface type Index_nameContext (line 31172) | type Index_nameContext struct method IsIndex_nameContext (line 31189) | func (*Index_nameContext) IsIndex_nameContext() {} method GetParser (line 31202) | func (s *Index_nameContext) GetParser() antlr.Parser { return s.parser } method Any_name (line 31204) | func (s *Index_nameContext) Any_name() IAny_nameContext { method GetRuleContext (line 31220) | func (s *Index_nameContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 31224) | func (s *Index_nameContext) ToStringTree(ruleNames []string, recog ant... method EnterRule (line 31228) | func (s *Index_nameContext) EnterRule(listener antlr.ParseTreeListener) { method ExitRule (line 31234) | func (s *Index_nameContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyIndex_nameContext (line 31177) | func NewEmptyIndex_nameContext() *Index_nameContext { function InitEmptyIndex_nameContext (line 31184) | func InitEmptyIndex_nameContext(p *Index_nameContext) { function NewIndex_nameContext (line 31191) | func NewIndex_nameContext(parser antlr.Parser, parent antlr.ParserRuleCo... type ITrigger_nameContext (line 31263) | type ITrigger_nameContext interface type Trigger_nameContext (line 31276) | type Trigger_nameContext struct method IsTrigger_nameContext (line 31293) | func (*Trigger_nameContext) IsTrigger_nameContext() {} method GetParser (line 31306) | func (s *Trigger_nameContext) GetParser() antlr.Parser { return s.pars... method Any_name (line 31308) | func (s *Trigger_nameContext) Any_name() IAny_nameContext { method GetRuleContext (line 31324) | func (s *Trigger_nameContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 31328) | func (s *Trigger_nameContext) ToStringTree(ruleNames []string, recog a... method EnterRule (line 31332) | func (s *Trigger_nameContext) EnterRule(listener antlr.ParseTreeListen... method ExitRule (line 31338) | func (s *Trigger_nameContext) ExitRule(listener antlr.ParseTreeListene... function NewEmptyTrigger_nameContext (line 31281) | func NewEmptyTrigger_nameContext() *Trigger_nameContext { function InitEmptyTrigger_nameContext (line 31288) | func InitEmptyTrigger_nameContext(p *Trigger_nameContext) { function NewTrigger_nameContext (line 31295) | func NewTrigger_nameContext(parser antlr.Parser, parent antlr.ParserRule... type IView_nameContext (line 31367) | type IView_nameContext interface type View_nameContext (line 31380) | type View_nameContext struct method IsView_nameContext (line 31397) | func (*View_nameContext) IsView_nameContext() {} method GetParser (line 31410) | func (s *View_nameContext) GetParser() antlr.Parser { return s.parser } method Any_name (line 31412) | func (s *View_nameContext) Any_name() IAny_nameContext { method GetRuleContext (line 31428) | func (s *View_nameContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 31432) | func (s *View_nameContext) ToStringTree(ruleNames []string, recog antl... method EnterRule (line 31436) | func (s *View_nameContext) EnterRule(listener antlr.ParseTreeListener) { method ExitRule (line 31442) | func (s *View_nameContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyView_nameContext (line 31385) | func NewEmptyView_nameContext() *View_nameContext { function InitEmptyView_nameContext (line 31392) | func InitEmptyView_nameContext(p *View_nameContext) { function NewView_nameContext (line 31399) | func NewView_nameContext(parser antlr.Parser, parent antlr.ParserRuleCon... type IModule_nameContext (line 31471) | type IModule_nameContext interface type Module_nameContext (line 31484) | type Module_nameContext struct method IsModule_nameContext (line 31501) | func (*Module_nameContext) IsModule_nameContext() {} method GetParser (line 31514) | func (s *Module_nameContext) GetParser() antlr.Parser { return s.parser } method Any_name (line 31516) | func (s *Module_nameContext) Any_name() IAny_nameContext { method GetRuleContext (line 31532) | func (s *Module_nameContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 31536) | func (s *Module_nameContext) ToStringTree(ruleNames []string, recog an... method EnterRule (line 31540) | func (s *Module_nameContext) EnterRule(listener antlr.ParseTreeListene... method ExitRule (line 31546) | func (s *Module_nameContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyModule_nameContext (line 31489) | func NewEmptyModule_nameContext() *Module_nameContext { function InitEmptyModule_nameContext (line 31496) | func InitEmptyModule_nameContext(p *Module_nameContext) { function NewModule_nameContext (line 31503) | func NewModule_nameContext(parser antlr.Parser, parent antlr.ParserRuleC... type IPragma_nameContext (line 31575) | type IPragma_nameContext interface type Pragma_nameContext (line 31588) | type Pragma_nameContext struct method IsPragma_nameContext (line 31605) | func (*Pragma_nameContext) IsPragma_nameContext() {} method GetParser (line 31618) | func (s *Pragma_nameContext) GetParser() antlr.Parser { return s.parser } method Any_name (line 31620) | func (s *Pragma_nameContext) Any_name() IAny_nameContext { method GetRuleContext (line 31636) | func (s *Pragma_nameContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 31640) | func (s *Pragma_nameContext) ToStringTree(ruleNames []string, recog an... method EnterRule (line 31644) | func (s *Pragma_nameContext) EnterRule(listener antlr.ParseTreeListene... method ExitRule (line 31650) | func (s *Pragma_nameContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyPragma_nameContext (line 31593) | func NewEmptyPragma_nameContext() *Pragma_nameContext { function InitEmptyPragma_nameContext (line 31600) | func InitEmptyPragma_nameContext(p *Pragma_nameContext) { function NewPragma_nameContext (line 31607) | func NewPragma_nameContext(parser antlr.Parser, parent antlr.ParserRuleC... type ISavepoint_nameContext (line 31679) | type ISavepoint_nameContext interface type Savepoint_nameContext (line 31692) | type Savepoint_nameContext struct method IsSavepoint_nameContext (line 31709) | func (*Savepoint_nameContext) IsSavepoint_nameContext() {} method GetParser (line 31722) | func (s *Savepoint_nameContext) GetParser() antlr.Parser { return s.pa... method Any_name (line 31724) | func (s *Savepoint_nameContext) Any_name() IAny_nameContext { method GetRuleContext (line 31740) | func (s *Savepoint_nameContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 31744) | func (s *Savepoint_nameContext) ToStringTree(ruleNames []string, recog... method EnterRule (line 31748) | func (s *Savepoint_nameContext) EnterRule(listener antlr.ParseTreeList... method ExitRule (line 31754) | func (s *Savepoint_nameContext) ExitRule(listener antlr.ParseTreeListe... function NewEmptySavepoint_nameContext (line 31697) | func NewEmptySavepoint_nameContext() *Savepoint_nameContext { function InitEmptySavepoint_nameContext (line 31704) | func InitEmptySavepoint_nameContext(p *Savepoint_nameContext) { function NewSavepoint_nameContext (line 31711) | func NewSavepoint_nameContext(parser antlr.Parser, parent antlr.ParserRu... type ITable_aliasContext (line 31783) | type ITable_aliasContext interface type Table_aliasContext (line 31797) | type Table_aliasContext struct method IsTable_aliasContext (line 31814) | func (*Table_aliasContext) IsTable_aliasContext() {} method GetParser (line 31827) | func (s *Table_aliasContext) GetParser() antlr.Parser { return s.parser } method IDENTIFIER (line 31829) | func (s *Table_aliasContext) IDENTIFIER() antlr.TerminalNode { method STRING_LITERAL (line 31833) | func (s *Table_aliasContext) STRING_LITERAL() antlr.TerminalNode { method GetRuleContext (line 31837) | func (s *Table_aliasContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 31841) | func (s *Table_aliasContext) ToStringTree(ruleNames []string, recog an... method EnterRule (line 31845) | func (s *Table_aliasContext) EnterRule(listener antlr.ParseTreeListene... method ExitRule (line 31851) | func (s *Table_aliasContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyTable_aliasContext (line 31802) | func NewEmptyTable_aliasContext() *Table_aliasContext { function InitEmptyTable_aliasContext (line 31809) | func InitEmptyTable_aliasContext(p *Table_aliasContext) { function NewTable_aliasContext (line 31816) | func NewTable_aliasContext(parser antlr.Parser, parent antlr.ParserRuleC... type ITable_alias_fallbackContext (line 31889) | type ITable_alias_fallbackContext interface type Table_alias_fallbackContext (line 31902) | type Table_alias_fallbackContext struct method IsTable_alias_fallbackContext (line 31919) | func (*Table_alias_fallbackContext) IsTable_alias_fallbackContext() {} method GetParser (line 31932) | func (s *Table_alias_fallbackContext) GetParser() antlr.Parser { retur... method Any_name (line 31934) | func (s *Table_alias_fallbackContext) Any_name() IAny_nameContext { method GetRuleContext (line 31950) | func (s *Table_alias_fallbackContext) GetRuleContext() antlr.RuleConte... method ToStringTree (line 31954) | func (s *Table_alias_fallbackContext) ToStringTree(ruleNames []string,... method EnterRule (line 31958) | func (s *Table_alias_fallbackContext) EnterRule(listener antlr.ParseTr... method ExitRule (line 31964) | func (s *Table_alias_fallbackContext) ExitRule(listener antlr.ParseTre... function NewEmptyTable_alias_fallbackContext (line 31907) | func NewEmptyTable_alias_fallbackContext() *Table_alias_fallbackContext { function InitEmptyTable_alias_fallbackContext (line 31914) | func InitEmptyTable_alias_fallbackContext(p *Table_alias_fallbackContext) { function NewTable_alias_fallbackContext (line 31921) | func NewTable_alias_fallbackContext(parser antlr.Parser, parent antlr.Pa... type ITransaction_nameContext (line 31993) | type ITransaction_nameContext interface type Transaction_nameContext (line 32006) | type Transaction_nameContext struct method IsTransaction_nameContext (line 32023) | func (*Transaction_nameContext) IsTransaction_nameContext() {} method GetParser (line 32036) | func (s *Transaction_nameContext) GetParser() antlr.Parser { return s.... method Any_name (line 32038) | func (s *Transaction_nameContext) Any_name() IAny_nameContext { method GetRuleContext (line 32054) | func (s *Transaction_nameContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 32058) | func (s *Transaction_nameContext) ToStringTree(ruleNames []string, rec... method EnterRule (line 32062) | func (s *Transaction_nameContext) EnterRule(listener antlr.ParseTreeLi... method ExitRule (line 32068) | func (s *Transaction_nameContext) ExitRule(listener antlr.ParseTreeLis... function NewEmptyTransaction_nameContext (line 32011) | func NewEmptyTransaction_nameContext() *Transaction_nameContext { function InitEmptyTransaction_nameContext (line 32018) | func InitEmptyTransaction_nameContext(p *Transaction_nameContext) { function NewTransaction_nameContext (line 32025) | func NewTransaction_nameContext(parser antlr.Parser, parent antlr.Parser... type IWindow_nameContext (line 32097) | type IWindow_nameContext interface type Window_nameContext (line 32110) | type Window_nameContext struct method IsWindow_nameContext (line 32127) | func (*Window_nameContext) IsWindow_nameContext() {} method GetParser (line 32140) | func (s *Window_nameContext) GetParser() antlr.Parser { return s.parser } method Any_name (line 32142) | func (s *Window_nameContext) Any_name() IAny_nameContext { method GetRuleContext (line 32158) | func (s *Window_nameContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 32162) | func (s *Window_nameContext) ToStringTree(ruleNames []string, recog an... method EnterRule (line 32166) | func (s *Window_nameContext) EnterRule(listener antlr.ParseTreeListene... method ExitRule (line 32172) | func (s *Window_nameContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyWindow_nameContext (line 32115) | func NewEmptyWindow_nameContext() *Window_nameContext { function InitEmptyWindow_nameContext (line 32122) | func InitEmptyWindow_nameContext(p *Window_nameContext) { function NewWindow_nameContext (line 32129) | func NewWindow_nameContext(parser antlr.Parser, parent antlr.ParserRuleC... type IAliasContext (line 32201) | type IAliasContext interface type AliasContext (line 32214) | type AliasContext struct method IsAliasContext (line 32231) | func (*AliasContext) IsAliasContext() {} method GetParser (line 32244) | func (s *AliasContext) GetParser() antlr.Parser { return s.parser } method Any_name (line 32246) | func (s *AliasContext) Any_name() IAny_nameContext { method GetRuleContext (line 32262) | func (s *AliasContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 32266) | func (s *AliasContext) ToStringTree(ruleNames []string, recog antlr.Re... method EnterRule (line 32270) | func (s *AliasContext) EnterRule(listener antlr.ParseTreeListener) { method ExitRule (line 32276) | func (s *AliasContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyAliasContext (line 32219) | func NewEmptyAliasContext() *AliasContext { function InitEmptyAliasContext (line 32226) | func InitEmptyAliasContext(p *AliasContext) { function NewAliasContext (line 32233) | func NewAliasContext(parser antlr.Parser, parent antlr.ParserRuleContext... type IFilenameContext (line 32305) | type IFilenameContext interface type FilenameContext (line 32318) | type FilenameContext struct method IsFilenameContext (line 32335) | func (*FilenameContext) IsFilenameContext() {} method GetParser (line 32348) | func (s *FilenameContext) GetParser() antlr.Parser { return s.parser } method Any_name (line 32350) | func (s *FilenameContext) Any_name() IAny_nameContext { method GetRuleContext (line 32366) | func (s *FilenameContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 32370) | func (s *FilenameContext) ToStringTree(ruleNames []string, recog antlr... method EnterRule (line 32374) | func (s *FilenameContext) EnterRule(listener antlr.ParseTreeListener) { method ExitRule (line 32380) | func (s *FilenameContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyFilenameContext (line 32323) | func NewEmptyFilenameContext() *FilenameContext { function InitEmptyFilenameContext (line 32330) | func InitEmptyFilenameContext(p *FilenameContext) { function NewFilenameContext (line 32337) | func NewFilenameContext(parser antlr.Parser, parent antlr.ParserRuleCont... type IBase_window_nameContext (line 32409) | type IBase_window_nameContext interface type Base_window_nameContext (line 32422) | type Base_window_nameContext struct method IsBase_window_nameContext (line 32439) | func (*Base_window_nameContext) IsBase_window_nameContext() {} method GetParser (line 32452) | func (s *Base_window_nameContext) GetParser() antlr.Parser { return s.... method Any_name (line 32454) | func (s *Base_window_nameContext) Any_name() IAny_nameContext { method GetRuleContext (line 32470) | func (s *Base_window_nameContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 32474) | func (s *Base_window_nameContext) ToStringTree(ruleNames []string, rec... method EnterRule (line 32478) | func (s *Base_window_nameContext) EnterRule(listener antlr.ParseTreeLi... method ExitRule (line 32484) | func (s *Base_window_nameContext) ExitRule(listener antlr.ParseTreeLis... function NewEmptyBase_window_nameContext (line 32427) | func NewEmptyBase_window_nameContext() *Base_window_nameContext { function InitEmptyBase_window_nameContext (line 32434) | func InitEmptyBase_window_nameContext(p *Base_window_nameContext) { function NewBase_window_nameContext (line 32441) | func NewBase_window_nameContext(parser antlr.Parser, parent antlr.Parser... type ISimple_funcContext (line 32513) | type ISimple_funcContext interface type Simple_funcContext (line 32526) | type Simple_funcContext struct method IsSimple_funcContext (line 32543) | func (*Simple_funcContext) IsSimple_funcContext() {} method GetParser (line 32556) | func (s *Simple_funcContext) GetParser() antlr.Parser { return s.parser } method Any_name (line 32558) | func (s *Simple_funcContext) Any_name() IAny_nameContext { method GetRuleContext (line 32574) | func (s *Simple_funcContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 32578) | func (s *Simple_funcContext) ToStringTree(ruleNames []string, recog an... method EnterRule (line 32582) | func (s *Simple_funcContext) EnterRule(listener antlr.ParseTreeListene... method ExitRule (line 32588) | func (s *Simple_funcContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptySimple_funcContext (line 32531) | func NewEmptySimple_funcContext() *Simple_funcContext { function InitEmptySimple_funcContext (line 32538) | func InitEmptySimple_funcContext(p *Simple_funcContext) { function NewSimple_funcContext (line 32545) | func NewSimple_funcContext(parser antlr.Parser, parent antlr.ParserRuleC... type IAggregate_funcContext (line 32617) | type IAggregate_funcContext interface type Aggregate_funcContext (line 32630) | type Aggregate_funcContext struct method IsAggregate_funcContext (line 32647) | func (*Aggregate_funcContext) IsAggregate_funcContext() {} method GetParser (line 32660) | func (s *Aggregate_funcContext) GetParser() antlr.Parser { return s.pa... method Any_name (line 32662) | func (s *Aggregate_funcContext) Any_name() IAny_nameContext { method GetRuleContext (line 32678) | func (s *Aggregate_funcContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 32682) | func (s *Aggregate_funcContext) ToStringTree(ruleNames []string, recog... method EnterRule (line 32686) | func (s *Aggregate_funcContext) EnterRule(listener antlr.ParseTreeList... method ExitRule (line 32692) | func (s *Aggregate_funcContext) ExitRule(listener antlr.ParseTreeListe... function NewEmptyAggregate_funcContext (line 32635) | func NewEmptyAggregate_funcContext() *Aggregate_funcContext { function InitEmptyAggregate_funcContext (line 32642) | func InitEmptyAggregate_funcContext(p *Aggregate_funcContext) { function NewAggregate_funcContext (line 32649) | func NewAggregate_funcContext(parser antlr.Parser, parent antlr.ParserRu... type ITable_function_nameContext (line 32721) | type ITable_function_nameContext interface type Table_function_nameContext (line 32734) | type Table_function_nameContext struct method IsTable_function_nameContext (line 32751) | func (*Table_function_nameContext) IsTable_function_nameContext() {} method GetParser (line 32764) | func (s *Table_function_nameContext) GetParser() antlr.Parser { return... method Any_name (line 32766) | func (s *Table_function_nameContext) Any_name() IAny_nameContext { method GetRuleContext (line 32782) | func (s *Table_function_nameContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 32786) | func (s *Table_function_nameContext) ToStringTree(ruleNames []string, ... method EnterRule (line 32790) | func (s *Table_function_nameContext) EnterRule(listener antlr.ParseTre... method ExitRule (line 32796) | func (s *Table_function_nameContext) ExitRule(listener antlr.ParseTree... function NewEmptyTable_function_nameContext (line 32739) | func NewEmptyTable_function_nameContext() *Table_function_nameContext { function InitEmptyTable_function_nameContext (line 32746) | func InitEmptyTable_function_nameContext(p *Table_function_nameContext) { function NewTable_function_nameContext (line 32753) | func NewTable_function_nameContext(parser antlr.Parser, parent antlr.Par... type IAny_nameContext (line 32825) | type IAny_nameContext interface type Any_nameContext (line 32843) | type Any_nameContext struct method IsAny_nameContext (line 32860) | func (*Any_nameContext) IsAny_nameContext() {} method GetParser (line 32873) | func (s *Any_nameContext) GetParser() antlr.Parser { return s.parser } method IDENTIFIER (line 32875) | func (s *Any_nameContext) IDENTIFIER() antlr.TerminalNode { method Keyword (line 32879) | func (s *Any_nameContext) Keyword() IKeywordContext { method STRING_LITERAL (line 32895) | func (s *Any_nameContext) STRING_LITERAL() antlr.TerminalNode { method OPEN_PAR (line 32899) | func (s *Any_nameContext) OPEN_PAR() antlr.TerminalNode { method Any_name (line 32903) | func (s *Any_nameContext) Any_name() IAny_nameContext { method CLOSE_PAR (line 32919) | func (s *Any_nameContext) CLOSE_PAR() antlr.TerminalNode { method GetRuleContext (line 32923) | func (s *Any_nameContext) GetRuleContext() antlr.RuleContext { method ToStringTree (line 32927) | func (s *Any_nameContext) ToStringTree(ruleNames []string, recog antlr... method EnterRule (line 32931) | func (s *Any_nameContext) EnterRule(listener antlr.ParseTreeListener) { method ExitRule (line 32937) | func (s *Any_nameContext) ExitRule(listener antlr.ParseTreeListener) { function NewEmptyAny_nameContext (line 32848) | func NewEmptyAny_nameContext() *Any_nameContext { function InitEmptyAny_nameContext (line 32855) | func InitEmptyAny_nameContext(p *Any_nameContext) { function NewAny_nameContext (line 32862) | func NewAny_nameContext(parser antlr.Parser, parent antlr.ParserRuleCont... FILE: internal/engine/sqlite/parser/sqliteparser_base_listener.go type BaseSQLiteParserListener (line 8) | type BaseSQLiteParserListener struct method VisitTerminal (line 13) | func (s *BaseSQLiteParserListener) VisitTerminal(node antlr.TerminalNo... method VisitErrorNode (line 16) | func (s *BaseSQLiteParserListener) VisitErrorNode(node antlr.ErrorNode... method EnterEveryRule (line 19) | func (s *BaseSQLiteParserListener) EnterEveryRule(ctx antlr.ParserRule... method ExitEveryRule (line 22) | func (s *BaseSQLiteParserListener) ExitEveryRule(ctx antlr.ParserRuleC... method EnterParse (line 25) | func (s *BaseSQLiteParserListener) EnterParse(ctx *ParseContext) {} method ExitParse (line 28) | func (s *BaseSQLiteParserListener) ExitParse(ctx *ParseContext) {} method EnterSql_stmt_list (line 31) | func (s *BaseSQLiteParserListener) EnterSql_stmt_list(ctx *Sql_stmt_li... method ExitSql_stmt_list (line 34) | func (s *BaseSQLiteParserListener) ExitSql_stmt_list(ctx *Sql_stmt_lis... method EnterSql_stmt (line 37) | func (s *BaseSQLiteParserListener) EnterSql_stmt(ctx *Sql_stmtContext) {} method ExitSql_stmt (line 40) | func (s *BaseSQLiteParserListener) ExitSql_stmt(ctx *Sql_stmtContext) {} method EnterAlter_table_stmt (line 43) | func (s *BaseSQLiteParserListener) EnterAlter_table_stmt(ctx *Alter_ta... method ExitAlter_table_stmt (line 46) | func (s *BaseSQLiteParserListener) ExitAlter_table_stmt(ctx *Alter_tab... method EnterAnalyze_stmt (line 49) | func (s *BaseSQLiteParserListener) EnterAnalyze_stmt(ctx *Analyze_stmt... method ExitAnalyze_stmt (line 52) | func (s *BaseSQLiteParserListener) ExitAnalyze_stmt(ctx *Analyze_stmtC... method EnterAttach_stmt (line 55) | func (s *BaseSQLiteParserListener) EnterAttach_stmt(ctx *Attach_stmtCo... method ExitAttach_stmt (line 58) | func (s *BaseSQLiteParserListener) ExitAttach_stmt(ctx *Attach_stmtCon... method EnterBegin_stmt (line 61) | func (s *BaseSQLiteParserListener) EnterBegin_stmt(ctx *Begin_stmtCont... method ExitBegin_stmt (line 64) | func (s *BaseSQLiteParserListener) ExitBegin_stmt(ctx *Begin_stmtConte... method EnterCommit_stmt (line 67) | func (s *BaseSQLiteParserListener) EnterCommit_stmt(ctx *Commit_stmtCo... method ExitCommit_stmt (line 70) | func (s *BaseSQLiteParserListener) ExitCommit_stmt(ctx *Commit_stmtCon... method EnterRollback_stmt (line 73) | func (s *BaseSQLiteParserListener) EnterRollback_stmt(ctx *Rollback_st... method ExitRollback_stmt (line 76) | func (s *BaseSQLiteParserListener) ExitRollback_stmt(ctx *Rollback_stm... method EnterSavepoint_stmt (line 79) | func (s *BaseSQLiteParserListener) EnterSavepoint_stmt(ctx *Savepoint_... method ExitSavepoint_stmt (line 82) | func (s *BaseSQLiteParserListener) ExitSavepoint_stmt(ctx *Savepoint_s... method EnterRelease_stmt (line 85) | func (s *BaseSQLiteParserListener) EnterRelease_stmt(ctx *Release_stmt... method ExitRelease_stmt (line 88) | func (s *BaseSQLiteParserListener) ExitRelease_stmt(ctx *Release_stmtC... method EnterCreate_index_stmt (line 91) | func (s *BaseSQLiteParserListener) EnterCreate_index_stmt(ctx *Create_... method ExitCreate_index_stmt (line 94) | func (s *BaseSQLiteParserListener) ExitCreate_index_stmt(ctx *Create_i... method EnterIndexed_column (line 97) | func (s *BaseSQLiteParserListener) EnterIndexed_column(ctx *Indexed_co... method ExitIndexed_column (line 100) | func (s *BaseSQLiteParserListener) ExitIndexed_column(ctx *Indexed_col... method EnterTable_option (line 103) | func (s *BaseSQLiteParserListener) EnterTable_option(ctx *Table_option... method ExitTable_option (line 106) | func (s *BaseSQLiteParserListener) ExitTable_option(ctx *Table_optionC... method EnterCreate_table_stmt (line 109) | func (s *BaseSQLiteParserListener) EnterCreate_table_stmt(ctx *Create_... method ExitCreate_table_stmt (line 112) | func (s *BaseSQLiteParserListener) ExitCreate_table_stmt(ctx *Create_t... method EnterColumn_def (line 115) | func (s *BaseSQLiteParserListener) EnterColumn_def(ctx *Column_defCont... method ExitColumn_def (line 118) | func (s *BaseSQLiteParserListener) ExitColumn_def(ctx *Column_defConte... method EnterType_name (line 121) | func (s *BaseSQLiteParserListener) EnterType_name(ctx *Type_nameContex... method ExitType_name (line 124) | func (s *BaseSQLiteParserListener) ExitType_name(ctx *Type_nameContext... method EnterColumn_constraint (line 127) | func (s *BaseSQLiteParserListener) EnterColumn_constraint(ctx *Column_... method ExitColumn_constraint (line 130) | func (s *BaseSQLiteParserListener) ExitColumn_constraint(ctx *Column_c... method EnterSigned_number (line 133) | func (s *BaseSQLiteParserListener) EnterSigned_number(ctx *Signed_numb... method ExitSigned_number (line 136) | func (s *BaseSQLiteParserListener) ExitSigned_number(ctx *Signed_numbe... method EnterTable_constraint (line 139) | func (s *BaseSQLiteParserListener) EnterTable_constraint(ctx *Table_co... method ExitTable_constraint (line 142) | func (s *BaseSQLiteParserListener) ExitTable_constraint(ctx *Table_con... method EnterForeign_key_clause (line 145) | func (s *BaseSQLiteParserListener) EnterForeign_key_clause(ctx *Foreig... method ExitForeign_key_clause (line 148) | func (s *BaseSQLiteParserListener) ExitForeign_key_clause(ctx *Foreign... method EnterConflict_clause (line 151) | func (s *BaseSQLiteParserListener) EnterConflict_clause(ctx *Conflict_... method ExitConflict_clause (line 154) | func (s *BaseSQLiteParserListener) ExitConflict_clause(ctx *Conflict_c... method EnterCreate_trigger_stmt (line 157) | func (s *BaseSQLiteParserListener) EnterCreate_trigger_stmt(ctx *Creat... method ExitCreate_trigger_stmt (line 160) | func (s *BaseSQLiteParserListener) ExitCreate_trigger_stmt(ctx *Create... method EnterCreate_view_stmt (line 163) | func (s *BaseSQLiteParserListener) EnterCreate_view_stmt(ctx *Create_v... method ExitCreate_view_stmt (line 166) | func (s *BaseSQLiteParserListener) ExitCreate_view_stmt(ctx *Create_vi... method EnterCreate_virtual_table_stmt (line 169) | func (s *BaseSQLiteParserListener) EnterCreate_virtual_table_stmt(ctx ... method ExitCreate_virtual_table_stmt (line 173) | func (s *BaseSQLiteParserListener) ExitCreate_virtual_table_stmt(ctx *... method EnterWith_clause (line 177) | func (s *BaseSQLiteParserListener) EnterWith_clause(ctx *With_clauseCo... method ExitWith_clause (line 180) | func (s *BaseSQLiteParserListener) ExitWith_clause(ctx *With_clauseCon... method EnterCte_table_name (line 183) | func (s *BaseSQLiteParserListener) EnterCte_table_name(ctx *Cte_table_... method ExitCte_table_name (line 186) | func (s *BaseSQLiteParserListener) ExitCte_table_name(ctx *Cte_table_n... method EnterRecursive_cte (line 189) | func (s *BaseSQLiteParserListener) EnterRecursive_cte(ctx *Recursive_c... method ExitRecursive_cte (line 192) | func (s *BaseSQLiteParserListener) ExitRecursive_cte(ctx *Recursive_ct... method EnterCommon_table_expression (line 195) | func (s *BaseSQLiteParserListener) EnterCommon_table_expression(ctx *C... method ExitCommon_table_expression (line 199) | func (s *BaseSQLiteParserListener) ExitCommon_table_expression(ctx *Co... method EnterReturning_clause (line 202) | func (s *BaseSQLiteParserListener) EnterReturning_clause(ctx *Returnin... method ExitReturning_clause (line 205) | func (s *BaseSQLiteParserListener) ExitReturning_clause(ctx *Returning... method EnterDelete_stmt (line 208) | func (s *BaseSQLiteParserListener) EnterDelete_stmt(ctx *Delete_stmtCo... method ExitDelete_stmt (line 211) | func (s *BaseSQLiteParserListener) ExitDelete_stmt(ctx *Delete_stmtCon... method EnterDelete_stmt_limited (line 214) | func (s *BaseSQLiteParserListener) EnterDelete_stmt_limited(ctx *Delet... method ExitDelete_stmt_limited (line 217) | func (s *BaseSQLiteParserListener) ExitDelete_stmt_limited(ctx *Delete... method EnterDetach_stmt (line 220) | func (s *BaseSQLiteParserListener) EnterDetach_stmt(ctx *Detach_stmtCo... method ExitDetach_stmt (line 223) | func (s *BaseSQLiteParserListener) ExitDetach_stmt(ctx *Detach_stmtCon... method EnterDrop_stmt (line 226) | func (s *BaseSQLiteParserListener) EnterDrop_stmt(ctx *Drop_stmtContex... method ExitDrop_stmt (line 229) | func (s *BaseSQLiteParserListener) ExitDrop_stmt(ctx *Drop_stmtContext... method EnterExpr_case (line 232) | func (s *BaseSQLiteParserListener) EnterExpr_case(ctx *Expr_caseContex... method ExitExpr_case (line 235) | func (s *BaseSQLiteParserListener) ExitExpr_case(ctx *Expr_caseContext... method EnterExpr_raise (line 238) | func (s *BaseSQLiteParserListener) EnterExpr_raise(ctx *Expr_raiseCont... method ExitExpr_raise (line 241) | func (s *BaseSQLiteParserListener) ExitExpr_raise(ctx *Expr_raiseConte... method EnterExpr_function (line 244) | func (s *BaseSQLiteParserListener) EnterExpr_function(ctx *Expr_functi... method ExitExpr_function (line 247) | func (s *BaseSQLiteParserListener) ExitExpr_function(ctx *Expr_functio... method EnterExpr_comparison (line 250) | func (s *BaseSQLiteParserListener) EnterExpr_comparison(ctx *Expr_comp... method ExitExpr_comparison (line 253) | func (s *BaseSQLiteParserListener) ExitExpr_comparison(ctx *Expr_compa... method EnterExpr_bool (line 256) | func (s *BaseSQLiteParserListener) EnterExpr_bool(ctx *Expr_boolContex... method ExitExpr_bool (line 259) | func (s *BaseSQLiteParserListener) ExitExpr_bool(ctx *Expr_boolContext... method EnterExpr_binary (line 262) | func (s *BaseSQLiteParserListener) EnterExpr_binary(ctx *Expr_binaryCo... method ExitExpr_binary (line 265) | func (s *BaseSQLiteParserListener) ExitExpr_binary(ctx *Expr_binaryCon... method EnterExpr_literal (line 268) | func (s *BaseSQLiteParserListener) EnterExpr_literal(ctx *Expr_literal... method ExitExpr_literal (line 271) | func (s *BaseSQLiteParserListener) ExitExpr_literal(ctx *Expr_literalC... method EnterExpr_cast (line 274) | func (s *BaseSQLiteParserListener) EnterExpr_cast(ctx *Expr_castContex... method ExitExpr_cast (line 277) | func (s *BaseSQLiteParserListener) ExitExpr_cast(ctx *Expr_castContext... method EnterExpr_in_select (line 280) | func (s *BaseSQLiteParserListener) EnterExpr_in_select(ctx *Expr_in_se... method ExitExpr_in_select (line 283) | func (s *BaseSQLiteParserListener) ExitExpr_in_select(ctx *Expr_in_sel... method EnterExpr_list (line 286) | func (s *BaseSQLiteParserListener) EnterExpr_list(ctx *Expr_listContex... method ExitExpr_list (line 289) | func (s *BaseSQLiteParserListener) ExitExpr_list(ctx *Expr_listContext... method EnterExpr_between (line 292) | func (s *BaseSQLiteParserListener) EnterExpr_between(ctx *Expr_between... method ExitExpr_between (line 295) | func (s *BaseSQLiteParserListener) ExitExpr_between(ctx *Expr_betweenC... method EnterExpr_collate (line 298) | func (s *BaseSQLiteParserListener) EnterExpr_collate(ctx *Expr_collate... method ExitExpr_collate (line 301) | func (s *BaseSQLiteParserListener) ExitExpr_collate(ctx *Expr_collateC... method EnterExpr_qualified_column_name (line 304) | func (s *BaseSQLiteParserListener) EnterExpr_qualified_column_name(ctx... method ExitExpr_qualified_column_name (line 308) | func (s *BaseSQLiteParserListener) ExitExpr_qualified_column_name(ctx ... method EnterExpr_unary (line 312) | func (s *BaseSQLiteParserListener) EnterExpr_unary(ctx *Expr_unaryCont... method ExitExpr_unary (line 315) | func (s *BaseSQLiteParserListener) ExitExpr_unary(ctx *Expr_unaryConte... method EnterExpr_null_comp (line 318) | func (s *BaseSQLiteParserListener) EnterExpr_null_comp(ctx *Expr_null_... method ExitExpr_null_comp (line 321) | func (s *BaseSQLiteParserListener) ExitExpr_null_comp(ctx *Expr_null_c... method EnterExpr_bind (line 324) | func (s *BaseSQLiteParserListener) EnterExpr_bind(ctx *Expr_bindContex... method ExitExpr_bind (line 327) | func (s *BaseSQLiteParserListener) ExitExpr_bind(ctx *Expr_bindContext... method EnterRaise_function (line 330) | func (s *BaseSQLiteParserListener) EnterRaise_function(ctx *Raise_func... method ExitRaise_function (line 333) | func (s *BaseSQLiteParserListener) ExitRaise_function(ctx *Raise_funct... method EnterLiteral_value (line 336) | func (s *BaseSQLiteParserListener) EnterLiteral_value(ctx *Literal_val... method ExitLiteral_value (line 339) | func (s *BaseSQLiteParserListener) ExitLiteral_value(ctx *Literal_valu... method EnterInsert_stmt (line 342) | func (s *BaseSQLiteParserListener) EnterInsert_stmt(ctx *Insert_stmtCo... method ExitInsert_stmt (line 345) | func (s *BaseSQLiteParserListener) ExitInsert_stmt(ctx *Insert_stmtCon... method EnterUpsert_clause (line 348) | func (s *BaseSQLiteParserListener) EnterUpsert_clause(ctx *Upsert_clau... method ExitUpsert_clause (line 351) | func (s *BaseSQLiteParserListener) ExitUpsert_clause(ctx *Upsert_claus... method EnterPragma_stmt (line 354) | func (s *BaseSQLiteParserListener) EnterPragma_stmt(ctx *Pragma_stmtCo... method ExitPragma_stmt (line 357) | func (s *BaseSQLiteParserListener) ExitPragma_stmt(ctx *Pragma_stmtCon... method EnterPragma_value (line 360) | func (s *BaseSQLiteParserListener) EnterPragma_value(ctx *Pragma_value... method ExitPragma_value (line 363) | func (s *BaseSQLiteParserListener) ExitPragma_value(ctx *Pragma_valueC... method EnterReindex_stmt (line 366) | func (s *BaseSQLiteParserListener) EnterReindex_stmt(ctx *Reindex_stmt... method ExitReindex_stmt (line 369) | func (s *BaseSQLiteParserListener) ExitReindex_stmt(ctx *Reindex_stmtC... method EnterSelect_stmt (line 372) | func (s *BaseSQLiteParserListener) EnterSelect_stmt(ctx *Select_stmtCo... method ExitSelect_stmt (line 375) | func (s *BaseSQLiteParserListener) ExitSelect_stmt(ctx *Select_stmtCon... method EnterJoin_clause (line 378) | func (s *BaseSQLiteParserListener) EnterJoin_clause(ctx *Join_clauseCo... method ExitJoin_clause (line 381) | func (s *BaseSQLiteParserListener) ExitJoin_clause(ctx *Join_clauseCon... method EnterSelect_core (line 384) | func (s *BaseSQLiteParserListener) EnterSelect_core(ctx *Select_coreCo... method ExitSelect_core (line 387) | func (s *BaseSQLiteParserListener) ExitSelect_core(ctx *Select_coreCon... method EnterFactored_select_stmt (line 390) | func (s *BaseSQLiteParserListener) EnterFactored_select_stmt(ctx *Fact... method ExitFactored_select_stmt (line 393) | func (s *BaseSQLiteParserListener) ExitFactored_select_stmt(ctx *Facto... method EnterSimple_select_stmt (line 396) | func (s *BaseSQLiteParserListener) EnterSimple_select_stmt(ctx *Simple... method ExitSimple_select_stmt (line 399) | func (s *BaseSQLiteParserListener) ExitSimple_select_stmt(ctx *Simple_... method EnterCompound_select_stmt (line 402) | func (s *BaseSQLiteParserListener) EnterCompound_select_stmt(ctx *Comp... method ExitCompound_select_stmt (line 405) | func (s *BaseSQLiteParserListener) ExitCompound_select_stmt(ctx *Compo... method EnterTable_or_subquery (line 408) | func (s *BaseSQLiteParserListener) EnterTable_or_subquery(ctx *Table_o... method ExitTable_or_subquery (line 411) | func (s *BaseSQLiteParserListener) ExitTable_or_subquery(ctx *Table_or... method EnterResult_column (line 414) | func (s *BaseSQLiteParserListener) EnterResult_column(ctx *Result_colu... method ExitResult_column (line 417) | func (s *BaseSQLiteParserListener) ExitResult_column(ctx *Result_colum... method EnterJoin_operator (line 420) | func (s *BaseSQLiteParserListener) EnterJoin_operator(ctx *Join_operat... method ExitJoin_operator (line 423) | func (s *BaseSQLiteParserListener) ExitJoin_operator(ctx *Join_operato... method EnterJoin_constraint (line 426) | func (s *BaseSQLiteParserListener) EnterJoin_constraint(ctx *Join_cons... method ExitJoin_constraint (line 429) | func (s *BaseSQLiteParserListener) ExitJoin_constraint(ctx *Join_const... method EnterCompound_operator (line 432) | func (s *BaseSQLiteParserListener) EnterCompound_operator(ctx *Compoun... method ExitCompound_operator (line 435) | func (s *BaseSQLiteParserListener) ExitCompound_operator(ctx *Compound... method EnterUpdate_stmt (line 438) | func (s *BaseSQLiteParserListener) EnterUpdate_stmt(ctx *Update_stmtCo... method ExitUpdate_stmt (line 441) | func (s *BaseSQLiteParserListener) ExitUpdate_stmt(ctx *Update_stmtCon... method EnterColumn_name_list (line 444) | func (s *BaseSQLiteParserListener) EnterColumn_name_list(ctx *Column_n... method ExitColumn_name_list (line 447) | func (s *BaseSQLiteParserListener) ExitColumn_name_list(ctx *Column_na... method EnterUpdate_stmt_limited (line 450) | func (s *BaseSQLiteParserListener) EnterUpdate_stmt_limited(ctx *Updat... method ExitUpdate_stmt_limited (line 453) | func (s *BaseSQLiteParserListener) ExitUpdate_stmt_limited(ctx *Update... method EnterQualified_table_name (line 456) | func (s *BaseSQLiteParserListener) EnterQualified_table_name(ctx *Qual... method ExitQualified_table_name (line 459) | func (s *BaseSQLiteParserListener) ExitQualified_table_name(ctx *Quali... method EnterVacuum_stmt (line 462) | func (s *BaseSQLiteParserListener) EnterVacuum_stmt(ctx *Vacuum_stmtCo... method ExitVacuum_stmt (line 465) | func (s *BaseSQLiteParserListener) ExitVacuum_stmt(ctx *Vacuum_stmtCon... method EnterFilter_clause (line 468) | func (s *BaseSQLiteParserListener) EnterFilter_clause(ctx *Filter_clau... method ExitFilter_clause (line 471) | func (s *BaseSQLiteParserListener) ExitFilter_clause(ctx *Filter_claus... method EnterWindow_defn (line 474) | func (s *BaseSQLiteParserListener) EnterWindow_defn(ctx *Window_defnCo... method ExitWindow_defn (line 477) | func (s *BaseSQLiteParserListener) ExitWindow_defn(ctx *Window_defnCon... method EnterOver_clause (line 480) | func (s *BaseSQLiteParserListener) EnterOver_clause(ctx *Over_clauseCo... method ExitOver_clause (line 483) | func (s *BaseSQLiteParserListener) ExitOver_clause(ctx *Over_clauseCon... method EnterFrame_spec (line 486) | func (s *BaseSQLiteParserListener) EnterFrame_spec(ctx *Frame_specCont... method ExitFrame_spec (line 489) | func (s *BaseSQLiteParserListener) ExitFrame_spec(ctx *Frame_specConte... method EnterFrame_clause (line 492) | func (s *BaseSQLiteParserListener) EnterFrame_clause(ctx *Frame_clause... method ExitFrame_clause (line 495) | func (s *BaseSQLiteParserListener) ExitFrame_clause(ctx *Frame_clauseC... method EnterSimple_function_invocation (line 498) | func (s *BaseSQLiteParserListener) EnterSimple_function_invocation(ctx... method ExitSimple_function_invocation (line 502) | func (s *BaseSQLiteParserListener) ExitSimple_function_invocation(ctx ... method EnterAggregate_function_invocation (line 506) | func (s *BaseSQLiteParserListener) EnterAggregate_function_invocation(... method ExitAggregate_function_invocation (line 510) | func (s *BaseSQLiteParserListener) ExitAggregate_function_invocation(c... method EnterWindow_function_invocation (line 514) | func (s *BaseSQLiteParserListener) EnterWindow_function_invocation(ctx... method ExitWindow_function_invocation (line 518) | func (s *BaseSQLiteParserListener) ExitWindow_function_invocation(ctx ... method EnterCommon_table_stmt (line 522) | func (s *BaseSQLiteParserListener) EnterCommon_table_stmt(ctx *Common_... method ExitCommon_table_stmt (line 525) | func (s *BaseSQLiteParserListener) ExitCommon_table_stmt(ctx *Common_t... method EnterOrder_by_stmt (line 528) | func (s *BaseSQLiteParserListener) EnterOrder_by_stmt(ctx *Order_by_st... method ExitOrder_by_stmt (line 531) | func (s *BaseSQLiteParserListener) ExitOrder_by_stmt(ctx *Order_by_stm... method EnterLimit_stmt (line 534) | func (s *BaseSQLiteParserListener) EnterLimit_stmt(ctx *Limit_stmtCont... method ExitLimit_stmt (line 537) | func (s *BaseSQLiteParserListener) ExitLimit_stmt(ctx *Limit_stmtConte... method EnterOrdering_term (line 540) | func (s *BaseSQLiteParserListener) EnterOrdering_term(ctx *Ordering_te... method ExitOrdering_term (line 543) | func (s *BaseSQLiteParserListener) ExitOrdering_term(ctx *Ordering_ter... method EnterAsc_desc (line 546) | func (s *BaseSQLiteParserListener) EnterAsc_desc(ctx *Asc_descContext) {} method ExitAsc_desc (line 549) | func (s *BaseSQLiteParserListener) ExitAsc_desc(ctx *Asc_descContext) {} method EnterFrame_left (line 552) | func (s *BaseSQLiteParserListener) EnterFrame_left(ctx *Frame_leftCont... method ExitFrame_left (line 555) | func (s *BaseSQLiteParserListener) ExitFrame_left(ctx *Frame_leftConte... method EnterFrame_right (line 558) | func (s *BaseSQLiteParserListener) EnterFrame_right(ctx *Frame_rightCo... method ExitFrame_right (line 561) | func (s *BaseSQLiteParserListener) ExitFrame_right(ctx *Frame_rightCon... method EnterFrame_single (line 564) | func (s *BaseSQLiteParserListener) EnterFrame_single(ctx *Frame_single... method ExitFrame_single (line 567) | func (s *BaseSQLiteParserListener) ExitFrame_single(ctx *Frame_singleC... method EnterWindow_function (line 570) | func (s *BaseSQLiteParserListener) EnterWindow_function(ctx *Window_fu... method ExitWindow_function (line 573) | func (s *BaseSQLiteParserListener) ExitWindow_function(ctx *Window_fun... method EnterOf_OF_fset (line 576) | func (s *BaseSQLiteParserListener) EnterOf_OF_fset(ctx *Of_OF_fsetCont... method ExitOf_OF_fset (line 579) | func (s *BaseSQLiteParserListener) ExitOf_OF_fset(ctx *Of_OF_fsetConte... method EnterDefault_DEFAULT__value (line 582) | func (s *BaseSQLiteParserListener) EnterDefault_DEFAULT__value(ctx *De... method ExitDefault_DEFAULT__value (line 585) | func (s *BaseSQLiteParserListener) ExitDefault_DEFAULT__value(ctx *Def... method EnterPartition_by (line 588) | func (s *BaseSQLiteParserListener) EnterPartition_by(ctx *Partition_by... method ExitPartition_by (line 591) | func (s *BaseSQLiteParserListener) ExitPartition_by(ctx *Partition_byC... method EnterOrder_by_expr (line 594) | func (s *BaseSQLiteParserListener) EnterOrder_by_expr(ctx *Order_by_ex... method ExitOrder_by_expr (line 597) | func (s *BaseSQLiteParserListener) ExitOrder_by_expr(ctx *Order_by_exp... method EnterOrder_by_expr_asc_desc (line 600) | func (s *BaseSQLiteParserListener) EnterOrder_by_expr_asc_desc(ctx *Or... method ExitOrder_by_expr_asc_desc (line 603) | func (s *BaseSQLiteParserListener) ExitOrder_by_expr_asc_desc(ctx *Ord... method EnterExpr_asc_desc (line 606) | func (s *BaseSQLiteParserListener) EnterExpr_asc_desc(ctx *Expr_asc_de... method ExitExpr_asc_desc (line 609) | func (s *BaseSQLiteParserListener) ExitExpr_asc_desc(ctx *Expr_asc_des... method EnterInitial_select (line 612) | func (s *BaseSQLiteParserListener) EnterInitial_select(ctx *Initial_se... method ExitInitial_select (line 615) | func (s *BaseSQLiteParserListener) ExitInitial_select(ctx *Initial_sel... method EnterRecursive__select (line 618) | func (s *BaseSQLiteParserListener) EnterRecursive__select(ctx *Recursi... method ExitRecursive__select (line 621) | func (s *BaseSQLiteParserListener) ExitRecursive__select(ctx *Recursiv... method EnterUnary_operator (line 624) | func (s *BaseSQLiteParserListener) EnterUnary_operator(ctx *Unary_oper... method ExitUnary_operator (line 627) | func (s *BaseSQLiteParserListener) ExitUnary_operator(ctx *Unary_opera... method EnterError_message (line 630) | func (s *BaseSQLiteParserListener) EnterError_message(ctx *Error_messa... method ExitError_message (line 633) | func (s *BaseSQLiteParserListener) ExitError_message(ctx *Error_messag... method EnterModule_argument (line 636) | func (s *BaseSQLiteParserListener) EnterModule_argument(ctx *Module_ar... method ExitModule_argument (line 639) | func (s *BaseSQLiteParserListener) ExitModule_argument(ctx *Module_arg... method EnterColumn_alias (line 642) | func (s *BaseSQLiteParserListener) EnterColumn_alias(ctx *Column_alias... method ExitColumn_alias (line 645) | func (s *BaseSQLiteParserListener) ExitColumn_alias(ctx *Column_aliasC... method EnterKeyword (line 648) | func (s *BaseSQLiteParserListener) EnterKeyword(ctx *KeywordContext) {} method ExitKeyword (line 651) | func (s *BaseSQLiteParserListener) ExitKeyword(ctx *KeywordContext) {} method EnterName (line 654) | func (s *BaseSQLiteParserListener) EnterName(ctx *NameContext) {} method ExitName (line 657) | func (s *BaseSQLiteParserListener) ExitName(ctx *NameContext) {} method EnterFunction_name (line 660) | func (s *BaseSQLiteParserListener) EnterFunction_name(ctx *Function_na... method ExitFunction_name (line 663) | func (s *BaseSQLiteParserListener) ExitFunction_name(ctx *Function_nam... method EnterQualified_function_name (line 666) | func (s *BaseSQLiteParserListener) EnterQualified_function_name(ctx *Q... method ExitQualified_function_name (line 670) | func (s *BaseSQLiteParserListener) ExitQualified_function_name(ctx *Qu... method EnterSchema_name (line 673) | func (s *BaseSQLiteParserListener) EnterSchema_name(ctx *Schema_nameCo... method ExitSchema_name (line 676) | func (s *BaseSQLiteParserListener) ExitSchema_name(ctx *Schema_nameCon... method EnterTable_name (line 679) | func (s *BaseSQLiteParserListener) EnterTable_name(ctx *Table_nameCont... method ExitTable_name (line 682) | func (s *BaseSQLiteParserListener) ExitTable_name(ctx *Table_nameConte... method EnterTable_or_index_name (line 685) | func (s *BaseSQLiteParserListener) EnterTable_or_index_name(ctx *Table... method ExitTable_or_index_name (line 688) | func (s *BaseSQLiteParserListener) ExitTable_or_index_name(ctx *Table_... method EnterNew_table_name (line 691) | func (s *BaseSQLiteParserListener) EnterNew_table_name(ctx *New_table_... method ExitNew_table_name (line 694) | func (s *BaseSQLiteParserListener) ExitNew_table_name(ctx *New_table_n... method EnterColumn_name (line 697) | func (s *BaseSQLiteParserListener) EnterColumn_name(ctx *Column_nameCo... method ExitColumn_name (line 700) | func (s *BaseSQLiteParserListener) ExitColumn_name(ctx *Column_nameCon... method EnterCollation_name (line 703) | func (s *BaseSQLiteParserListener) EnterCollation_name(ctx *Collation_... method ExitCollation_name (line 706) | func (s *BaseSQLiteParserListener) ExitCollation_name(ctx *Collation_n... method EnterForeign_table (line 709) | func (s *BaseSQLiteParserListener) EnterForeign_table(ctx *Foreign_tab... method ExitForeign_table (line 712) | func (s *BaseSQLiteParserListener) ExitForeign_table(ctx *Foreign_tabl... method EnterIndex_name (line 715) | func (s *BaseSQLiteParserListener) EnterIndex_name(ctx *Index_nameCont... method ExitIndex_name (line 718) | func (s *BaseSQLiteParserListener) ExitIndex_name(ctx *Index_nameConte... method EnterTrigger_name (line 721) | func (s *BaseSQLiteParserListener) EnterTrigger_name(ctx *Trigger_name... method ExitTrigger_name (line 724) | func (s *BaseSQLiteParserListener) ExitTrigger_name(ctx *Trigger_nameC... method EnterView_name (line 727) | func (s *BaseSQLiteParserListener) EnterView_name(ctx *View_nameContex... method ExitView_name (line 730) | func (s *BaseSQLiteParserListener) ExitView_name(ctx *View_nameContext... method EnterModule_name (line 733) | func (s *BaseSQLiteParserListener) EnterModule_name(ctx *Module_nameCo... method ExitModule_name (line 736) | func (s *BaseSQLiteParserListener) ExitModule_name(ctx *Module_nameCon... method EnterPragma_name (line 739) | func (s *BaseSQLiteParserListener) EnterPragma_name(ctx *Pragma_nameCo... method ExitPragma_name (line 742) | func (s *BaseSQLiteParserListener) ExitPragma_name(ctx *Pragma_nameCon... method EnterSavepoint_name (line 745) | func (s *BaseSQLiteParserListener) EnterSavepoint_name(ctx *Savepoint_... method ExitSavepoint_name (line 748) | func (s *BaseSQLiteParserListener) ExitSavepoint_name(ctx *Savepoint_n... method EnterTable_alias (line 751) | func (s *BaseSQLiteParserListener) EnterTable_alias(ctx *Table_aliasCo... method ExitTable_alias (line 754) | func (s *BaseSQLiteParserListener) ExitTable_alias(ctx *Table_aliasCon... method EnterTable_alias_fallback (line 757) | func (s *BaseSQLiteParserListener) EnterTable_alias_fallback(ctx *Tabl... method ExitTable_alias_fallback (line 760) | func (s *BaseSQLiteParserListener) ExitTable_alias_fallback(ctx *Table... method EnterTransaction_name (line 763) | func (s *BaseSQLiteParserListener) EnterTransaction_name(ctx *Transact... method ExitTransaction_name (line 766) | func (s *BaseSQLiteParserListener) ExitTransaction_name(ctx *Transacti... method EnterWindow_name (line 769) | func (s *BaseSQLiteParserListener) EnterWindow_name(ctx *Window_nameCo... method ExitWindow_name (line 772) | func (s *BaseSQLiteParserListener) ExitWindow_name(ctx *Window_nameCon... method EnterAlias (line 775) | func (s *BaseSQLiteParserListener) EnterAlias(ctx *AliasContext) {} method ExitAlias (line 778) | func (s *BaseSQLiteParserListener) ExitAlias(ctx *AliasContext) {} method EnterFilename (line 781) | func (s *BaseSQLiteParserListener) EnterFilename(ctx *FilenameContext) {} method ExitFilename (line 784) | func (s *BaseSQLiteParserListener) ExitFilename(ctx *FilenameContext) {} method EnterBase_window_name (line 787) | func (s *BaseSQLiteParserListener) EnterBase_window_name(ctx *Base_win... method ExitBase_window_name (line 790) | func (s *BaseSQLiteParserListener) ExitBase_window_name(ctx *Base_wind... method EnterSimple_func (line 793) | func (s *BaseSQLiteParserListener) EnterSimple_func(ctx *Simple_funcCo... method ExitSimple_func (line 796) | func (s *BaseSQLiteParserListener) ExitSimple_func(ctx *Simple_funcCon... method EnterAggregate_func (line 799) | func (s *BaseSQLiteParserListener) EnterAggregate_func(ctx *Aggregate_... method ExitAggregate_func (line 802) | func (s *BaseSQLiteParserListener) ExitAggregate_func(ctx *Aggregate_f... method EnterTable_function_name (line 805) | func (s *BaseSQLiteParserListener) EnterTable_function_name(ctx *Table... method ExitTable_function_name (line 808) | func (s *BaseSQLiteParserListener) ExitTable_function_name(ctx *Table_... method EnterAny_name (line 811) | func (s *BaseSQLiteParserListener) EnterAny_name(ctx *Any_nameContext) {} method ExitAny_name (line 814) | func (s *BaseSQLiteParserListener) ExitAny_name(ctx *Any_nameContext) {} FILE: internal/engine/sqlite/parser/sqliteparser_listener.go type SQLiteParserListener (line 8) | type SQLiteParserListener interface FILE: internal/engine/sqlite/reserved.go method IsReservedKeyword (line 6) | func (p *Parser) IsReservedKeyword(s string) bool { FILE: internal/engine/sqlite/stdlib.go function defaultSchema (line 13) | func defaultSchema(name string) *catalog.Schema { FILE: internal/engine/sqlite/utils.go type tableNamer (line 8) | type tableNamer interface function parseTableName (line 13) | func parseTableName(c tableNamer) *ast.TableName { function hasNotNullConstraint (line 23) | func hasNotNullConstraint(checks []parser.IColumn_constraintContext) bool { FILE: internal/ext/handler.go type Handler (line 14) | type Handler interface type wrapper (line 21) | type wrapper struct method Generate (line 25) | func (w *wrapper) Generate(ctx context.Context, req *plugin.GenerateRe... method Invoke (line 29) | func (w *wrapper) Invoke(ctx context.Context, method string, args any,... method NewStream (line 46) | func (w *wrapper) NewStream(ctx context.Context, desc *grpc.StreamDesc... function HandleFunc (line 50) | func HandleFunc(fn func(context.Context, *plugin.GenerateRequest) (*plug... FILE: internal/ext/process/gen.go type Runner (line 21) | type Runner struct method Invoke (line 27) | func (r *Runner) Invoke(ctx context.Context, method string, args any, ... method NewStream (line 103) | func (r *Runner) NewStream(ctx context.Context, desc *grpc.StreamDesc,... FILE: internal/ext/wasm/runner.go type Runner (line 3) | type Runner struct FILE: internal/ext/wasm/wasm.go type runtimeAndCode (line 34) | type runtimeAndCode struct method getChecksum (line 40) | func (r *Runner) getChecksum(ctx context.Context) (string, error) { method loadAndCompile (line 53) | func (r *Runner) loadAndCompile(ctx context.Context) (*runtimeAndCode, e... method fetch (line 75) | func (r *Runner) fetch(ctx context.Context, uri string) ([]byte, string,... method loadAndCompileWASM (line 116) | func (r *Runner) loadAndCompileWASM(ctx context.Context, cache string, e... function removePGCatalog (line 171) | func removePGCatalog(req *plugin.GenerateRequest) { method Invoke (line 188) | func (r *Runner) Invoke(ctx context.Context, method string, args any, re... method NewStream (line 247) | func (r *Runner) NewStream(ctx context.Context, desc *grpc.StreamDesc, m... function checkError (line 251) | func checkError(err error, stderr bytes.Buffer) error { FILE: internal/inflection/singular.go type SingularParams (line 9) | type SingularParams struct function Singular (line 14) | func Singular(s SingularParams) string { FILE: internal/info/facts.go constant Version (line 5) | Version = "v1.30.0" FILE: internal/metadata/meta.go type CommentSyntax (line 13) | type CommentSyntax type Metadata (line 15) | type Metadata struct constant CmdExec (line 30) | CmdExec = ":exec" constant CmdExecResult (line 31) | CmdExecResult = ":execresult" constant CmdExecRows (line 32) | CmdExecRows = ":execrows" constant CmdExecLastId (line 33) | CmdExecLastId = ":execlastid" constant CmdMany (line 34) | CmdMany = ":many" constant CmdOne (line 35) | CmdOne = ":one" constant CmdCopyFrom (line 36) | CmdCopyFrom = ":copyfrom" constant CmdBatchExec (line 37) | CmdBatchExec = ":batchexec" constant CmdBatchMany (line 38) | CmdBatchMany = ":batchmany" constant CmdBatchOne (line 39) | CmdBatchOne = ":batchone" function validateQueryName (line 45) | func validateQueryName(name string) error { function ParseQueryNameAndType (line 61) | func ParseQueryNameAndType(t string, commentStyle CommentSyntax) (string... function ParseCommentFlags (line 123) | func ParseCommentFlags(comments []string) (map[string]string, map[string... FILE: internal/metadata/meta_test.go function TestParseQueryNameAndType (line 7) | func TestParseQueryNameAndType(t *testing.T) { function TestParseQueryParams (line 56) | func TestParseQueryParams(t *testing.T) { function TestParseQueryFlags (line 103) | func TestParseQueryFlags(t *testing.T) { function TestParseQueryRuleSkiplist (line 143) | func TestParseQueryRuleSkiplist(t *testing.T) { FILE: internal/migrations/migrations.go function RemoveRollbackStatements (line 14) | func RemoveRollbackStatements(contents string) string { function IsDown (line 36) | func IsDown(filename string) bool { FILE: internal/migrations/migrations_test.go constant inputGoose (line 9) | inputGoose = ` constant outputGoose (line 17) | outputGoose = ` constant inputMigrate (line 22) | inputMigrate = ` constant outputMigrate (line 32) | outputMigrate = ` constant inputTern (line 38) | inputTern = ` constant outputTern (line 45) | outputTern = ` constant inputDbmate (line 49) | inputDbmate = ` constant outputDbmate (line 55) | outputDbmate = ` function TestRemoveRollback (line 59) | func TestRemoveRollback(t *testing.T) { function TestRemoveGolangMigrateRollback (line 74) | func TestRemoveGolangMigrateRollback(t *testing.T) { FILE: internal/multierr/error.go type FileError (line 10) | type FileError struct method Unwrap (line 17) | func (e *FileError) Unwrap() error { type Error (line 21) | type Error struct method Add (line 25) | func (e *Error) Add(filename, in string, loc int, err error) { method Errs (line 42) | func (e *Error) Errs() []*FileError { method Error (line 46) | func (e *Error) Error() string { function New (line 50) | func New() *Error { FILE: internal/opts/debug.go type Debug (line 21) | type Debug struct function DebugFromEnv (line 31) | func DebugFromEnv() Debug { function DebugFromString (line 35) | func DebugFromString(val string) Debug { FILE: internal/opts/experiment.go type Experiment (line 27) | type Experiment struct method Enabled (line 94) | func (e Experiment) Enabled() []string { method String (line 103) | func (e Experiment) String() string { function ExperimentFromEnv (line 35) | func ExperimentFromEnv() Experiment { function ExperimentFromString (line 44) | func ExperimentFromString(val string) Experiment { function isKnownExperiment (line 76) | func isKnownExperiment(name string) bool { function setExperiment (line 86) | func setExperiment(e *Experiment, name string, enabled bool) { FILE: internal/opts/experiment_test.go function TestExperimentFromString (line 5) | func TestExperimentFromString(t *testing.T) { function TestExperimentEnabled (line 78) | func TestExperimentEnabled(t *testing.T) { function TestExperimentString (line 112) | func TestExperimentString(t *testing.T) { function TestIsKnownExperiment (line 140) | func TestIsKnownExperiment(t *testing.T) { FILE: internal/opts/parser.go type Parser (line 3) | type Parser struct FILE: internal/pattern/match.go type Match (line 11) | type Match struct function MatchCompile (line 22) | func MatchCompile(pattern string) (*Match, error) { function matchCompile (line 44) | func matchCompile(pattern string) (match *Match, err error) { FILE: internal/pgx/poolcache/poolcache.go type Cache (line 11) | type Cache struct method Open (line 23) | func (c *Cache) Open(ctx context.Context, uri string) (*pgxpool.Pool, ... method Close (line 48) | func (c *Cache) Close() error { function New (line 17) | func New() *Cache { FILE: internal/plugin/codegen.pb.go constant _ (line 18) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 20) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type File (line 23) | type File struct method Reset (line 32) | func (x *File) Reset() { method String (line 41) | func (x *File) String() string { method ProtoMessage (line 45) | func (*File) ProtoMessage() {} method ProtoReflect (line 47) | func (x *File) ProtoReflect() protoreflect.Message { method Descriptor (line 60) | func (*File) Descriptor() ([]byte, []int) { method GetName (line 64) | func (x *File) GetName() string { method GetContents (line 71) | func (x *File) GetContents() []byte { type Settings (line 78) | type Settings struct method Reset (line 90) | func (x *Settings) Reset() { method String (line 99) | func (x *Settings) String() string { method ProtoMessage (line 103) | func (*Settings) ProtoMessage() {} method ProtoReflect (line 105) | func (x *Settings) ProtoReflect() protoreflect.Message { method Descriptor (line 118) | func (*Settings) Descriptor() ([]byte, []int) { method GetVersion (line 122) | func (x *Settings) GetVersion() string { method GetEngine (line 129) | func (x *Settings) GetEngine() string { method GetSchema (line 136) | func (x *Settings) GetSchema() []string { method GetQueries (line 143) | func (x *Settings) GetQueries() []string { method GetCodegen (line 150) | func (x *Settings) GetCodegen() *Codegen { type Codegen (line 157) | type Codegen struct method Reset (line 170) | func (x *Codegen) Reset() { method String (line 179) | func (x *Codegen) String() string { method ProtoMessage (line 183) | func (*Codegen) ProtoMessage() {} method ProtoReflect (line 185) | func (x *Codegen) ProtoReflect() protoreflect.Message { method Descriptor (line 198) | func (*Codegen) Descriptor() ([]byte, []int) { method GetOut (line 202) | func (x *Codegen) GetOut() string { method GetPlugin (line 209) | func (x *Codegen) GetPlugin() string { method GetOptions (line 216) | func (x *Codegen) GetOptions() []byte { method GetEnv (line 223) | func (x *Codegen) GetEnv() []string { method GetProcess (line 230) | func (x *Codegen) GetProcess() *Codegen_Process { method GetWasm (line 237) | func (x *Codegen) GetWasm() *Codegen_WASM { type Catalog (line 244) | type Catalog struct method Reset (line 255) | func (x *Catalog) Reset() { method String (line 264) | func (x *Catalog) String() string { method ProtoMessage (line 268) | func (*Catalog) ProtoMessage() {} method ProtoReflect (line 270) | func (x *Catalog) ProtoReflect() protoreflect.Message { method Descriptor (line 283) | func (*Catalog) Descriptor() ([]byte, []int) { method GetComment (line 287) | func (x *Catalog) GetComment() string { method GetDefaultSchema (line 294) | func (x *Catalog) GetDefaultSchema() string { method GetName (line 301) | func (x *Catalog) GetName() string { method GetSchemas (line 308) | func (x *Catalog) GetSchemas() []*Schema { type Schema (line 315) | type Schema struct method Reset (line 327) | func (x *Schema) Reset() { method String (line 336) | func (x *Schema) String() string { method ProtoMessage (line 340) | func (*Schema) ProtoMessage() {} method ProtoReflect (line 342) | func (x *Schema) ProtoReflect() protoreflect.Message { method Descriptor (line 355) | func (*Schema) Descriptor() ([]byte, []int) { method GetComment (line 359) | func (x *Schema) GetComment() string { method GetName (line 366) | func (x *Schema) GetName() string { method GetTables (line 373) | func (x *Schema) GetTables() []*Table { method GetEnums (line 380) | func (x *Schema) GetEnums() []*Enum { method GetCompositeTypes (line 387) | func (x *Schema) GetCompositeTypes() []*CompositeType { type CompositeType (line 394) | type CompositeType struct method Reset (line 403) | func (x *CompositeType) Reset() { method String (line 412) | func (x *CompositeType) String() string { method ProtoMessage (line 416) | func (*CompositeType) ProtoMessage() {} method ProtoReflect (line 418) | func (x *CompositeType) ProtoReflect() protoreflect.Message { method Descriptor (line 431) | func (*CompositeType) Descriptor() ([]byte, []int) { method GetName (line 435) | func (x *CompositeType) GetName() string { method GetComment (line 442) | func (x *CompositeType) GetComment() string { type Enum (line 449) | type Enum struct method Reset (line 459) | func (x *Enum) Reset() { method String (line 468) | func (x *Enum) String() string { method ProtoMessage (line 472) | func (*Enum) ProtoMessage() {} method ProtoReflect (line 474) | func (x *Enum) ProtoReflect() protoreflect.Message { method Descriptor (line 487) | func (*Enum) Descriptor() ([]byte, []int) { method GetName (line 491) | func (x *Enum) GetName() string { method GetVals (line 498) | func (x *Enum) GetVals() []string { method GetComment (line 505) | func (x *Enum) GetComment() string { type Table (line 512) | type Table struct method Reset (line 522) | func (x *Table) Reset() { method String (line 531) | func (x *Table) String() string { method ProtoMessage (line 535) | func (*Table) ProtoMessage() {} method ProtoReflect (line 537) | func (x *Table) ProtoReflect() protoreflect.Message { method Descriptor (line 550) | func (*Table) Descriptor() ([]byte, []int) { method GetRel (line 554) | func (x *Table) GetRel() *Identifier { method GetColumns (line 561) | func (x *Table) GetColumns() []*Column { method GetComment (line 568) | func (x *Table) GetComment() string { type Identifier (line 575) | type Identifier struct method Reset (line 585) | func (x *Identifier) Reset() { method String (line 594) | func (x *Identifier) String() string { method ProtoMessage (line 598) | func (*Identifier) ProtoMessage() {} method ProtoReflect (line 600) | func (x *Identifier) ProtoReflect() protoreflect.Message { method Descriptor (line 613) | func (*Identifier) Descriptor() ([]byte, []int) { method GetCatalog (line 617) | func (x *Identifier) GetCatalog() string { method GetSchema (line 624) | func (x *Identifier) GetSchema() string { method GetName (line 631) | func (x *Identifier) GetName() string { type Column (line 638) | type Column struct method Reset (line 662) | func (x *Column) Reset() { method String (line 671) | func (x *Column) String() string { method ProtoMessage (line 675) | func (*Column) ProtoMessage() {} method ProtoReflect (line 677) | func (x *Column) ProtoReflect() protoreflect.Message { method Descriptor (line 690) | func (*Column) Descriptor() ([]byte, []int) { method GetName (line 694) | func (x *Column) GetName() string { method GetNotNull (line 701) | func (x *Column) GetNotNull() bool { method GetIsArray (line 708) | func (x *Column) GetIsArray() bool { method GetComment (line 715) | func (x *Column) GetComment() string { method GetLength (line 722) | func (x *Column) GetLength() int32 { method GetIsNamedParam (line 729) | func (x *Column) GetIsNamedParam() bool { method GetIsFuncCall (line 736) | func (x *Column) GetIsFuncCall() bool { method GetScope (line 743) | func (x *Column) GetScope() string { method GetTable (line 750) | func (x *Column) GetTable() *Identifier { method GetTableAlias (line 757) | func (x *Column) GetTableAlias() string { method GetType (line 764) | func (x *Column) GetType() *Identifier { method GetIsSqlcSlice (line 771) | func (x *Column) GetIsSqlcSlice() bool { method GetEmbedTable (line 778) | func (x *Column) GetEmbedTable() *Identifier { method GetOriginalName (line 785) | func (x *Column) GetOriginalName() string { method GetUnsigned (line 792) | func (x *Column) GetUnsigned() bool { method GetArrayDims (line 799) | func (x *Column) GetArrayDims() int32 { type Query (line 806) | type Query struct method Reset (line 821) | func (x *Query) Reset() { method String (line 830) | func (x *Query) String() string { method ProtoMessage (line 834) | func (*Query) ProtoMessage() {} method ProtoReflect (line 836) | func (x *Query) ProtoReflect() protoreflect.Message { method Descriptor (line 849) | func (*Query) Descriptor() ([]byte, []int) { method GetText (line 853) | func (x *Query) GetText() string { method GetName (line 860) | func (x *Query) GetName() string { method GetCmd (line 867) | func (x *Query) GetCmd() string { method GetColumns (line 874) | func (x *Query) GetColumns() []*Column { method GetParams (line 881) | func (x *Query) GetParams() []*Parameter { method GetComments (line 888) | func (x *Query) GetComments() []string { method GetFilename (line 895) | func (x *Query) GetFilename() string { method GetInsertIntoTable (line 902) | func (x *Query) GetInsertIntoTable() *Identifier { type Parameter (line 909) | type Parameter struct method Reset (line 918) | func (x *Parameter) Reset() { method String (line 927) | func (x *Parameter) String() string { method ProtoMessage (line 931) | func (*Parameter) ProtoMessage() {} method ProtoReflect (line 933) | func (x *Parameter) ProtoReflect() protoreflect.Message { method Descriptor (line 946) | func (*Parameter) Descriptor() ([]byte, []int) { method GetNumber (line 950) | func (x *Parameter) GetNumber() int32 { method GetColumn (line 957) | func (x *Parameter) GetColumn() *Column { type GenerateRequest (line 964) | type GenerateRequest struct method Reset (line 977) | func (x *GenerateRequest) Reset() { method String (line 986) | func (x *GenerateRequest) String() string { method ProtoMessage (line 990) | func (*GenerateRequest) ProtoMessage() {} method ProtoReflect (line 992) | func (x *GenerateRequest) ProtoReflect() protoreflect.Message { method Descriptor (line 1005) | func (*GenerateRequest) Descriptor() ([]byte, []int) { method GetSettings (line 1009) | func (x *GenerateRequest) GetSettings() *Settings { method GetCatalog (line 1016) | func (x *GenerateRequest) GetCatalog() *Catalog { method GetQueries (line 1023) | func (x *GenerateRequest) GetQueries() []*Query { method GetSqlcVersion (line 1030) | func (x *GenerateRequest) GetSqlcVersion() string { method GetPluginOptions (line 1037) | func (x *GenerateRequest) GetPluginOptions() []byte { method GetGlobalOptions (line 1044) | func (x *GenerateRequest) GetGlobalOptions() []byte { type GenerateResponse (line 1051) | type GenerateResponse struct method Reset (line 1059) | func (x *GenerateResponse) Reset() { method String (line 1068) | func (x *GenerateResponse) String() string { method ProtoMessage (line 1072) | func (*GenerateResponse) ProtoMessage() {} method ProtoReflect (line 1074) | func (x *GenerateResponse) ProtoReflect() protoreflect.Message { method Descriptor (line 1087) | func (*GenerateResponse) Descriptor() ([]byte, []int) { method GetFiles (line 1091) | func (x *GenerateResponse) GetFiles() []*File { type Codegen_Process (line 1098) | type Codegen_Process struct method Reset (line 1106) | func (x *Codegen_Process) Reset() { method String (line 1115) | func (x *Codegen_Process) String() string { method ProtoMessage (line 1119) | func (*Codegen_Process) ProtoMessage() {} method ProtoReflect (line 1121) | func (x *Codegen_Process) ProtoReflect() protoreflect.Message { method Descriptor (line 1134) | func (*Codegen_Process) Descriptor() ([]byte, []int) { method GetCmd (line 1138) | func (x *Codegen_Process) GetCmd() string { type Codegen_WASM (line 1145) | type Codegen_WASM struct method Reset (line 1154) | func (x *Codegen_WASM) Reset() { method String (line 1163) | func (x *Codegen_WASM) String() string { method ProtoMessage (line 1167) | func (*Codegen_WASM) ProtoMessage() {} method ProtoReflect (line 1169) | func (x *Codegen_WASM) ProtoReflect() protoreflect.Message { method Descriptor (line 1182) | func (*Codegen_WASM) Descriptor() ([]byte, []int) { method GetUrl (line 1186) | func (x *Codegen_WASM) GetUrl() string { method GetSha256 (line 1193) | func (x *Codegen_WASM) GetSha256() string { function file_plugin_codegen_proto_rawDescGZIP (line 1375) | func file_plugin_codegen_proto_rawDescGZIP() []byte { function init (line 1431) | func init() { file_plugin_codegen_proto_init() } function file_plugin_codegen_proto_init (line 1432) | func file_plugin_codegen_proto_init() { FILE: internal/plugin/codegen_grpc.pb.go constant _ (line 19) | _ = grpc.SupportPackageIsVersion7 constant CodegenService_Generate_FullMethodName (line 22) | CodegenService_Generate_FullMethodName = "/plugin.CodegenService/Generate" type CodegenServiceClient (line 28) | type CodegenServiceClient interface type codegenServiceClient (line 32) | type codegenServiceClient struct method Generate (line 40) | func (c *codegenServiceClient) Generate(ctx context.Context, in *Gener... function NewCodegenServiceClient (line 36) | func NewCodegenServiceClient(cc grpc.ClientConnInterface) CodegenService... type CodegenServiceServer (line 52) | type CodegenServiceServer interface type UnimplementedCodegenServiceServer (line 58) | type UnimplementedCodegenServiceServer struct method Generate (line 61) | func (UnimplementedCodegenServiceServer) Generate(context.Context, *Ge... method mustEmbedUnimplementedCodegenServiceServer (line 64) | func (UnimplementedCodegenServiceServer) mustEmbedUnimplementedCodegen... type UnsafeCodegenServiceServer (line 69) | type UnsafeCodegenServiceServer interface function RegisterCodegenServiceServer (line 73) | func RegisterCodegenServiceServer(s grpc.ServiceRegistrar, srv CodegenSe... function _CodegenService_Generate_Handler (line 77) | func _CodegenService_Generate_Handler(srv interface{}, ctx context.Conte... FILE: internal/quickdb/mysql.go function MySQLReformatURI (line 10) | func MySQLReformatURI(original string) (string, error) { FILE: internal/quickdb/rpc.go constant defaultHostname (line 15) | defaultHostname = "grpc.sqlc.dev" function NewClientFromConfig (line 17) | func NewClientFromConfig(cloudConfig config.Cloud) (pb.QuickClient, erro... type options (line 22) | type options struct type Option (line 26) | type Option function WithHost (line 28) | func WithHost(host string) Option { function NewClient (line 34) | func NewClient(project, token string, opts ...Option) (pb.QuickClient, e... FILE: internal/quickdb/v1/quickdb.pb.go constant _ (line 18) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 20) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type CreateEphemeralDatabaseRequest (line 23) | type CreateEphemeralDatabaseRequest struct method Reset (line 34) | func (x *CreateEphemeralDatabaseRequest) Reset() { method String (line 43) | func (x *CreateEphemeralDatabaseRequest) String() string { method ProtoMessage (line 47) | func (*CreateEphemeralDatabaseRequest) ProtoMessage() {} method ProtoReflect (line 49) | func (x *CreateEphemeralDatabaseRequest) ProtoReflect() protoreflect.M... method Descriptor (line 62) | func (*CreateEphemeralDatabaseRequest) Descriptor() ([]byte, []int) { method GetRegion (line 66) | func (x *CreateEphemeralDatabaseRequest) GetRegion() string { method GetEngine (line 73) | func (x *CreateEphemeralDatabaseRequest) GetEngine() string { method GetServerId (line 80) | func (x *CreateEphemeralDatabaseRequest) GetServerId() string { method GetMigrations (line 87) | func (x *CreateEphemeralDatabaseRequest) GetMigrations() []string { type CreateEphemeralDatabaseResponse (line 94) | type CreateEphemeralDatabaseResponse struct method Reset (line 103) | func (x *CreateEphemeralDatabaseResponse) Reset() { method String (line 112) | func (x *CreateEphemeralDatabaseResponse) String() string { method ProtoMessage (line 116) | func (*CreateEphemeralDatabaseResponse) ProtoMessage() {} method ProtoReflect (line 118) | func (x *CreateEphemeralDatabaseResponse) ProtoReflect() protoreflect.... method Descriptor (line 131) | func (*CreateEphemeralDatabaseResponse) Descriptor() ([]byte, []int) { method GetDatabaseId (line 135) | func (x *CreateEphemeralDatabaseResponse) GetDatabaseId() string { method GetUri (line 142) | func (x *CreateEphemeralDatabaseResponse) GetUri() string { type DropEphemeralDatabaseRequest (line 149) | type DropEphemeralDatabaseRequest struct method Reset (line 157) | func (x *DropEphemeralDatabaseRequest) Reset() { method String (line 166) | func (x *DropEphemeralDatabaseRequest) String() string { method ProtoMessage (line 170) | func (*DropEphemeralDatabaseRequest) ProtoMessage() {} method ProtoReflect (line 172) | func (x *DropEphemeralDatabaseRequest) ProtoReflect() protoreflect.Mes... method Descriptor (line 185) | func (*DropEphemeralDatabaseRequest) Descriptor() ([]byte, []int) { method GetDatabaseId (line 189) | func (x *DropEphemeralDatabaseRequest) GetDatabaseId() string { type DropEphemeralDatabaseResponse (line 196) | type DropEphemeralDatabaseResponse struct method Reset (line 202) | func (x *DropEphemeralDatabaseResponse) Reset() { method String (line 211) | func (x *DropEphemeralDatabaseResponse) String() string { method ProtoMessage (line 215) | func (*DropEphemeralDatabaseResponse) ProtoMessage() {} method ProtoReflect (line 217) | func (x *DropEphemeralDatabaseResponse) ProtoReflect() protoreflect.Me... method Descriptor (line 230) | func (*DropEphemeralDatabaseResponse) Descriptor() ([]byte, []int) { type File (line 234) | type File struct method Reset (line 243) | func (x *File) Reset() { method String (line 252) | func (x *File) String() string { method ProtoMessage (line 256) | func (*File) ProtoMessage() {} method ProtoReflect (line 258) | func (x *File) ProtoReflect() protoreflect.Message { method Descriptor (line 271) | func (*File) Descriptor() ([]byte, []int) { method GetName (line 275) | func (x *File) GetName() string { method GetContents (line 282) | func (x *File) GetContents() []byte { type QuerySet (line 289) | type QuerySet struct method Reset (line 300) | func (x *QuerySet) Reset() { method String (line 309) | func (x *QuerySet) String() string { method ProtoMessage (line 313) | func (*QuerySet) ProtoMessage() {} method ProtoReflect (line 315) | func (x *QuerySet) ProtoReflect() protoreflect.Message { method Descriptor (line 328) | func (*QuerySet) Descriptor() ([]byte, []int) { method GetName (line 332) | func (x *QuerySet) GetName() string { method GetSchema (line 339) | func (x *QuerySet) GetSchema() []*File { method GetQueries (line 346) | func (x *QuerySet) GetQueries() []*File { method GetCodegenRequest (line 353) | func (x *QuerySet) GetCodegenRequest() *File { type UploadArchiveRequest (line 360) | type UploadArchiveRequest struct method Reset (line 374) | func (x *UploadArchiveRequest) Reset() { method String (line 383) | func (x *UploadArchiveRequest) String() string { method ProtoMessage (line 387) | func (*UploadArchiveRequest) ProtoMessage() {} method ProtoReflect (line 389) | func (x *UploadArchiveRequest) ProtoReflect() protoreflect.Message { method Descriptor (line 402) | func (*UploadArchiveRequest) Descriptor() ([]byte, []int) { method GetSqlcVersion (line 406) | func (x *UploadArchiveRequest) GetSqlcVersion() string { method GetInputs (line 413) | func (x *UploadArchiveRequest) GetInputs() []*File { method GetOutputs (line 420) | func (x *UploadArchiveRequest) GetOutputs() []*File { method GetAnnotations (line 427) | func (x *UploadArchiveRequest) GetAnnotations() map[string]string { method GetQuerySets (line 434) | func (x *UploadArchiveRequest) GetQuerySets() []*QuerySet { method GetConfig (line 441) | func (x *UploadArchiveRequest) GetConfig() *File { method GetTags (line 448) | func (x *UploadArchiveRequest) GetTags() []string { type UploadArchiveResponse (line 455) | type UploadArchiveResponse struct method Reset (line 463) | func (x *UploadArchiveResponse) Reset() { method String (line 472) | func (x *UploadArchiveResponse) String() string { method ProtoMessage (line 476) | func (*UploadArchiveResponse) ProtoMessage() {} method ProtoReflect (line 478) | func (x *UploadArchiveResponse) ProtoReflect() protoreflect.Message { method Descriptor (line 491) | func (*UploadArchiveResponse) Descriptor() ([]byte, []int) { method GetChecksum (line 495) | func (x *UploadArchiveResponse) GetChecksum() []byte { type VerifyQuerySetsRequest (line 502) | type VerifyQuerySetsRequest struct method Reset (line 514) | func (x *VerifyQuerySetsRequest) Reset() { method String (line 523) | func (x *VerifyQuerySetsRequest) String() string { method ProtoMessage (line 527) | func (*VerifyQuerySetsRequest) ProtoMessage() {} method ProtoReflect (line 529) | func (x *VerifyQuerySetsRequest) ProtoReflect() protoreflect.Message { method Descriptor (line 542) | func (*VerifyQuerySetsRequest) Descriptor() ([]byte, []int) { method GetSqlcVersion (line 546) | func (x *VerifyQuerySetsRequest) GetSqlcVersion() string { method GetQuerySets (line 553) | func (x *VerifyQuerySetsRequest) GetQuerySets() []*QuerySet { method GetConfig (line 560) | func (x *VerifyQuerySetsRequest) GetConfig() *File { method GetAnnotations (line 567) | func (x *VerifyQuerySetsRequest) GetAnnotations() map[string]string { method GetAgainst (line 574) | func (x *VerifyQuerySetsRequest) GetAgainst() string { type VerifyQuerySetsResponse (line 581) | type VerifyQuerySetsResponse struct method Reset (line 591) | func (x *VerifyQuerySetsResponse) Reset() { method String (line 600) | func (x *VerifyQuerySetsResponse) String() string { method ProtoMessage (line 604) | func (*VerifyQuerySetsResponse) ProtoMessage() {} method ProtoReflect (line 606) | func (x *VerifyQuerySetsResponse) ProtoReflect() protoreflect.Message { method Descriptor (line 619) | func (*VerifyQuerySetsResponse) Descriptor() ([]byte, []int) { method GetErrored (line 623) | func (x *VerifyQuerySetsResponse) GetErrored() bool { method GetOutput (line 630) | func (x *VerifyQuerySetsResponse) GetOutput() string { method GetSummary (line 637) | func (x *VerifyQuerySetsResponse) GetSummary() string { type GetQuerySetsRequest (line 644) | type GetQuerySetsRequest struct method Reset (line 652) | func (x *GetQuerySetsRequest) Reset() { method String (line 661) | func (x *GetQuerySetsRequest) String() string { method ProtoMessage (line 665) | func (*GetQuerySetsRequest) ProtoMessage() {} method ProtoReflect (line 667) | func (x *GetQuerySetsRequest) ProtoReflect() protoreflect.Message { method Descriptor (line 680) | func (*GetQuerySetsRequest) Descriptor() ([]byte, []int) { method GetTag (line 684) | func (x *GetQuerySetsRequest) GetTag() string { type GetQuerySetsResponse (line 691) | type GetQuerySetsResponse struct method Reset (line 699) | func (x *GetQuerySetsResponse) Reset() { method String (line 708) | func (x *GetQuerySetsResponse) String() string { method ProtoMessage (line 712) | func (*GetQuerySetsResponse) ProtoMessage() {} method ProtoReflect (line 714) | func (x *GetQuerySetsResponse) ProtoReflect() protoreflect.Message { method Descriptor (line 727) | func (*GetQuerySetsResponse) Descriptor() ([]byte, []int) { method GetQuerySets (line 731) | func (x *GetQuerySetsResponse) GetQuerySets() []*QuerySet { function file_v1_quickdb_proto_rawDescGZIP (line 919) | func file_v1_quickdb_proto_rawDescGZIP() []byte { function init (line 973) | func init() { file_v1_quickdb_proto_init() } function file_v1_quickdb_proto_init (line 974) | func file_v1_quickdb_proto_init() { FILE: internal/quickdb/v1/quickdb_grpc.pb.go constant _ (line 19) | _ = grpc.SupportPackageIsVersion7 constant Quick_CreateEphemeralDatabase_FullMethodName (line 22) | Quick_CreateEphemeralDatabase_FullMethodName = "/remote.sqlc.dev.quickdb... constant Quick_DropEphemeralDatabase_FullMethodName (line 23) | Quick_DropEphemeralDatabase_FullMethodName = "/remote.sqlc.dev.quickdb... constant Quick_UploadArchive_FullMethodName (line 24) | Quick_UploadArchive_FullMethodName = "/remote.sqlc.dev.quickdb... constant Quick_VerifyQuerySets_FullMethodName (line 25) | Quick_VerifyQuerySets_FullMethodName = "/remote.sqlc.dev.quickdb... constant Quick_GetQuerySets_FullMethodName (line 26) | Quick_GetQuerySets_FullMethodName = "/remote.sqlc.dev.quickdb... type QuickClient (line 32) | type QuickClient interface type quickClient (line 40) | type quickClient struct method CreateEphemeralDatabase (line 48) | func (c *quickClient) CreateEphemeralDatabase(ctx context.Context, in ... method DropEphemeralDatabase (line 57) | func (c *quickClient) DropEphemeralDatabase(ctx context.Context, in *D... method UploadArchive (line 66) | func (c *quickClient) UploadArchive(ctx context.Context, in *UploadArc... method VerifyQuerySets (line 75) | func (c *quickClient) VerifyQuerySets(ctx context.Context, in *VerifyQ... method GetQuerySets (line 84) | func (c *quickClient) GetQuerySets(ctx context.Context, in *GetQuerySe... function NewQuickClient (line 44) | func NewQuickClient(cc grpc.ClientConnInterface) QuickClient { type QuickServer (line 96) | type QuickServer interface type UnimplementedQuickServer (line 106) | type UnimplementedQuickServer struct method CreateEphemeralDatabase (line 109) | func (UnimplementedQuickServer) CreateEphemeralDatabase(context.Contex... method DropEphemeralDatabase (line 112) | func (UnimplementedQuickServer) DropEphemeralDatabase(context.Context,... method UploadArchive (line 115) | func (UnimplementedQuickServer) UploadArchive(context.Context, *Upload... method VerifyQuerySets (line 118) | func (UnimplementedQuickServer) VerifyQuerySets(context.Context, *Veri... method GetQuerySets (line 121) | func (UnimplementedQuickServer) GetQuerySets(context.Context, *GetQuer... method mustEmbedUnimplementedQuickServer (line 124) | func (UnimplementedQuickServer) mustEmbedUnimplementedQuickServer() {} type UnsafeQuickServer (line 129) | type UnsafeQuickServer interface function RegisterQuickServer (line 133) | func RegisterQuickServer(s grpc.ServiceRegistrar, srv QuickServer) { function _Quick_CreateEphemeralDatabase_Handler (line 137) | func _Quick_CreateEphemeralDatabase_Handler(srv interface{}, ctx context... function _Quick_DropEphemeralDatabase_Handler (line 155) | func _Quick_DropEphemeralDatabase_Handler(srv interface{}, ctx context.C... function _Quick_UploadArchive_Handler (line 173) | func _Quick_UploadArchive_Handler(srv interface{}, ctx context.Context, ... function _Quick_VerifyQuerySets_Handler (line 191) | func _Quick_VerifyQuerySets_Handler(srv interface{}, ctx context.Context... function _Quick_GetQuerySets_Handler (line 209) | func _Quick_GetQuerySets_Handler(srv interface{}, ctx context.Context, d... FILE: internal/remote/gen.pb.go constant _ (line 18) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 20) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type GenerateRequest (line 23) | type GenerateRequest struct method Reset (line 32) | func (x *GenerateRequest) Reset() { method String (line 41) | func (x *GenerateRequest) String() string { method ProtoMessage (line 45) | func (*GenerateRequest) ProtoMessage() {} method ProtoReflect (line 47) | func (x *GenerateRequest) ProtoReflect() protoreflect.Message { method Descriptor (line 60) | func (*GenerateRequest) Descriptor() ([]byte, []int) { method GetVersion (line 64) | func (x *GenerateRequest) GetVersion() string { method GetInputs (line 71) | func (x *GenerateRequest) GetInputs() []*File { type GenerateResponse (line 78) | type GenerateResponse struct method Reset (line 89) | func (x *GenerateResponse) Reset() { method String (line 98) | func (x *GenerateResponse) String() string { method ProtoMessage (line 102) | func (*GenerateResponse) ProtoMessage() {} method ProtoReflect (line 104) | func (x *GenerateResponse) ProtoReflect() protoreflect.Message { method Descriptor (line 117) | func (*GenerateResponse) Descriptor() ([]byte, []int) { method GetOutputs (line 121) | func (x *GenerateResponse) GetOutputs() []*File { method GetExitCode (line 128) | func (x *GenerateResponse) GetExitCode() int64 { method GetStdout (line 135) | func (x *GenerateResponse) GetStdout() []byte { method GetStderr (line 142) | func (x *GenerateResponse) GetStderr() []byte { type File (line 149) | type File struct method Reset (line 159) | func (x *File) Reset() { method String (line 168) | func (x *File) String() string { method ProtoMessage (line 172) | func (*File) ProtoMessage() {} method ProtoReflect (line 174) | func (x *File) ProtoReflect() protoreflect.Message { method Descriptor (line 187) | func (*File) Descriptor() ([]byte, []int) { method GetPath (line 191) | func (x *File) GetPath() string { method GetContentType (line 198) | func (x *File) GetContentType() string { method GetBytes (line 205) | func (x *File) GetBytes() []byte { function file_internal_remote_gen_proto_rawDescGZIP (line 254) | func file_internal_remote_gen_proto_rawDescGZIP() []byte { function init (line 279) | func init() { file_internal_remote_gen_proto_init() } function file_internal_remote_gen_proto_init (line 280) | func file_internal_remote_gen_proto_init() { FILE: internal/remote/gen_grpc.pb.go constant _ (line 19) | _ = grpc.SupportPackageIsVersion7 type GenClient (line 24) | type GenClient interface type genClient (line 28) | type genClient struct method Generate (line 36) | func (c *genClient) Generate(ctx context.Context, in *GenerateRequest,... function NewGenClient (line 32) | func NewGenClient(cc grpc.ClientConnInterface) GenClient { type GenServer (line 48) | type GenServer interface type UnimplementedGenServer (line 54) | type UnimplementedGenServer struct method Generate (line 57) | func (UnimplementedGenServer) Generate(context.Context, *GenerateReque... method mustEmbedUnimplementedGenServer (line 60) | func (UnimplementedGenServer) mustEmbedUnimplementedGenServer() {} type UnsafeGenServer (line 65) | type UnsafeGenServer interface function RegisterGenServer (line 69) | func RegisterGenServer(s grpc.ServiceRegistrar, srv GenServer) { function _Gen_Generate_Handler (line 73) | func _Gen_Generate_Handler(srv interface{}, ctx context.Context, dec fun... FILE: internal/remote/rpc.go constant defaultHostname (line 14) | defaultHostname = "remote.sqlc.dev" function NewClient (line 16) | func NewClient(cloudConfig config.Cloud) (GenClient, error) { FILE: internal/rpc/errors.go constant errMessageUnauthenticated (line 8) | errMessageUnauthenticated = `rpc authentication failed FILE: internal/rpc/interceptor.go function UnaryInterceptor (line 11) | func UnaryInterceptor(ctx context.Context, method string, req, reply int... FILE: internal/shfmt/shfmt.go type Replacer (line 11) | type Replacer struct method Replace (line 15) | func (r *Replacer) Replace(f string) string { function NewReplacer (line 23) | func NewReplacer(env []string) *Replacer { FILE: internal/shfmt/shfmt_test.go function TestReplace (line 5) | func TestReplace(t *testing.T) { FILE: internal/source/code.go type Edit (line 11) | type Edit struct type CommentSyntax (line 18) | type CommentSyntax struct function LineNumber (line 24) | func LineNumber(source string, head int) (int, int) { function Pluck (line 54) | func Pluck(source string, location, length int) (string, error) { function Mutate (line 60) | func Mutate(raw string, a []Edit) (string, error) { function StripComments (line 99) | func StripComments(sql string) (string, []string, error) { function CleanedComments (line 132) | func CleanedComments(rawSQL string, cs CommentSyntax) ([]string, error) { FILE: internal/source/mutate_test.go function newEdit (line 9) | func newEdit(loc int, old, new string) Edit { function TestMutateSingle (line 14) | func TestMutateSingle(t *testing.T) { function TestMutateMulti (line 89) | func TestMutateMulti(t *testing.T) { function TestMutateErrorSingle (line 148) | func TestMutateErrorSingle(t *testing.T) { function TestMutateErrorMulti (line 179) | func TestMutateErrorMulti(t *testing.T) { FILE: internal/sql/ast/a_array_expr.go type A_ArrayExpr (line 5) | type A_ArrayExpr struct method Pos (line 10) | func (n *A_ArrayExpr) Pos() int { method Format (line 14) | func (n *A_ArrayExpr) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/a_const.go type A_Const (line 5) | type A_Const struct method Pos (line 10) | func (n *A_Const) Pos() int { method Format (line 14) | func (n *A_Const) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/a_expr.go type A_Expr (line 5) | type A_Expr struct method Pos (line 13) | func (n *A_Expr) Pos() int { method isNamedParam (line 19) | func (n *A_Expr) isNamedParam() (string, bool) { method Format (line 36) | func (n *A_Expr) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/a_expr_kind.go type A_Expr_Kind (line 3) | type A_Expr_Kind method Pos (line 22) | func (n *A_Expr_Kind) Pos() int { constant A_Expr_Kind_OP (line 6) | A_Expr_Kind_OP A_Expr_Kind = 1 constant A_Expr_Kind_OP_ANY (line 7) | A_Expr_Kind_OP_ANY A_Expr_Kind = 2 constant A_Expr_Kind_OP_ALL (line 8) | A_Expr_Kind_OP_ALL A_Expr_Kind = 3 constant A_Expr_Kind_DISTINCT (line 9) | A_Expr_Kind_DISTINCT A_Expr_Kind = 4 constant A_Expr_Kind_NOT_DISTINCT (line 10) | A_Expr_Kind_NOT_DISTINCT A_Expr_Kind = 5 constant A_Expr_Kind_NULLIF (line 11) | A_Expr_Kind_NULLIF A_Expr_Kind = 6 constant A_Expr_Kind_IN (line 12) | A_Expr_Kind_IN A_Expr_Kind = 7 constant A_Expr_Kind_LIKE (line 13) | A_Expr_Kind_LIKE A_Expr_Kind = 8 constant A_Expr_Kind_ILIKE (line 14) | A_Expr_Kind_ILIKE A_Expr_Kind = 9 constant A_Expr_Kind_SIMILAR (line 15) | A_Expr_Kind_SIMILAR A_Expr_Kind = 10 constant A_Expr_Kind_BETWEEN (line 16) | A_Expr_Kind_BETWEEN A_Expr_Kind = 11 constant A_Expr_Kind_NOT_BETWEEN (line 17) | A_Expr_Kind_NOT_BETWEEN A_Expr_Kind = 12 constant A_Expr_Kind_BETWEEN_SYM (line 18) | A_Expr_Kind_BETWEEN_SYM A_Expr_Kind = 13 constant A_Expr_Kind_NOT_BETWEEN_SYM (line 19) | A_Expr_Kind_NOT_BETWEEN_SYM A_Expr_Kind = 14 FILE: internal/sql/ast/a_indices.go type A_Indices (line 5) | type A_Indices struct method Pos (line 11) | func (n *A_Indices) Pos() int { method Format (line 15) | func (n *A_Indices) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/a_indirection.go type A_Indirection (line 3) | type A_Indirection struct method Pos (line 8) | func (n *A_Indirection) Pos() int { FILE: internal/sql/ast/a_star.go type A_Star (line 5) | type A_Star struct method Pos (line 8) | func (n *A_Star) Pos() int { method Format (line 12) | func (n *A_Star) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/access_priv.go type AccessPriv (line 3) | type AccessPriv struct method Pos (line 8) | func (n *AccessPriv) Pos() int { FILE: internal/sql/ast/agg_split.go type AggSplit (line 3) | type AggSplit method Pos (line 5) | func (n *AggSplit) Pos() int { FILE: internal/sql/ast/agg_strategy.go type AggStrategy (line 3) | type AggStrategy method Pos (line 5) | func (n *AggStrategy) Pos() int { FILE: internal/sql/ast/aggref.go type Aggref (line 3) | type Aggref struct method Pos (line 23) | func (n *Aggref) Pos() int { FILE: internal/sql/ast/alias.go type Alias (line 5) | type Alias struct method Pos (line 10) | func (n *Alias) Pos() int { method Format (line 14) | func (n *Alias) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/alter_collation_stmt.go type AlterCollationStmt (line 3) | type AlterCollationStmt struct method Pos (line 7) | func (n *AlterCollationStmt) Pos() int { FILE: internal/sql/ast/alter_database_set_stmt.go type AlterDatabaseSetStmt (line 3) | type AlterDatabaseSetStmt struct method Pos (line 8) | func (n *AlterDatabaseSetStmt) Pos() int { FILE: internal/sql/ast/alter_database_stmt.go type AlterDatabaseStmt (line 3) | type AlterDatabaseStmt struct method Pos (line 8) | func (n *AlterDatabaseStmt) Pos() int { FILE: internal/sql/ast/alter_default_privileges_stmt.go type AlterDefaultPrivilegesStmt (line 3) | type AlterDefaultPrivilegesStmt struct method Pos (line 8) | func (n *AlterDefaultPrivilegesStmt) Pos() int { FILE: internal/sql/ast/alter_domain_stmt.go type AlterDomainStmt (line 3) | type AlterDomainStmt struct method Pos (line 12) | func (n *AlterDomainStmt) Pos() int { FILE: internal/sql/ast/alter_enum_stmt.go type AlterEnumStmt (line 3) | type AlterEnumStmt struct method Pos (line 12) | func (n *AlterEnumStmt) Pos() int { FILE: internal/sql/ast/alter_event_trig_stmt.go type AlterEventTrigStmt (line 3) | type AlterEventTrigStmt struct method Pos (line 8) | func (n *AlterEventTrigStmt) Pos() int { FILE: internal/sql/ast/alter_extension_contents_stmt.go type AlterExtensionContentsStmt (line 3) | type AlterExtensionContentsStmt struct method Pos (line 10) | func (n *AlterExtensionContentsStmt) Pos() int { FILE: internal/sql/ast/alter_extension_stmt.go type AlterExtensionStmt (line 3) | type AlterExtensionStmt struct method Pos (line 8) | func (n *AlterExtensionStmt) Pos() int { FILE: internal/sql/ast/alter_fdw_stmt.go type AlterFdwStmt (line 3) | type AlterFdwStmt struct method Pos (line 9) | func (n *AlterFdwStmt) Pos() int { FILE: internal/sql/ast/alter_foreign_server_stmt.go type AlterForeignServerStmt (line 3) | type AlterForeignServerStmt struct method Pos (line 10) | func (n *AlterForeignServerStmt) Pos() int { FILE: internal/sql/ast/alter_function_stmt.go type AlterFunctionStmt (line 3) | type AlterFunctionStmt struct method Pos (line 8) | func (n *AlterFunctionStmt) Pos() int { FILE: internal/sql/ast/alter_object_depends_stmt.go type AlterObjectDependsStmt (line 3) | type AlterObjectDependsStmt struct method Pos (line 10) | func (n *AlterObjectDependsStmt) Pos() int { FILE: internal/sql/ast/alter_object_schema_stmt.go type AlterObjectSchemaStmt (line 3) | type AlterObjectSchemaStmt struct method Pos (line 11) | func (n *AlterObjectSchemaStmt) Pos() int { FILE: internal/sql/ast/alter_op_family_stmt.go type AlterOpFamilyStmt (line 3) | type AlterOpFamilyStmt struct method Pos (line 10) | func (n *AlterOpFamilyStmt) Pos() int { FILE: internal/sql/ast/alter_operator_stmt.go type AlterOperatorStmt (line 3) | type AlterOperatorStmt struct method Pos (line 8) | func (n *AlterOperatorStmt) Pos() int { FILE: internal/sql/ast/alter_owner_stmt.go type AlterOwnerStmt (line 3) | type AlterOwnerStmt struct method Pos (line 10) | func (n *AlterOwnerStmt) Pos() int { FILE: internal/sql/ast/alter_policy_stmt.go type AlterPolicyStmt (line 3) | type AlterPolicyStmt struct method Pos (line 11) | func (n *AlterPolicyStmt) Pos() int { FILE: internal/sql/ast/alter_publication_stmt.go type AlterPublicationStmt (line 3) | type AlterPublicationStmt struct method Pos (line 11) | func (n *AlterPublicationStmt) Pos() int { FILE: internal/sql/ast/alter_role_set_stmt.go type AlterRoleSetStmt (line 3) | type AlterRoleSetStmt struct method Pos (line 9) | func (n *AlterRoleSetStmt) Pos() int { FILE: internal/sql/ast/alter_role_stmt.go type AlterRoleStmt (line 3) | type AlterRoleStmt struct method Pos (line 9) | func (n *AlterRoleStmt) Pos() int { FILE: internal/sql/ast/alter_seq_stmt.go type AlterSeqStmt (line 3) | type AlterSeqStmt struct method Pos (line 10) | func (n *AlterSeqStmt) Pos() int { FILE: internal/sql/ast/alter_subscription_stmt.go type AlterSubscriptionStmt (line 3) | type AlterSubscriptionStmt struct method Pos (line 11) | func (n *AlterSubscriptionStmt) Pos() int { FILE: internal/sql/ast/alter_subscription_type.go type AlterSubscriptionType (line 3) | type AlterSubscriptionType method Pos (line 5) | func (n *AlterSubscriptionType) Pos() int { FILE: internal/sql/ast/alter_system_stmt.go type AlterSystemStmt (line 3) | type AlterSystemStmt struct method Pos (line 7) | func (n *AlterSystemStmt) Pos() int { FILE: internal/sql/ast/alter_table_cmd.go constant AT_AddColumn (line 6) | AT_AddColumn AlterTableType = iota constant AT_AlterColumnType (line 7) | AT_AlterColumnType constant AT_DropColumn (line 8) | AT_DropColumn constant AT_DropNotNull (line 9) | AT_DropNotNull constant AT_SetNotNull (line 10) | AT_SetNotNull type AlterTableType (line 13) | type AlterTableType method String (line 15) | func (t AlterTableType) String() string { type AlterTableCmd (line 32) | type AlterTableCmd struct method Pos (line 41) | func (n *AlterTableCmd) Pos() int { method Format (line 45) | func (n *AlterTableCmd) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/alter_table_move_all_stmt.go type AlterTableMoveAllStmt (line 3) | type AlterTableMoveAllStmt struct method Pos (line 11) | func (n *AlterTableMoveAllStmt) Pos() int { FILE: internal/sql/ast/alter_table_set_schema_stmt.go type AlterTableSetSchemaStmt (line 3) | type AlterTableSetSchemaStmt struct method Pos (line 9) | func (n *AlterTableSetSchemaStmt) Pos() int { FILE: internal/sql/ast/alter_table_space_options_stmt.go type AlterTableSpaceOptionsStmt (line 3) | type AlterTableSpaceOptionsStmt struct method Pos (line 9) | func (n *AlterTableSpaceOptionsStmt) Pos() int { FILE: internal/sql/ast/alter_table_stmt.go type AlterTableStmt (line 5) | type AlterTableStmt struct method Pos (line 14) | func (n *AlterTableStmt) Pos() int { method Format (line 18) | func (n *AlterTableStmt) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/alter_table_type.go type AlterTableType_PG (line 3) | type AlterTableType_PG method Pos (line 5) | func (n *AlterTableType_PG) Pos() int { FILE: internal/sql/ast/alter_ts_config_type.go type AlterTSConfigType (line 3) | type AlterTSConfigType method Pos (line 5) | func (n *AlterTSConfigType) Pos() int { FILE: internal/sql/ast/alter_ts_configuration_stmt.go type AlterTSConfigurationStmt (line 3) | type AlterTSConfigurationStmt struct method Pos (line 13) | func (n *AlterTSConfigurationStmt) Pos() int { FILE: internal/sql/ast/alter_ts_dictionary_stmt.go type AlterTSDictionaryStmt (line 3) | type AlterTSDictionaryStmt struct method Pos (line 8) | func (n *AlterTSDictionaryStmt) Pos() int { FILE: internal/sql/ast/alter_type_add_value_stmt.go type AlterTypeAddValueStmt (line 3) | type AlterTypeAddValueStmt struct method Pos (line 12) | func (n *AlterTypeAddValueStmt) Pos() int { FILE: internal/sql/ast/alter_type_rename_value_stmt.go type AlterTypeRenameValueStmt (line 3) | type AlterTypeRenameValueStmt struct method Pos (line 9) | func (n *AlterTypeRenameValueStmt) Pos() int { FILE: internal/sql/ast/alter_type_set_schema_stmt.go type AlterTypeSetSchemaStmt (line 3) | type AlterTypeSetSchemaStmt struct method Pos (line 8) | func (n *AlterTypeSetSchemaStmt) Pos() int { FILE: internal/sql/ast/alter_user_mapping_stmt.go type AlterUserMappingStmt (line 3) | type AlterUserMappingStmt struct method Pos (line 9) | func (n *AlterUserMappingStmt) Pos() int { FILE: internal/sql/ast/alternative_sub_plan.go type AlternativeSubPlan (line 3) | type AlternativeSubPlan struct method Pos (line 8) | func (n *AlternativeSubPlan) Pos() int { FILE: internal/sql/ast/array_coerce_expr.go type ArrayCoerceExpr (line 3) | type ArrayCoerceExpr struct method Pos (line 15) | func (n *ArrayCoerceExpr) Pos() int { FILE: internal/sql/ast/array_expr.go type ArrayExpr (line 3) | type ArrayExpr struct method Pos (line 13) | func (n *ArrayExpr) Pos() int { FILE: internal/sql/ast/array_ref.go type ArrayRef (line 3) | type ArrayRef struct method Pos (line 15) | func (n *ArrayRef) Pos() int { FILE: internal/sql/ast/between_expr.go type BetweenExpr (line 5) | type BetweenExpr struct method Pos (line 17) | func (n *BetweenExpr) Pos() int { method Format (line 21) | func (n *BetweenExpr) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/bit_string.go type BitString (line 3) | type BitString struct method Pos (line 7) | func (n *BitString) Pos() int { FILE: internal/sql/ast/block_id_data.go type BlockIdData (line 3) | type BlockIdData struct method Pos (line 8) | func (n *BlockIdData) Pos() int { FILE: internal/sql/ast/bool_expr.go type BoolExpr (line 5) | type BoolExpr struct method Pos (line 12) | func (n *BoolExpr) Pos() int { method Format (line 16) | func (n *BoolExpr) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/bool_expr_type.go constant _ (line 5) | _ BoolExprType = iota constant BoolExprTypeAnd (line 6) | BoolExprTypeAnd constant BoolExprTypeOr (line 7) | BoolExprTypeOr constant BoolExprTypeNot (line 8) | BoolExprTypeNot constant BoolExprTypeIsNull (line 11) | BoolExprTypeIsNull constant BoolExprTypeIsNotNull (line 12) | BoolExprTypeIsNotNull type BoolExprType (line 15) | type BoolExprType method Pos (line 17) | func (n *BoolExprType) Pos() int { FILE: internal/sql/ast/bool_test_type.go type BoolTestType (line 3) | type BoolTestType method Pos (line 5) | func (n *BoolTestType) Pos() int { FILE: internal/sql/ast/boolean.go type Boolean (line 9) | type Boolean struct method Pos (line 13) | func (n *Boolean) Pos() int { method Format (line 17) | func (n *Boolean) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/boolean_test_expr.go type BooleanTest (line 3) | type BooleanTest struct method Pos (line 10) | func (n *BooleanTest) Pos() int { FILE: internal/sql/ast/call_stmt.go type CallStmt (line 5) | type CallStmt struct method Pos (line 9) | func (n *CallStmt) Pos() int { method Format (line 16) | func (n *CallStmt) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/case_expr.go type CaseExpr (line 5) | type CaseExpr struct method Pos (line 15) | func (n *CaseExpr) Pos() int { method Format (line 19) | func (n *CaseExpr) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/case_test_expr.go type CaseTestExpr (line 3) | type CaseTestExpr struct method Pos (line 10) | func (n *CaseTestExpr) Pos() int { FILE: internal/sql/ast/case_when.go type CaseWhen (line 5) | type CaseWhen struct method Pos (line 12) | func (n *CaseWhen) Pos() int { method Format (line 16) | func (n *CaseWhen) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/check_point_stmt.go type CheckPointStmt (line 3) | type CheckPointStmt struct method Pos (line 6) | func (n *CheckPointStmt) Pos() int { FILE: internal/sql/ast/close_portal_stmt.go type ClosePortalStmt (line 3) | type ClosePortalStmt struct method Pos (line 7) | func (n *ClosePortalStmt) Pos() int { FILE: internal/sql/ast/cluster_stmt.go type ClusterStmt (line 3) | type ClusterStmt struct method Pos (line 9) | func (n *ClusterStmt) Pos() int { FILE: internal/sql/ast/cmd_type.go type CmdType (line 3) | type CmdType method Pos (line 5) | func (n *CmdType) Pos() int { FILE: internal/sql/ast/coalesce_expr.go type CoalesceExpr (line 5) | type CoalesceExpr struct method Pos (line 13) | func (n *CoalesceExpr) Pos() int { method Format (line 17) | func (n *CoalesceExpr) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/coerce_to_domain.go type CoerceToDomain (line 3) | type CoerceToDomain struct method Pos (line 13) | func (n *CoerceToDomain) Pos() int { FILE: internal/sql/ast/coerce_to_domain_value.go type CoerceToDomainValue (line 3) | type CoerceToDomainValue struct method Pos (line 11) | func (n *CoerceToDomainValue) Pos() int { FILE: internal/sql/ast/coerce_via_io.go type CoerceViaIO (line 3) | type CoerceViaIO struct method Pos (line 12) | func (n *CoerceViaIO) Pos() int { FILE: internal/sql/ast/coercion_context.go type CoercionContext (line 3) | type CoercionContext method Pos (line 5) | func (n *CoercionContext) Pos() int { FILE: internal/sql/ast/coercion_form.go type CoercionForm (line 3) | type CoercionForm method Pos (line 5) | func (n *CoercionForm) Pos() int { FILE: internal/sql/ast/collate_clause.go type CollateClause (line 3) | type CollateClause struct method Pos (line 9) | func (n *CollateClause) Pos() int { FILE: internal/sql/ast/collate_expr.go type CollateExpr (line 5) | type CollateExpr struct method Pos (line 12) | func (n *CollateExpr) Pos() int { method Format (line 16) | func (n *CollateExpr) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/column_def.go type ColumnDef (line 5) | type ColumnDef struct method Pos (line 33) | func (n *ColumnDef) Pos() int { method Format (line 37) | func (n *ColumnDef) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/column_ref.go type ColumnRef (line 9) | type ColumnRef struct method Pos (line 17) | func (n *ColumnRef) Pos() int { method Format (line 21) | func (n *ColumnRef) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/comment_on_column_stmt.go type CommentOnColumnStmt (line 3) | type CommentOnColumnStmt struct method Pos (line 9) | func (n *CommentOnColumnStmt) Pos() int { FILE: internal/sql/ast/comment_on_schema_stmt.go type CommentOnSchemaStmt (line 3) | type CommentOnSchemaStmt struct method Pos (line 8) | func (n *CommentOnSchemaStmt) Pos() int { FILE: internal/sql/ast/comment_on_table_stmt.go type CommentOnTableStmt (line 3) | type CommentOnTableStmt struct method Pos (line 8) | func (n *CommentOnTableStmt) Pos() int { FILE: internal/sql/ast/comment_on_type_stmt.go type CommentOnTypeStmt (line 3) | type CommentOnTypeStmt struct method Pos (line 8) | func (n *CommentOnTypeStmt) Pos() int { FILE: internal/sql/ast/comment_on_view_stmt.go type CommentOnViewStmt (line 3) | type CommentOnViewStmt struct method Pos (line 8) | func (n *CommentOnViewStmt) Pos() int { FILE: internal/sql/ast/comment_stmt.go type CommentStmt (line 3) | type CommentStmt struct method Pos (line 9) | func (n *CommentStmt) Pos() int { FILE: internal/sql/ast/common_table_expr.go type CommonTableExpr (line 5) | type CommonTableExpr struct method Pos (line 18) | func (n *CommonTableExpr) Pos() int { method Format (line 22) | func (n *CommonTableExpr) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/composite_type_stmt.go type CompositeTypeStmt (line 3) | type CompositeTypeStmt struct method Pos (line 7) | func (n *CompositeTypeStmt) Pos() int { FILE: internal/sql/ast/const.go type Const (line 3) | type Const struct method Pos (line 15) | func (n *Const) Pos() int { FILE: internal/sql/ast/constr_type.go type ConstrType (line 3) | type ConstrType method Pos (line 5) | func (n *ConstrType) Pos() int { FILE: internal/sql/ast/constraint.go type Constraint (line 3) | type Constraint struct method Pos (line 32) | func (n *Constraint) Pos() int { FILE: internal/sql/ast/constraints_set_stmt.go type ConstraintsSetStmt (line 3) | type ConstraintsSetStmt struct method Pos (line 8) | func (n *ConstraintsSetStmt) Pos() int { FILE: internal/sql/ast/convert_rowtype_expr.go type ConvertRowtypeExpr (line 3) | type ConvertRowtypeExpr struct method Pos (line 11) | func (n *ConvertRowtypeExpr) Pos() int { FILE: internal/sql/ast/copy_stmt.go type CopyStmt (line 3) | type CopyStmt struct method Pos (line 13) | func (n *CopyStmt) Pos() int { FILE: internal/sql/ast/create_am_stmt.go type CreateAmStmt (line 3) | type CreateAmStmt struct method Pos (line 9) | func (n *CreateAmStmt) Pos() int { FILE: internal/sql/ast/create_cast_stmt.go type CreateCastStmt (line 3) | type CreateCastStmt struct method Pos (line 11) | func (n *CreateCastStmt) Pos() int { FILE: internal/sql/ast/create_conversion_stmt.go type CreateConversionStmt (line 3) | type CreateConversionStmt struct method Pos (line 11) | func (n *CreateConversionStmt) Pos() int { FILE: internal/sql/ast/create_domain_stmt.go type CreateDomainStmt (line 3) | type CreateDomainStmt struct method Pos (line 10) | func (n *CreateDomainStmt) Pos() int { FILE: internal/sql/ast/create_enum_stmt.go type CreateEnumStmt (line 3) | type CreateEnumStmt struct method Pos (line 8) | func (n *CreateEnumStmt) Pos() int { FILE: internal/sql/ast/create_event_trig_stmt.go type CreateEventTrigStmt (line 3) | type CreateEventTrigStmt struct method Pos (line 10) | func (n *CreateEventTrigStmt) Pos() int { FILE: internal/sql/ast/create_extension_stmt.go type CreateExtensionStmt (line 5) | type CreateExtensionStmt struct method Pos (line 11) | func (n *CreateExtensionStmt) Pos() int { method Format (line 15) | func (n *CreateExtensionStmt) Format(buf *TrackedBuffer, d format.Dial... FILE: internal/sql/ast/create_fdw_stmt.go type CreateFdwStmt (line 3) | type CreateFdwStmt struct method Pos (line 9) | func (n *CreateFdwStmt) Pos() int { FILE: internal/sql/ast/create_foreign_server_stmt.go type CreateForeignServerStmt (line 3) | type CreateForeignServerStmt struct method Pos (line 12) | func (n *CreateForeignServerStmt) Pos() int { FILE: internal/sql/ast/create_foreign_table_stmt.go type CreateForeignTableStmt (line 3) | type CreateForeignTableStmt struct method Pos (line 9) | func (n *CreateForeignTableStmt) Pos() int { FILE: internal/sql/ast/create_function_stmt.go type CreateFunctionStmt (line 5) | type CreateFunctionStmt struct method Pos (line 15) | func (n *CreateFunctionStmt) Pos() int { method Format (line 19) | func (n *CreateFunctionStmt) Format(buf *TrackedBuffer, d format.Diale... FILE: internal/sql/ast/create_op_class_item.go type CreateOpClassItem (line 3) | type CreateOpClassItem struct method Pos (line 12) | func (n *CreateOpClassItem) Pos() int { FILE: internal/sql/ast/create_op_class_stmt.go type CreateOpClassStmt (line 3) | type CreateOpClassStmt struct method Pos (line 12) | func (n *CreateOpClassStmt) Pos() int { FILE: internal/sql/ast/create_op_family_stmt.go type CreateOpFamilyStmt (line 3) | type CreateOpFamilyStmt struct method Pos (line 8) | func (n *CreateOpFamilyStmt) Pos() int { FILE: internal/sql/ast/create_p_lang_stmt.go type CreatePLangStmt (line 3) | type CreatePLangStmt struct method Pos (line 12) | func (n *CreatePLangStmt) Pos() int { FILE: internal/sql/ast/create_policy_stmt.go type CreatePolicyStmt (line 3) | type CreatePolicyStmt struct method Pos (line 13) | func (n *CreatePolicyStmt) Pos() int { FILE: internal/sql/ast/create_publication_stmt.go type CreatePublicationStmt (line 3) | type CreatePublicationStmt struct method Pos (line 10) | func (n *CreatePublicationStmt) Pos() int { FILE: internal/sql/ast/create_range_stmt.go type CreateRangeStmt (line 3) | type CreateRangeStmt struct method Pos (line 8) | func (n *CreateRangeStmt) Pos() int { FILE: internal/sql/ast/create_role_stmt.go type CreateRoleStmt (line 3) | type CreateRoleStmt struct method Pos (line 9) | func (n *CreateRoleStmt) Pos() int { FILE: internal/sql/ast/create_schema_stmt.go type CreateSchemaStmt (line 3) | type CreateSchemaStmt struct method Pos (line 10) | func (n *CreateSchemaStmt) Pos() int { FILE: internal/sql/ast/create_seq_stmt.go type CreateSeqStmt (line 3) | type CreateSeqStmt struct method Pos (line 11) | func (n *CreateSeqStmt) Pos() int { FILE: internal/sql/ast/create_stats_stmt.go type CreateStatsStmt (line 3) | type CreateStatsStmt struct method Pos (line 11) | func (n *CreateStatsStmt) Pos() int { FILE: internal/sql/ast/create_stmt.go type CreateStmt (line 3) | type CreateStmt struct method Pos (line 17) | func (n *CreateStmt) Pos() int { FILE: internal/sql/ast/create_subscription_stmt.go type CreateSubscriptionStmt (line 3) | type CreateSubscriptionStmt struct method Pos (line 10) | func (n *CreateSubscriptionStmt) Pos() int { FILE: internal/sql/ast/create_table_as_stmt.go type CreateTableAsStmt (line 3) | type CreateTableAsStmt struct method Pos (line 11) | func (n *CreateTableAsStmt) Pos() int { FILE: internal/sql/ast/create_table_space_stmt.go type CreateTableSpaceStmt (line 3) | type CreateTableSpaceStmt struct method Pos (line 10) | func (n *CreateTableSpaceStmt) Pos() int { FILE: internal/sql/ast/create_table_stmt.go type CreateTableStmt (line 5) | type CreateTableStmt struct method Pos (line 14) | func (n *CreateTableStmt) Pos() int { method Format (line 18) | func (n *CreateTableStmt) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/create_transform_stmt.go type CreateTransformStmt (line 3) | type CreateTransformStmt struct method Pos (line 11) | func (n *CreateTransformStmt) Pos() int { FILE: internal/sql/ast/create_trig_stmt.go type CreateTrigStmt (line 3) | type CreateTrigStmt struct method Pos (line 20) | func (n *CreateTrigStmt) Pos() int { FILE: internal/sql/ast/create_user_mapping_stmt.go type CreateUserMappingStmt (line 3) | type CreateUserMappingStmt struct method Pos (line 10) | func (n *CreateUserMappingStmt) Pos() int { FILE: internal/sql/ast/createdb_stmt.go type CreatedbStmt (line 3) | type CreatedbStmt struct method Pos (line 8) | func (n *CreatedbStmt) Pos() int { FILE: internal/sql/ast/current_of_expr.go type CurrentOfExpr (line 3) | type CurrentOfExpr struct method Pos (line 10) | func (n *CurrentOfExpr) Pos() int { FILE: internal/sql/ast/deallocate_stmt.go type DeallocateStmt (line 3) | type DeallocateStmt struct method Pos (line 7) | func (n *DeallocateStmt) Pos() int { FILE: internal/sql/ast/declare_cursor_stmt.go type DeclareCursorStmt (line 3) | type DeclareCursorStmt struct method Pos (line 9) | func (n *DeclareCursorStmt) Pos() int { FILE: internal/sql/ast/def_elem.go type DefElem (line 5) | type DefElem struct method Pos (line 13) | func (n *DefElem) Pos() int { method Format (line 17) | func (n *DefElem) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/def_elem_action.go type DefElemAction (line 3) | type DefElemAction method Pos (line 5) | func (n *DefElemAction) Pos() int { FILE: internal/sql/ast/define_stmt.go type DefineStmt (line 3) | type DefineStmt struct method Pos (line 12) | func (n *DefineStmt) Pos() int { FILE: internal/sql/ast/delete_stmt.go type DeleteStmt (line 5) | type DeleteStmt struct method Pos (line 17) | func (n *DeleteStmt) Pos() int { method Format (line 21) | func (n *DeleteStmt) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/discard_mode.go type DiscardMode (line 3) | type DiscardMode method Pos (line 5) | func (n *DiscardMode) Pos() int { FILE: internal/sql/ast/discard_stmt.go type DiscardStmt (line 3) | type DiscardStmt struct method Pos (line 7) | func (n *DiscardStmt) Pos() int { FILE: internal/sql/ast/do_stmt.go type DoStmt (line 5) | type DoStmt struct method Pos (line 9) | func (n *DoStmt) Pos() int { method Format (line 13) | func (n *DoStmt) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/drop_behavior.go type DropBehavior (line 3) | type DropBehavior method Pos (line 5) | func (n *DropBehavior) Pos() int { FILE: internal/sql/ast/drop_function_stmt.go type DropFunctionStmt (line 3) | type DropFunctionStmt struct method Pos (line 8) | func (n *DropFunctionStmt) Pos() int { FILE: internal/sql/ast/drop_owned_stmt.go type DropOwnedStmt (line 3) | type DropOwnedStmt struct method Pos (line 8) | func (n *DropOwnedStmt) Pos() int { FILE: internal/sql/ast/drop_role_stmt.go type DropRoleStmt (line 3) | type DropRoleStmt struct method Pos (line 8) | func (n *DropRoleStmt) Pos() int { FILE: internal/sql/ast/drop_schema_stmt.go type DropSchemaStmt (line 3) | type DropSchemaStmt struct method Pos (line 8) | func (n *DropSchemaStmt) Pos() int { FILE: internal/sql/ast/drop_stmt.go type DropStmt (line 3) | type DropStmt struct method Pos (line 11) | func (n *DropStmt) Pos() int { FILE: internal/sql/ast/drop_subscription_stmt.go type DropSubscriptionStmt (line 3) | type DropSubscriptionStmt struct method Pos (line 9) | func (n *DropSubscriptionStmt) Pos() int { FILE: internal/sql/ast/drop_table_space_stmt.go type DropTableSpaceStmt (line 3) | type DropTableSpaceStmt struct method Pos (line 8) | func (n *DropTableSpaceStmt) Pos() int { FILE: internal/sql/ast/drop_table_stmt.go type DropTableStmt (line 3) | type DropTableStmt struct method Pos (line 8) | func (n *DropTableStmt) Pos() int { FILE: internal/sql/ast/drop_type_stmt.go type DropTypeStmt (line 3) | type DropTypeStmt struct method Pos (line 8) | func (n *DropTypeStmt) Pos() int { FILE: internal/sql/ast/drop_user_mapping_stmt.go type DropUserMappingStmt (line 3) | type DropUserMappingStmt struct method Pos (line 9) | func (n *DropUserMappingStmt) Pos() int { FILE: internal/sql/ast/dropdb_stmt.go type DropdbStmt (line 3) | type DropdbStmt struct method Pos (line 8) | func (n *DropdbStmt) Pos() int { FILE: internal/sql/ast/execute_stmt.go type ExecuteStmt (line 3) | type ExecuteStmt struct method Pos (line 8) | func (n *ExecuteStmt) Pos() int { FILE: internal/sql/ast/explain_stmt.go type ExplainStmt (line 3) | type ExplainStmt struct method Pos (line 8) | func (n *ExplainStmt) Pos() int { FILE: internal/sql/ast/expr.go type Expr (line 3) | type Expr struct method Pos (line 6) | func (n *Expr) Pos() int { FILE: internal/sql/ast/fetch_direction.go type FetchDirection (line 3) | type FetchDirection method Pos (line 5) | func (n *FetchDirection) Pos() int { FILE: internal/sql/ast/fetch_stmt.go type FetchStmt (line 3) | type FetchStmt struct method Pos (line 10) | func (n *FetchStmt) Pos() int { FILE: internal/sql/ast/field_select.go type FieldSelect (line 3) | type FieldSelect struct method Pos (line 12) | func (n *FieldSelect) Pos() int { FILE: internal/sql/ast/field_store.go type FieldStore (line 3) | type FieldStore struct method Pos (line 11) | func (n *FieldStore) Pos() int { FILE: internal/sql/ast/float.go type Float (line 5) | type Float struct method Pos (line 9) | func (n *Float) Pos() int { method Format (line 13) | func (n *Float) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/from_expr.go type FromExpr (line 3) | type FromExpr struct method Pos (line 8) | func (n *FromExpr) Pos() int { FILE: internal/sql/ast/func_call.go type FuncCall (line 5) | type FuncCall struct method Pos (line 20) | func (n *FuncCall) Pos() int { method Format (line 24) | func (n *FuncCall) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/func_expr.go type FuncExpr (line 3) | type FuncExpr struct method Pos (line 16) | func (n *FuncExpr) Pos() int { FILE: internal/sql/ast/func_name.go type FuncName (line 5) | type FuncName struct method Pos (line 11) | func (n *FuncName) Pos() int { method Format (line 15) | func (n *FuncName) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/func_param.go type FuncParamMode (line 5) | type FuncParamMode constant FuncParamIn (line 8) | FuncParamIn FuncParamMode = iota constant FuncParamOut (line 9) | FuncParamOut constant FuncParamInOut (line 10) | FuncParamInOut constant FuncParamVariadic (line 11) | FuncParamVariadic constant FuncParamTable (line 12) | FuncParamTable constant FuncParamDefault (line 13) | FuncParamDefault type FuncParam (line 16) | type FuncParam struct method Pos (line 23) | func (n *FuncParam) Pos() int { method Format (line 27) | func (n *FuncParam) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/func_spec.go type FuncSpec (line 3) | type FuncSpec struct method Pos (line 9) | func (n *FuncSpec) Pos() int { FILE: internal/sql/ast/function_parameter.go type FunctionParameter (line 3) | type FunctionParameter struct method Pos (line 10) | func (n *FunctionParameter) Pos() int { FILE: internal/sql/ast/function_parameter_mode.go type FunctionParameterMode (line 3) | type FunctionParameterMode method Pos (line 5) | func (n *FunctionParameterMode) Pos() int { FILE: internal/sql/ast/grant_object_type.go type GrantObjectType (line 3) | type GrantObjectType method Pos (line 5) | func (n *GrantObjectType) Pos() int { FILE: internal/sql/ast/grant_role_stmt.go type GrantRoleStmt (line 3) | type GrantRoleStmt struct method Pos (line 11) | func (n *GrantRoleStmt) Pos() int { FILE: internal/sql/ast/grant_stmt.go type GrantStmt (line 3) | type GrantStmt struct method Pos (line 14) | func (n *GrantStmt) Pos() int { FILE: internal/sql/ast/grant_target_type.go type GrantTargetType (line 3) | type GrantTargetType method Pos (line 5) | func (n *GrantTargetType) Pos() int { FILE: internal/sql/ast/grouping_func.go type GroupingFunc (line 3) | type GroupingFunc struct method Pos (line 12) | func (n *GroupingFunc) Pos() int { FILE: internal/sql/ast/grouping_set.go type GroupingSet (line 3) | type GroupingSet struct method Pos (line 9) | func (n *GroupingSet) Pos() int { FILE: internal/sql/ast/grouping_set_kind.go type GroupingSetKind (line 3) | type GroupingSetKind method Pos (line 5) | func (n *GroupingSetKind) Pos() int { FILE: internal/sql/ast/import_foreign_schema_stmt.go type ImportForeignSchemaStmt (line 3) | type ImportForeignSchemaStmt struct method Pos (line 12) | func (n *ImportForeignSchemaStmt) Pos() int { FILE: internal/sql/ast/import_foreign_schema_type.go type ImportForeignSchemaType (line 3) | type ImportForeignSchemaType method Pos (line 5) | func (n *ImportForeignSchemaType) Pos() int { FILE: internal/sql/ast/in.go type In (line 6) | type In struct method Pos (line 19) | func (n *In) Pos() int { method Format (line 24) | func (n *In) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/index_elem.go type IndexElem (line 5) | type IndexElem struct method Pos (line 15) | func (n *IndexElem) Pos() int { method Format (line 19) | func (n *IndexElem) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/index_stmt.go type IndexStmt (line 3) | type IndexStmt struct method Pos (line 24) | func (n *IndexStmt) Pos() int { FILE: internal/sql/ast/infer_clause.go type InferClause (line 5) | type InferClause struct method Pos (line 12) | func (n *InferClause) Pos() int { method Format (line 16) | func (n *InferClause) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/inference_elem.go type InferenceElem (line 3) | type InferenceElem struct method Pos (line 10) | func (n *InferenceElem) Pos() int { FILE: internal/sql/ast/inline_code_block.go type InlineCodeBlock (line 3) | type InlineCodeBlock struct method Pos (line 9) | func (n *InlineCodeBlock) Pos() int { FILE: internal/sql/ast/insert_stmt.go type InsertStmt (line 5) | type InsertStmt struct method Pos (line 17) | func (n *InsertStmt) Pos() int { method Format (line 21) | func (n *InsertStmt) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/integer.go type Integer (line 9) | type Integer struct method Pos (line 13) | func (n *Integer) Pos() int { method Format (line 17) | func (n *Integer) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/interval_expr.go type IntervalExpr (line 6) | type IntervalExpr struct method Pos (line 12) | func (n *IntervalExpr) Pos() int { method Format (line 16) | func (n *IntervalExpr) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/into_clause.go type IntoClause (line 3) | type IntoClause struct method Pos (line 13) | func (n *IntoClause) Pos() int { FILE: internal/sql/ast/join_expr.go type JoinExpr (line 5) | type JoinExpr struct method Pos (line 16) | func (n *JoinExpr) Pos() int { method Format (line 20) | func (n *JoinExpr) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/join_type.go constant _ (line 6) | _ JoinType = iota constant JoinTypeInner (line 7) | JoinTypeInner constant JoinTypeLeft (line 8) | JoinTypeLeft constant JoinTypeFull (line 9) | JoinTypeFull constant JoinTypeRight (line 10) | JoinTypeRight constant JoinTypeSemi (line 11) | JoinTypeSemi constant JoinTypeAnti (line 12) | JoinTypeAnti constant JoinTypeUniqueOuter (line 13) | JoinTypeUniqueOuter constant JoinTypeUniqueInner (line 14) | JoinTypeUniqueInner type JoinType (line 17) | type JoinType method Pos (line 19) | func (n *JoinType) Pos() int { FILE: internal/sql/ast/list.go type List (line 5) | type List struct method Pos (line 9) | func (n *List) Pos() int { method Format (line 13) | func (n *List) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/listen_stmt.go type ListenStmt (line 5) | type ListenStmt struct method Pos (line 9) | func (n *ListenStmt) Pos() int { method Format (line 13) | func (n *ListenStmt) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/load_stmt.go type LoadStmt (line 3) | type LoadStmt struct method Pos (line 7) | func (n *LoadStmt) Pos() int { FILE: internal/sql/ast/lock_clause_strength.go type LockClauseStrength (line 3) | type LockClauseStrength method Pos (line 5) | func (n *LockClauseStrength) Pos() int { FILE: internal/sql/ast/lock_stmt.go type LockStmt (line 3) | type LockStmt struct method Pos (line 9) | func (n *LockStmt) Pos() int { FILE: internal/sql/ast/lock_wait_policy.go type LockWaitPolicy (line 3) | type LockWaitPolicy method Pos (line 5) | func (n *LockWaitPolicy) Pos() int { FILE: internal/sql/ast/locking_clause.go type LockingClause (line 5) | type LockingClause struct method Pos (line 11) | func (n *LockingClause) Pos() int { method Format (line 32) | func (n *LockingClause) Format(buf *TrackedBuffer, d format.Dialect) { constant LockClauseStrengthUndefined (line 17) | LockClauseStrengthUndefined LockClauseStrength = 0 constant LockClauseStrengthNone (line 18) | LockClauseStrengthNone LockClauseStrength = 1 constant LockClauseStrengthForKeyShare (line 19) | LockClauseStrengthForKeyShare LockClauseStrength = 2 constant LockClauseStrengthForShare (line 20) | LockClauseStrengthForShare LockClauseStrength = 3 constant LockClauseStrengthForNoKeyUpdate (line 21) | LockClauseStrengthForNoKeyUpdate LockClauseStrength = 4 constant LockClauseStrengthForUpdate (line 22) | LockClauseStrengthForUpdate LockClauseStrength = 5 constant LockWaitPolicyBlock (line 27) | LockWaitPolicyBlock LockWaitPolicy = 1 constant LockWaitPolicySkip (line 28) | LockWaitPolicySkip LockWaitPolicy = 2 constant LockWaitPolicyError (line 29) | LockWaitPolicyError LockWaitPolicy = 3 FILE: internal/sql/ast/min_max_expr.go type MinMaxExpr (line 3) | type MinMaxExpr struct method Pos (line 13) | func (n *MinMaxExpr) Pos() int { FILE: internal/sql/ast/min_max_op.go type MinMaxOp (line 3) | type MinMaxOp method Pos (line 5) | func (n *MinMaxOp) Pos() int { FILE: internal/sql/ast/multi_assign_ref.go type MultiAssignRef (line 5) | type MultiAssignRef struct method Pos (line 11) | func (n *MultiAssignRef) Pos() int { method Format (line 15) | func (n *MultiAssignRef) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/named_arg_expr.go type NamedArgExpr (line 5) | type NamedArgExpr struct method Pos (line 13) | func (n *NamedArgExpr) Pos() int { method Format (line 17) | func (n *NamedArgExpr) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/next_value_expr.go type NextValueExpr (line 3) | type NextValueExpr struct method Pos (line 9) | func (n *NextValueExpr) Pos() int { FILE: internal/sql/ast/node.go type Node (line 3) | type Node interface FILE: internal/sql/ast/notify_stmt.go type NotifyStmt (line 5) | type NotifyStmt struct method Pos (line 10) | func (n *NotifyStmt) Pos() int { method Format (line 14) | func (n *NotifyStmt) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/null.go type Null (line 5) | type Null struct method Pos (line 8) | func (n *Null) Pos() int { method Format (line 11) | func (n *Null) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/null_test_expr.go type NullTest (line 5) | type NullTest struct method Pos (line 13) | func (n *NullTest) Pos() int { method Format (line 23) | func (n *NullTest) Format(buf *TrackedBuffer, d format.Dialect) { constant NullTestTypeIsNull (line 19) | NullTestTypeIsNull NullTestType = 1 constant NullTestTypeIsNotNull (line 20) | NullTestTypeIsNotNull NullTestType = 2 FILE: internal/sql/ast/null_test_type.go type NullTestType (line 3) | type NullTestType method Pos (line 5) | func (n *NullTestType) Pos() int { FILE: internal/sql/ast/object_type.go type ObjectType (line 3) | type ObjectType method Pos (line 5) | func (n *ObjectType) Pos() int { FILE: internal/sql/ast/object_with_args.go type ObjectWithArgs (line 3) | type ObjectWithArgs struct method Pos (line 9) | func (n *ObjectWithArgs) Pos() int { FILE: internal/sql/ast/on_commit_action.go type OnCommitAction (line 3) | type OnCommitAction method Pos (line 5) | func (n *OnCommitAction) Pos() int { FILE: internal/sql/ast/on_conflict_action.go type OnConflictAction (line 3) | type OnConflictAction method Pos (line 5) | func (n *OnConflictAction) Pos() int { FILE: internal/sql/ast/on_conflict_clause.go type OnConflictClause (line 5) | type OnConflictClause struct method Pos (line 13) | func (n *OnConflictClause) Pos() int { method Format (line 25) | func (n *OnConflictClause) Format(buf *TrackedBuffer, d format.Dialect) { constant OnConflictActionUndefined (line 19) | OnConflictActionUndefined OnConflictAction = 0 constant OnConflictActionNone (line 20) | OnConflictActionNone OnConflictAction = 1 constant OnConflictActionNothing (line 21) | OnConflictActionNothing OnConflictAction = 2 constant OnConflictActionUpdate (line 22) | OnConflictActionUpdate OnConflictAction = 3 FILE: internal/sql/ast/on_conflict_expr.go type OnConflictExpr (line 3) | type OnConflictExpr struct method Pos (line 14) | func (n *OnConflictExpr) Pos() int { FILE: internal/sql/ast/on_duplicate_key_update.go type OnDuplicateKeyUpdate (line 6) | type OnDuplicateKeyUpdate struct method Pos (line 12) | func (n *OnDuplicateKeyUpdate) Pos() int { method Format (line 16) | func (n *OnDuplicateKeyUpdate) Format(buf *TrackedBuffer, d format.Dia... FILE: internal/sql/ast/op_expr.go type OpExpr (line 3) | type OpExpr struct method Pos (line 14) | func (n *OpExpr) Pos() int { FILE: internal/sql/ast/overriding_kind.go type OverridingKind (line 3) | type OverridingKind method Pos (line 5) | func (n *OverridingKind) Pos() int { FILE: internal/sql/ast/param.go type Param (line 3) | type Param struct method Pos (line 13) | func (n *Param) Pos() int { FILE: internal/sql/ast/param_exec_data.go type ParamExecData (line 3) | type ParamExecData struct method Pos (line 9) | func (n *ParamExecData) Pos() int { FILE: internal/sql/ast/param_extern_data.go type ParamExternData (line 3) | type ParamExternData struct method Pos (line 10) | func (n *ParamExternData) Pos() int { FILE: internal/sql/ast/param_kind.go type ParamKind (line 3) | type ParamKind method Pos (line 5) | func (n *ParamKind) Pos() int { FILE: internal/sql/ast/param_list_info_data.go type ParamListInfoData (line 3) | type ParamListInfoData struct method Pos (line 10) | func (n *ParamListInfoData) Pos() int { FILE: internal/sql/ast/param_ref.go type ParamRef (line 5) | type ParamRef struct method Pos (line 11) | func (n *ParamRef) Pos() int { method Format (line 15) | func (n *ParamRef) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/paren_expr.go type ParenExpr (line 6) | type ParenExpr struct method Pos (line 11) | func (n *ParenExpr) Pos() int { method Format (line 15) | func (n *ParenExpr) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/partition_bound_spec.go type PartitionBoundSpec (line 3) | type PartitionBoundSpec struct method Pos (line 11) | func (n *PartitionBoundSpec) Pos() int { FILE: internal/sql/ast/partition_cmd.go type PartitionCmd (line 3) | type PartitionCmd struct method Pos (line 8) | func (n *PartitionCmd) Pos() int { FILE: internal/sql/ast/partition_elem.go type PartitionElem (line 3) | type PartitionElem struct method Pos (line 11) | func (n *PartitionElem) Pos() int { FILE: internal/sql/ast/partition_range_datum.go type PartitionRangeDatum (line 3) | type PartitionRangeDatum struct method Pos (line 9) | func (n *PartitionRangeDatum) Pos() int { FILE: internal/sql/ast/partition_range_datum_kind.go type PartitionRangeDatumKind (line 3) | type PartitionRangeDatumKind method Pos (line 5) | func (n *PartitionRangeDatumKind) Pos() int { FILE: internal/sql/ast/partition_spec.go type PartitionSpec (line 3) | type PartitionSpec struct method Pos (line 9) | func (n *PartitionSpec) Pos() int { FILE: internal/sql/ast/prepare_stmt.go type PrepareStmt (line 3) | type PrepareStmt struct method Pos (line 9) | func (n *PrepareStmt) Pos() int { FILE: internal/sql/ast/print.go type nodeFormatter (line 10) | type nodeFormatter interface type TrackedBuffer (line 14) | type TrackedBuffer struct method astFormat (line 25) | func (t *TrackedBuffer) astFormat(n Node, d format.Dialect) { method join (line 33) | func (t *TrackedBuffer) join(n *List, d format.Dialect, sep string) { function NewTrackedBuffer (line 19) | func NewTrackedBuffer() *TrackedBuffer { function Format (line 48) | func Format(n Node, d format.Dialect) string { function set (line 56) | func set(n Node) bool { function items (line 67) | func items(n *List) bool { function todo (line 74) | func todo(n *List) bool { FILE: internal/sql/ast/query.go type Query (line 3) | type Query struct method Pos (line 42) | func (n *Query) Pos() int { FILE: internal/sql/ast/query_source.go type QuerySource (line 3) | type QuerySource method Pos (line 5) | func (n *QuerySource) Pos() int { FILE: internal/sql/ast/range_function.go type RangeFunction (line 5) | type RangeFunction struct method Pos (line 14) | func (n *RangeFunction) Pos() int { method Format (line 18) | func (n *RangeFunction) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/range_subselect.go type RangeSubselect (line 5) | type RangeSubselect struct method Pos (line 11) | func (n *RangeSubselect) Pos() int { method Format (line 15) | func (n *RangeSubselect) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/range_table_func.go type RangeTableFunc (line 3) | type RangeTableFunc struct method Pos (line 13) | func (n *RangeTableFunc) Pos() int { FILE: internal/sql/ast/range_table_func_col.go type RangeTableFuncCol (line 3) | type RangeTableFuncCol struct method Pos (line 13) | func (n *RangeTableFuncCol) Pos() int { FILE: internal/sql/ast/range_table_sample.go type RangeTableSample (line 3) | type RangeTableSample struct method Pos (line 11) | func (n *RangeTableSample) Pos() int { FILE: internal/sql/ast/range_tbl_entry.go type RangeTblEntry (line 3) | type RangeTblEntry struct method Pos (line 37) | func (n *RangeTblEntry) Pos() int { FILE: internal/sql/ast/range_tbl_function.go type RangeTblFunction (line 3) | type RangeTblFunction struct method Pos (line 13) | func (n *RangeTblFunction) Pos() int { FILE: internal/sql/ast/range_tbl_ref.go type RangeTblRef (line 3) | type RangeTblRef struct method Pos (line 7) | func (n *RangeTblRef) Pos() int { FILE: internal/sql/ast/range_var.go type RangeVar (line 5) | type RangeVar struct method Pos (line 15) | func (n *RangeVar) Pos() int { method Format (line 19) | func (n *RangeVar) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/raw_stmt.go type RawStmt (line 5) | type RawStmt struct method Pos (line 11) | func (n *RawStmt) Pos() int { method Format (line 15) | func (n *RawStmt) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/reassign_owned_stmt.go type ReassignOwnedStmt (line 3) | type ReassignOwnedStmt struct method Pos (line 8) | func (n *ReassignOwnedStmt) Pos() int { FILE: internal/sql/ast/refresh_mat_view_stmt.go type RefreshMatViewStmt (line 5) | type RefreshMatViewStmt struct method Pos (line 11) | func (n *RefreshMatViewStmt) Pos() int { method Format (line 15) | func (n *RefreshMatViewStmt) Format(buf *TrackedBuffer, d format.Diale... FILE: internal/sql/ast/reindex_object_type.go type ReindexObjectType (line 3) | type ReindexObjectType method Pos (line 5) | func (n *ReindexObjectType) Pos() int { FILE: internal/sql/ast/reindex_stmt.go type ReindexStmt (line 3) | type ReindexStmt struct method Pos (line 10) | func (n *ReindexStmt) Pos() int { FILE: internal/sql/ast/relabel_type.go type RelabelType (line 3) | type RelabelType struct method Pos (line 13) | func (n *RelabelType) Pos() int { FILE: internal/sql/ast/rename_column_stmt.go type RenameColumnStmt (line 3) | type RenameColumnStmt struct method Pos (line 10) | func (n *RenameColumnStmt) Pos() int { FILE: internal/sql/ast/rename_stmt.go type RenameStmt (line 3) | type RenameStmt struct method Pos (line 14) | func (n *RenameStmt) Pos() int { FILE: internal/sql/ast/rename_table_stmt.go type RenameTableStmt (line 3) | type RenameTableStmt struct method Pos (line 9) | func (n *RenameTableStmt) Pos() int { FILE: internal/sql/ast/rename_type_stmt.go type RenameTypeStmt (line 3) | type RenameTypeStmt struct method Pos (line 8) | func (n *RenameTypeStmt) Pos() int { FILE: internal/sql/ast/replica_identity_stmt.go type ReplicaIdentityStmt (line 3) | type ReplicaIdentityStmt struct method Pos (line 8) | func (n *ReplicaIdentityStmt) Pos() int { FILE: internal/sql/ast/res_target.go type ResTarget (line 5) | type ResTarget struct method Pos (line 12) | func (n *ResTarget) Pos() int { method Format (line 16) | func (n *ResTarget) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/role_spec.go type RoleSpec (line 3) | type RoleSpec struct method Pos (line 9) | func (n *RoleSpec) Pos() int { FILE: internal/sql/ast/role_spec_type.go type RoleSpecType (line 3) | type RoleSpecType method Pos (line 5) | func (n *RoleSpecType) Pos() int { FILE: internal/sql/ast/role_stmt_type.go type RoleStmtType (line 3) | type RoleStmtType method Pos (line 5) | func (n *RoleStmtType) Pos() int { FILE: internal/sql/ast/row_compare_expr.go type RowCompareExpr (line 3) | type RowCompareExpr struct method Pos (line 13) | func (n *RowCompareExpr) Pos() int { FILE: internal/sql/ast/row_compare_type.go type RowCompareType (line 3) | type RowCompareType method Pos (line 5) | func (n *RowCompareType) Pos() int { FILE: internal/sql/ast/row_expr.go type RowExpr (line 5) | type RowExpr struct method Pos (line 14) | func (n *RowExpr) Pos() int { method Format (line 18) | func (n *RowExpr) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/row_mark_clause.go type RowMarkClause (line 3) | type RowMarkClause struct method Pos (line 10) | func (n *RowMarkClause) Pos() int { FILE: internal/sql/ast/rte_kind.go type RTEKind (line 3) | type RTEKind method Pos (line 5) | func (n *RTEKind) Pos() int { FILE: internal/sql/ast/rule_stmt.go type RuleStmt (line 3) | type RuleStmt struct method Pos (line 13) | func (n *RuleStmt) Pos() int { FILE: internal/sql/ast/scalar_array_op_expr.go type ScalarArrayOpExpr (line 5) | type ScalarArrayOpExpr struct method Pos (line 14) | func (n *ScalarArrayOpExpr) Pos() int { method Format (line 18) | func (n *ScalarArrayOpExpr) Format(buf *TrackedBuffer, d format.Dialec... FILE: internal/sql/ast/scan_direction.go type ScanDirection (line 3) | type ScanDirection method Pos (line 5) | func (n *ScanDirection) Pos() int { FILE: internal/sql/ast/sec_label_stmt.go type SecLabelStmt (line 3) | type SecLabelStmt struct method Pos (line 10) | func (n *SecLabelStmt) Pos() int { FILE: internal/sql/ast/select_stmt.go type SelectStmt (line 9) | type SelectStmt struct method Pos (line 30) | func (n *SelectStmt) Pos() int { method Format (line 34) | func (n *SelectStmt) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/set_op_cmd.go type SetOpCmd (line 3) | type SetOpCmd method Pos (line 5) | func (n *SetOpCmd) Pos() int { FILE: internal/sql/ast/set_op_strategy.go type SetOpStrategy (line 3) | type SetOpStrategy method Pos (line 5) | func (n *SetOpStrategy) Pos() int { FILE: internal/sql/ast/set_operation.go constant None (line 6) | None SetOperation = iota constant Union (line 7) | Union constant Intersect (line 8) | Intersect constant Except (line 9) | Except type SetOperation (line 12) | type SetOperation method Pos (line 14) | func (n *SetOperation) Pos() int { method String (line 18) | func (n SetOperation) String() string { FILE: internal/sql/ast/set_operation_stmt.go type SetOperationStmt (line 3) | type SetOperationStmt struct method Pos (line 14) | func (n *SetOperationStmt) Pos() int { FILE: internal/sql/ast/set_to_default.go type SetToDefault (line 3) | type SetToDefault struct method Pos (line 11) | func (n *SetToDefault) Pos() int { FILE: internal/sql/ast/sort_by.go type SortBy (line 5) | type SortBy struct method Pos (line 13) | func (n *SortBy) Pos() int { method Format (line 17) | func (n *SortBy) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/sort_by_dir.go type SortByDir (line 3) | type SortByDir method Pos (line 5) | func (n *SortByDir) Pos() int { constant SortByDirUndefined (line 10) | SortByDirUndefined SortByDir = 0 constant SortByDirDefault (line 11) | SortByDirDefault SortByDir = 1 constant SortByDirAsc (line 12) | SortByDirAsc SortByDir = 2 constant SortByDirDesc (line 13) | SortByDirDesc SortByDir = 3 constant SortByDirUsing (line 14) | SortByDirUsing SortByDir = 4 FILE: internal/sql/ast/sort_by_nulls.go type SortByNulls (line 3) | type SortByNulls method Pos (line 5) | func (n *SortByNulls) Pos() int { constant SortByNullsUndefined (line 10) | SortByNullsUndefined SortByNulls = 0 constant SortByNullsDefault (line 11) | SortByNullsDefault SortByNulls = 1 constant SortByNullsFirst (line 12) | SortByNullsFirst SortByNulls = 2 constant SortByNullsLast (line 13) | SortByNullsLast SortByNulls = 3 FILE: internal/sql/ast/sort_group_clause.go type SortGroupClause (line 3) | type SortGroupClause struct method Pos (line 11) | func (n *SortGroupClause) Pos() int { FILE: internal/sql/ast/sql_value_function.go type SQLValueFunction (line 5) | type SQLValueFunction struct method Pos (line 13) | func (n *SQLValueFunction) Pos() int { method Format (line 17) | func (n *SQLValueFunction) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/sql_value_function_op.go type SQLValueFunctionOp (line 3) | type SQLValueFunctionOp method Pos (line 25) | func (n *SQLValueFunctionOp) Pos() int { constant _ (line 7) | _ SQLValueFunctionOp = iota constant SVFOpCurrentDate (line 8) | SVFOpCurrentDate constant SVFOpCurrentTime (line 9) | SVFOpCurrentTime constant SVFOpCurrentTimeN (line 10) | SVFOpCurrentTimeN constant SVFOpCurrentTimestamp (line 11) | SVFOpCurrentTimestamp constant SVFOpCurrentTimestampN (line 12) | SVFOpCurrentTimestampN constant SVFOpLocaltime (line 13) | SVFOpLocaltime constant SVFOpLocaltimeN (line 14) | SVFOpLocaltimeN constant SVFOpLocaltimestamp (line 15) | SVFOpLocaltimestamp constant SVFOpLocaltimestampN (line 16) | SVFOpLocaltimestampN constant SVFOpCurrentRole (line 17) | SVFOpCurrentRole constant SVFOpCurrentUser (line 18) | SVFOpCurrentUser constant SVFOpUser (line 19) | SVFOpUser constant SVFOpSessionUser (line 20) | SVFOpSessionUser constant SVFOpCurrentCatalog (line 21) | SVFOpCurrentCatalog constant SVFOpCurrentSchema (line 22) | SVFOpCurrentSchema FILE: internal/sql/ast/statement.go type Statement (line 3) | type Statement struct method Pos (line 7) | func (n *Statement) Pos() int { FILE: internal/sql/ast/string.go type String (line 5) | type String struct method Pos (line 9) | func (n *String) Pos() int { method Format (line 13) | func (n *String) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/sub_link.go type SubLinkType (line 5) | type SubLinkType constant EXISTS_SUBLINK (line 8) | EXISTS_SUBLINK SubLinkType = iota constant ALL_SUBLINK (line 9) | ALL_SUBLINK constant ANY_SUBLINK (line 10) | ANY_SUBLINK constant ROWCOMPARE_SUBLINK (line 11) | ROWCOMPARE_SUBLINK constant EXPR_SUBLINK (line 12) | EXPR_SUBLINK constant MULTIEXPR_SUBLINK (line 13) | MULTIEXPR_SUBLINK constant ARRAY_SUBLINK (line 14) | ARRAY_SUBLINK constant CTE_SUBLINK (line 15) | CTE_SUBLINK type SubLink (line 18) | type SubLink struct method Pos (line 28) | func (n *SubLink) Pos() int { method Format (line 32) | func (n *SubLink) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/sub_plan.go type SubPlan (line 3) | type SubPlan struct method Pos (line 23) | func (n *SubPlan) Pos() int { FILE: internal/sql/ast/table_func.go type TableFunc (line 3) | type TableFunc struct method Pos (line 19) | func (n *TableFunc) Pos() int { FILE: internal/sql/ast/table_like_clause.go type TableLikeClause (line 3) | type TableLikeClause struct method Pos (line 8) | func (n *TableLikeClause) Pos() int { FILE: internal/sql/ast/table_like_option.go type TableLikeOption (line 3) | type TableLikeOption method Pos (line 5) | func (n *TableLikeOption) Pos() int { FILE: internal/sql/ast/table_name.go type TableName (line 5) | type TableName struct method Pos (line 11) | func (n *TableName) Pos() int { method Format (line 15) | func (n *TableName) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/table_sample_clause.go type TableSampleClause (line 3) | type TableSampleClause struct method Pos (line 9) | func (n *TableSampleClause) Pos() int { FILE: internal/sql/ast/target_entry.go type TargetEntry (line 3) | type TargetEntry struct method Pos (line 14) | func (n *TargetEntry) Pos() int { FILE: internal/sql/ast/todo.go type TODO (line 3) | type TODO struct method Pos (line 6) | func (n *TODO) Pos() int { FILE: internal/sql/ast/transaction_stmt.go type TransactionStmt (line 3) | type TransactionStmt struct method Pos (line 9) | func (n *TransactionStmt) Pos() int { FILE: internal/sql/ast/transaction_stmt_kind.go type TransactionStmtKind (line 3) | type TransactionStmtKind method Pos (line 5) | func (n *TransactionStmtKind) Pos() int { FILE: internal/sql/ast/trigger_transition.go type TriggerTransition (line 3) | type TriggerTransition struct method Pos (line 9) | func (n *TriggerTransition) Pos() int { FILE: internal/sql/ast/truncate_stmt.go type TruncateStmt (line 5) | type TruncateStmt struct method Pos (line 11) | func (n *TruncateStmt) Pos() int { method Format (line 15) | func (n *TruncateStmt) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/type_cast.go type TypeCast (line 5) | type TypeCast struct method Pos (line 11) | func (n *TypeCast) Pos() int { method Format (line 15) | func (n *TypeCast) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/type_name.go type TypeName (line 5) | type TypeName struct method Pos (line 21) | func (n *TypeName) Pos() int { method Format (line 25) | func (n *TypeName) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/typedefs.go type AclMode (line 5) | type AclMode method Pos (line 7) | func (n *AclMode) Pos() int { type DistinctExpr (line 11) | type DistinctExpr method Pos (line 13) | func (n *DistinctExpr) Pos() int { type NullIfExpr (line 17) | type NullIfExpr method Pos (line 19) | func (n *NullIfExpr) Pos() int { method Format (line 23) | func (n *NullIfExpr) Format(buf *TrackedBuffer, d format.Dialect) { type Selectivity (line 32) | type Selectivity method Pos (line 34) | func (n *Selectivity) Pos() int { type Cost (line 38) | type Cost method Pos (line 40) | func (n *Cost) Pos() int { type ParamListInfo (line 44) | type ParamListInfo method Pos (line 46) | func (n *ParamListInfo) Pos() int { type AttrNumber (line 50) | type AttrNumber method Pos (line 52) | func (n *AttrNumber) Pos() int { type Pointer (line 56) | type Pointer method Pos (line 58) | func (n *Pointer) Pos() int { type Index (line 62) | type Index method Pos (line 64) | func (n *Index) Pos() int { type Offset (line 68) | type Offset method Pos (line 70) | func (n *Offset) Pos() int { type regproc (line 74) | type regproc method Pos (line 76) | func (n *regproc) Pos() int { type RegProcedure (line 80) | type RegProcedure method Pos (line 82) | func (n *RegProcedure) Pos() int { type TransactionId (line 86) | type TransactionId method Pos (line 88) | func (n *TransactionId) Pos() int { type LocalTransactionId (line 92) | type LocalTransactionId method Pos (line 94) | func (n *LocalTransactionId) Pos() int { type SubTransactionId (line 98) | type SubTransactionId method Pos (line 100) | func (n *SubTransactionId) Pos() int { type MultiXactId (line 104) | type MultiXactId method Pos (line 106) | func (n *MultiXactId) Pos() int { type MultiXactOffset (line 110) | type MultiXactOffset method Pos (line 112) | func (n *MultiXactOffset) Pos() int { type CommandId (line 116) | type CommandId method Pos (line 118) | func (n *CommandId) Pos() int { type Datum (line 122) | type Datum method Pos (line 124) | func (n *Datum) Pos() int { type DatumPtr (line 128) | type DatumPtr method Pos (line 130) | func (n *DatumPtr) Pos() int { type Oid (line 134) | type Oid method Pos (line 136) | func (n *Oid) Pos() int { type BlockNumber (line 140) | type BlockNumber method Pos (line 142) | func (n *BlockNumber) Pos() int { type BlockId (line 146) | type BlockId method Pos (line 148) | func (n *BlockId) Pos() int { FILE: internal/sql/ast/unlisten_stmt.go type UnlistenStmt (line 3) | type UnlistenStmt struct method Pos (line 7) | func (n *UnlistenStmt) Pos() int { FILE: internal/sql/ast/update_stmt.go type UpdateStmt (line 9) | type UpdateStmt struct method Pos (line 19) | func (n *UpdateStmt) Pos() int { method Format (line 23) | func (n *UpdateStmt) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/vacuum_option.go type VacuumOption (line 3) | type VacuumOption method Pos (line 5) | func (n *VacuumOption) Pos() int { FILE: internal/sql/ast/vacuum_stmt.go type VacuumStmt (line 3) | type VacuumStmt struct method Pos (line 9) | func (n *VacuumStmt) Pos() int { FILE: internal/sql/ast/var.go type Var (line 3) | type Var struct method Pos (line 16) | func (n *Var) Pos() int { FILE: internal/sql/ast/variable_expr.go type VariableExpr (line 7) | type VariableExpr struct method Pos (line 12) | func (n *VariableExpr) Pos() int { method Format (line 16) | func (n *VariableExpr) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/variable_set_kind.go type VariableSetKind (line 3) | type VariableSetKind method Pos (line 5) | func (n *VariableSetKind) Pos() int { FILE: internal/sql/ast/variable_set_stmt.go type VariableSetStmt (line 3) | type VariableSetStmt struct method Pos (line 10) | func (n *VariableSetStmt) Pos() int { FILE: internal/sql/ast/variable_show_stmt.go type VariableShowStmt (line 3) | type VariableShowStmt struct method Pos (line 7) | func (n *VariableShowStmt) Pos() int { FILE: internal/sql/ast/view_check_option.go type ViewCheckOption (line 3) | type ViewCheckOption method Pos (line 5) | func (n *ViewCheckOption) Pos() int { FILE: internal/sql/ast/view_stmt.go type ViewStmt (line 3) | type ViewStmt struct method Pos (line 12) | func (n *ViewStmt) Pos() int { FILE: internal/sql/ast/wco_kind.go type WCOKind (line 3) | type WCOKind method Pos (line 5) | func (n *WCOKind) Pos() int { FILE: internal/sql/ast/window_clause.go type WindowClause (line 3) | type WindowClause struct method Pos (line 15) | func (n *WindowClause) Pos() int { FILE: internal/sql/ast/window_def.go type WindowDef (line 5) | type WindowDef struct method Pos (line 16) | func (n *WindowDef) Pos() int { method Format (line 40) | func (n *WindowDef) Format(buf *TrackedBuffer, d format.Dialect) { constant FrameOptionNonDefault (line 22) | FrameOptionNonDefault = 0x00001 constant FrameOptionRange (line 23) | FrameOptionRange = 0x00002 constant FrameOptionRows (line 24) | FrameOptionRows = 0x00004 constant FrameOptionGroups (line 25) | FrameOptionGroups = 0x00008 constant FrameOptionBetween (line 26) | FrameOptionBetween = 0x00010 constant FrameOptionStartUnboundedPreceding (line 27) | FrameOptionStartUnboundedPreceding = 0x00020 constant FrameOptionEndUnboundedPreceding (line 28) | FrameOptionEndUnboundedPreceding = 0x00040 constant FrameOptionStartUnboundedFollowing (line 29) | FrameOptionStartUnboundedFollowing = 0x00080 constant FrameOptionEndUnboundedFollowing (line 30) | FrameOptionEndUnboundedFollowing = 0x00100 constant FrameOptionStartCurrentRow (line 31) | FrameOptionStartCurrentRow = 0x00200 constant FrameOptionEndCurrentRow (line 32) | FrameOptionEndCurrentRow = 0x00400 constant FrameOptionStartOffset (line 33) | FrameOptionStartOffset = 0x00800 constant FrameOptionEndOffset (line 34) | FrameOptionEndOffset = 0x01000 constant FrameOptionExcludeCurrentRow (line 35) | FrameOptionExcludeCurrentRow = 0x02000 constant FrameOptionExcludeGroup (line 36) | FrameOptionExcludeGroup = 0x04000 constant FrameOptionExcludeTies (line 37) | FrameOptionExcludeTies = 0x08000 FILE: internal/sql/ast/window_func.go type WindowFunc (line 3) | type WindowFunc struct method Pos (line 17) | func (n *WindowFunc) Pos() int { FILE: internal/sql/ast/with_check_option.go type WithCheckOption (line 3) | type WithCheckOption struct method Pos (line 11) | func (n *WithCheckOption) Pos() int { FILE: internal/sql/ast/with_clause.go type WithClause (line 5) | type WithClause struct method Pos (line 11) | func (n *WithClause) Pos() int { method Format (line 15) | func (n *WithClause) Format(buf *TrackedBuffer, d format.Dialect) { FILE: internal/sql/ast/xml_expr.go type XmlExpr (line 3) | type XmlExpr struct method Pos (line 16) | func (n *XmlExpr) Pos() int { FILE: internal/sql/ast/xml_expr_op.go type XmlExprOp (line 3) | type XmlExprOp method Pos (line 5) | func (n *XmlExprOp) Pos() int { FILE: internal/sql/ast/xml_option_type.go type XmlOptionType (line 3) | type XmlOptionType method Pos (line 5) | func (n *XmlOptionType) Pos() int { FILE: internal/sql/ast/xml_serialize.go type XmlSerialize (line 3) | type XmlSerialize struct method Pos (line 10) | func (n *XmlSerialize) Pos() int { FILE: internal/sql/astutils/join.go function Join (line 9) | func Join(list *ast.List, sep string) string { FILE: internal/sql/astutils/rewrite.go type ApplyFunc (line 20) | type ApplyFunc function Apply (line 42) | func Apply(root ast.Node, pre, post ApplyFunc) (result ast.Node) { type Cursor (line 70) | type Cursor struct method Node (line 78) | func (c *Cursor) Node() ast.Node { return c.node } method Parent (line 81) | func (c *Cursor) Parent() ast.Node { return c.parent } method Name (line 86) | func (c *Cursor) Name() string { return c.name } method Index (line 92) | func (c *Cursor) Index() int { method field (line 100) | func (c *Cursor) field() reflect.Value { method Replace (line 106) | func (c *Cursor) Replace(n ast.Node) { type application (line 115) | type application struct method apply (line 121) | func (a *application) apply(parent ast.Node, name string, iter *iterat... method applyList (line 1249) | func (a *application) applyList(parent ast.Node, name string) { type iterator (line 1245) | type iterator struct FILE: internal/sql/astutils/search.go type nodeSearch (line 5) | type nodeSearch struct method Visit (line 10) | func (s *nodeSearch) Visit(node ast.Node) Visitor { function Search (line 17) | func Search(root ast.Node, f func(ast.Node) bool) *ast.List { FILE: internal/sql/astutils/walk.go type Visitor (line 9) | type Visitor interface type VisitorFunc (line 13) | type VisitorFunc method Visit (line 15) | func (vf VisitorFunc) Visit(node ast.Node) Visitor { function Walk (line 20) | func Walk(f Visitor, node ast.Node) { FILE: internal/sql/catalog/catalog.go type Catalog (line 8) | type Catalog struct method Build (line 36) | func (c *Catalog) Build(stmts []ast.Statement) error { method Update (line 45) | func (c *Catalog) Update(stmt ast.Statement, colGen columnGenerator) e... function New (line 21) | func New(defaultSchema string) *Catalog { FILE: internal/sql/catalog/comment_on.go method commentOnColumn (line 8) | func (c *Catalog) commentOnColumn(stmt *ast.CommentOnColumnStmt) error { method commentOnSchema (line 26) | func (c *Catalog) commentOnSchema(stmt *ast.CommentOnSchemaStmt) error { method commentOnTable (line 39) | func (c *Catalog) commentOnTable(stmt *ast.CommentOnTableStmt) error { method commentOnType (line 52) | func (c *Catalog) commentOnType(stmt *ast.CommentOnTypeStmt) error { method commentOnView (line 65) | func (c *Catalog) commentOnView(stmt *ast.CommentOnViewStmt) error { FILE: internal/sql/catalog/extension.go method createExtension (line 7) | func (c *Catalog) createExtension(stmt *ast.CreateExtensionStmt) error { FILE: internal/sql/catalog/func.go type Function (line 13) | type Function struct method InArgs (line 29) | func (f *Function) InArgs() []*Argument { method OutArgs (line 42) | func (f *Function) OutArgs() []*Argument { type Argument (line 22) | type Argument struct method createFunction (line 53) | func (c *Catalog) createFunction(stmt *ast.CreateFunctionStmt) error { method dropFunction (line 96) | func (c *Catalog) dropFunction(stmt *ast.DropFunctionStmt) error { FILE: internal/sql/catalog/public.go method schemasToSearch (line 11) | func (c *Catalog) schemasToSearch(ns string) []string { method ListFuncsByName (line 18) | func (c *Catalog) ListFuncsByName(rel *ast.FuncName) ([]Function, error) { method ResolveFuncCall (line 35) | func (c *Catalog) ResolveFuncCall(call *ast.FuncCall) (*Function, error) { method GetTable (line 126) | func (c *Catalog) GetTable(rel *ast.TableName) (Table, error) { FILE: internal/sql/catalog/schema.go type Schema (line 12) | type Schema struct method getFunc (line 21) | func (s *Schema) getFunc(rel *ast.FuncName, tns []*ast.TypeName) (*Fun... method getFuncByName (line 46) | func (s *Schema) getFuncByName(rel *ast.FuncName) (*Function, int, err... method getTable (line 64) | func (s *Schema) getTable(rel *ast.TableName) (*Table, int, error) { method getType (line 73) | func (s *Schema) getType(rel *ast.TypeName) (Type, int, error) { method getSchema (line 89) | func (c *Catalog) getSchema(name string) (*Schema, error) { method createSchema (line 98) | func (c *Catalog) createSchema(stmt *ast.CreateSchemaStmt) error { method dropSchema (line 116) | func (c *Catalog) dropSchema(stmt *ast.DropSchemaStmt) error { FILE: internal/sql/catalog/table.go type Table (line 15) | type Table struct method isExistColumn (line 31) | func (table *Table) isExistColumn(cmd *ast.AlterTableCmd) (int, error) { method alterColumnType (line 61) | func (table *Table) alterColumnType(cmd *ast.AlterTableCmd) error { method dropNotNull (line 97) | func (table *Table) dropNotNull(cmd *ast.AlterTableCmd) error { method setNotNull (line 108) | func (table *Table) setNotNull(cmd *ast.AlterTableCmd) error { function checkMissing (line 21) | func checkMissing(err error, missingOK bool) error { method addColumn (line 44) | func (c *Catalog) addColumn(table *Table, cmd *ast.AlterTableCmd) error { method dropColumn (line 74) | func (c *Catalog) dropColumn(table *Table, cmd *ast.AlterTableCmd) error { type Column (line 122) | type Column struct type columnGenerator (line 138) | type columnGenerator interface method getTable (line 142) | func (c *Catalog) getTable(tableName *ast.TableName) (*Schema, *Table, e... function isStmtImplemented (line 164) | func isStmtImplemented(stmt *ast.AlterTableStmt) bool { method alterTable (line 186) | func (c *Catalog) alterTable(stmt *ast.AlterTableStmt) error { method alterTableSetSchema (line 224) | func (c *Catalog) alterTableSetSchema(stmt *ast.AlterTableSetSchemaStmt)... method createTable (line 250) | func (c *Catalog) createTable(stmt *ast.CreateTableStmt) error { method defineColumn (line 331) | func (c *Catalog) defineColumn(table *ast.TableName, col *ast.ColumnDef)... method dropTable (line 356) | func (c *Catalog) dropTable(stmt *ast.DropTableStmt) error { method renameColumn (line 392) | func (c *Catalog) renameColumn(stmt *ast.RenameColumnStmt) error { method renameTable (line 425) | func (c *Catalog) renameTable(stmt *ast.RenameTableStmt) error { method createTableAs (line 453) | func (c *Catalog) createTableAs(stmt *ast.CreateTableAsStmt, colGen colu... FILE: internal/sql/catalog/types.go type Type (line 11) | type Type interface type Enum (line 17) | type Enum struct method SetComment (line 23) | func (e *Enum) SetComment(c string) { method isType (line 27) | func (e *Enum) isType() { type CompositeType (line 30) | type CompositeType struct method isType (line 35) | func (ct *CompositeType) isType() { method SetComment (line 38) | func (ct *CompositeType) SetComment(c string) { function sameType (line 42) | func sameType(a, b *ast.TypeName) bool { method createEnum (line 65) | func (c *Catalog) createEnum(stmt *ast.CreateEnumStmt) error { function stringSlice (line 94) | func stringSlice(list *ast.List) []string { method getType (line 104) | func (c *Catalog) getType(rel *ast.TypeName) (Type, int, error) { method createCompositeType (line 116) | func (c *Catalog) createCompositeType(stmt *ast.CompositeTypeStmt) error { method alterTypeRenameValue (line 144) | func (c *Catalog) alterTypeRenameValue(stmt *ast.AlterTypeRenameValueStm... method alterTypeAddValue (line 182) | func (c *Catalog) alterTypeAddValue(stmt *ast.AlterTypeAddValueStmt) err... method alterTypeSetSchema (line 245) | func (c *Catalog) alterTypeSetSchema(stmt *ast.AlterTypeSetSchemaStmt) e... method dropType (line 293) | func (c *Catalog) dropType(stmt *ast.DropTypeStmt) error { method renameType (line 318) | func (c *Catalog) renameType(stmt *ast.RenameTypeStmt) error { FILE: internal/sql/catalog/view.go method createView (line 8) | func (c *Catalog) createView(stmt *ast.ViewStmt, colGen columnGenerator)... FILE: internal/sql/format/format.go type Dialect (line 4) | type Dialect interface FILE: internal/sql/info/info.go function Newo (line 8) | func Newo(c *catalog.Catalog) InformationSchema { type InformationSchema (line 12) | type InformationSchema struct method Tables (line 23) | func (i *InformationSchema) Tables() []Table { method Columns (line 47) | func (i *InformationSchema) Columns() []Column { method Schemata (line 57) | func (i *InformationSchema) Schemata() []Schema { type Table (line 16) | type Table struct type Column (line 37) | type Column struct type Schema (line 51) | type Schema struct FILE: internal/sql/lang/operator.go function IsComparisonOperator (line 5) | func IsComparisonOperator(s string) bool { function IsMathematicalOperator (line 20) | func IsMathematicalOperator(s string) bool { FILE: internal/sql/named/is.go function IsParamFunc (line 9) | func IsParamFunc(node ast.Node) bool { function IsParamSign (line 23) | func IsParamSign(node ast.Node) bool { FILE: internal/sql/named/param.go type nullability (line 12) | type nullability method String (line 23) | func (n nullability) String() string { constant nullUnspecified (line 15) | nullUnspecified nullability = 0b0000 constant inferredNull (line 16) | inferredNull nullability = 0b0001 constant inferredNotNull (line 17) | inferredNotNull nullability = 0b0010 constant nullable (line 18) | nullable nullability = 0b0100 constant notNullable (line 19) | notNullable nullability = 0b1000 type Param (line 44) | type Param struct method Name (line 76) | func (p Param) Name() string { method is (line 81) | func (p Param) is(n nullability) bool { method NotNull (line 86) | func (p Param) NotNull() bool { method IsSqlcSlice (line 112) | func (p Param) IsSqlcSlice() bool { function NewParam (line 51) | func NewParam(name string) Param { function NewInferredParam (line 56) | func NewInferredParam(name string, notNull bool) Param { function NewUserNullableParam (line 66) | func NewUserNullableParam(name string) Param { function NewSqlcSlice (line 71) | func NewSqlcSlice(name string) Param { function mergeParam (line 118) | func mergeParam(a, b Param) Param { FILE: internal/sql/named/param_set.go type ParamSet (line 4) | type ParamSet struct method NameFor (line 19) | func (p *ParamSet) NameFor(idx int) (string, bool) { method nextArgNum (line 24) | func (p *ParamSet) nextArgNum() int { method Add (line 35) | func (p *ParamSet) Add(param Param) int { method FetchMerge (line 52) | func (p *ParamSet) FetchMerge(idx int, mergeP Param) (param Param, isN... function NewParamSet (line 67) | func NewParamSet(positionsUsed map[int]bool, hasNamedSupport bool) *Para... FILE: internal/sql/named/param_set_test.go function TestParamSet_Add (line 5) | func TestParamSet_Add(t *testing.T) { FILE: internal/sql/named/param_test.go function TestMergeParamNullability (line 5) | func TestMergeParamNullability(t *testing.T) { function TestMergeParamName (line 52) | func TestMergeParamName(t *testing.T) { FILE: internal/sql/rewrite/embeds.go type Embed (line 11) | type Embed struct method Orig (line 18) | func (e Embed) Orig() string { type EmbedSet (line 23) | type EmbedSet method Find (line 26) | func (es EmbedSet) Find(node *ast.ColumnRef) (*Embed, bool) { function Embeds (line 38) | func Embeds(raw *ast.RawStmt) (*ast.RawStmt, EmbedSet) { function isEmbed (line 79) | func isEmbed(node ast.Node) bool { FILE: internal/sql/rewrite/parameters.go function flatten (line 15) | func flatten(root ast.Node) (string, bool) { type stringWalker (line 21) | type stringWalker struct method Visit (line 26) | func (s *stringWalker) Visit(node ast.Node) astutils.Visitor { function isNamedParamSignCast (line 36) | func isNamedParamSignCast(node ast.Node) bool { function paramFromFuncCall (line 49) | func paramFromFuncCall(call *ast.FuncCall) (named.Param, string) { function NamedParameters (line 81) | func NamedParameters(engine config.Engine, raw *ast.RawStmt, numbs map[i... FILE: internal/sql/sqlerr/errors.go type Error (line 12) | type Error struct method Unwrap (line 22) | func (e *Error) Unwrap() error { method Error (line 26) | func (e *Error) Error() string { function ColumnExists (line 34) | func ColumnExists(rel, col string) *Error { function ColumnNotFound (line 42) | func ColumnNotFound(rel, col string) *Error { function RelationExists (line 50) | func RelationExists(rel string) *Error { function RelationNotFound (line 58) | func RelationNotFound(rel string) *Error { function SchemaExists (line 66) | func SchemaExists(name string) *Error { function SchemaNotFound (line 74) | func SchemaNotFound(sch string) *Error { function TypeExists (line 82) | func TypeExists(typ string) *Error { function TypeNotFound (line 90) | func TypeNotFound(typ string) *Error { function FunctionNotFound (line 98) | func FunctionNotFound(fun string) *Error { function FunctionNotUnique (line 106) | func FunctionNotUnique(fn string) *Error { FILE: internal/sql/sqlfile/split.go function Split (line 18) | func Split(ctx context.Context, r io.Reader) ([]string, error) { function extractDollarTag (line 199) | func extractDollarTag(s string) string { function isValidDollarTagContent (line 225) | func isValidDollarTagContent(s string) bool { function isValidDollarTagChar (line 239) | func isValidDollarTagChar(ch byte) bool { FILE: internal/sql/sqlfile/split_test.go function TestSplit (line 12) | func TestSplit(t *testing.T) { function TestSplitContextCancellation (line 76) | func TestSplitContextCancellation(t *testing.T) { function TestExtractDollarTag (line 88) | func TestExtractDollarTag(t *testing.T) { FILE: internal/sql/sqlfile/testdata/complex_query/input.sql function test (line 6) | CREATE FUNCTION test() RETURNS text AS $$ FILE: internal/sql/sqlfile/testdata/complex_query/output_2.sql function test (line 3) | CREATE FUNCTION test() RETURNS text AS $$ FILE: internal/sql/sqlfile/testdata/dollar_quoted_function/input.sql function foo (line 1) | CREATE FUNCTION foo() RETURNS text AS $$ FILE: internal/sql/sqlfile/testdata/dollar_quoted_function/output_1.sql function foo (line 1) | CREATE FUNCTION foo() RETURNS text AS $$ FILE: internal/sql/sqlpath/read.go function Glob (line 19) | func Glob(patterns []string) ([]string, error) { FILE: internal/sql/sqlpath/read_test.go function TestReturnsListOfSQLFiles (line 13) | func TestReturnsListOfSQLFiles(t *testing.T) { function TestReturnsNilListWhenNoSQLFilesFound (line 30) | func TestReturnsNilListWhenNoSQLFilesFound(t *testing.T) { function TestIgnoresHiddenFilesWhenSearchingForSQLFiles (line 46) | func TestIgnoresHiddenFilesWhenSearchingForSQLFiles(t *testing.T) { function TestIgnoresNonSQLFilesWhenSearchingForSQLFiles (line 63) | func TestIgnoresNonSQLFilesWhenSearchingForSQLFiles(t *testing.T) { function TestExcludesSQLFilesEndingWithDownSQLWhenSearchingForSQLFiles (line 80) | func TestExcludesSQLFilesEndingWithDownSQLWhenSearchingForSQLFiles(t *te... function TestReturnsErrorWhenPathDoesNotExist (line 97) | func TestReturnsErrorWhenPathDoesNotExist(t *testing.T) { function TestReturnsErrorWhenDirectoryCannotBeRead (line 119) | func TestReturnsErrorWhenDirectoryCannotBeRead(t *testing.T) { function TestDoesNotIncludesSQLFilesWithUppercaseExtension (line 141) | func TestDoesNotIncludesSQLFilesWithUppercaseExtension(t *testing.T) { function TestNotIncludesHiddenFilesAnyPath (line 158) | func TestNotIncludesHiddenFilesAnyPath(t *testing.T) { function TestFollowSymlinks (line 178) | func TestFollowSymlinks(t *testing.T) { function TestGlobPattern (line 200) | func TestGlobPattern(t *testing.T) { FILE: internal/sql/validate/cmd.go function validateCopyfrom (line 13) | func validateCopyfrom(n ast.Node) error { function validateBatch (line 52) | func validateBatch(n ast.Node) error { function Cmd (line 65) | func Cmd(n ast.Node, name, cmd string) error { FILE: internal/sql/validate/func_call.go type funcCallVisitor (line 13) | type funcCallVisitor struct method Visit (line 19) | func (v *funcCallVisitor) Visit(node ast.Node) astutils.Visitor { function FuncCall (line 48) | func FuncCall(c *catalog.Catalog, cs config.CombinedSettings, n ast.Node... FILE: internal/sql/validate/in.go type inVisitor (line 12) | type inVisitor struct method Visit (line 17) | func (v *inVisitor) Visit(node ast.Node) astutils.Visitor { function In (line 82) | func In(c *catalog.Catalog, n ast.Node) error { FILE: internal/sql/validate/insert_stmt.go function InsertStmt (line 8) | func InsertStmt(stmt *ast.InsertStmt) error { FILE: internal/sql/validate/param_ref.go function ParamRef (line 12) | func ParamRef(n ast.Node) (map[int]bool, bool, error) { FILE: internal/sql/validate/param_style.go type sqlcFuncVisitor (line 11) | type sqlcFuncVisitor struct method Visit (line 15) | func (v *sqlcFuncVisitor) Visit(node ast.Node) astutils.Visitor { function SqlcFunctions (line 64) | func SqlcFunctions(n ast.Node) error { FILE: internal/sqltest/docker/enabled.go function Installed (line 12) | func Installed() error { FILE: internal/sqltest/docker/mysql.go function StartMySQLServer (line 16) | func StartMySQLServer(c context.Context) (string, error) { function startMySQLServer (line 41) | func startMySQLServer(c context.Context) (string, error) { FILE: internal/sqltest/docker/postgres.go function StartPostgreSQLServer (line 16) | func StartPostgreSQLServer(c context.Context) (string, error) { function startPostgreSQLServer (line 41) | func startPostgreSQLServer(c context.Context) (string, error) { FILE: internal/sqltest/local/id.go function id (line 7) | func id() string { FILE: internal/sqltest/local/mysql.go function MySQL (line 23) | func MySQL(t *testing.T, migrations []string) string { FILE: internal/sqltest/local/postgres.go function PostgreSQL (line 25) | func PostgreSQL(t *testing.T, migrations []string) string { function ReadOnlyPostgreSQL (line 29) | func ReadOnlyPostgreSQL(t *testing.T, migrations []string) string { function postgreSQL (line 33) | func postgreSQL(t *testing.T, migrations []string, rw bool) string { FILE: internal/sqltest/mysql.go function MySQL (line 15) | func MySQL(t *testing.T, migrations []string) (*sql.DB, func()) { function CreateMySQLDatabase (line 21) | func CreateMySQLDatabase(t *testing.T, name string, migrations []string)... FILE: internal/sqltest/native/enabled.go function Supported (line 11) | func Supported() error { FILE: internal/sqltest/native/mysql.go function StartMySQLServer (line 19) | func StartMySQLServer(ctx context.Context) (string, error) { function startMySQLServer (line 44) | func startMySQLServer(ctx context.Context) (string, error) { function startMySQLService (line 104) | func startMySQLService() error { function setMySQLPassword (line 136) | func setMySQLPassword(ctx context.Context) error { function waitForMySQL (line 164) | func waitForMySQL(ctx context.Context, uri string, timeout time.Duration... function tryMySQLConnection (line 192) | func tryMySQLConnection(ctx context.Context, uri string) error { FILE: internal/sqltest/native/postgres.go function StartPostgreSQLServer (line 19) | func StartPostgreSQLServer(ctx context.Context) (string, error) { function startPostgreSQLServer (line 44) | func startPostgreSQLServer(ctx context.Context) (string, error) { function startPostgresService (line 83) | func startPostgresService() error { function configurePostgres (line 117) | func configurePostgres() error { function reloadPostgres (line 168) | func reloadPostgres() error { function waitForPostgres (line 192) | func waitForPostgres(ctx context.Context, uri string, timeout time.Durat... FILE: internal/sqltest/pgx.go function init (line 17) | func init() { function PostgreSQLPgx (line 21) | func PostgreSQLPgx(t *testing.T, migrations []string) (*pgx.Conn, func()) { FILE: internal/sqltest/postgres.go function init (line 17) | func init() { function id (line 23) | func id() string { function PostgreSQL (line 31) | func PostgreSQL(t *testing.T, migrations []string) (*sql.DB, func()) { function CreatePostgreSQLDatabase (line 39) | func CreatePostgreSQLDatabase(t *testing.T, name string, schema bool, mi... FILE: internal/sqltest/sqlite.go function SQLite (line 15) | func SQLite(t *testing.T, migrations []string) (*sql.DB, func()) { function CreateSQLiteDatabase (line 28) | func CreateSQLiteDatabase(t *testing.T, path string, migrations []string... FILE: internal/tools/sqlc-pg-gen/main.go constant extensionFuncs (line 22) | extensionFuncs = ` constant catalogTmpl (line 45) | catalogTmpl = ` constant loaderFuncTmpl (line 116) | loaderFuncTmpl = ` type tmplCtx (line 137) | type tmplCtx struct function main (line 145) | func main() { function clean (line 151) | func clean(arg string) string { function writeFormattedGo (line 160) | func writeFormattedGo(tmpl *template.Template, data any, destPath string... function preserveLegacyCatalogBehavior (line 185) | func preserveLegacyCatalogBehavior(allProcs []Proc) []Proc { function databaseURL (line 215) | func databaseURL() string { function run (line 243) | func run(ctx context.Context) error { type schemaToLoad (line 370) | type schemaToLoad struct type extensionPair (line 379) | type extensionPair struct FILE: internal/tools/sqlc-pg-gen/proc.go constant catalogFuncs (line 11) | catalogFuncs = ` type Proc (line 26) | type Proc struct method ReturnTypeName (line 35) | func (p *Proc) ReturnTypeName() string { method Args (line 39) | func (p *Proc) Args() []Arg { type Arg (line 81) | type Arg struct method TypeName (line 88) | func (a *Arg) TypeName() string { method GoMode (line 93) | func (a *Arg) GoMode() string { function scanProcs (line 110) | func scanProcs(rows pgx.Rows) ([]Proc, error) { function readProcs (line 160) | func readProcs(ctx context.Context, conn *pgx.Conn, schemaName string) (... FILE: internal/tools/sqlc-pg-gen/relation.go constant relationQuery (line 11) | relationQuery = ` type Relation (line 38) | type Relation struct type RelationColumn (line 45) | type RelationColumn struct function scanRelations (line 53) | func scanRelations(rows pgx.Rows) ([]Relation, error) { function readRelations (line 104) | func readRelations(ctx context.Context, conn *pgx.Conn, schemaName strin... FILE: internal/tracer/trace.go function Start (line 15) | func Start(base context.Context) (_ context.Context, cleanup func(), _ e... FILE: internal/vet/vet.pb.go constant _ (line 18) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 20) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type Parameter (line 23) | type Parameter struct method Reset (line 31) | func (x *Parameter) Reset() { method String (line 40) | func (x *Parameter) String() string { method ProtoMessage (line 44) | func (*Parameter) ProtoMessage() {} method ProtoReflect (line 46) | func (x *Parameter) ProtoReflect() protoreflect.Message { method Descriptor (line 59) | func (*Parameter) Descriptor() ([]byte, []int) { method GetNumber (line 63) | func (x *Parameter) GetNumber() int32 { type Config (line 70) | type Config struct method Reset (line 81) | func (x *Config) Reset() { method String (line 90) | func (x *Config) String() string { method ProtoMessage (line 94) | func (*Config) ProtoMessage() {} method ProtoReflect (line 96) | func (x *Config) ProtoReflect() protoreflect.Message { method Descriptor (line 109) | func (*Config) Descriptor() ([]byte, []int) { method GetVersion (line 113) | func (x *Config) GetVersion() string { method GetEngine (line 120) | func (x *Config) GetEngine() string { method GetSchema (line 127) | func (x *Config) GetSchema() []string { method GetQueries (line 134) | func (x *Config) GetQueries() []string { type Query (line 141) | type Query struct method Reset (line 152) | func (x *Query) Reset() { method String (line 161) | func (x *Query) String() string { method ProtoMessage (line 165) | func (*Query) ProtoMessage() {} method ProtoReflect (line 167) | func (x *Query) ProtoReflect() protoreflect.Message { method Descriptor (line 180) | func (*Query) Descriptor() ([]byte, []int) { method GetSql (line 184) | func (x *Query) GetSql() string { method GetName (line 191) | func (x *Query) GetName() string { method GetCmd (line 198) | func (x *Query) GetCmd() string { method GetParams (line 205) | func (x *Query) GetParams() []*Parameter { type PostgreSQL (line 212) | type PostgreSQL struct method Reset (line 220) | func (x *PostgreSQL) Reset() { method String (line 229) | func (x *PostgreSQL) String() string { method ProtoMessage (line 233) | func (*PostgreSQL) ProtoMessage() {} method ProtoReflect (line 235) | func (x *PostgreSQL) ProtoReflect() protoreflect.Message { method Descriptor (line 248) | func (*PostgreSQL) Descriptor() ([]byte, []int) { method GetExplain (line 252) | func (x *PostgreSQL) GetExplain() *PostgreSQLExplain { type PostgreSQLExplain (line 259) | type PostgreSQLExplain struct method Reset (line 269) | func (x *PostgreSQLExplain) Reset() { method String (line 278) | func (x *PostgreSQLExplain) String() string { method ProtoMessage (line 282) | func (*PostgreSQLExplain) ProtoMessage() {} method ProtoReflect (line 284) | func (x *PostgreSQLExplain) ProtoReflect() protoreflect.Message { method Descriptor (line 297) | func (*PostgreSQLExplain) Descriptor() ([]byte, []int) { method GetPlan (line 301) | func (x *PostgreSQLExplain) GetPlan() *PostgreSQLExplain_Plan { method GetSettings (line 308) | func (x *PostgreSQLExplain) GetSettings() map[string]string { method GetPlanning (line 315) | func (x *PostgreSQLExplain) GetPlanning() *PostgreSQLExplain_Planning { type MySQL (line 322) | type MySQL struct method Reset (line 330) | func (x *MySQL) Reset() { method String (line 339) | func (x *MySQL) String() string { method ProtoMessage (line 343) | func (*MySQL) ProtoMessage() {} method ProtoReflect (line 345) | func (x *MySQL) ProtoReflect() protoreflect.Message { method Descriptor (line 358) | func (*MySQL) Descriptor() ([]byte, []int) { method GetExplain (line 362) | func (x *MySQL) GetExplain() *MySQLExplain { type MySQLExplain (line 369) | type MySQLExplain struct method Reset (line 377) | func (x *MySQLExplain) Reset() { method String (line 386) | func (x *MySQLExplain) String() string { method ProtoMessage (line 390) | func (*MySQLExplain) ProtoMessage() {} method ProtoReflect (line 392) | func (x *MySQLExplain) ProtoReflect() protoreflect.Message { method Descriptor (line 405) | func (*MySQLExplain) Descriptor() ([]byte, []int) { method GetQueryBlock (line 409) | func (x *MySQLExplain) GetQueryBlock() *MySQLExplain_QueryBlock { type PostgreSQLExplain_Plan (line 416) | type PostgreSQLExplain_Plan struct method Reset (line 457) | func (x *PostgreSQLExplain_Plan) Reset() { method String (line 466) | func (x *PostgreSQLExplain_Plan) String() string { method ProtoMessage (line 470) | func (*PostgreSQLExplain_Plan) ProtoMessage() {} method ProtoReflect (line 472) | func (x *PostgreSQLExplain_Plan) ProtoReflect() protoreflect.Message { method Descriptor (line 485) | func (*PostgreSQLExplain_Plan) Descriptor() ([]byte, []int) { method GetNodeType (line 489) | func (x *PostgreSQLExplain_Plan) GetNodeType() string { method GetParentRelationship (line 496) | func (x *PostgreSQLExplain_Plan) GetParentRelationship() string { method GetRelationName (line 503) | func (x *PostgreSQLExplain_Plan) GetRelationName() string { method GetSchema (line 510) | func (x *PostgreSQLExplain_Plan) GetSchema() string { method GetAlias (line 517) | func (x *PostgreSQLExplain_Plan) GetAlias() string { method GetParallelAware (line 524) | func (x *PostgreSQLExplain_Plan) GetParallelAware() bool { method GetAsyncCapable (line 531) | func (x *PostgreSQLExplain_Plan) GetAsyncCapable() bool { method GetStartupCost (line 538) | func (x *PostgreSQLExplain_Plan) GetStartupCost() float32 { method GetTotalCost (line 545) | func (x *PostgreSQLExplain_Plan) GetTotalCost() float32 { method GetPlanRows (line 552) | func (x *PostgreSQLExplain_Plan) GetPlanRows() uint64 { method GetPlanWidth (line 559) | func (x *PostgreSQLExplain_Plan) GetPlanWidth() uint64 { method GetOutput (line 566) | func (x *PostgreSQLExplain_Plan) GetOutput() []string { method GetPlans (line 573) | func (x *PostgreSQLExplain_Plan) GetPlans() []*PostgreSQLExplain_Plan { method GetSharedHitBlocks (line 580) | func (x *PostgreSQLExplain_Plan) GetSharedHitBlocks() uint64 { method GetSharedReadBlocks (line 587) | func (x *PostgreSQLExplain_Plan) GetSharedReadBlocks() uint64 { method GetSharedDirtiedBlocks (line 594) | func (x *PostgreSQLExplain_Plan) GetSharedDirtiedBlocks() uint64 { method GetSharedWrittenBlocks (line 601) | func (x *PostgreSQLExplain_Plan) GetSharedWrittenBlocks() uint64 { method GetLocalHitBlocks (line 608) | func (x *PostgreSQLExplain_Plan) GetLocalHitBlocks() uint64 { method GetLocalReadBlocks (line 615) | func (x *PostgreSQLExplain_Plan) GetLocalReadBlocks() uint64 { method GetLocalDirtiedBlocks (line 622) | func (x *PostgreSQLExplain_Plan) GetLocalDirtiedBlocks() uint64 { method GetLocalWrittenBlocks (line 629) | func (x *PostgreSQLExplain_Plan) GetLocalWrittenBlocks() uint64 { method GetTempReadBlocks (line 636) | func (x *PostgreSQLExplain_Plan) GetTempReadBlocks() uint64 { method GetTempWrittenBlocks (line 643) | func (x *PostgreSQLExplain_Plan) GetTempWrittenBlocks() uint64 { method GetSortKey (line 650) | func (x *PostgreSQLExplain_Plan) GetSortKey() []string { method GetJoinType (line 657) | func (x *PostgreSQLExplain_Plan) GetJoinType() string { method GetInnerUnique (line 664) | func (x *PostgreSQLExplain_Plan) GetInnerUnique() bool { method GetHashCond (line 671) | func (x *PostgreSQLExplain_Plan) GetHashCond() string { method GetIndexName (line 678) | func (x *PostgreSQLExplain_Plan) GetIndexName() string { method GetScanDirection (line 685) | func (x *PostgreSQLExplain_Plan) GetScanDirection() string { method GetIndexCond (line 692) | func (x *PostgreSQLExplain_Plan) GetIndexCond() string { type PostgreSQLExplain_Planning (line 699) | type PostgreSQLExplain_Planning struct method Reset (line 716) | func (x *PostgreSQLExplain_Planning) Reset() { method String (line 725) | func (x *PostgreSQLExplain_Planning) String() string { method ProtoMessage (line 729) | func (*PostgreSQLExplain_Planning) ProtoMessage() {} method ProtoReflect (line 731) | func (x *PostgreSQLExplain_Planning) ProtoReflect() protoreflect.Messa... method Descriptor (line 744) | func (*PostgreSQLExplain_Planning) Descriptor() ([]byte, []int) { method GetSharedHitBlocks (line 748) | func (x *PostgreSQLExplain_Planning) GetSharedHitBlocks() uint64 { method GetSharedReadBlocks (line 755) | func (x *PostgreSQLExplain_Planning) GetSharedReadBlocks() uint64 { method GetSharedDirtiedBlocks (line 762) | func (x *PostgreSQLExplain_Planning) GetSharedDirtiedBlocks() uint64 { method GetSharedWrittenBlocks (line 769) | func (x *PostgreSQLExplain_Planning) GetSharedWrittenBlocks() uint64 { method GetLocalHitBlocks (line 776) | func (x *PostgreSQLExplain_Planning) GetLocalHitBlocks() uint64 { method GetLocalReadBlocks (line 783) | func (x *PostgreSQLExplain_Planning) GetLocalReadBlocks() uint64 { method GetLocalDirtiedBlocks (line 790) | func (x *PostgreSQLExplain_Planning) GetLocalDirtiedBlocks() uint64 { method GetLocalWrittenBlocks (line 797) | func (x *PostgreSQLExplain_Planning) GetLocalWrittenBlocks() uint64 { method GetTempReadBlocks (line 804) | func (x *PostgreSQLExplain_Planning) GetTempReadBlocks() uint64 { method GetTempWrittenBlocks (line 811) | func (x *PostgreSQLExplain_Planning) GetTempWrittenBlocks() uint64 { type MySQLExplain_QueryBlock (line 818) | type MySQLExplain_QueryBlock struct method Reset (line 831) | func (x *MySQLExplain_QueryBlock) Reset() { method String (line 840) | func (x *MySQLExplain_QueryBlock) String() string { method ProtoMessage (line 844) | func (*MySQLExplain_QueryBlock) ProtoMessage() {} method ProtoReflect (line 846) | func (x *MySQLExplain_QueryBlock) ProtoReflect() protoreflect.Message { method Descriptor (line 859) | func (*MySQLExplain_QueryBlock) Descriptor() ([]byte, []int) { method GetSelectId (line 863) | func (x *MySQLExplain_QueryBlock) GetSelectId() uint64 { method GetMessage (line 870) | func (x *MySQLExplain_QueryBlock) GetMessage() string { method GetCostInfo (line 877) | func (x *MySQLExplain_QueryBlock) GetCostInfo() map[string]string { method GetTable (line 884) | func (x *MySQLExplain_QueryBlock) GetTable() *MySQLExplain_Table { method GetOrderingOperation (line 891) | func (x *MySQLExplain_QueryBlock) GetOrderingOperation() *MySQLExplain... method GetNestedLoop (line 898) | func (x *MySQLExplain_QueryBlock) GetNestedLoop() []*MySQLExplain_Nest... type MySQLExplain_Table (line 905) | type MySQLExplain_Table struct method Reset (line 925) | func (x *MySQLExplain_Table) Reset() { method String (line 934) | func (x *MySQLExplain_Table) String() string { method ProtoMessage (line 938) | func (*MySQLExplain_Table) ProtoMessage() {} method ProtoReflect (line 940) | func (x *MySQLExplain_Table) ProtoReflect() protoreflect.Message { method Descriptor (line 953) | func (*MySQLExplain_Table) Descriptor() ([]byte, []int) { method GetTableName (line 957) | func (x *MySQLExplain_Table) GetTableName() string { method GetAccessType (line 964) | func (x *MySQLExplain_Table) GetAccessType() string { method GetRowsExaminedPerScan (line 971) | func (x *MySQLExplain_Table) GetRowsExaminedPerScan() uint64 { method GetRowsProducedPerJoin (line 978) | func (x *MySQLExplain_Table) GetRowsProducedPerJoin() uint64 { method GetFiltered (line 985) | func (x *MySQLExplain_Table) GetFiltered() string { method GetCostInfo (line 992) | func (x *MySQLExplain_Table) GetCostInfo() map[string]string { method GetUsedColumns (line 999) | func (x *MySQLExplain_Table) GetUsedColumns() []string { method GetInsert (line 1006) | func (x *MySQLExplain_Table) GetInsert() bool { method GetPossibleKeys (line 1013) | func (x *MySQLExplain_Table) GetPossibleKeys() []string { method GetKey (line 1020) | func (x *MySQLExplain_Table) GetKey() string { method GetUsedKeyParts (line 1027) | func (x *MySQLExplain_Table) GetUsedKeyParts() []string { method GetKeyLength (line 1034) | func (x *MySQLExplain_Table) GetKeyLength() string { method GetRef (line 1041) | func (x *MySQLExplain_Table) GetRef() []string { type MySQLExplain_NestedLoopObj (line 1048) | type MySQLExplain_NestedLoopObj struct method Reset (line 1056) | func (x *MySQLExplain_NestedLoopObj) Reset() { method String (line 1065) | func (x *MySQLExplain_NestedLoopObj) String() string { method ProtoMessage (line 1069) | func (*MySQLExplain_NestedLoopObj) ProtoMessage() {} method ProtoReflect (line 1071) | func (x *MySQLExplain_NestedLoopObj) ProtoReflect() protoreflect.Messa... method Descriptor (line 1084) | func (*MySQLExplain_NestedLoopObj) Descriptor() ([]byte, []int) { method GetTable (line 1088) | func (x *MySQLExplain_NestedLoopObj) GetTable() *MySQLExplain_Table { type MySQLExplain_OrderingOperation (line 1095) | type MySQLExplain_OrderingOperation struct method Reset (line 1106) | func (x *MySQLExplain_OrderingOperation) Reset() { method String (line 1115) | func (x *MySQLExplain_OrderingOperation) String() string { method ProtoMessage (line 1119) | func (*MySQLExplain_OrderingOperation) ProtoMessage() {} method ProtoReflect (line 1121) | func (x *MySQLExplain_OrderingOperation) ProtoReflect() protoreflect.M... method Descriptor (line 1134) | func (*MySQLExplain_OrderingOperation) Descriptor() ([]byte, []int) { method GetUsingFilesort (line 1138) | func (x *MySQLExplain_OrderingOperation) GetUsingFilesort() bool { method GetCostInfo (line 1145) | func (x *MySQLExplain_OrderingOperation) GetCostInfo() map[string]stri... method GetTable (line 1152) | func (x *MySQLExplain_OrderingOperation) GetTable() *MySQLExplain_Table { method GetNestedLoop (line 1159) | func (x *MySQLExplain_OrderingOperation) GetNestedLoop() []*MySQLExpla... function file_vet_vet_proto_rawDescGZIP (line 1416) | func file_vet_vet_proto_rawDescGZIP() []byte { function init (line 1468) | func init() { file_vet_vet_proto_init() } function file_vet_vet_proto_init (line 1469) | func file_vet_vet_proto_init() { FILE: internal/vet/vet_vtproto.pb.go constant _ (line 19) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 21) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) method CloneVT (line 24) | func (m *Parameter) CloneVT() *Parameter { method CloneMessageVT (line 38) | func (m *Parameter) CloneMessageVT() proto.Message { method CloneVT (line 42) | func (m *Config) CloneVT() *Config { method CloneMessageVT (line 67) | func (m *Config) CloneMessageVT() proto.Message { method CloneVT (line 71) | func (m *Query) CloneVT() *Query { method CloneMessageVT (line 94) | func (m *Query) CloneMessageVT() proto.Message { method CloneVT (line 98) | func (m *PostgreSQL) CloneVT() *PostgreSQL { method CloneMessageVT (line 112) | func (m *PostgreSQL) CloneMessageVT() proto.Message { method CloneVT (line 116) | func (m *PostgreSQLExplain_Plan) CloneVT() *PostgreSQLExplain_Plan { method CloneMessageVT (line 173) | func (m *PostgreSQLExplain_Plan) CloneMessageVT() proto.Message { method CloneVT (line 177) | func (m *PostgreSQLExplain_Planning) CloneVT() *PostgreSQLExplain_Planni... method CloneMessageVT (line 200) | func (m *PostgreSQLExplain_Planning) CloneMessageVT() proto.Message { method CloneVT (line 204) | func (m *PostgreSQLExplain) CloneVT() *PostgreSQLExplain { method CloneMessageVT (line 226) | func (m *PostgreSQLExplain) CloneMessageVT() proto.Message { method CloneVT (line 230) | func (m *MySQL) CloneVT() *MySQL { method CloneMessageVT (line 244) | func (m *MySQL) CloneMessageVT() proto.Message { method CloneVT (line 248) | func (m *MySQLExplain_QueryBlock) CloneVT() *MySQLExplain_QueryBlock { method CloneMessageVT (line 279) | func (m *MySQLExplain_QueryBlock) CloneMessageVT() proto.Message { method CloneVT (line 283) | func (m *MySQLExplain_Table) CloneVT() *MySQLExplain_Table { method CloneMessageVT (line 331) | func (m *MySQLExplain_Table) CloneMessageVT() proto.Message { method CloneVT (line 335) | func (m *MySQLExplain_NestedLoopObj) CloneVT() *MySQLExplain_NestedLoopO... method CloneMessageVT (line 349) | func (m *MySQLExplain_NestedLoopObj) CloneMessageVT() proto.Message { method CloneVT (line 353) | func (m *MySQLExplain_OrderingOperation) CloneVT() *MySQLExplain_Orderin... method CloneMessageVT (line 382) | func (m *MySQLExplain_OrderingOperation) CloneMessageVT() proto.Message { method CloneVT (line 386) | func (m *MySQLExplain) CloneVT() *MySQLExplain { method CloneMessageVT (line 400) | func (m *MySQLExplain) CloneMessageVT() proto.Message { method EqualVT (line 404) | func (this *Parameter) EqualVT(that *Parameter) bool { method EqualMessageVT (line 416) | func (this *Parameter) EqualMessageVT(thatMsg proto.Message) bool { method EqualVT (line 423) | func (this *Config) EqualVT(that *Config) bool { method EqualMessageVT (line 456) | func (this *Config) EqualMessageVT(thatMsg proto.Message) bool { method EqualVT (line 463) | func (this *Query) EqualVT(that *Query) bool { method EqualMessageVT (line 498) | func (this *Query) EqualMessageVT(thatMsg proto.Message) bool { method EqualVT (line 505) | func (this *PostgreSQL) EqualVT(that *PostgreSQL) bool { method EqualMessageVT (line 517) | func (this *PostgreSQL) EqualMessageVT(thatMsg proto.Message) bool { method EqualVT (line 524) | func (this *PostgreSQLExplain_Plan) EqualVT(that *PostgreSQLExplain_Plan... method EqualMessageVT (line 649) | func (this *PostgreSQLExplain_Plan) EqualMessageVT(thatMsg proto.Message... method EqualVT (line 656) | func (this *PostgreSQLExplain_Planning) EqualVT(that *PostgreSQLExplain_... method EqualMessageVT (line 695) | func (this *PostgreSQLExplain_Planning) EqualMessageVT(thatMsg proto.Mes... method EqualVT (line 702) | func (this *PostgreSQLExplain) EqualVT(that *PostgreSQLExplain) bool { method EqualMessageVT (line 729) | func (this *PostgreSQLExplain) EqualMessageVT(thatMsg proto.Message) bool { method EqualVT (line 736) | func (this *MySQL) EqualVT(that *MySQL) bool { method EqualMessageVT (line 748) | func (this *MySQL) EqualMessageVT(thatMsg proto.Message) bool { method EqualVT (line 755) | func (this *MySQLExplain_QueryBlock) EqualVT(that *MySQLExplain_QueryBlo... method EqualMessageVT (line 805) | func (this *MySQLExplain_QueryBlock) EqualMessageVT(thatMsg proto.Messag... method EqualVT (line 812) | func (this *MySQLExplain_Table) EqualVT(that *MySQLExplain_Table) bool { method EqualMessageVT (line 893) | func (this *MySQLExplain_Table) EqualMessageVT(thatMsg proto.Message) bo... method EqualVT (line 900) | func (this *MySQLExplain_NestedLoopObj) EqualVT(that *MySQLExplain_Neste... method EqualMessageVT (line 912) | func (this *MySQLExplain_NestedLoopObj) EqualMessageVT(thatMsg proto.Mes... method EqualVT (line 919) | func (this *MySQLExplain_OrderingOperation) EqualVT(that *MySQLExplain_O... method EqualMessageVT (line 963) | func (this *MySQLExplain_OrderingOperation) EqualMessageVT(thatMsg proto... method EqualVT (line 970) | func (this *MySQLExplain) EqualVT(that *MySQLExplain) bool { method EqualMessageVT (line 982) | func (this *MySQLExplain) EqualMessageVT(thatMsg proto.Message) bool { method MarshalVT (line 989) | func (m *Parameter) MarshalVT() (dAtA []byte, err error) { method MarshalToVT (line 1002) | func (m *Parameter) MarshalToVT(dAtA []byte) (int, error) { method MarshalToSizedBufferVT (line 1007) | func (m *Parameter) MarshalToSizedBufferVT(dAtA []byte) (int, error) { method MarshalVT (line 1027) | func (m *Config) MarshalVT() (dAtA []byte, err error) { method MarshalToVT (line 1040) | func (m *Config) MarshalToVT(dAtA []byte) (int, error) { method MarshalToSizedBufferVT (line 1045) | func (m *Config) MarshalToSizedBufferVT(dAtA []byte) (int, error) { method MarshalVT (line 1092) | func (m *Query) MarshalVT() (dAtA []byte, err error) { method MarshalToVT (line 1105) | func (m *Query) MarshalToVT(dAtA []byte) (int, error) { method MarshalToSizedBufferVT (line 1110) | func (m *Query) MarshalToSizedBufferVT(dAtA []byte) (int, error) { method MarshalVT (line 1158) | func (m *PostgreSQL) MarshalVT() (dAtA []byte, err error) { method MarshalToVT (line 1171) | func (m *PostgreSQL) MarshalToVT(dAtA []byte) (int, error) { method MarshalToSizedBufferVT (line 1176) | func (m *PostgreSQL) MarshalToSizedBufferVT(dAtA []byte) (int, error) { method MarshalVT (line 1201) | func (m *PostgreSQLExplain_Plan) MarshalVT() (dAtA []byte, err error) { method MarshalToVT (line 1214) | func (m *PostgreSQLExplain_Plan) MarshalToVT(dAtA []byte) (int, error) { method MarshalToSizedBufferVT (line 1219) | func (m *PostgreSQLExplain_Plan) MarshalToSizedBufferVT(dAtA []byte) (in... method MarshalVT (line 1466) | func (m *PostgreSQLExplain_Planning) MarshalVT() (dAtA []byte, err error) { method MarshalToVT (line 1479) | func (m *PostgreSQLExplain_Planning) MarshalToVT(dAtA []byte) (int, erro... method MarshalToSizedBufferVT (line 1484) | func (m *PostgreSQLExplain_Planning) MarshalToSizedBufferVT(dAtA []byte)... method MarshalVT (line 1549) | func (m *PostgreSQLExplain) MarshalVT() (dAtA []byte, err error) { method MarshalToVT (line 1562) | func (m *PostgreSQLExplain) MarshalToVT(dAtA []byte) (int, error) { method MarshalToSizedBufferVT (line 1567) | func (m *PostgreSQLExplain) MarshalToSizedBufferVT(dAtA []byte) (int, er... method MarshalVT (line 1621) | func (m *MySQL) MarshalVT() (dAtA []byte, err error) { method MarshalToVT (line 1634) | func (m *MySQL) MarshalToVT(dAtA []byte) (int, error) { method MarshalToSizedBufferVT (line 1639) | func (m *MySQL) MarshalToSizedBufferVT(dAtA []byte) (int, error) { method MarshalVT (line 1664) | func (m *MySQLExplain_QueryBlock) MarshalVT() (dAtA []byte, err error) { method MarshalToVT (line 1677) | func (m *MySQLExplain_QueryBlock) MarshalToVT(dAtA []byte) (int, error) { method MarshalToSizedBufferVT (line 1682) | func (m *MySQLExplain_QueryBlock) MarshalToSizedBufferVT(dAtA []byte) (i... method MarshalVT (line 1760) | func (m *MySQLExplain_Table) MarshalVT() (dAtA []byte, err error) { method MarshalToVT (line 1773) | func (m *MySQLExplain_Table) MarshalToVT(dAtA []byte) (int, error) { method MarshalToSizedBufferVT (line 1778) | func (m *MySQLExplain_Table) MarshalToSizedBufferVT(dAtA []byte) (int, e... method MarshalVT (line 1903) | func (m *MySQLExplain_NestedLoopObj) MarshalVT() (dAtA []byte, err error) { method MarshalToVT (line 1916) | func (m *MySQLExplain_NestedLoopObj) MarshalToVT(dAtA []byte) (int, erro... method MarshalToSizedBufferVT (line 1921) | func (m *MySQLExplain_NestedLoopObj) MarshalToSizedBufferVT(dAtA []byte)... method MarshalVT (line 1946) | func (m *MySQLExplain_OrderingOperation) MarshalVT() (dAtA []byte, err e... method MarshalToVT (line 1959) | func (m *MySQLExplain_OrderingOperation) MarshalToVT(dAtA []byte) (int, ... method MarshalToSizedBufferVT (line 1964) | func (m *MySQLExplain_OrderingOperation) MarshalToSizedBufferVT(dAtA []b... method MarshalVT (line 2030) | func (m *MySQLExplain) MarshalVT() (dAtA []byte, err error) { method MarshalToVT (line 2043) | func (m *MySQLExplain) MarshalToVT(dAtA []byte) (int, error) { method MarshalToSizedBufferVT (line 2048) | func (m *MySQLExplain) MarshalToSizedBufferVT(dAtA []byte) (int, error) { function encodeVarint (line 2073) | func encodeVarint(dAtA []byte, offset int, v uint64) int { method MarshalVTStrict (line 2084) | func (m *Parameter) MarshalVTStrict() (dAtA []byte, err error) { method MarshalToVTStrict (line 2097) | func (m *Parameter) MarshalToVTStrict(dAtA []byte) (int, error) { method MarshalToSizedBufferVTStrict (line 2102) | func (m *Parameter) MarshalToSizedBufferVTStrict(dAtA []byte) (int, erro... method MarshalVTStrict (line 2122) | func (m *Config) MarshalVTStrict() (dAtA []byte, err error) { method MarshalToVTStrict (line 2135) | func (m *Config) MarshalToVTStrict(dAtA []byte) (int, error) { method MarshalToSizedBufferVTStrict (line 2140) | func (m *Config) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error) { method MarshalVTStrict (line 2187) | func (m *Query) MarshalVTStrict() (dAtA []byte, err error) { method MarshalToVTStrict (line 2200) | func (m *Query) MarshalToVTStrict(dAtA []byte) (int, error) { method MarshalToSizedBufferVTStrict (line 2205) | func (m *Query) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error) { method MarshalVTStrict (line 2253) | func (m *PostgreSQL) MarshalVTStrict() (dAtA []byte, err error) { method MarshalToVTStrict (line 2266) | func (m *PostgreSQL) MarshalToVTStrict(dAtA []byte) (int, error) { method MarshalToSizedBufferVTStrict (line 2271) | func (m *PostgreSQL) MarshalToSizedBufferVTStrict(dAtA []byte) (int, err... method MarshalVTStrict (line 2296) | func (m *PostgreSQLExplain_Plan) MarshalVTStrict() (dAtA []byte, err err... method MarshalToVTStrict (line 2309) | func (m *PostgreSQLExplain_Plan) MarshalToVTStrict(dAtA []byte) (int, er... method MarshalToSizedBufferVTStrict (line 2314) | func (m *PostgreSQLExplain_Plan) MarshalToSizedBufferVTStrict(dAtA []byt... method MarshalVTStrict (line 2561) | func (m *PostgreSQLExplain_Planning) MarshalVTStrict() (dAtA []byte, err... method MarshalToVTStrict (line 2574) | func (m *PostgreSQLExplain_Planning) MarshalToVTStrict(dAtA []byte) (int... method MarshalToSizedBufferVTStrict (line 2579) | func (m *PostgreSQLExplain_Planning) MarshalToSizedBufferVTStrict(dAtA [... method MarshalVTStrict (line 2644) | func (m *PostgreSQLExplain) MarshalVTStrict() (dAtA []byte, err error) { method MarshalToVTStrict (line 2657) | func (m *PostgreSQLExplain) MarshalToVTStrict(dAtA []byte) (int, error) { method MarshalToSizedBufferVTStrict (line 2662) | func (m *PostgreSQLExplain) MarshalToSizedBufferVTStrict(dAtA []byte) (i... method MarshalVTStrict (line 2716) | func (m *MySQL) MarshalVTStrict() (dAtA []byte, err error) { method MarshalToVTStrict (line 2729) | func (m *MySQL) MarshalToVTStrict(dAtA []byte) (int, error) { method MarshalToSizedBufferVTStrict (line 2734) | func (m *MySQL) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error) { method MarshalVTStrict (line 2759) | func (m *MySQLExplain_QueryBlock) MarshalVTStrict() (dAtA []byte, err er... method MarshalToVTStrict (line 2772) | func (m *MySQLExplain_QueryBlock) MarshalToVTStrict(dAtA []byte) (int, e... method MarshalToSizedBufferVTStrict (line 2777) | func (m *MySQLExplain_QueryBlock) MarshalToSizedBufferVTStrict(dAtA []by... method MarshalVTStrict (line 2855) | func (m *MySQLExplain_Table) MarshalVTStrict() (dAtA []byte, err error) { method MarshalToVTStrict (line 2868) | func (m *MySQLExplain_Table) MarshalToVTStrict(dAtA []byte) (int, error) { method MarshalToSizedBufferVTStrict (line 2873) | func (m *MySQLExplain_Table) MarshalToSizedBufferVTStrict(dAtA []byte) (... method MarshalVTStrict (line 2998) | func (m *MySQLExplain_NestedLoopObj) MarshalVTStrict() (dAtA []byte, err... method MarshalToVTStrict (line 3011) | func (m *MySQLExplain_NestedLoopObj) MarshalToVTStrict(dAtA []byte) (int... method MarshalToSizedBufferVTStrict (line 3016) | func (m *MySQLExplain_NestedLoopObj) MarshalToSizedBufferVTStrict(dAtA [... method MarshalVTStrict (line 3041) | func (m *MySQLExplain_OrderingOperation) MarshalVTStrict() (dAtA []byte,... method MarshalToVTStrict (line 3054) | func (m *MySQLExplain_OrderingOperation) MarshalToVTStrict(dAtA []byte) ... method MarshalToSizedBufferVTStrict (line 3059) | func (m *MySQLExplain_OrderingOperation) MarshalToSizedBufferVTStrict(dA... method MarshalVTStrict (line 3125) | func (m *MySQLExplain) MarshalVTStrict() (dAtA []byte, err error) { method MarshalToVTStrict (line 3138) | func (m *MySQLExplain) MarshalToVTStrict(dAtA []byte) (int, error) { method MarshalToSizedBufferVTStrict (line 3143) | func (m *MySQLExplain) MarshalToSizedBufferVTStrict(dAtA []byte) (int, e... method SizeVT (line 3168) | func (m *Parameter) SizeVT() (n int) { method SizeVT (line 3181) | func (m *Config) SizeVT() (n int) { method SizeVT (line 3211) | func (m *Query) SizeVT() (n int) { method SizeVT (line 3239) | func (m *PostgreSQL) SizeVT() (n int) { method SizeVT (line 3253) | func (m *PostgreSQLExplain_Plan) SizeVT() (n int) { method SizeVT (line 3372) | func (m *PostgreSQLExplain_Planning) SizeVT() (n int) { method SizeVT (line 3412) | func (m *PostgreSQLExplain) SizeVT() (n int) { method SizeVT (line 3438) | func (m *MySQL) SizeVT() (n int) { method SizeVT (line 3452) | func (m *MySQLExplain_QueryBlock) SizeVT() (n int) { method SizeVT (line 3491) | func (m *MySQLExplain_Table) SizeVT() (n int) { method SizeVT (line 3562) | func (m *MySQLExplain_NestedLoopObj) SizeVT() (n int) { method SizeVT (line 3576) | func (m *MySQLExplain_OrderingOperation) SizeVT() (n int) { method SizeVT (line 3607) | func (m *MySQLExplain) SizeVT() (n int) { function sov (line 3621) | func sov(x uint64) (n int) { function soz (line 3624) | func soz(x uint64) (n int) { method UnmarshalVT (line 3627) | func (m *Parameter) UnmarshalVT(dAtA []byte) error { method UnmarshalVT (line 3697) | func (m *Config) UnmarshalVT(dAtA []byte) error { method UnmarshalVT (line 3876) | func (m *Query) UnmarshalVT(dAtA []byte) error { method UnmarshalVT (line 4057) | func (m *PostgreSQL) UnmarshalVT(dAtA []byte) error { method UnmarshalVT (line 4144) | func (m *PostgreSQLExplain_Plan) UnmarshalVT(dAtA []byte) error { method UnmarshalVT (line 4923) | func (m *PostgreSQLExplain_Planning) UnmarshalVT(dAtA []byte) error { method UnmarshalVT (line 5164) | func (m *PostgreSQLExplain) UnmarshalVT(dAtA []byte) error { method UnmarshalVT (line 5414) | func (m *MySQL) UnmarshalVT(dAtA []byte) error { method UnmarshalVT (line 5501) | func (m *MySQLExplain_QueryBlock) UnmarshalVT(dAtA []byte) error { method UnmarshalVT (line 5836) | func (m *MySQLExplain_Table) UnmarshalVT(dAtA []byte) error { method UnmarshalVT (line 6360) | func (m *MySQLExplain_NestedLoopObj) UnmarshalVT(dAtA []byte) error { method UnmarshalVT (line 6447) | func (m *MySQLExplain_OrderingOperation) UnmarshalVT(dAtA []byte) error { method UnmarshalVT (line 6715) | func (m *MySQLExplain) UnmarshalVT(dAtA []byte) error { function skip (line 6803) | func skip(dAtA []byte) (n int, err error) { FILE: internal/x/expander/expander.go type Parser (line 15) | type Parser interface type ColumnGetter (line 20) | type ColumnGetter interface type Expander (line 26) | type Expander struct method Expand (line 43) | func (e *Expander) Expand(ctx context.Context, query string) (string, ... method expandNode (line 73) | func (e *Expander) expandNode(ctx context.Context, node ast.Node) error { method expandSelectStmt (line 94) | func (e *Expander) expandSelectStmt(ctx context.Context, stmt *ast.Sel... method expandSelectStmtInner (line 146) | func (e *Expander) expandSelectStmtInner(ctx context.Context, stmt *as... method getCTEColumnNames (line 159) | func (e *Expander) getCTEColumnNames(ctx context.Context, stmt *ast.Se... method expandInsertStmt (line 208) | func (e *Expander) expandInsertStmt(ctx context.Context, stmt *ast.Ins... method expandUpdateStmt (line 240) | func (e *Expander) expandUpdateStmt(ctx context.Context, stmt *ast.Upd... method expandDeleteStmt (line 265) | func (e *Expander) expandDeleteStmt(ctx context.Context, stmt *ast.Del... method expandFromClause (line 290) | func (e *Expander) expandFromClause(ctx context.Context, node ast.Node... method getColumnNames (line 338) | func (e *Expander) getColumnNames(ctx context.Context, query string) (... function New (line 33) | func New(colGetter ColumnGetter, parser Parser, dialect format.Dialect) ... function hasStarAnywhere (line 312) | func hasStarAnywhere(node ast.Node) bool { function hasStarInList (line 325) | func hasStarInList(targets *ast.List) bool { function countStarsInList (line 343) | func countStarsInList(targets *ast.List) int { function countNonStarsInList (line 374) | func countNonStarsInList(targets *ast.List) int { function rewriteTargetList (line 413) | func rewriteTargetList(targets *ast.List, columns []string) *ast.List { function makeColumnTargetWithPrefix (line 491) | func makeColumnTargetWithPrefix(colName string, prefix []string) ast.Node { FILE: internal/x/expander/expander_test.go type PostgreSQLColumnGetter (line 24) | type PostgreSQLColumnGetter struct method GetColumnNames (line 28) | func (g *PostgreSQLColumnGetter) GetColumnNames(ctx context.Context, q... type MySQLColumnGetter (line 49) | type MySQLColumnGetter struct method GetColumnNames (line 53) | func (g *MySQLColumnGetter) GetColumnNames(ctx context.Context, query ... type SQLiteColumnGetter (line 91) | type SQLiteColumnGetter struct method GetColumnNames (line 95) | func (g *SQLiteColumnGetter) GetColumnNames(ctx context.Context, query... function TestExpandPostgreSQL (line 113) | func TestExpandPostgreSQL(t *testing.T) { function TestExpandMySQL (line 252) | func TestExpandMySQL(t *testing.T) { function TestExpandSQLite (line 369) | func TestExpandSQLite(t *testing.T) { FILE: pkg/cli/cli.go function Run (line 28) | func Run(args []string) int { FILE: placeholder.go type Placeholder (line 6) | type Placeholder struct FILE: scripts/build/main.go function main (line 11) | func main() { FILE: scripts/bump-version/main.go function main (line 15) | func main() { function run (line 25) | func run(current, next string, realmode bool) error { FILE: scripts/cleanup-test-dbs/main.go function main (line 13) | func main() { constant query (line 19) | query = ` function run (line 25) | func run() error { FILE: scripts/mirror-go-plugin/main.go function main (line 14) | func main() { FILE: scripts/release.go function main (line 12) | func main() { FILE: scripts/test-json-process-plugin/main.go type Out (line 10) | type Out struct type File (line 14) | type File struct function main (line 19) | func main() {