@@ -22,28 +22,28 @@ func main() {
2222 panic (err )
2323 }
2424 db := bun .NewDB (sqlite , sqlitedialect .New ())
25- bun .NewRawQuery (db , untrusted ) // $ querystring=untrusted
26-
27- db .ExecContext (ctx , untrusted ) // $ querystring=untrusted
28- db .PrepareContext (ctx , untrusted ) // $ querystring=untrusted
29- db .QueryContext (ctx , untrusted ) // $ querystring=untrusted
30- db .QueryRowContext (ctx , untrusted ) // $ querystring=untrusted
31-
32- db .Exec (untrusted ) // $ querystring=untrusted
33- db .NewRaw (untrusted ) // $ querystring=untrusted
34- db .Prepare (untrusted ) // $ querystring=untrusted
35- db .Query (untrusted ) // $ querystring=untrusted
36- db .QueryRow (untrusted ) // $ querystring=untrusted
37- db .Raw (untrusted ) // $ querystring=untrusted
38-
39- db .NewSelect ().ColumnExpr (untrusted ) // $ querystring=untrusted
40- db .NewSelect ().DistinctOn (untrusted ) // $ querystring=untrusted
41- db .NewSelect ().For (untrusted ) // $ querystring=untrusted
42- db .NewSelect ().GroupExpr (untrusted ) // $ querystring=untrusted
43- db .NewSelect ().Having (untrusted ) // $ querystring=untrusted
44- db .NewSelect ().ModelTableExpr (untrusted ) // $ querystring=untrusted
45- db .NewSelect ().OrderExpr (untrusted ) // $ querystring=untrusted
46- db .NewSelect ().TableExpr (untrusted ) // $ querystring=untrusted
47- db .NewSelect ().Where (untrusted ) // $ querystring=untrusted
48- db .NewSelect ().WhereOr (untrusted ) // $ querystring=untrusted
25+ bun .NewRawQuery (db , untrusted )
26+
27+ db .ExecContext (ctx , untrusted )
28+ db .PrepareContext (ctx , untrusted )
29+ db .QueryContext (ctx , untrusted )
30+ db .QueryRowContext (ctx , untrusted )
31+
32+ db .Exec (untrusted )
33+ db .NewRaw (untrusted )
34+ db .Prepare (untrusted )
35+ db .Query (untrusted )
36+ db .QueryRow (untrusted )
37+ db .Raw (untrusted )
38+
39+ db .NewSelect ().ColumnExpr (untrusted )
40+ db .NewSelect ().DistinctOn (untrusted )
41+ db .NewSelect ().For (untrusted )
42+ db .NewSelect ().GroupExpr (untrusted )
43+ db .NewSelect ().Having (untrusted )
44+ db .NewSelect ().ModelTableExpr (untrusted )
45+ db .NewSelect ().OrderExpr (untrusted )
46+ db .NewSelect ().TableExpr (untrusted )
47+ db .NewSelect ().Where (untrusted )
48+ db .NewSelect ().WhereOr (untrusted )
4949}
0 commit comments