File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 33
33
- { os: windows-latest, compiler: dmd-2.097.2 }
34
34
35
35
steps :
36
- - uses : actions/checkout@v2
36
+ - uses : actions/checkout@v3
37
37
38
38
- name : Install D ${{ matrix.compiler }}
39
39
uses : dlang-community/setup-dlang@v1
@@ -149,7 +149,7 @@ jobs:
149
149
# --health-retries 3
150
150
151
151
steps :
152
- - uses : actions/checkout@v2
152
+ - uses : actions/checkout@v3
153
153
154
154
- name : Install latest DMD
155
155
uses : dlang-community/setup-dlang@v1
Original file line number Diff line number Diff line change @@ -473,6 +473,10 @@ class ParameterMetaDataImpl : ParameterMetaData {
473
473
int isNullable (int param) { return col(param).isNullable; }
474
474
// / Retrieves whether values for the designated parameter can be signed numbers.
475
475
bool isSigned (int param) { return col(param).isSigned; }
476
+
477
+ override string toString () {
478
+ return to! string (cols.map! (c => c.typeName).joiner(" ," ));
479
+ }
476
480
}
477
481
478
482
// / Metadata for result set - to be used in driver implementations
@@ -527,6 +531,10 @@ class ResultSetMetaDataImpl : ResultSetMetaData {
527
531
override bool isSigned (int column) { return col(column).isSigned; }
528
532
// Indicates whether it is possible for a write on the designated column to succeed.
529
533
override bool isWritable (int column) { return col(column).isWritable; }
534
+
535
+ override string toString () {
536
+ return to! string (cols.map! (c => c.name).joiner(" ," ));
537
+ }
530
538
}
531
539
532
540
version (unittest ) {
You can’t perform that action at this time.
0 commit comments