You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If these is mismatch in aliases as used below, no errors are thrown by sqlc generate:
-- Example queries for sqlcCREATETABLEauthors (
id BIGSERIALPRIMARY KEY,
name textNOT NULL,
bio text
);
-- name: GetAuthor :oneSELECT*FROM authors a
WHEREp.id= $1LIMIT1;