Skip to content

Commit fe832aa

Browse files
fix test go
1 parent da17ed1 commit fe832aa

File tree

1 file changed

+7
-13
lines changed

1 file changed

+7
-13
lines changed

test/server/typegen.ts

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2040,25 +2040,19 @@ type PublicAViewSelect struct {
20402040
Id *int64 \`json:"id"\`
20412041
}
20422042
2043+
type PublicUsersViewWithMultipleRefsToUsersSelect struct {
2044+
InitialId *int64 \`json:"initial_id"\`
2045+
InitialName *string \`json:"initial_name"\`
2046+
SecondId *int64 \`json:"second_id"\`
2047+
SecondName *string \`json:"second_name"\`
2048+
}
2049+
20432050
type PublicTodosMatviewSelect struct {
20442051
Details *string \`json:"details"\`
20452052
Id *int64 \`json:"id"\`
20462053
UserId *int64 \`json:"user-id"\`
20472054
}
20482055
2049-
type PublicUsersViewWithMultipleRefsToUsersSelect struct {
2050-
InitialId sql.NullInt64 \`json:"initial_id"\`
2051-
InitialName sql.NullString \`json:"initial_name"\`
2052-
SecondId sql.NullInt64 \`json:"second_id"\`
2053-
SecondName sql.NullString \`json:"second_name"\`
2054-
}
2055-
2056-
type PublicTodosMatviewSelect struct {
2057-
Details sql.NullString \`json:"details"\`
2058-
Id sql.NullInt64 \`json:"id"\`
2059-
UserId sql.NullInt64 \`json:"user-id"\`
2060-
}
2061-
20622056
type PublicCompositeTypeWithArrayAttribute struct {
20632057
MyTextArray interface{} \`json:"my_text_array"\`
20642058
}

0 commit comments

Comments
 (0)