Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/vertica-nodejs/lib/type-overrides.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ var types = require('pg-types')
// this is a 'temporary' solution allowing us to continue to use pg-types as long as we can to avoid another large
// package implementation while we get close to the 1.0 release
types.setTypeParser(VerticaType.Boolean, types.getTypeParser(16, 'text'))
types.setTypeParser(VerticaType.Integer, types.getTypeParser(21, 'text'))
types.setTypeParser(VerticaType.Integer, types.getTypeParser(20, 'text'))
types.setTypeParser(VerticaType.Float, types.getTypeParser(700, 'text'))
types.setTypeParser(VerticaType.Numeric, types.getTypeParser(9, 'text'))
types.setTypeParser(VerticaType.Varbinary, types.getTypeParser(9, 'text'))
Expand Down