Guilherme Blanco
|
8ea62b95b8
|
Tests around reported cases over DDC-2524
|
2015-11-27 18:44:23 +00:00 |
|
Guilherme Blanco
|
57b22bd646
|
Merge pull request #1568 from guiwoda/patch-ddc-3967
Identifier is cached with wrong type
|
2015-11-24 22:17:59 -05:00 |
|
Guido Contreras Woda
|
e3627f1886
|
Test that reflects the issue described in http://www.doctrine-project.org/jira/browse/DDC-3967
|
2015-11-24 10:35:31 -03:00 |
|
Guido Contreras Woda
|
6c96e23a47
|
Test to verify the bug and the fix
|
2015-11-19 12:02:51 -03:00 |
|
Guilherme Blanco
|
84eb175dbf
|
Merge pull request #1436 from dadamssg/DDC-3785
allow ManyToManyPersister to handle custom identification types
|
2015-11-15 22:24:01 -05:00 |
|
Guilherme Blanco
|
9f93999758
|
Merge pull request #1487 from xxccdef/DDC-3864
[DDC-3864] Support any ordering of fields in partial object query with embeddable
|
2015-11-15 22:03:25 -05:00 |
|
Guilherme Blanco
|
e64f44ec9b
|
Fix one to one inverse side cached entity association key generation
|
2015-11-13 15:58:52 +00:00 |
|
Guilherme Blanco
|
58992ad523
|
Fixed support for inverse side second level cache
|
2015-11-12 05:00:08 +00:00 |
|
Guilherme Blanco
|
49bb687aaf
|
Merge pull request #1540 from pantelm/master
[DDC-3711] Correct Error on manyToMany with composite primary key + add Tests
|
2015-11-08 22:43:36 -05:00 |
|
Guilherme Blanco
|
d88cf97bef
|
Merge pull request #1507 from deguif/fix-wrong-property
Fixed wrong property name
|
2015-11-07 10:09:06 -05:00 |
|
Marco Pivetta
|
e7685c89da
|
Merge pull request #1405 from taueres/master
EntityManager#getReference throw ORMException for unrecognized id
|
2015-11-06 23:07:21 -05:00 |
|
Guilherme Blanco
|
843966ac50
|
General fixes across CS, type resolving, test fixes, etc
|
2015-11-07 03:55:05 +00:00 |
|
Guilherme Blanco
|
1587aac4ff
|
Added support for OneToMany with orphanRemoval. Replacing entire collection now deletes the replaced collection (scheduled for deletion). No event handling is done as it happens at DBAL level.
|
2015-11-05 00:08:44 -05:00 |
|
Pantel
|
43b2419a3c
|
[DDC-3711] add Test that check if the association key are composite
|
2015-10-31 17:19:39 +01:00 |
|
Matthias Pigulla
|
84f51b68af
|
Fix tests
dd47003641 removes the 'DoctrineNamespaceCacheKey[]' entry from the cache. Thus, all tests counting cache entries were off by one.
|
2015-09-19 01:15:39 +02:00 |
|
François-Xavier de Guillebon
|
ae243643e5
|
Added test
|
2015-09-14 18:35:49 +02:00 |
|
Marco Pivetta
|
a0a0c731bb
|
Merge pull request #1457 from phansys/short_types
Updated syntax for "integer" and "boolean" types
|
2015-09-05 17:21:05 +02:00 |
|
Issei.M
|
df461601f7
|
removed useless line breaks
|
2015-09-03 17:55:14 +09:00 |
|
Bill Schaller
|
f88896cc9d
|
Merge pull request #1463 from ehimen/paginate-order-by-subselect
Fixed issue when paginator orders by a subselect expression
|
2015-08-04 14:17:50 -04:00 |
|
Egidijus Jucevičius
|
d4d9a2ba3c
|
Support any ordering of fields in partial object query with embeddable [DDC-3864]
|
2015-08-04 10:56:50 +03:00 |
|
Andy Cook
|
61488d955e
|
Fixed issue when paginator orders by a subselect expression on platforms supporting ROW_NUMBER OVER() function.
|
2015-07-16 11:20:22 +01:00 |
|
Marco Pivetta
|
eb5d87cd94
|
DDC-3699 - #1387 - leveraging the OrmFunctionalTestCase API
|
2015-07-15 21:51:04 +01:00 |
|
Marco Pivetta
|
12183b7e6c
|
DDC-3699 - #1387 - catching specific exceptions
|
2015-07-15 21:47:37 +01:00 |
|
Marco Pivetta
|
74883e535f
|
DDC-3699 - #1387 - simpifying tests, clarifying on test method names
|
2015-07-15 21:46:23 +01:00 |
|
Lenard Palko
|
cbfd71cec6
|
Added test cases for both one-to-one and one-to-many cases.
|
2015-07-15 21:26:45 +01:00 |
|
Javier Spagnoletti
|
97cc49033e
|
Updated syntax for ``integer ` and `boolean `` types
| Q | A
| ------------- | ---
| Bug fix? | no
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| Tests pass? | yes
| Fixed tickets |
| License | MIT
| Doc PR |
Used short syntax for ```integer``` and ```boolean``` types.
**Before**
```php
/**
* @var integer
*
* @ORM\Column(name="some_integer_field", type="integer")
*/
private $someIntegerField;
/**
* @var boolean
*
* @ORM\Column(name="some_boolean_field", type="boolean")
*/
private $someBooleanField;
```
**After**
```php
/**
* @var int
*
* @ORM\Column(name="some_integer_field", type="integer")
*/
private $someIntegerField;
/**
* @var bool
*
* @ORM\Column(name="some_boolean_field", type="boolean")
*/
private $someBooleanField;
```
|
2015-07-14 15:30:13 -03:00 |
|
David Adams
|
6fa20062f3
|
allow ManyToManyPersister to handle identification types
|
2015-06-23 17:55:56 +00:00 |
|
Thomas Lallement
|
f41e59258c
|
Failing Test - Paginator with sorted collection
|
2015-06-16 16:34:37 -04:00 |
|
Christian Schmidt
|
96dbecec24
|
[DDC-3382] Allow orphan removal to be cancelled
|
2015-06-12 16:44:13 +02:00 |
|
Sergio Santoro
|
8c6607532b
|
EntityManager#getReference throw ORMException for unrecognized id
- Unreachable statements have been removed
- Throw ORMException for unrecognized identifier field (same
behavior as EntityManager#find)
|
2015-05-10 00:28:28 +02:00 |
|
Matteo Beccati
|
e7397ff62e
|
Fix DDC767Test failing on php7 + pg94
The failure happens when running the full suite or even just:
phpunit tests/Doctrine/Tests/ORM/Functional/Ticket
|
2015-04-05 21:50:25 +02:00 |
|
Bill Schaller
|
f93f601715
|
fix rare query test failures due to nondeterminism without order by clause
|
2015-04-05 00:09:38 +01:00 |
|
Kristopher Wilson
|
9d7aa9ba39
|
Adding failing test case for PaginationTest
The failure comes into play when an entity has an attribute named
differently from its corresponding column name.
|
2015-03-31 21:39:21 +01:00 |
|
Bill Schaller
|
608dfa2f57
|
Add more detection in LimitSubqueryWalker for conditions that must be handled by LimitSubqueryOutputWalker
|
2015-03-31 21:39:20 +01:00 |
|
Bill Schaller
|
edcc0fc024
|
Fix paginator when ordering by while selecting entities using joined table inheritance
|
2015-03-31 21:39:20 +01:00 |
|
Bill Schaller
|
af3f5c5c5a
|
Add test for paginating on a query with a subquery in the where clause
Conflicts:
tests/Doctrine/Tests/ORM/Tools/Pagination/LimitSubqueryOutputWalkerTest.php
|
2015-03-31 21:38:58 +01:00 |
|
Kristopher Wilson
|
a4aa18f796
|
test case for joined table inheritance pagination
|
2015-03-31 21:38:58 +01:00 |
|
Alexander Orabey
|
f92307d06d
|
problem with LimitSubqueryOutputWalker when use InheritanceType
Conflicts:
tests/Doctrine/Tests/OrmFunctionalTestCase.php
|
2015-03-31 21:36:32 +01:00 |
|
Bill Schaller
|
ff75a3ad49
|
Fix paginator issues when ordering by a joined column from a to-many association.
Manual merge testcase from #1351
|
2015-03-31 21:36:32 +01:00 |
|
Marco Pivetta
|
cf1ecffb14
|
Merge pull request #1339 from BenMorel/dqlcustomtype
[DDC-2224] Honor convertToDatabaseValueSQL() in DQL query parameters
|
2015-03-25 01:27:05 +00:00 |
|
Bill Schaller
|
147bdd8ede
|
Fixed nitpicks from @stof
|
2015-03-24 00:25:12 +00:00 |
|
Bill Schaller
|
81ccd93b74
|
Add thorough functional tests for Paginator, expand existing ones.
|
2015-03-24 00:25:12 +00:00 |
|
Marco Pivetta
|
06998d015f
|
Skipping DDC-3634 tests when a post-insert generator is unavailable
|
2015-03-24 00:20:03 +00:00 |
|
Marco Pivetta
|
70c8591bbe
|
Merge pull request #1343 from karlrixon/master
Support embeddables in partial object query expression [DDC-3621]
|
2015-03-23 23:43:36 +00:00 |
|
Marco Pivetta
|
4c119c44a1
|
Completed test coverage for DDC-3634
|
2015-03-23 23:37:36 +00:00 |
|
Marco Pivetta
|
cbdf23ca65
|
Verifies that identifiers are kept as strings when dealing with large numbers
|
2015-03-23 23:29:22 +00:00 |
|
Karl Rixon
|
6070c9395d
|
Functional tests for partial selection with embeddables [DDC-3630]
|
2015-03-23 15:44:06 +00:00 |
|
Marco Pivetta
|
3b0fb6b4b8
|
Merge pull request #1274 from doctrine/persistent-collection-as-lazy-collection
PersistentCollection now extends AbstractLazyCollection.
|
2015-03-17 23:32:17 +00:00 |
|
Marco Pivetta
|
1add0a04fa
|
Merge pull request #1302 from goetas/pr1301
Store column values of not cache-able associations
|
2015-03-17 23:27:04 +00:00 |
|
Benjamin Morel
|
517cb7e2a2
|
Honor convertToDatabaseValueSQL() in DQL query parameters
|
2015-03-18 00:24:41 +01:00 |
|