- 17 Dec, 2014 1 commit
-
-
Matheus Bratfisch committed
-
- 16 Dec, 2014 3 commits
-
-
Jan Aagaard Meier committed
-
Jan Aagaard Meier committed
-
linted and cleaned hooks.test.js
Jan Aagaard Meier committed
-
- 14 Dec, 2014 5 commits
-
-
Use ec2 instance in us-west-1
Mick Hansen committed -
Sequelize.close should close all connections once pool is being drained
Jan Aagaard Meier committed -
Dejan Ranisavljevic committed
-
Fixed a few misspelled words
Jan Aagaard Meier committed -
Brian Lundin committed
-
- 13 Dec, 2014 4 commits
-
-
Dejan Ranisavljevic committed
-
Dejan Ranisavljevic committed
-
Dejan Ranisavljevic committed
-
Sascha Depold committed
-
- 12 Dec, 2014 2 commits
-
-
Fixing "error: syntax error at or near ")"" when using upsert with postgres dialect
Jan Aagaard Meier committed -
When trying to insert values containing the character `)`, the RegEx is not modifying the string properly, throwing this error message: `error: syntax error at or near ")"`. Here's an example: Initial value: `VALUES ( \'Current Generator(s)\',\'CurrentGenerators__c\',NULL,NULL,\'Lead\',\'2014-12-10 22:31:24.076 +00:00\',\'2014-12-10 22:31:24.076 +00:00\');` Current result: `SELECT \'Current Generator(s\',\'CurrentGenerators__c\',NULL,NULL,\'Lead\',\'2014-12-10 22:31:24.076 +00:00\',\'2014-12-10 22:31:24.076 +00:00\');` Expected result: `SELECT \'Current Generator(s)\',\'CurrentGenerators__c\',NULL,NULL,\'Lead\',\'2014-12-10 22:31:24.076 +00:00\',\'2014-12-10 22:31:24.076 +00:00\';` This commit is removing the `replace()` method called. After reading the blog post referred, there's no explanation of why this need to be replaced - and it is working fine without it.
Jean-Philippe Monette committed
-
- 11 Dec, 2014 3 commits
-
-
Matt Broadstone committed
-
Sascha Depold committed
-
Sascha Depold committed
-
- 10 Dec, 2014 22 commits
-
-
Feature/mssql dialect
Mick Hansen committed -
findAndCountAll empty include error fixed.
Mick Hansen committed -
Malte Legenhausen committed
-
Matt Broadstone committed
-
Matt Broadstone committed
-
Matt Broadstone committed
-
-
There have been many many little changes to the codebase during the development of the mssql dialect that are no longer needed, as well as missed imports of changes upstream. This realigns the disperate trees, and fixes a few related bugs
Matt Broadstone committed -
There was some refactoring on attributes test where mssql dialect branching was missed. Also added databaseVersion support for mssql dialect
Matt Broadstone committed -
temporarily disable on update foreign key constraints, mssql dialect now passes all current test cases
Matt Broadstone committed -
Matt Broadstone committed
-
Major overhaul of the createTableQuery to bring it closer in line with the mysql dialect. This closes a number of failed cases where things were being created in a strange manner, as well as let's us do away with SqlGenerator once and for all
Matt Broadstone committed -
These tests must be disabled since MSSQL simply doesn't allow the updating of these types of fields. Cascading updates are supported and should be covered by other tests.
Matt Broadstone committed -
Matt Broadstone committed
-
Matt Broadstone committed
-
Instead of trying to parse the error messages in the connection manager, forward all errors to the user to deal with on an as-needed basis
Matt Broadstone committed -
There are more than one error messages related to unique constraints that we need to catch. This closes one more broken test, in ancitipation of the crate table refactoring which closes the other.
Matt Broadstone committed -
There is no need to use the mssql wrapped around tedious, and switching to the lower level module allows better integration as well as bypassing the mssql forced connection pooling
Matt Broadstone committed -
Matt Broadstone committed
-
Code was merged into master to allow modification of the abstract dialect to support mssql specific cases. This removes the custom implementations
Matt Broadstone committed -
Matt Broadstone committed
-
This is more of a stylistic change, as no functional behavior differs, however it makes diagnostics much easier and is theoretically faster than the previous select code.
Matt Broadstone committed
-