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
feat: experiment support for -- @Markers
Allows to instrument the queries for further testing with regresql (primarily).
Example:
```sql`
-- name: insert-order
INSERT INTO orders (user_id, total) VALUES (:user_id, :total);
-- @verify
SELECT * FROM orders WHERE user_id = :user_id;
```sql`
Which defines the verification query. @marker query is access using
```go
if q.HasSection("verify") {
verifyQuery := q.SectionQuery("verify")
}
```