@@ -241,7 +241,7 @@ mod tests {
241
241
let identifiers = vec ! [
242
242
super :: TypedIdentifier {
243
243
path: "fn_name" . to_string( ) ,
244
- name: "v_test" . to_string( ) ,
244
+ name: Some ( "v_test" . to_string( ) ) ,
245
245
type_: super :: IdentifierType {
246
246
schema: None ,
247
247
name: "int4" . to_string( ) ,
@@ -250,7 +250,7 @@ mod tests {
250
250
} ,
251
251
super :: TypedIdentifier {
252
252
path: "fn_name" . to_string( ) ,
253
- name: "custom_type" . to_string( ) ,
253
+ name: Some ( "custom_type" . to_string( ) ) ,
254
254
type_: super :: IdentifierType {
255
255
schema: Some ( "public" . to_string( ) ) ,
256
256
name: "custom_type" . to_string( ) ,
@@ -259,7 +259,7 @@ mod tests {
259
259
} ,
260
260
super :: TypedIdentifier {
261
261
path: "fn_name" . to_string( ) ,
262
- name: "another" . to_string( ) ,
262
+ name: Some ( "another" . to_string( ) ) ,
263
263
type_: super :: IdentifierType {
264
264
schema: None ,
265
265
name: "numeric" . to_string( ) ,
@@ -268,7 +268,7 @@ mod tests {
268
268
} ,
269
269
super :: TypedIdentifier {
270
270
path: "fn_name" . to_string( ) ,
271
- name: "custom_type" . to_string( ) ,
271
+ name: Some ( "custom_type" . to_string( ) ) ,
272
272
type_: super :: IdentifierType {
273
273
schema: Some ( "public" . to_string( ) ) ,
274
274
name: "custom_type" . to_string( ) ,
@@ -277,7 +277,7 @@ mod tests {
277
277
} ,
278
278
super :: TypedIdentifier {
279
279
path: "fn_name" . to_string( ) ,
280
- name: "v_test2" . to_string( ) ,
280
+ name: Some ( "v_test2" . to_string( ) ) ,
281
281
type_: super :: IdentifierType {
282
282
schema: None ,
283
283
name: "int4" . to_string( ) ,
@@ -286,7 +286,7 @@ mod tests {
286
286
} ,
287
287
super :: TypedIdentifier {
288
288
path: "fn_name" . to_string( ) ,
289
- name: "enum_type" . to_string( ) ,
289
+ name: Some ( "enum_type" . to_string( ) ) ,
290
290
type_: super :: IdentifierType {
291
291
schema: Some ( "public" . to_string( ) ) ,
292
292
name: "enum_type" . to_string( ) ,
0 commit comments