You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In response to a customer inquiry, I have reproduced the crash on Android with batches starting with about 80 MB on an emulator with extra-high 4 GB memory. This crash persists on both evcore and evplus plugin versions and goes beyond the cases discussed in issues #55 & #70.
Here is a reproduction test case similar to what I made for issue #70:
describe(suiteName+'XL transaction column value insertion test(s)',function(){it(suiteName+'INSERT JSON TEXT string many rows with hundred properties each (...)',function(done){vardb=openDatabase('INSERT-JSON-TEXT-string-many-rows-with-hundred-properties.db')vartest_rows=15500vartest_props=100db.transaction(function(tx){tx.executeSql('DROP TABLE IF EXISTS test_table');tx.executeSql('CREATE TABLE IF NOT EXISTS test_table (data)',[],function(ignored1,ignored2){for(varid=0;id<test_rows;++id){varobj={}obj.id=id;for(vari=0;i<test_props;++i){obj['prop'+i]='value-aaaaaaaaaaaaaaaaaaaaaaaaaaaaa-'+(1000+i)}varinsert_data=JSON.stringify(obj)tx.executeSql('INSERT INTO test_table VALUES (?)',[insert_data])}tx.executeSql('INSERT INTO test_table VALUES (?)',['{extra:true}'],function(tx_ignored,rs1){expect(rs1).toBeDefined();expect(rs1.rowsAffected).toBe(1);tx.executeSql('SELECT COUNT(data) AS count FROM test_table',[],function(tx_ignored,rs2){expect(rs2).toBeDefined();expect(rs2.rows).toBeDefined();// expect(rs2.rows.length).toBe(???);varrow=rs2.rows.item(0);expect(row.count).toBeDefined()// [TBD (...)]done();});});});},function(error){// NOT EXPECTED:expect(false).toBe(true);expect(error.message).toBe('---');// Close (plugin only) & finish:(isWebSql) ? done() : db.close(done,done);});},MYTIMEOUT);});
The text was updated successfully, but these errors were encountered:
In response to a customer inquiry, I have reproduced the crash on Android with batches starting with about 80 MB on an emulator with extra-high 4 GB memory. This crash persists on both evcore and evplus plugin versions and goes beyond the cases discussed in issues #55 & #70.
Here is a reproduction test case similar to what I made for issue #70:
The text was updated successfully, but these errors were encountered: