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
Given the following tables and queries, type overrides should apply to the inputs of GetFoo and GetBar.
CREATETABLEfoo (id bigserialnot null);
CREATETABLEbar (id bigserialnot null);
-- name: GetFoo :oneSELECT*FROM foo WHERE id = $1;
-- name: GetBar :oneSELECT*FROM bar WHERE id = $1;