(blob)
| 68 | return 'BLOB'; // 1MB |
| 69 | } |
| 70 | escape(blob) { |
| 71 | return `BLOB('${ blob.toString().replace(/'/g, "''") }')`; |
| 72 | } |
| 73 | _stringify(value) { |
| 74 | if (Buffer.isBuffer(value)) { |
| 75 | return `BLOB('${ value.toString().replace(/'/g, "''") }')`; |
no test coverage detected