File tree 2 files changed +7
-0
lines changed
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -121,6 +121,7 @@ function ConnectOptions() {
121
121
// * `5` Support for ST_GEOMETRY and ST_POINT
122
122
// * `6` Specifies to send the data type BINTEXT to the client
123
123
// * `7` Support for BOOLEAN
124
+ // * `8` Support for FIXED8/12/16
124
125
// TODO: Once implementation and testing for data format version 4 are
125
126
// complete, replace dataFormatVersion and dataFormatVersion2 with the
126
127
// commented-out lines.
Original file line number Diff line number Diff line change @@ -828,6 +828,8 @@ describe('db', function () {
828
828
} ) ;
829
829
830
830
it ( 'should raise input type error' , function ( done ) {
831
+ // Overflow validations are done one at a time, and some are done on the server, so this test can take longer
832
+ this . timeout ( 3000 ) ;
831
833
var invalidTestData = [
832
834
// Overflows 15 digit precision with 5 decimal places
833
835
{ value : '10000000000' , errMessage : 'numeric overflow: Failed in "A" column with the value 10000000000.00000' } ,
@@ -862,6 +864,8 @@ describe('db', function () {
862
864
} ) ;
863
865
864
866
it ( 'should raise input type error' , function ( done ) {
867
+ // Same as before, some overflow validations are on the server, so this test can take longer
868
+ this . timeout ( 3000 ) ;
865
869
var invalidTestData = [
866
870
// Overflows 23 digit precision with 5 decimal places
867
871
{ value : '1000000000000000000' , errMessage : 'numeric overflow: Failed in "A" column with the value 1000000000000000000.00000' } ,
@@ -899,6 +903,8 @@ describe('db', function () {
899
903
} ) ;
900
904
901
905
it ( 'should raise input type error' , function ( done ) {
906
+ // Same as before, some overflow validations are on the server, so this test can take longer
907
+ this . timeout ( 3000 ) ;
902
908
var invalidTestData = [
903
909
// Overflows 35 digit precision with 5 decimal places
904
910
{
You can’t perform that action at this time.
0 commit comments