@@ -89,7 +89,7 @@ func (t *DateTime) Scan(src interface{}) error {
89
89
}
90
90
91
91
// Value the interface providing the Value method for package database/sql/driver.
92
- func (t * DateTime ) Value () (driver.Value , error ) {
92
+ func (t DateTime ) Value () (driver.Value , error ) {
93
93
if t .IsZero () {
94
94
return nil , nil
95
95
}
@@ -133,7 +133,7 @@ func (t *DateTimeMilli) Scan(src interface{}) error {
133
133
}
134
134
135
135
// Value the interface providing the Value method for package database/sql/driver.
136
- func (t * DateTimeMilli ) Value () (driver.Value , error ) {
136
+ func (t DateTimeMilli ) Value () (driver.Value , error ) {
137
137
if t .IsZero () {
138
138
return nil , nil
139
139
}
@@ -177,7 +177,7 @@ func (t *DateTimeMicro) Scan(src interface{}) error {
177
177
}
178
178
179
179
// Value the interface providing the Value method for package database/sql/driver.
180
- func (t * DateTimeMicro ) Value () (driver.Value , error ) {
180
+ func (t DateTimeMicro ) Value () (driver.Value , error ) {
181
181
if t .IsZero () {
182
182
return nil , nil
183
183
}
@@ -221,7 +221,7 @@ func (t *DateTimeNano) Scan(src interface{}) error {
221
221
}
222
222
223
223
// Value the interface providing the Value method for package database/sql/driver.
224
- func (t * DateTimeNano ) Value () (driver.Value , error ) {
224
+ func (t DateTimeNano ) Value () (driver.Value , error ) {
225
225
if t .IsZero () {
226
226
return nil , nil
227
227
}
@@ -265,7 +265,7 @@ func (t *Date) Scan(src interface{}) error {
265
265
}
266
266
267
267
// Value the interface providing the Value method for package database/sql/driver.
268
- func (t * Date ) Value () (driver.Value , error ) {
268
+ func (t Date ) Value () (driver.Value , error ) {
269
269
if t .IsZero () {
270
270
return nil , nil
271
271
}
@@ -309,7 +309,7 @@ func (t *DateMilli) Scan(src interface{}) error {
309
309
}
310
310
311
311
// Value the interface providing the Value method for package database/sql/driver.
312
- func (t * DateMilli ) Value () (driver.Value , error ) {
312
+ func (t DateMilli ) Value () (driver.Value , error ) {
313
313
if t .IsZero () {
314
314
return nil , nil
315
315
}
@@ -353,7 +353,7 @@ func (t *DateMicro) Scan(src interface{}) error {
353
353
}
354
354
355
355
// Value the interface providing the Value method for package database/sql/driver.
356
- func (t * DateMicro ) Value () (driver.Value , error ) {
356
+ func (t DateMicro ) Value () (driver.Value , error ) {
357
357
if t .IsZero () {
358
358
return nil , nil
359
359
}
@@ -397,7 +397,7 @@ func (t *DateNano) Scan(src interface{}) error {
397
397
}
398
398
399
399
// Value the interface providing the Value method for package database/sql/driver.
400
- func (t * DateNano ) Value () (driver.Value , error ) {
400
+ func (t DateNano ) Value () (driver.Value , error ) {
401
401
if t .IsZero () {
402
402
return nil , nil
403
403
}
@@ -441,7 +441,7 @@ func (t *Time) Scan(src interface{}) error {
441
441
}
442
442
443
443
// Value the interface providing the Value method for package database/sql/driver.
444
- func (t * Time ) Value () (driver.Value , error ) {
444
+ func (t Time ) Value () (driver.Value , error ) {
445
445
if t .IsZero () {
446
446
return nil , nil
447
447
}
@@ -487,7 +487,7 @@ func (t *TimeMilli) Scan(src interface{}) error {
487
487
}
488
488
489
489
// Value the interface providing the Value method for package database/sql/driver.
490
- func (t * TimeMilli ) Value () (driver.Value , error ) {
490
+ func (t TimeMilli ) Value () (driver.Value , error ) {
491
491
if t .IsZero () {
492
492
return nil , nil
493
493
}
@@ -532,7 +532,7 @@ func (t *TimeMicro) Scan(src interface{}) error {
532
532
}
533
533
534
534
// Value the interface providing the Value method for package database/sql/driver.
535
- func (t * TimeMicro ) Value () (driver.Value , error ) {
535
+ func (t TimeMicro ) Value () (driver.Value , error ) {
536
536
if t .IsZero () {
537
537
return nil , nil
538
538
}
@@ -577,7 +577,7 @@ func (t *TimeNano) Scan(src interface{}) error {
577
577
}
578
578
579
579
// Value the interface providing the Value method for package database/sql/driver.
580
- func (t * TimeNano ) Value () (driver.Value , error ) {
580
+ func (t TimeNano ) Value () (driver.Value , error ) {
581
581
if t .IsZero () {
582
582
return nil , nil
583
583
}
@@ -622,7 +622,7 @@ func (t *Timestamp) Scan(src interface{}) error {
622
622
}
623
623
624
624
// Value the interface providing the Value method for package database/sql/driver.
625
- func (t * Timestamp ) Value () (driver.Value , error ) {
625
+ func (t Timestamp ) Value () (driver.Value , error ) {
626
626
if t .IsZero () {
627
627
return nil , nil
628
628
}
@@ -667,7 +667,7 @@ func (t *TimestampMilli) Scan(src interface{}) error {
667
667
}
668
668
669
669
// Value the interface providing the Value method for package database/sql/driver.
670
- func (t * TimestampMilli ) Value () (driver.Value , error ) {
670
+ func (t TimestampMilli ) Value () (driver.Value , error ) {
671
671
if t .IsZero () {
672
672
return nil , nil
673
673
}
@@ -712,7 +712,7 @@ func (t *TimestampMicro) Scan(src interface{}) error {
712
712
}
713
713
714
714
// Value the interface providing the Value method for package database/sql/driver.
715
- func (t * TimestampMicro ) Value () (driver.Value , error ) {
715
+ func (t TimestampMicro ) Value () (driver.Value , error ) {
716
716
if t .IsZero () {
717
717
return nil , nil
718
718
}
@@ -757,7 +757,7 @@ func (t *TimestampNano) Scan(src interface{}) error {
757
757
}
758
758
759
759
// Value the interface providing the Value method for package database/sql/driver.
760
- func (t * TimestampNano ) Value () (driver.Value , error ) {
760
+ func (t TimestampNano ) Value () (driver.Value , error ) {
761
761
if t .IsZero () {
762
762
return nil , nil
763
763
}
0 commit comments