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 161afe9 commit f1d208cCopy full SHA for f1d208c
index.js
@@ -160,7 +160,12 @@ class Client_AuroraDataMySQL extends Client_MySQL { // eslint-disable-line camel
160
}
161
162
if (value === null) {
163
- return null;
+ return {
164
+ name,
165
+ value: {
166
+ isNull: true
167
+ }
168
+ };
169
170
171
if (Buffer.isBuffer(value) || ArrayBuffer.isView(value)) {
tests/test.js
@@ -210,7 +210,12 @@ describe('Query statement tests', () => {
210
stringValue: '2020-01-01 00:00:00.000'
211
212
},
213
- null
+ {
214
+ name: '6',
215
216
217
218
219
],
220
includeResultMetadata: true
221
});
0 commit comments