We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d69154 commit 003cc76Copy full SHA for 003cc76
test/server/typegen.ts
@@ -69,6 +69,9 @@ test('typegen', async () => {
69
id: number
70
"user-id": number
71
blurb: string | null
72
+ blurb_varchar: string | null
73
+ details_is_long: boolean | null
74
+ details_length: number | null
75
}
76
Insert: {
77
details?: string | null
@@ -278,6 +281,24 @@ test('typegen', async () => {
278
281
279
282
Returns: string
280
283
284
+ blurb_varchar: {
285
+ Args: {
286
+ "": unknown
287
+ }
288
+ Returns: string
289
290
+ details_is_long: {
291
292
293
294
+ Returns: boolean
295
296
+ details_length: {
297
298
299
300
+ Returns: number
301
302
function_returning_row: {
303
Args: Record<PropertyKey, never>
304
Returns: {
0 commit comments