|
|
|
@ -9,7 +9,7 @@ import (
|
|
|
|
|
const dbTag = "db"
|
|
|
|
|
|
|
|
|
|
// RawFieldNames converts golang struct field into slice string.
|
|
|
|
|
func RawFieldNames(in any, postgresSql ...bool) []string {
|
|
|
|
|
func RawFieldNames(in any, postgreSql ...bool) []string {
|
|
|
|
|
out := make([]string, 0)
|
|
|
|
|
v := reflect.ValueOf(in)
|
|
|
|
|
if v.Kind() == reflect.Ptr {
|
|
|
|
@ -17,8 +17,8 @@ func RawFieldNames(in any, postgresSql ...bool) []string {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var pg bool
|
|
|
|
|
if len(postgresSql) > 0 {
|
|
|
|
|
pg = postgresSql[0]
|
|
|
|
|
if len(postgreSql) > 0 {
|
|
|
|
|
pg = postgreSql[0]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// we only accept structs
|
|
|
|
|