mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
pg: fix array init warnings (#6163)
This commit is contained in:
parent
e69f091bbd
commit
c42ca84850
@ -142,7 +142,7 @@ pub fn (db DB) exec_param_many(query string, params []string) []Row {
|
||||
}
|
||||
|
||||
pub fn (db DB) exec_param2(query string, param, param2 string) []Row {
|
||||
mut param_vals := [2]byteptr
|
||||
mut param_vals := [2]byteptr{}
|
||||
param_vals[0] = param.str
|
||||
param_vals[1] = param2.str
|
||||
res := C.PQexecParams(db.conn, query.str, 2, 0, param_vals, 0, 0, 0)
|
||||
@ -150,7 +150,7 @@ pub fn (db DB) exec_param2(query string, param, param2 string) []Row {
|
||||
}
|
||||
|
||||
pub fn (db DB) exec_param(query string, param string) []Row {
|
||||
mut param_vals := [1]byteptr
|
||||
mut param_vals := [1]byteptr{}
|
||||
param_vals[0] = param.str
|
||||
res := C.PQexecParams(db.conn, query.str, 1, 0, param_vals, 0, 0, 0)
|
||||
return db.handle_error_or_result(res, 'exec_param')
|
||||
|
Loading…
Reference in New Issue
Block a user