Grégoire Paris
a588555ecd
Merge pull request #8586 from KartaviK/patch-3
...
Additional psalm param typehint for orderBy argument in findBy method
2021-04-05 20:38:36 +02:00
Grégoire Paris
7de84537f6
Merge pull request #8591 from DmitriiBezborodnikov/case_insensive_parenthesis
...
Return case insensitive check
2021-04-05 14:40:51 +02:00
Grégoire Paris
97f8325dad
Make sure tests are suffixed with Test
...
They will not be taken into account when running vendor/bin/phpunit
otherwise.
2021-04-05 14:32:40 +02:00
Grégoire Paris
0ebd7052d7
Drop create table at shutdown
...
It makes tests more isolated from each other: another test relying on
some tables including some of the ones created here may fail creating
the tables it needs because they already exist.
2021-04-05 14:03:49 +02:00
Dmitrii Bezborodnikov
5d73378b92
Return case insensitive check
2021-04-05 14:03:49 +02:00
Grégoire Paris
10572ec441
Merge pull request #8590 from VincentLanglet/patch-2
...
Fix phpdoc of ClassMetadataInfo::getIdentifierValues
2021-04-04 23:47:09 +02:00
Vincent Langlet
76278d801d
Fix phpdoc
2021-04-04 21:19:54 +02:00
Roman Varkuta
ca80830b26
Describe $orderBy parameter as a hash
...
A list of string is incorrect, it actually looks like this:
['someField' => 'DESC', 'someOtherField' => 'ASC'…]`
2021-04-03 12:45:24 +02:00
Grégoire Paris
bcb4889a2c
Merge pull request #8583 from greg0ire/sync-static-analysis-workflows
...
Synchronize static analysis jobs with upstream
2021-04-02 08:58:50 +02:00
Grégoire Paris
961da8b0cc
Synchronize static analysis jobs with upstream
2021-04-01 23:32:04 +02:00
Benjamin Eberlei
657a30f8ce
[GH-6394] Bugfix: IdentifierFlattener support for association non-object values. ( #8384 )
...
* [GH-6394] Bugfix: IdentifierFlattener support for association non-object values
* [GH-6394] Bugfix: BasicEntityPersister::update used wrong identifiers for version assignment.
* Exclude MissingNativeTypeHint phpcs rule as 7.4 is not lowest version.
2021-04-01 23:16:53 +02:00
Grégoire Paris
0b25d4d8b0
Merge pull request #8573 from greg0ire/fix-build
...
Fix build issues
2021-04-01 07:49:27 +02:00
Grégoire Paris
a88242ee6c
Adapt test logic to PHP and SQLite
...
There seems to be at least 2 camps in the software world when it comes
to the question "What's today minus one month", today being at the end
of march.
While PHP and SQLite agree that that would be the 2nd of March, other
RDBMS than SQLite and humans will tell you that it's the last day of
February.
This patch ensures that we check one logic for SQLite, and the other
logic for other platforms.
2021-03-30 21:08:29 +02:00
Grégoire Paris
fe4964008d
Accommodate 2 behaviors of symfony/console in test
...
Decorated text used to be wrapped too early in SymfonyStyle->block()
See https://github.com/symfony/symfony/pull/40348
The fix was not contributed to version 3, which means we have to rewrite
the test so that it passes for both the correct and the buggy version.
2021-03-30 08:41:10 +02:00
Grégoire Paris
3f3de70c3e
Merge pull request #8564 from cybercitizen7/featureIncludeDirectory
...
Adding DIR to include statement to fix issue with pathing
2021-03-26 19:46:40 +01:00
darkw1z
eb4e317144
Adding DIR to include statement to fix issue with pathing
2021-03-26 14:04:46 +01:00
Grégoire Paris
c8f2f61ea1
Merge pull request #8556 from VincentLanglet/patch-2
...
Fix fieldMapping phpdoc
2021-03-26 08:26:40 +01:00
Vincent Langlet
c9502d3d0b
Fix fieldMapping phpdoc
2021-03-24 15:07:08 +01:00
Grégoire Paris
3358ccde39
Merge pull request #8547 from greg0ire/psalm-lv6-phpdoc
...
Make phpdoc types correct
2021-03-21 22:11:51 +01:00
Grégoire Paris
47475f3a67
Merge pull request #8532 from acoulton/bug-fix-ci-db-connection
...
All CI runs are using the sqlite fallback connection instead of the expected driver
2021-03-17 19:49:56 +01:00
acoulton
61c4a5da0a
Rename tmpdb_ to privileged_db in test config and TestUtil
...
To avoid confusion, the `tmpdb_` test config values are now named
`privileged_db_` and better documented in the phpunit.xml.dist.
The TestUtil class has been refactored to more closely mirror the
structure and method / variable naming of the equivalent in
doctrine/dbal. This does not introduce any significant functional
changes. The only real difference is that the test output now prints
the selected database driver the first time it is referenced,
rather than repeating this through the test run.
2021-03-17 10:31:22 +00:00
acoulton
dd34bca4eb
Upgrade previously-skipped tests to phpunit 9
...
These tests had not been running in CI so missed the previous
phpunit upgrade.
Note that assertions in decimal/floaty values in GH7941Test have
been changed to compare numerically with a reasonable level of
precision, instead of using regex. This is because the types
returned by the different drivers are inconsistent, and phpunit
now only allows regex comparisons on strings.
2021-03-17 10:31:22 +00:00
acoulton
3e21c50f61
Fix unit test and CI database driver / credential configuration
...
Builds using the github actions phpunit.xml files were not properly
recognising driver-specific configuration values, so were all
falling back to use the in-memory sqlite database instead of the
expected driver. This also meant a number of tests were skipped
as they rely on functionality not available in sqlite.
This commit addresses that by:
* REMOVING the automatic fallback to the sqlite memory database -
phpunit.xml must now always specify explicit parameters for the
desired connection.
* Displaying the active driver in the build output for visibility
and debugging.
* Changing the way TestUtil loads the database config in line
with the equivalent logic in doctrine/dbal, and to support the
way that the config is/was specified in the phpunit.xml files
for CI.
Note that this means a couple of the expected config variable names
have changed. Developers that are using customised phpunit.xml files
locally will need to update them to provide:
* Database config variables if they want to use the sqlite/memory
driver - see phpunit.xml.dist for details.
* `db_driver` instead of `db_type`
* `db_user` instead of `db_username`
* `db_dbname` instead of `db_name`
* And, if in use, the equivalent changes to the `tmpdb_` values
The other change is that now if you provide any value for
`db_driver` we will attempt to create that connection type and
that will throw if other details (username / password / etc as
required by the driver) are not provided. Previously providing
partial configuration would cause TestUtil to silently fall back
to the in-memory sqlite driver.
2021-03-17 10:31:22 +00:00
Grégoire Paris
bc3592bcc8
Make phpdoc type correct
2021-03-16 19:20:11 +01:00
Grégoire Paris
5247c56fce
Merge pull request #8539 from greg0ire/cs-20210311
...
🎉 Final CS batch 🎉
2021-03-14 18:47:03 +01:00
Grégoire Paris
cc37c490c2
Synchronize coding standard workflow with upstream
...
Now that there no longer are cs issues, we can thank diff-sniffer and
kiss it goodbye!
2021-03-13 09:55:38 +01:00
Grégoire Paris
95824efd61
Manually fix cs
2021-03-13 09:46:38 +01:00
Grégoire Paris
44d4712e64
Ignore rule about annotation phpdoc
...
These phpdoc is parsed by doctrine/annotations, and that package does
not understand things like array<string, mixed> yet.
2021-03-13 09:46:38 +01:00
Grégoire Paris
930f44c02f
Ignore rule for externally-defined property
2021-03-13 00:08:03 +01:00
Grégoire Paris
6e3c011e65
Ignore rule about superflous comment
...
We can fix it with a breaking change.
2021-03-13 00:08:03 +01:00
Grégoire Paris
a82de0d422
Ignore rule about unused method
...
It cannot work when you call the private method like a callable.
2021-03-13 00:08:03 +01:00
Grégoire Paris
9917488179
Ignore rule about empty statements
...
This should be implemented in a separate pull request.
2021-03-12 08:20:46 +01:00
Grégoire Paris
93f31d2c33
Merge pull request #8533 from acoulton/test-string-lock-version
...
Add test coverage for passing optimistic lock version as string
2021-03-11 21:41:32 +01:00
acoulton
77356b954f
Add test coverage for passing optimistic lock version as string
...
As discussed in #8527 , when using optimistic locking with integer
version columns, Doctrine has always supported passing the lock
version as a string. For example when passing in a version
received in POST / GET.
Technically speaking this does not comply with the docs and phdoc
(which show the app explicitly casting to int before passing).
Nonetheless the maintainers decided it should continue to be valid
for now and reinstated the old soft-equals logic with #8531 .
This modified test just avoids accidental changes in future.
2021-03-11 13:24:53 +00:00
Grégoire Paris
92f764206e
Ignore broken rule
2021-03-11 09:11:24 +01:00
Grégoire Paris
141539673e
Merge pull request #8530 from doctrine/cs-20210310
...
CS-batch 25/26 🤩
2021-03-11 00:05:31 +01:00
Grégoire Paris
23dc804c9b
Merge pull request #8531 from beberlei/GH-8527-RevertLockEquals
...
[GH-8527] Revert cs fixes for entity version compares in lock+merge
2021-03-10 23:30:25 +01:00
Benjamin Eberlei
9e3baa7baa
[GH-8527] Revert cs fixes for entity version compares in lock+merge
2021-03-10 22:46:07 +01:00
Grégoire Paris
322ea51ecf
Manually fix cs
2021-03-10 22:17:31 +01:00
Grégoire Paris
21b046452b
Merge pull request #8529 from greg0ire/cs-20210308
...
CS batch 24/26 🤞
2021-03-10 19:53:52 +01:00
Grégoire Paris
c57b81ada4
Manually fix cs
2021-03-09 21:15:33 +01:00
Grégoire Paris
4fa7c9c6de
Merge pull request #8521 from greg0ire/cs-20210228
...
CS batch 23/an estimated 26
2021-03-08 19:57:18 +01:00
Grégoire Paris
3580517aac
Manually fix cs
2021-03-01 21:49:10 +01:00
Grégoire Paris
f9e7c3c2d8
Merge pull request #8516 from greg0ire/cs-20210227
...
CS batch 22/an estimated 26
2021-02-28 21:27:52 +01:00
Grégoire Paris
3600c0fbca
Manually fix cs
2021-02-28 18:31:38 +01:00
Grégoire Paris
f779513042
Remove unused properties
...
They should have been removed as part of a6b43b93ac
2021-02-28 18:31:38 +01:00
Diego Rin Martín
07d426edf5
Changed lock function to compare timestamps instead of DateTimeInterface objects directly. ( #8508 )
...
When using optimistic lock with DateTimeInterface based version field a bug appears due to the use of the === operator for comparing the lock version and the entity version. This comparison always resolves to false because the === operator when comparing objects is only true when both sides are the exact same instance of the object.
To fix the issue I have decided to compare timestamps instead the DateTimeInterface based objects directly, calling getTimestamp() method and doing a strict comparison.
Modified OptimisticLockException to use DateTimeInterface instead of DateTime class.
Added test suite to cover case.
Fixes #8499
2021-02-27 18:40:48 +01:00
Grégoire Paris
4afd4069be
Merge pull request #8515 from greg0ire/cs-20210226
...
CS batch 21/an estimated 26
2021-02-27 14:30:25 +01:00
Grégoire Paris
239215c2e5
Merge pull request #8502 from greg0ire/rework-contributing-md
...
Rework CONTRIBUTING.md
2021-02-27 13:03:20 +01:00
Grégoire Paris
e6f11652d2
Add section for 2.9.x branch
2021-02-27 12:16:49 +01:00
Grégoire Paris
2910a73927
Rework badges urls
...
Some .x were missing, and ugly urlencoding can be avoided.
2021-02-27 12:10:47 +01:00
Grégoire Paris
3959b2743c
Remove references to Travis
2021-02-27 12:03:35 +01:00
Grégoire Paris
658e54027e
Remove trailing whitespace
2021-02-27 12:01:06 +01:00
Grégoire Paris
ba882451b0
Refer to our actual coding/standard
...
We do much more than just PSR 1 and 2
2021-02-27 12:01:05 +01:00
Grégoire Paris
1ed9840123
Refer to global workflow policy
...
We are doing things differently now, and the how is already documented.
2021-02-27 12:01:05 +01:00
Grégoire Paris
71044894a1
Manually fix cs
2021-02-26 21:30:49 +01:00
Grégoire Paris
1a41d6b87c
Fix configuration mix up
2021-02-26 08:25:44 +01:00
Grégoire Paris
5dfcb08999
Merge pull request #8512 from greg0ire/cs-20210225
...
CS batch 20/an estimated 26
2021-02-25 23:23:24 +01:00
Grégoire Paris
284bd6fd03
Manually fix cs
2021-02-25 21:22:50 +01:00
Grégoire Paris
e40ac3e1d0
Merge pull request #8510 from greg0ire/cs-20210224
...
CS batch 19/an estimated 26
2021-02-24 22:41:28 +01:00
Grégoire Paris
0bce2472f2
Manually fix cs
2021-02-24 18:51:02 +01:00
Grégoire Paris
89f57de884
Merge pull request #8504 from greg0ire/cs-20210223
...
CS batch 18/an estimated 26
2021-02-23 23:18:42 +01:00
Grégoire Paris
ae19f40958
Merge pull request #8495 from Warxcell/fix_to_iterable_with_cache
...
Fix bug when using Result Cache with Query::toIterable
2021-02-23 20:16:39 +01:00
Grégoire Paris
c2d69a3c48
Merge pull request #8507 from greg0ire/address-move-away-from-master
...
Address move away from master
2021-02-23 18:19:47 +01:00
Grégoire Paris
6ce91dd37b
Address move away from master
2021-02-23 09:24:40 +01:00
Grégoire Paris
57e6ba25c9
Merge pull request #8505 from dbu/patch-1
...
fix typo in changelog
2021-02-23 08:56:31 +01:00
David Buchmann
9d2e67bbb4
fix typo in changelog
2021-02-23 08:17:31 +01:00
Grégoire Paris
2dce5b20ad
Manually fix cs
2021-02-22 23:50:09 +01:00
Warxcell
930859f803
Fix bug when using ResultCache with Query::toIterable.
...
Signed-off-by: Warxcell <warxcell@gmail.com >
2021-02-22 23:35:22 +02:00
Yup
a70c73ae3a
Use RegEx to match if queryPart contains OR/AND ( #8453 )
...
This allows fixes cases of queries that contain line feeds or tabs but
do not benefit from automatic wrapping of parenthesis.
2021-02-22 20:58:06 +01:00
David Buchmann
074346b8d5
Note deprecation of AbstractQuery::iterator ( #8497 )
2021-02-22 20:30:05 +01:00
Grégoire Paris
9ed4a8c043
Merge pull request #8498 from greg0ire/cs-20210222
...
CS batch 17/an estimated 26
2021-02-22 20:25:06 +01:00
Grégoire Paris
9c917811e5
Manually fix cs
2021-02-22 09:12:04 +01:00
Grégoire Paris
f883820257
Ignore rule about wrong comment style
2021-02-22 08:48:46 +01:00
Grégoire Paris
a32045dd51
Ignore rule violated by external package
2021-02-22 07:52:57 +01:00
Grégoire Paris
672b04a55d
Merge pull request #8483 from olsavmic/fix-single-scalar-hydrator-memory-leak-on-exception
...
Fix single scalar hydrator memory leak on exception
2021-02-21 21:12:50 +01:00
Grégoire Paris
261334aca2
Merge pull request #8494 from greg0ire/cs-20210221
...
CS batch 16/an estimated 26
2021-02-21 20:29:47 +01:00
Warxcell
7f6ed094cd
Add test to verify that using ResultCache with Query::toIterable is failing.
2021-02-21 21:12:52 +02:00
Grégoire Paris
a792655813
Manually fix cs
2021-02-21 12:20:19 +01:00
Grégoire Paris
fb71204910
Relax assertion ( #8493 )
...
EntityManager is too restrictive, any implementation can actually be
returned here.
Closes #8488
2021-02-21 07:43:56 +01:00
Grégoire Paris
b918661cf1
Merge pull request #8492 from greg0ire/cs-20210220
...
CS batch 15/an estimated 26
2021-02-20 20:49:25 +01:00
Michael Olšavský
7971a53164
Method hydrateAll() does not take into account possible exception
...
from hydrateAllData() which in turn does not call cleanup()
2021-02-20 18:58:50 +01:00
Grégoire Paris
a175f96ae8
Manually fix cs
2021-02-20 15:37:15 +01:00
Grégoire Paris
7c1cde6471
Ignore rule that triggers on external property
2021-02-20 15:32:26 +01:00
Grégoire Paris
1ffc0cacf4
Merge pull request #8491 from greg0ire/cs-20210219
...
CS batch 14/an estimated 26
2021-02-20 11:10:27 +01:00
Grégoire Paris
e979d0d50f
Manually fix cs
2021-02-20 00:01:41 +01:00
Grégoire Paris
553ea03079
Ignore rule about case mismatch
...
@group does not have to do with the Group entity at all.
2021-02-19 23:33:25 +01:00
Grégoire Paris
149014879d
Ignore rule about property defined externally
2021-02-19 23:11:43 +01:00
Grégoire Paris
b991c58988
Merge pull request #8490 from greg0ire/cs-20210218
...
CS batch 13/an estimated 26
2021-02-19 23:08:25 +01:00
Aleksandr Frolov
ee9627b82e
Update QueryBuilder::setParameters docs ( #8487 )
...
Use `ArrayCollection` instead of plain array (which is supported only for bc)
2021-02-19 01:45:14 +01:00
Grégoire Paris
e3f03414f9
Manually fix cs
2021-02-18 23:17:03 +01:00
Grégoire Paris
1f406fd3df
Merge pull request #8484 from greg0ire/cs-20210217
...
CS batch 12/an estimated 26
2021-02-18 21:54:43 +01:00
Grégoire Paris
b747bf15ff
Manually fix cs
2021-02-17 16:32:39 +01:00
Grégoire Paris
5fe85bfc03
Ignore rule about underscore in method name
...
We inherit from a class defined in another package.
2021-02-17 15:55:21 +01:00
Grégoire Paris
0dccf05ca8
Automatically fix cs
2021-02-17 15:55:21 +01:00
Grégoire Paris
ebae57eb96
Merge pull request #8480 from greg0ire/cs-20210216
...
CS batch 11/an estimated 26
2021-02-16 23:10:18 +01:00
Benjamin Eberlei
30a7c2aa67
[GH-8410] Fix memory leak in new toIterable and state bug. ( #8467 )
...
* [GH-8410] Fix memory leak in new toIterable and state bug.
The new AbstractQuery::toIterable() had a memory leak that
AbstractQuery::iterable() did not have. This leak is now fixed.
After fixing the leak, one test failed where the identity map in
ObjectHydrator triggered and lead to a notice. Introduced a new
AbstractHydrator::cleanupAfterRowIteration() that the ObjectHydrator
uses to cleanup the state.
* [GH-8413] Bugfix: Iterating with multiple, mixed results
When multiple entity results are part of a row, the result handling
must be different. In addition mixed results with scalars are broken
and now throw an exception as illegal operation.
* Housekeeping: phpcs
* [GH-8413] Add assertions for entity alias iteration.
* [GH-8387] Missing @deprecated on Query::iterate
2021-02-16 17:52:20 +01:00
Benjamin Eberlei
3a9b8fde9b
Housekeeping: Fix cs
2021-02-16 16:24:19 +01:00
Yosh
4f864bc178
Identifier type is not set when many2many relations are deleted ( #8401 )
...
* Ensure identifier type is set on deleteJoinTableRecords
* Housekeeping: phpcs
* Housekeeping: phpcs
Co-authored-by: Benjamin Eberlei <kontakt@beberlei.de >
2021-02-16 16:12:39 +01:00
Grégoire Paris
d76cbd755f
Manually fix cs
2021-02-16 09:07:26 +01:00
Grégoire Paris
4aece04ae7
Automatically fix cs
2021-02-16 08:48:48 +01:00
Grégoire Paris
f31dbf8d4e
Merge pull request #8479 from greg0ire/cs-20210215
...
CS batch 10/an estimated 27
2021-02-15 23:44:27 +01:00
Grégoire Paris
416f35dba9
Manually fix cs
2021-02-14 21:00:58 +01:00
Grégoire Paris
c29370e061
Automatically fix cs
2021-02-14 14:39:35 +01:00
Grégoire Paris
4e0f6837d0
Merge pull request #8478 from beberlei/CsFixes2
...
CS Fixes 2 string interpolation to sprintf
2021-02-14 14:39:00 +01:00
Benjamin Eberlei
e45d212f02
Housekeeping: CS fixes Doctrine\ORM\Mapping\MappingException
2021-02-14 14:28:42 +01:00
Benjamin Eberlei
8f62bd39b5
Housekeeping: CS fixes Doctrine\ORM\ORMException
2021-02-14 09:53:19 +01:00
Benjamin Eberlei
5e11afcdf1
Housekeeping: CS fixes Doctrine\ORM\Mapping\MappingException
2021-02-14 09:49:39 +01:00
Benjamin Eberlei
f833222017
Cs fixes1 ( #8475 )
...
* Housekeeping: CS Query, AbstractQuery, NativeQuery.
* Housekeeping: phpcs TreeWalker
* Housekeeping: CS Doctrine\ORM\EntityManager
* Housekeeping: CS Doctrine\ORM\Cache
* Upgrade git-phpcs
* Drop unused method parameter
* Describe types more precisely
Co-authored-by: Grégoire Paris <postmaster@greg0ire.fr >
2021-02-14 09:23:15 +01:00
Grégoire Paris
c7f39ebbde
Merge pull request #8477 from greg0ire/cs-20210214
...
CS batch 9/an estimated 28
2021-02-14 09:20:11 +01:00
Grégoire Paris
15f08ed006
Manually fix cs
2021-02-14 00:04:18 +01:00
Grégoire Paris
b6fd4b5ef3
Automatically fix cs
2021-02-14 00:04:11 +01:00
Grégoire Paris
5e4dae88f3
Merge pull request #8476 from greg0ire/cs-20210213
...
CS batch 8/an estimated 30
2021-02-13 17:26:58 +01:00
Grégoire Paris
7312ddeda7
Manually fix cs
2021-02-13 13:46:01 +01:00
Grégoire Paris
9a67b6f699
Merge pull request #8474 from greg0ire/cs-20210212
...
CS batch 7/an estimated 30
2021-02-12 23:03:28 +01:00
Grégoire Paris
f59a0c349b
Manually fix cs
2021-02-12 20:43:17 +01:00
Grégoire Paris
4c8831f716
Remove unused helper method
2021-02-12 20:04:56 +01:00
Grégoire Paris
01ca442be7
Ignore error about no assignment
...
These files must be require'd
2021-02-12 08:45:07 +01:00
Grégoire Paris
01374ca2ab
Ignore rule about lone comment
...
That comment is mistaken for a method comment because it precedes one.
The issue was reported but will most likely not be fixed.
2021-02-12 07:39:56 +01:00
Grégoire Paris
94e8b1d43c
Merge pull request #8470 from greg0ire/cs-20210211
...
CS batch 6/an estimated 30
2021-02-12 07:25:43 +01:00
Grégoire Paris
61d0f96c17
Manually fix cs
2021-02-11 21:02:10 +01:00
Grégoire Paris
41729be80a
Spell "first" properly
2021-02-11 18:24:56 +01:00
Grégoire Paris
6dbaa39016
Merge pull request #8469 from greg0ire/cs-20210209
...
CS batch 5/an estimated 30
2021-02-10 21:11:11 +01:00
Grégoire Paris
58c95a92d1
Manually fix cs
2021-02-09 22:58:05 +01:00
Grégoire Paris
4958180b02
Merge pull request #8468 from greg0ire/cs-20210208
...
CS batch 4/an estimated 30
2021-02-09 22:22:41 +01:00
Grégoire Paris
8312ff0cb5
Merge pull request #8353 from fezfez/patch-1
...
Add docs to export-ignore
2021-02-08 21:23:35 +01:00
Grégoire Paris
fb9b9b276e
Manually fix cs
2021-02-08 13:53:04 +01:00
Grégoire Paris
792a9a9149
Merge pull request #8464 from greg0ire/cs-20210207
...
CS batch 3/many
2021-02-07 14:21:09 +01:00
Grégoire Paris
0f655f9fb6
Manually fix cs
2021-02-07 12:21:40 +01:00
Grégoire Paris
2d7acbd07f
Merge pull request #8457 from greg0ire/cs-20210206
...
CS Batch 2/many
2021-02-06 12:22:10 +01:00
Grégoire Paris
b06679cc14
Manually fix cs
2021-02-06 11:44:32 +01:00
Julian Ullrich
2693a93aed
fixed entity generation for numeric values ( #8434 )
...
* fixed entity generation for numeric values
* fixed entity generation for numeric values
Co-authored-by: julian <julian@ullrichmail.net >
2021-02-06 00:35:45 +01:00
Benjamin Eberlei
8724589c6e
Housekeeping: Fix wrong typehint - Closes #8421
2021-02-06 00:23:45 +01:00
Grégoire Paris
424305ef38
Merge pull request #8455 from greg0ire/cs
...
Cs
2021-02-05 23:40:01 +01:00
Grégoire Paris
9d01f6a45c
Run phpcbf after running git-phpcs
...
git-phpcs can publish comments to Github, that will be helpful.
phpcbf will still be helpful to ensure no one upgrades the coding
standard without also fixing issues that can be autofixed.
2021-02-05 21:39:13 +01:00
Grégoire Paris
7ed487b534
Manually fix CS
2021-02-05 21:38:33 +01:00
Grégoire Paris
40f3925589
Merge pull request #8144 from greg0ire/cs
...
Automated fixes with phpcbf + manual fixes
2021-02-05 08:44:58 +01:00
Alexander Schranz
f92c3dba32
Fix --complete flag in orm:ensure-production-settings command ( #8426 )
2021-02-01 22:08:04 +01:00
Grégoire Paris
bcbd4401b8
Ignore export directory
2021-01-30 23:50:15 +01:00
Grégoire Paris
d6aca8e146
Fix proxy file exclude pattern
...
__CG__ is a file prefix, not a directory
2021-01-30 23:45:46 +01:00
Grégoire Paris
8f1911a4fe
Fix cs by hand
2021-01-30 23:29:40 +01:00
Grégoire Paris
7f30cd3102
Require doctrine/common ^3.0.3
...
That release comes with a fix for a bug that affects us since we are
using return type declarations for wakeUp() in proxyfied classes in on
of our tests.
2021-01-30 18:55:32 +01:00
Grégoire Paris
f01fe3e050
Fix or remove wrong assertions
2021-01-30 18:55:32 +01:00
Grégoire Paris
210c2ee6a4
Remove strict types
2021-01-30 18:55:32 +01:00
Grégoire Paris
497dfd1a84
Avoid covariant return types
...
It's not supported by PHP 7.2/7.3
2021-01-30 18:55:31 +01:00
Grégoire Paris
d9f0e2a27f
Add exclude rules for tricky cases
2021-01-30 18:55:31 +01:00
Grégoire Paris
9a40ac6e2a
Restore weird phpdoc
...
Tests do not pass when I format that phpdoc nicely.
2021-01-30 18:55:31 +01:00
Grégoire Paris
1687d9c479
Restore version annotation, but capitalized
...
@version is commonly used for svn ids and is forbidden
2021-01-30 18:55:31 +01:00
Gabriel Ostrolucký
1a46ed8901
Relax contract of EntityListenerResolver so it doesn't require class name ( #8448 )
...
Co-authored-by: Grégoire Paris <postmaster@greg0ire.fr >
2021-01-30 13:37:26 +01:00
Grégoire Paris
36d0352c01
Add missing use statements
2021-01-30 11:21:44 +01:00
Grégoire Paris
15eacd787b
Remove weird extra argument
2021-01-30 11:21:44 +01:00
Grégoire Paris
5b3f9bdd7b
Fix type declarations
2021-01-30 11:21:44 +01:00
Grégoire Paris
e00dba94f4
Remove strict types
2021-01-30 11:21:44 +01:00
Grégoire Paris
ab0e4007a5
Use interface instead of concretion
2021-01-30 11:17:40 +01:00
Grégoire Paris
32266c54f9
Fix compatibility with parent signature
2021-01-30 11:17:39 +01:00
Grégoire Paris
dd2120cd41
Make default value compatible with phpdoc
2021-01-30 11:17:39 +01:00
Grégoire Paris
8991df0785
Add missing return types
2021-01-30 11:17:39 +01:00
Grégoire Paris
ca31923a39
Run phpcbf in the CI
...
There are still many CS issues to fix, but with this, we now know people
can run vendor/bin/phpcbf to fix their issues and only their issues.
2021-01-30 11:17:39 +01:00
Grégoire Paris
68bc00b6c6
Automatically fix CS
2021-01-30 10:58:42 +01:00
Grégoire Paris
5b55b8c6cf
Disable rules that would result in BC-breaks
2021-01-29 23:21:12 +01:00
Grégoire Paris
10f381bc95
Restrict fixes to be compatible with PHP 7.2
2021-01-29 21:16:18 +01:00
Nikolay Gagarinov
40aa8fe5db
update getting-started fix type, improve doc ( #8440 )
...
* update getting-started fix type, improve doc
* Update getting-started.rst
2021-01-26 21:40:41 +01:00
Simon Podlipsky
5801474ba3
Catch doctrine/persistence MappingException ( #8264 )
...
When driver chain is used doctrine/persistence MappingException is thrown instead of doctrine/orm MappingException
2021-01-11 09:07:06 +01:00
Claudio Zizza
9dbd960631
Update website config to current repository branches ( #8420 )
2021-01-11 09:06:06 +01:00
Grégoire Paris
544df89055
Use proper workflow name ( #8418 )
...
This must have been a copy/paste/adapt mistake.
2021-01-11 09:05:18 +01:00
azjezz
378944dd27
remove T from class metadata ( #8398 )
2020-12-19 20:48:16 +01:00
Benjamin Eberlei
8b749642cd
[GH-8231] Bugfix: Missed dirty check synchronization check. ( #8392 )
...
When an entity with change tracking policy "deferred explicit" gets
removed, then persisted again, it is not schedulded for a dirty check
synchronization. This is not the case for entities that are persisted
and are already in the managed state.
2020-12-14 11:00:07 +01:00
Nic Wortel
277b53a970
Use the ramsey/composer-install action to install dependencies ( #8388 )
...
Follow-up of https://github.com/doctrine/.github/pull/16 .
2020-12-10 20:03:47 +01:00
Benjamin Morel
2febb4509a
Fix Psalm param ( #8386 )
2020-12-09 11:03:01 +01:00
Benjamin Eberlei
21d2c88013
[GH-7486] Bugfix: failing the command when clearing empty cache is wrong semantics. ( #8376 )
2020-12-06 22:00:00 +01:00
Vašek Henzl
e7d33eb1a9
Infer datetime_immutable DBAL type for \DateTimeImmutable instance parameters ( #8328 )
...
The support for passing \DateTimeImmutable instance as a query parameter has
been added to ORM in #1333 (the year 2015), a long time before immutable date
types (datetime_immutable etc) were introduced to DBAL in doctrine/dbal#2450
(2017).
Back then, it made sense to treat \DateTimeImmutable (or any
\DateTimeInterface) in the same way as \DateTime and infer parameter type as
datetime. However, when immutable date types were later added to DBAL, it
wasn't reflected anyhow in type inference in ORM and \DateTimeImmmutable
instances are still inferred as datetime DBAL type.
This PR fixes this IMO incorrect behaviour of
ParameterTypeInferer::inferType(): for a \DateTimeImmmutable parameter, it now
returns datetime_immutable DBAL type; for \DateTime or any other types
implementing \DateTimeInterface, it returns datetime DBAL type as it did
before.
This behaviour is in line with DateTimeImmutableType handling only
\DateTimeImmutable and DateTimeType handling any \DateTimeInterface.
Why? In most cases, it doesn't matter and datetime works for \DateTimeImmutable
parameters just fine. But it does matter if using custom implementation of
datetime_immutable type like UTCDateTimeImmutableType from
simpod/doctrine-utcdatetime. Then the broken type inference is revealed.
This is partially related to #6443 , however, this PR isn't about custom DBAL
types but about correct type inference for build-in types.
2020-12-05 23:36:33 +01:00
Michel Hunziker
cab7a4558d
Fix invalid psalm annotation ( #8374 )
2020-12-05 14:47:49 +01:00
Benjamin Eberlei
242cf1a33d
Fix ambiguous case where an entity is also a Traversable ( #8371 )
...
* Fix ambiguous case where an entity is also a Traversable
* Address phpcs violations.
* Address phpcs violations.
* Address phpcs violations.
Co-authored-by: Laurent VOULLEMIER <laurent.voullemier@gmail.com >
2020-12-04 20:53:07 +01:00
Grégoire Paris
da225a0db8
Drop step that switches the release branch ( #8372 )
...
ORM is a repository where we use the stable branch as the default
branch, that step is not appropriate here.
2020-12-04 20:46:09 +01:00
Benjamin Eberlei
3ef5a30102
[GH-8366] Catch additional Persistence MappingException ( #8370 )
2020-12-04 20:16:50 +01:00
Grégoire Paris
418587bc25
Merge remote-tracking branch 'origin/2.7' into 2.8.x
2020-12-03 20:18:13 +01:00
Grégoire Paris
01187c9260
Remove trailing whitespaces ( #8360 )
...
Stylistically, it's not great to have them, but more importantly, the
latest symfony/yaml version has issues with trailing whitespaces.
2020-12-03 09:52:14 +01:00
Stéphane
35cf4810c1
Add docs to export-ignore
2020-11-27 18:50:57 +01:00
Benjamin Eberlei
404edd418b
[GH-8229] Prevent Illegal Inheritance Override ( #8348 )
...
* [GH-8229] Prevent AttributeOverride on fields from entities, only allowed for MappedSuperclass
* [GH-8229] Prevent AssociationOverride on fields from entities, only allowed for MappedSuperclass
* Revert "Fix SQL alias generation regression for simple inheritance (#8329 )"
This reverts commit f4ebded63c .
* [GH-8229] Finalize checks for illegal attribute/assocation overrides.
* [GH-8229] Revert ccae8f7176 PR #8234
* [GH-8229] Update documentation to clarify only mapped superclass or trait works with overrides
* [GH-8229] Fix style violations introduced by revert
* [GH-8229] Fix style violations introduced by revert
* [GH-8229] Temporarily disable the exception until 2.8.
* Make phpcs happy
2020-11-25 23:04:56 +01:00
Claudio Zizza
011d3c21eb
Update functionality of code examples ( #8336 )
2020-11-24 22:39:42 +01:00
Benjamin Eberlei
3d46e07887
PHP8 Support ( #8303 )
...
* Update doctrine/dbal to 2.12 for PHP 8 support.
* Change Query\Parser::match to Query\Parser::matchToken including DQL functions.
* Fix phpunit constraint to 9.4, adjust @group usage to workaround PHPUnit bug.
* Fix PHPUnit API related changes.
* Add PHP 8 support for EntityGenerator namespace detection.
* Use new assertEqualsWithDetla for QueryDqlFunctionTest with date comparisons
* Replace ReflectionParameter::getClass usage with non-deprecated ::getType instead.
* Revert "Change Query\Parser::match to Query\Parser::matchToken including DQL functions."
This reverts commit 279070491d50deaa4d41e17b28bb5a68f5a22796.
* More matchToken => match reverts
* Housekeeping: phpcs
* Housekeeping: phpcs
* Housekeeping: phpcs
* Housekeeping: phpcs
* Add PHP 8 testrunner, update composer.json and small fix in OrmFunctionalTestCase for new PHPUnit behvaior
* Update doctrine/coding-standard to 8.x
* Update rule names for doctrine/coding-standard v8.0
* Update to Psalm 4.
* Not failOnWarning anymore.
* Fix phpcs
* fix phpcs
* remove 7.2 for now until we can support in DBAL.
* Relax doctrine/dbal requirement and add 7.2 CI support again.
2020-11-15 13:24:31 +01:00
Roma
b1ac293a50
Add missing backtick in rst markup ( #8335 )
2020-11-10 20:37:36 +01:00
Romain Grégoire
f4ebded63c
Fix SQL alias generation regression for simple inheritance ( #8329 )
...
This fixes a regression from 099c5b42e1 .
Without the fix, "where part" in SQL is generated with incorrect aliases.
See https://github.com/doctrine/orm/issues/8229#issuecomment-722942180 .
2020-11-10 10:53:01 +01:00
Benjamin Eberlei
51bc596502
Update to Psalm 4. ( #8332 )
2020-11-08 10:38:21 +01:00
Grégoire Paris
95f1b48422
Merge remote-tracking branch 'origin/2.7' into 2.8.x
2020-11-07 20:19:45 +01:00
Grégoire Paris
385b5a2f80
Phpunit 8 ( #8330 )
...
* Revert to whitelist
coverage requires PHPunit 9, and we don't have that yet.
* Upgrade to PHPUnit 8
This unlocks PCOV usage for coverage
* Upload coverage files to Codecov
2020-11-07 19:41:15 +01:00
Benjamin Eberlei
f7d8b155db
Merge branch '2.7' into 2.8.x
2020-11-07 18:37:53 +01:00
Benjamin Eberlei
fa6fe09647
Ignore composer.lock
2020-11-07 18:37:46 +01:00
Benjamin Eberlei
539ffea390
Merge 2.7 into 2.8.x
2020-11-07 18:30:32 +01:00
Benjamin Eberlei
c270eba678
Start moving travis phpunit runs to Github actions. ( #8317 )
...
* Move PHPUnit runs from Travis to Github Actions
This removes all artifacts used for TravisCI testing and replaces them
with the existing infrastructure for Github Actions from DBAL component.
In addition some test changes were needed and triggered larger Coding
Style cleanups in 3 test files.
* Remove composer.lock and improve naming in CI workflow.
2020-11-07 18:11:42 +01:00
Michael Käfer
2f0eb95c90
Patch 1 ( #8325 )
...
* Update outdated doc parts
- The cache implementation moved from `Common` to `doctrine/cache`
- APCu is mor appropiate nowadays I guess
- AbstractQuery::useResultCache() is deprecated since 2.7
* Fix wrong argument
* Fix wrong arguments and remove useless line
2020-10-31 12:13:48 +01:00
Grégoire Paris
b13b2e8bab
Upgrade doctrine/coding-standard ( #8321 )
...
* Use a classname that exists
Doctrine\ORM\Mapping\TableGenerator does not exist, only
Doctrine\ORM\Id\TableGenerator does.
* Upgrade doctrine/coding-standard
That library has a dependency on another library that requires composer
plugin API v1. Updating both libs allow to use Composer v2.
* Account for doctrine/reflection deprecation
2020-10-28 11:14:10 +01:00
Simon Podlipsky
4bfc84f035
Rename getIterable() to toIterable() (part 2) ( #8293 )
2020-10-17 23:55:39 +02:00
Michael Voříšek
ca27cc3f72
Fix EOL of text files ( #8310 )
2020-10-17 19:04:42 +02:00
Mateusz Sip
53dc5b2ac3
Detect associations inside embeddables ( #8291 )
2020-10-17 18:49:16 +02:00
orklah
f1219f1418
Add psalm template support to several types ( #8289 )
2020-10-17 12:01:52 +02:00
Grégoire Paris
072066f746
Merge remote-tracking branch 'origin/2.7' into 2.8.x
2020-10-17 11:07:05 +02:00
Laurent VOULLEMIER
5fde5801c1
Fix many typos ( #8299 )
...
- Some uppercase letters were used in the middle of sentence
- Some dots were missing
- There was two sentences with wrong or missing words
2020-10-13 21:52:04 +02:00
Thomas Landauer
18d96fcc02
Update working-with-indexed-associations.rst ( #8298 )
...
* Update working-with-indexed-associations.rst
Fixing broken link
* Update docs/en/tutorials/working-with-indexed-associations.rst
Co-authored-by: Claudio Zizza <859964+SenseException@users.noreply.github.com >
Co-authored-by: Claudio Zizza <859964+SenseException@users.noreply.github.com >
2020-10-12 21:27:18 +02:00
Benjamin Eberlei
4d2908a065
Change <phpunit verbose="true" /> to false for better readability of test output.
2020-10-11 19:14:47 +02:00
Benjamin Eberlei
8d250f5921
Use SHELL_VERBOSITY=3 instead of LOG_LEVEL=DEBUG
2020-10-11 12:03:57 +02:00
Benjamin Eberlei
59fd9b5ea7
Change LOG_LEVEL to debug should expose more info from laminas/automatic-releases.
2020-10-11 00:17:52 +02:00
Benjamin Eberlei
8fcc70cfbe
Change LOG_LEVEL to debug should expose more info from laminas/automatic-releases.
2020-10-11 00:14:35 +02:00
Grégoire Paris
7d84a49980
Setup automated release workflow ( #8301 )
2020-10-10 19:11:26 +02:00
Claudio Zizza
bb64fc953d
Move website config to default branch ( #8287 )
...
Adds the website config to be compatible with the doctrine/doctrine-website#356 changes
2020-10-02 20:31:00 +02:00
orklah
e0eb82a3b1
psalm fixes ( #8286 )
2020-09-30 22:00:38 +02:00
orklah
79cdcde9ec
rename parameters to match parents ( #8284 )
2020-09-26 20:24:11 +02:00
orklah
f4524a8bb0
Fix psalm errors and upgrade strictness ( #8209 )
...
* Fixes and improvements
* fix param type
2020-09-25 20:44:07 +02:00
Simon Podlipsky
f1365b78d5
Rename getIterable to toIterable ( #8268 )
2020-09-25 20:42:09 +02:00
Grégoire Paris
d810ea4111
Use inline literals over escaping ( #8279 )
...
Escaping underscores does not work as expected.
See https://www.doctrine-project.org/projects/doctrine-orm/en/latest/cookbook/dql-custom-walkers.html#modify-the-output-walker-to-generate-vendor-specific-sql
2020-09-22 20:10:05 +02:00
Michael Voříšek
107ba93d79
Convert CRLF to LF in test file ( #8276 )
...
* Convert CRLF to LF in test file
* fix cs
2020-09-21 22:51:49 +02:00
Guillaume Simon
706670215d
Fix OrderByItem parser to proceed with SimpleArithmetic expression before function ( #8277 )
...
There is parser bug for OrderByItem(), where a function is detected
before a SimpleArithmeticExpression while it should be the reverse:
simple arithmetic expressions can start with a function too, and thus
they should be matched first if present.
This fix enables the use of expressions in sorting and with window
functions.
2020-09-20 18:56:57 +02:00
Yohann Durand
ab2b4987b3
Improve formatting ( #8028 )
2020-09-08 20:56:51 +02:00
Thomas Landauer
717ef9106c
Update events.rst ( #8257 )
...
* Update events.rst
Improved code formatting
* Update docs/en/reference/events.rst
I was wondering myself what the `#` was about ;-)
Co-authored-by: Claudio Zizza <859964+SenseException@users.noreply.github.com >
* Update events.rst
See https://github.com/doctrine/orm/pull/8257#discussion_r482305774
Co-authored-by: Claudio Zizza <859964+SenseException@users.noreply.github.com >
2020-09-03 22:44:28 +02:00
Christoph Ziegenberg
ccae8f7176
Fix for bug #8229 (id column from parent class renamed in child class) ( #8234 )
...
This fixes problems with id columns defined in the parent class but renamed in the child class using an attribute override. Before this change always the child column name was used (which was not present in the parent class), now the correct column names are used for the parent table when creating inserts, joins and deletions for it.
Co-authored-by: Crossjoin <crossjoin@users.noreply.github.com >
2020-08-29 13:25:18 +02:00
Grégoire Paris
da18985aca
Stop using the DBAL extension of PHPBench ( #8252 )
...
It has been removed, and the default XML storage driver is supposed to
be fine for our purposes.
2020-08-29 12:28:40 +02:00
Simon Podlipsky
60cd524443
Introduce getIterable() on AbstractQuery ( #7885 )
2020-08-14 11:12:40 +02:00
Simon Podlipsky
045d1f3bf2
Bump Doctrine CS to v6 ( #8241 )
2020-08-13 09:10:43 +02:00
Grégoire Paris
1ae6f18fe9
Merge remote-tracking branch 'origin/2.7' into 2.8.x
2020-08-12 22:26:19 +02:00
Simon Podlipsky
1e2ed07731
Use consistent formatting in command line ( #8238 )
2020-08-12 08:38:00 +02:00
Grégoire Paris
424241f29c
Use more accurate terminology ( #8236 )
...
I think this was a mistake when writing this documentation, and that the
original author meant to use attribute here, columns do not have
columns, they have attributes.
2020-08-09 22:48:52 +02:00
Grégoire Paris
8230afcde9
Fetch deeper
...
This is needed to preserve parent information and be able to find the
merge base with the head branch. The assumption here is that the common
ancestor can be found among the 10 parent commits.
2020-08-07 22:11:21 +02:00
Kirill Matasov
7cffba8743
Fix annotation in Expr
2020-08-07 22:11:21 +02:00
Zacharias Luiten
91b9dd90f4
Add DQL support for ORDER BY CASE ( #8188 )
2020-08-05 22:49:51 +02:00
Benjamin Cremer
7e5fe79349
Change preferred cache driver for metadata and query caches ( #8223 )
...
See: https://twitter.com/lcobucci/status/1289087725694484481
2020-08-03 21:40:52 +02:00
njutn95
efd25484f4
Update aggregate-fields.rst ( #8215 )
...
Minor typo fix
2020-07-20 21:19:16 +02:00
Andreas Möller
271f3480c8
Fix: Typo ( #8213 )
2020-07-15 22:46:25 +02:00
orklah
aab589b596
add/fix more types (checked by psalm) ( #8199 )
...
* add/fix more psalm types
* remove inexistant SimpleEntityExpression
* Declare template implements for TreeWalkerChainIterator
2020-07-10 22:08:13 +02:00
orklah
190218b267
Change list() syntax to array destructuring (short list syntax) ( #8204 )
2020-07-07 22:02:34 +02:00
Benjamin Eberlei
181114f2c7
[GH-8106] Move test into existing QueryTest testcase to reduce surface.
2020-07-05 21:51:35 +02:00
tom93
3689b76a86
Fix QueryBuilder::getParameter() on parameter names with colons ( #8107 )
...
* Fix type errors
(partially cherry picked from commit 17e7c2a42e )
* Fix QueryBuilder::getParameter() on parameter names with colons
Fixes #8106 .
Co-authored-by: Michael Moravec <mail@majkl578.cz >
2020-07-05 21:46:48 +02:00
Igor Pellegrini
75fe18ea5f
Add alert to "avoid persisting detached entities" ( #8109 )
...
The alert is hidden into the code of ``EntityManager``,
while it's useful to be mentioned in the documentation.
2020-07-05 20:24:08 +02:00
Grégoire Paris
6c73a6b720
Infer return type information with Psalter ( #8150 )
...
These changes are a subset of changes done with vendor/bin/psalm --alter
--issues=LessSpecificReturnType
--allow-backwards-incompatible-changes=false
2020-07-05 20:15:39 +02:00
Benjamin Eberlei
775d91c2a3
[GH-8122] Move test from AbstractMappingDriverTest to ClassMetadataFactoryTest case
2020-07-05 20:11:01 +02:00
Gildas Quéméner
64c3f68734
Prohibits class typo in the discriminator map ( #8122 )
...
* Prevents incorrect table aliases to be generated
When a defined subclass has a case typo, the query builder will be lost
and will generate exotic table alias. This commit fixes the issue at the
root by prohibiting case typo in discriminator map.
See https://github.com/doctrine/orm/pull/8112 for the consequence of
such typo.
* Controls growing rate of the abstract test class
* Fixes incorrect test case
The Cube class must be autoloaded with the correct case, otherwise
composer autoloader will complain.
* Removes non architecture compliant code
See https://github.com/doctrine/orm/pull/8122/files#r423952247
* Ensures discriminator map is case sensitive
2020-07-05 19:48:38 +02:00
Mohamed Ettaki Talbi
2a2a0b2980
Remove unwanted period ( #8198 )
2020-07-02 08:36:18 +02:00
Grégoire Paris
505d658e3d
Merge remote-tracking branch 'origin/2.7' into 2.8.x
2020-06-21 13:50:48 +02:00
vladyslavstartsev
a438e90046
add dev files to .gitattribute ( #8190 )
...
those files probably are not used by end user of the lib
2020-06-19 13:48:45 +02:00
Nicolas Grekas
6a670d7d6d
Allow using on PHP 7.1 with Composer 2 ( #8184 )
2020-06-18 23:05:13 +02:00
Grégoire Paris
765521d257
Use CodeCov instead of Scrutinizer ( #8187 )
...
* Document current branch status in the README
* Use CodeCov instead of Scrutinizer
2020-06-17 22:47:25 +02:00
Grégoire Paris
5ced62bf83
Run benchmark on PHP 7.4 ( #8186 )
...
phpbench recently dropped compatibilty with PHP 7.1
When this job was introduced, 7.1 was the latest version of PHP we
supported, so it makes sense to bump to 7.4 now.
See https://github.com/phpbench/phpbench/releases/tag/0.17.0
See e07c90df44
2020-06-17 22:06:42 +02:00
Grégoire Paris
bee8decd18
Require persistence 2 and common 3 ( #8166 )
...
This allows us to drop the autoload-calls-based BC layer.
2020-06-17 14:56:17 +02:00
Alexander Berl
93867f8d77
TASK: Replace "Blacklist" example with "Banlist" ( #8174 )
2020-06-08 23:06:53 +02:00
Laurent VOULLEMIER
6bce7e9cab
Add iterable support for IN criterias ( #8162 )
2020-06-03 18:40:53 +02:00
Grégoire Paris
4d8418fe6f
Merge remote-tracking branch 'origin/2.7' into drop-persistence-bc-layer
2020-06-02 18:40:48 +02:00
Grégoire Paris
d95e03ba66
Allow doctrine/common 3 and doctrine/persistence 2 ( #8158 )
2020-05-26 18:03:49 +02:00
Robert Basic
825ceb6b7a
Fix inline code example ( #8153 )
...
* Fix inline code example
* Remove extra backslash
2020-05-22 22:45:24 +02:00
orklah
de2e2a1d74
Add psalm types ( #7989 )
2020-05-18 21:48:28 +02:00
Benjamin Eberlei
850d57e791
[GH-8137] Update doctrine/inflector dependency to 1.4|2.0 ( #8147 )
...
* [GH-8137] Update doctrine/inflector dependency to 1.4|2.0 and resolve deprecations.
* [GH-8137] Address review comments
* Address phpcs issues.
* More CS
* Codingstyle
2020-05-17 19:58:02 +02:00
Grégoire Paris
c3dd71704b
Merge remote-tracking branch 'origin/2.7' into 2.8.x
2020-05-16 15:14:51 +02:00
Grégoire Paris
6780a963f7
Migrate git-phpcs to Github actions ( #8146 )
2020-05-16 14:01:10 +02:00
Philippe Le Van (@plv)
0b305e5bd3
Add possibility to use sql comments in the DQL syntax ( #8140 )
2020-05-15 08:04:58 +02:00
Benjamin Eberlei
4d172e2591
Revert changes to embeddable mapping in 2.7 ( #8138 )
...
* Revert "Fix inherited embeddables and nesting after AnnotationDriver change #8006 (#8036 )"
This reverts commit a9b6b72017 .
* Revert "Make Embeddable not transient"
This reverts commit 58677c29b4 .
* Housekeeping: CS fixes
2020-05-12 20:10:26 +02:00
Grégoire Paris
21a98234d0
Static analysis with Psalm ( #8116 )
...
* Remove useless ternaries
If these expressions are truish inside the condition, they will still be
truish inside the if.
* Describe properties more accurately
These are not objects, they are strings holding class names for classes
that implement TreeWalker.
* Remove duplicate key
Comparison::IS and Comparison::EQ are the same. I chose to remove IS
because it does not seem to exist anymore on master
* Remove unwanted . before = operator
This worked, but makes no sense.
* Setup static analysis with Psalm
* Move PHPStan to Github actions
2020-05-11 23:06:46 +02:00
Gabriel Birke
061207861b
Improve CLI config documentation ( #8130 )
...
Change code examples for `cli-config.php` to use
`ConsoleRunner::createHelperSet` instead of constructing the helper set
array yourself.
Remove DBAL-specific documentation
Co-authored-by: Claudio Zizza <859964+SenseException@users.noreply.github.com >
2020-05-11 21:43:26 +02:00
Grégoire Paris
8a9954e46c
Address deprecations from persistence ( #7953 )
...
A backwards-compatibility layer has been added to persistence to help
consumers move to the new namespacing. It is based on class aliases,
which means the type declaration changes should not be a BC-break: types
are the same.
See https://github.com/doctrine/persistence/pull/71
This means:
- using the new namespaces
- adding autoload calls for new types to types that may be extended and
use persistence types in type declarations of non-constructor methods,
so that signature compatibility is recognized by old versions of php.
More details on this at
https://dev.to/greg0ire/how-to-deprecate-a-type-in-php-48cf
2020-05-07 08:35:39 +02:00
Grzesiek
527fff53cc
removed repository class from metadata ( #8125 )
...
The annotation is required only in the next chapter of the tutorial, specifically the "Entity Repositories"
2020-05-03 21:58:20 +02:00
Maks Rafalko
70fb1ecd78
Warn users about performance issues with DateTime objects in setParameter() ( #8114 )
2020-04-25 22:16:17 +02:00
Jeroen van den Heuvel
73ec483e9d
Convert PHP to SQL for new object expression ( #8062 )
2020-04-16 23:01:43 +02:00
Mathieu
8d67eec812
Fix JoinColumn documentation ( #7966 )
2020-03-30 21:33:13 +02:00
Vincent Langlet
a418cf6418
Remove TODO ( #8078 )
2020-03-30 20:06:04 +02:00
Arne
6138afdca9
[Docs] Make clear that calling remove() detaches the object ( #8081 )
...
I changed a relationship from eager to lazy loading which broker the behaviour of my application in regards to object removal. It was not clear for me that removing an object detaches it and subsequent calls like contains() in a OneToMany relationship with the object scheduled for removal will return false afterwards.
2020-03-27 19:42:39 +01:00
Vincent Langlet
dafe298ce5
Fix phpdoc ( #8074 )
2020-03-19 07:41:02 +01:00
Matthias Pigulla
58b8130ea1
Fix regression in 2.7.1 when mysqli is used with discriminator column that is not a string ( #8055 )
...
* Add a test case showing the regression
* Cast the discriminator value to string
* Fix CS
2020-03-16 11:19:12 +01:00
Grégoire Paris
3c91792dd8
Address deprecation about PHPUnit annotations ( #8070 )
...
These changes have been done using Rector, this might not result in the
best placement for method calls, but it is not worse than the current
situation.
I used the configuration documented at
b398e8740c/docs/HowItWorks.md (221-order-of-rectors)
Fixes #8069
2020-03-16 08:56:59 +01:00
Benjamin Eberlei
a705f526fb
[GH-7633] disallow cache partial objects ( #8050 )
...
* [GH-7633] Bugfix: Partial queries were stored in 2LC.
There was a check in DefaultQueryCache that prevented partial queries,
because they are not supported. However the checked hint
Query::HINT_FORCE_PARTIAL_LOAD is optional, so cant be used to prevent
caching partial DQL queries.
Introduce a new hint that the SqlWalker sets on detecing a PARTIAL
query and throw an exception in the DefaultQueryCache if thats found.
* Housekeeping: CS
* [GH-7633] HINT_FORCE_PARTIAL_LOAD still needs to be checked.
* Housekeeping: Fix CS
2020-03-15 01:11:34 +01:00
Maciej Malarz
a9b6b72017
Fix inherited embeddables and nesting after AnnotationDriver change #8006 ( #8036 )
...
* Add test case
* Treat parent embeddables as mapped superclasses
* [GH-8031] Bugfix: Get working again on nested embeddables in inherited embeddables.
* Housekeeping: CS
* Update note on limitations
* [GH-8031] Verify assocations still do not work with Embeddables.
* Housekeeping: CS
Co-authored-by: Benjamin Eberlei <kontakt@beberlei.de >
2020-03-15 01:00:58 +01:00
Jorrit Schippers
cd905fff77
Fix documentation of default generated value behavior ( #8068 )
2020-03-13 20:40:31 +01:00
Claudio Zizza
431d0a3c5e
Remove ORM 2.0 version constraints from docs ( #8002 )
2020-03-06 21:47:40 +01:00
Andreas Möller
eb700405be
Fix: Use neutral pronouns ( #8059 )
2020-03-06 16:08:53 +01:00
Rosemary Orchard
9273057649
Annotations override naming strategy ( #8041 )
...
Add a note/warning that annotations override the naming strategy.
2020-03-01 14:01:26 +01:00
Soliman
1da002ca2f
Throw OptimisticLockException when connection::commit() returns… ( #7946 )
...
* Throw OptimisticLockException when connection::commit() returns false
* Update unit tests
* Fix doctrine persistence version to avoid deprecations changes
* Apply changes from 2.8.x
* Update from 2.8.x
2020-02-29 23:06:47 +01:00
Grégoire Paris
e04a79526e
Merge pull request #7230 from holtkamp/patch-2
...
Mention that lifecycle callbacks do not support Embeddables
2020-02-17 23:00:44 +01:00
Menno Holtkamp
d157a6cbeb
Mention that lifecycle callbacks do not support Embeddables
...
As discussed in https://github.com/doctrine/doctrine2/issues/6855
2020-02-17 22:25:00 +01:00
Benjamin Eberlei
ca57222010
Merge pull request #8023 from peterkeatingie/query-cache-fix
...
Put into cache using root entity name
2020-02-16 10:50:24 +01:00
Peter Keating
9bb2bf0cce
Put into cache using root entity name
2020-02-15 15:53:47 +00:00
Benjamin Eberlei
445796af0e
Travis: Use 7.4 instead of 7.4snapshot
2020-02-15 15:35:56 +01:00
Benjamin Eberlei
ab93285284
Remove nightly builds from .travis.yml
2020-02-15 15:34:36 +01:00
Benjamin Eberlei
ef639d4de6
Remove nightly builds from .travis.yml
2020-02-15 15:34:05 +01:00
Benjamin Eberlei
31f4dd671a
Merge remote-tracking branch 'origin/2.7' into 2.8.x
2020-02-13 21:31:29 +01:00
Benjamin Eberlei
a692670469
Merge pull request #8006 from doctrine/malarzm-patch-1
...
Make Embeddable not transient
2020-02-13 21:31:02 +01:00
Maciej Malarz
58677c29b4
Make Embeddable not transient
2020-02-13 21:05:52 +01:00
Benjamin Eberlei
60c4867ed3
Merge branch 2.7 into 2.8.x
2020-02-12 23:42:36 +01:00
Benjamin Eberlei
9a0fcb5a86
Merge pull request #7940 from doctrine/GH-7864-ExtraLazyRemoveElement
...
[GH-7864] Bugfix in PersistentCollection::removeElement for EXTRA_LAZY.
2020-02-12 23:42:06 +01:00
Benjamin Eberlei
0ee1716b26
Merge branch 2.7 into 2.8.x
2020-02-12 23:38:27 +01:00
Benjamin Eberlei
8104c65d6c
Merge pull request #7987 from beberlei/GH-7982-NoSqlExecutor
...
[GH-7982] no sql executor leads to parse error
2020-02-12 23:37:39 +01:00
Benjamin Eberlei
a64d254d07
[GH-7982] Bugfix: Passing string|null DQL to Lexer(string $input) leads to downstream notice.
2020-02-12 23:23:12 +01:00
Claudio Zizza
a236a83fa8
Merge pull request #7993 from SenseException/readme2-8
...
Update version and links in readme
2020-01-20 11:14:33 +01:00
Claudio Zizza
37f1bd7606
Update version and links in readme
2020-01-17 21:42:59 +01:00
Grégoire Paris
af4cb282ba
Merge pull request #7978 from alexeyshockov/patch-2
...
Stable PHP 7.4 in Travis
2020-01-17 07:49:48 +01:00
Benjamin Eberlei
ce4914ba0e
Merge 2.7 to 2.8.x
2020-01-17 00:08:23 +01:00
Benjamin Eberlei
fdad48278b
Merge pull request #7991 from greg0ire/7.4-sa
...
Try running phpstan on php 7.4
2020-01-17 00:06:40 +01:00
Benjamin Eberlei
fc94127d7f
Make ocramius/package-versions 1.2 the lowest version for phpstan
2020-01-16 23:51:17 +01:00
Grégoire Paris
dea3e5df44
Try running phpstan on php 7.4
...
It might be easier to find packages compatible with both our locked deps
and phpstan with that version of php.
2020-01-16 23:49:15 +01:00
Alexey Shokov
bdfd6c1677
Stable PHP 7.4 in Travis
2020-01-16 23:27:20 +01:00
Benjamin Eberlei
5d7d3e99a0
Downgrade ocramius/package-versions to lowest in composer.lock to support all PHP versions.
2020-01-16 23:18:00 +01:00
Benjamin Eberlei
3bc1096fd0
[GH-7982] Default Query state to dirty to fix execution of empty query.
2020-01-15 23:30:59 +01:00
Benjamin Eberlei
8e0157d97d
Merge branch '2.7' into 2.8.x
2020-01-15 22:57:06 +01:00
Benjamin Eberlei
a2f01f7ccc
Allow everything from ocramius/package-versions ^1.0.
2020-01-15 22:56:08 +01:00
Benjamin Eberlei
1767f4b8e7
Merge branch '2.7' into 2.8.x
2020-01-15 22:02:55 +01:00
Benjamin Eberlei
401db453a2
Merge pull request #7974 from beberlei/gh-7505
...
[GH-7505] Bug in SimpleObjectHydrator when using inheritance with same field
2020-01-15 22:02:25 +01:00
Benjamin Eberlei
6e59ec8f16
[GH-7505] Fix cs
2020-01-15 21:52:11 +01:00
Benjamin Eberlei
87e491465a
Add @group
2020-01-15 21:13:25 +01:00
Luís Cobucci
8b588eceb2
Merge pull request #7973 from DocFX/patch-1
...
Just a micro grammar update.
2020-01-14 11:26:21 +01:00
Benjamin Eberlei
edce36598f
Adjust tests back for 2.x.
2020-01-09 00:41:47 +01:00
Benjamin Eberlei
ca95b0ee13
Merge branch '2.7' into 2.8.x
2020-01-08 19:39:17 +01:00
Woody Gilk
20c46035d1
[Docs] Prefer PhpFileCache for caching and remove APC/XCache.
2020-01-08 19:36:08 +01:00
William Pinaud
324aacfb54
Just a micro grammar update.
2020-01-08 18:52:11 +01:00
Benjamin Eberlei
1edfcabead
Merge pull request #7894 from TomckySan/convert-default-value-to-boolean
...
Fix boolean properties default value when generating entities.
2020-01-05 16:11:33 +01:00
Luís Cobucci
2785cde792
Merge pull request #7957 from lcobucci/fix-version-information
...
Fix version information
2019-12-17 19:19:05 +01:00
Luís Cobucci
d67e3e8b1b
Rely on ocramius/package-versions to render the version
...
Since `Doctrine\ORM\Version` is now deprecated it shall not be updated
on future releases.
This ensures that our CLI tool will present the correct version number.
2019-12-17 15:47:55 +01:00
Luís Cobucci
d629c4e487
Remove build.xml and related files
...
We aren't using ant/phing to handle the releases any more.
2019-12-17 01:03:34 +01:00
Luís Cobucci
4a4226213f
Merge pull request #7875 from nicolas-grekas/schema-tool
...
Whilelist existing assets we know about from metadata in SchemaTool::getUpdateSchemaSql()
2019-12-16 23:59:31 +01:00
Andreas Braun
0ce1440884
Add upgrade note about schema_filter change
2019-12-16 23:45:49 +01:00
Laurent VOULLEMIER
9aa28b4e33
Test asset whitelisting on SchemaTool#getUpdateSchemasSql()
2019-12-16 23:45:49 +01:00
Nicolas Grekas
5c2b6870bf
Whitelist existing assets we know about from metadata in SchemaTool::getUpdateSchemaSql()
2019-12-16 23:22:50 +01:00
Luís Cobucci
4389b2c188
Merge pull request #7956 from lcobucci/fix-test-suite
...
Ignore Doctrine\Common\Persistence\ObjectManagerDecorator deprecation
2019-12-16 21:49:25 +01:00
Luís Cobucci
e481d9880b
Ignore Doctrine\Common\Persistence\ObjectManagerDecorator deprecation
...
Since applying the fixes requires bumping up the dependency, which isn't
done in a patch release.
This should be removed in v2.8.0.
2019-12-16 21:22:28 +01:00
Luís Cobucci
85528f28e2
Fix CS errors
2019-12-16 21:22:23 +01:00
Luís Cobucci
5873242fb5
Merge pull request #7937 from doctrine/GH-7930-SqliteForeignKeys
...
Revert SchemaTool change to check for foreign key support
2019-12-16 10:45:07 +01:00
Luís Cobucci
4aa09861dd
Merge pull request #7941 from Grafikart/feat-typed-functions
...
Allow DQL functions to specify return type
2019-12-12 19:50:23 +01:00
Grafikart
24e9a7caaf
Allow defining return types for DQL functions
2019-12-12 14:19:09 +01:00
Luís Cobucci
d90df59118
Merge pull request #7948 from beberlei/TravisSmokeTesting
...
Add stage that runs before Test to allow fast failures on Sqlite/phpcs
2019-12-12 11:54:41 +01:00
Benjamin Eberlei
f9103a7b41
Add another stage that runs before Test to allow fast failures on Sqlite, Quality + PHPCS-differ
2019-12-12 11:43:24 +01:00
Luís Cobucci
9891477094
Merge pull request #7928 from kokspflanze/2.7-patch-deprecated
...
Deprecate EntityRepository#clear()
2019-12-09 21:56:41 +01:00
kokspflanze
59e3a55110
Deprecate EntityRepository#clear()
2019-12-09 21:42:11 +01:00
Luís Cobucci
c9e41d0aa7
Merge pull request #7934 from BenMorel/php74
...
Fix Trying to access array offset on value of type null
2019-12-09 21:32:58 +01:00
Benjamin Morel
f37c12834d
Fix Trying to access array offset on value of type null
2019-12-09 21:24:29 +01:00
Benjamin Eberlei
041404e8b3
[GH-7864] Revert removeElement EXTRA_LAZY support.
2019-12-07 00:03:09 +01:00
Benjamin Eberlei
bfc68b3aba
Add warning about removeElement on extra lazy
2019-12-03 20:34:44 +01:00
Benjamin Eberlei
1e628370c4
[GH-7864] Address review comments.
2019-12-03 19:35:49 +01:00
Benjamin Eberlei
ae2b9b1921
Housekeeping: phpcbf to fix issues.
2019-12-01 21:11:09 +01:00
Benjamin Eberlei
419df77a09
[GH-7864] ExtraLazyCollectionTest is not cacahble and should not fail SLC suite.
2019-12-01 20:28:30 +01:00
Benjamin Eberlei
d6f6b2e97c
[GH-7864] Remove tests that checked invalid behavior.
2019-12-01 19:47:58 +01:00
Benjamin Eberlei
75d5adf599
[GH-7864] Bugfix in PersistentCollection::removeElement for EXTRA_LAZY.
2019-12-01 19:27:45 +01:00
Benjamin Eberlei
cfd6fadf9c
Revert " #7841 SchemaTool generates extra diff for platforms without FK support"
...
This reverts commit 3707c39124 .
2019-12-01 11:23:45 +01:00
Tomoka Baba
2bf7916c52
Fix to pass code quality check.
2019-11-20 17:03:34 +09:00
Tomoka Baba
253fd10cc0
Modified test to use assertTrue.
2019-11-20 17:02:25 +09:00
Tomoka Baba
2c956d55f2
Fix to pass code quality check.
2019-11-20 17:02:25 +09:00
Tomoka Baba
3db992e953
Add test code.
2019-11-20 17:01:52 +09:00
Tomoka Baba
6fc9b3ab16
Fix to pass code quality check.
2019-11-20 17:01:52 +09:00
Tomoka Baba
2d833a5e86
Fix boolean properties default value when generating entities.
2019-11-20 17:01:19 +09:00
Luís Cobucci
a416a9a8b2
Bump up version
2019-11-19 09:43:57 +01:00
Luís Cobucci
4d763ca4c9
Bump up version
2019-11-19 09:38:05 +01:00
Luís Cobucci
398d74deaa
Merge pull request #7911 from lcobucci/be-more-explicit-on-deprecation-messages
...
Be explicit about which Doctrine package in message
2019-11-19 09:36:14 +01:00
Luís Cobucci
3314322929
Be explicit about which Doctrine package in message
...
Avoiding possible confusion while reading the deprecation messages.
2019-11-19 09:03:36 +01:00
Luís Cobucci
ce93817bf7
Merge pull request #7909 from lcobucci/add-deprecation-messages
...
Add deprecation messages
2019-11-19 08:21:44 +01:00
Luís Cobucci
50992eafa2
Deprecated the usage of number unaware underscore naming strategy
2019-11-19 02:15:11 +01:00
Luís Cobucci
9ccb8837e7
Add deprecation message for EM#clear($entityName)
2019-11-19 01:34:50 +01:00
Luís Cobucci
d959744c0a
Merge pull request #7079 from mairo744/hotfix/sqlite-join-table-name
...
fix getJoinTableName for sqlite with schema attribute
2019-11-18 23:37:33 +01:00
mairo744
0264ba1759
Fix creation of join table names with schemas in SQLite
...
Join table name doesnt depending on the platform.
Table name was "schema.table" instead of "schema__table".
(cherry picked from commit 4878cd3f4ef30ffc6047c18e0f7b16aafeabc3b4)
2019-11-18 23:25:28 +01:00
Luís Cobucci
8332fa1855
Merge remote-tracking branch 'upstream/2.6' into 2.7
2019-11-18 23:06:28 +01:00
Luís Cobucci
4fae126459
Bump up version
2019-11-18 23:05:16 +01:00
Luís Cobucci
2d9b935183
Bump up version
2019-11-18 23:01:21 +01:00
Luís Cobucci
4804f602f8
Merge pull request #7908 from lcobucci/fix-bc-break-on-naming-strategy
...
Fix BC-break on underscore naming strategy
2019-11-18 22:57:27 +01:00
Luís Cobucci
3d17290eb5
Fix BC-break on underscore naming strategy
...
We broke our BC promises on the last patch release by changing how the
underscore naming strategy parses values with numbers.
This commit makes it possible to configure whether or not to make the
underscore naming strategy aware of numbers, keeping the old
configuration as default value.
2019-11-18 22:38:14 +01:00
Luís Cobucci
8420d24f90
Merge remote-tracking branch 'upstream/2.6' into 2.7
2019-11-18 19:59:58 +01:00
Luís Cobucci
52f2b37921
Bump up version
2019-11-18 12:17:41 +01:00
Luís Cobucci
16751d210f
Bump up version
2019-11-18 12:06:51 +01:00
Luís Cobucci
686f508576
Merge pull request #7905 from lcobucci/7890-paginator-objecti
...
[Paginator] Fix type conversion during hydration of pagination limit subquery
2019-11-18 10:50:54 +01:00
Luís Cobucci
00ef1eba90
Add paginator query hint to force type conversion
...
We're keeping a BC layer in the hydrator, which prevents type conversion
in scalar results.
This makes bypasses such layer in order to always convert the identifier
types when limiting the result set during a pagination.
The main goal here is to keep the conversion DB->PHP inside of the
hydrator components.
2019-11-18 10:27:10 +01:00
Gabriel Ostrolucký
3843eee5cb
[Paginator] Add test case for regression with custom id
...
Co-authored-by: Alexei Korolev <alexei.korolev@gmail.com >
2019-11-18 10:27:10 +01:00
Luís Cobucci
f576e6c41f
Merge pull request #7904 from greg0ire/validate-composer-json
...
Make sure composer files are valid
2019-11-16 11:47:02 +01:00
Grégoire Paris
c79d2e0dc2
Make sure composer files are valid
...
The composer.lock is put under version control and it often happens to
be out of sync with the composer.json, which could lead to
hard-to-understand issues.
Using the --strict option here because we might as well aim for a
perfectly valid composer.json
2019-11-16 10:59:39 +01:00
Grégoire Paris
33b8d020a7
Synchronize lock file and json manifest
2019-11-16 10:59:39 +01:00
Luís Cobucci
1b2daac25d
Merge pull request #7710 from rtek/pretty-tool-describe
...
Prettified arrays in tool command orm:mapping:describe
2019-11-16 02:15:31 +01:00
Luís Cobucci
977985f756
Merge pull request #7701 from someniatko/deprecate-use-result-cache
...
Split and deprecate AbstractQuery#useResultCache()
2019-11-16 02:12:29 +01:00
rtek
0c36f87935
Prettify arrays in orm:mapping:describe command
...
This will prevent excessive column width and wrapping in the output which uses Symfony\Component\Console\Style\SymfonyStyle::table().
2019-11-16 02:03:03 +01:00
someniatko
e8f265d480
Make ResultCacheTest tests slightly more logical
2019-11-16 01:59:57 +01:00
Illia Somov
7bcbad076d
Split and deprecate AbstractQuery#useResultCache()
2019-11-16 01:59:57 +01:00
Luís Cobucci
57496e32fd
Add minor BC-break notes on output walkers in paginator
...
As explained in
https://github.com/doctrine/orm/pull/7863#issuecomment-554578313 .
2019-11-16 01:48:37 +01:00
Luís Cobucci
797bfc53c4
Fix deprecation messages version
2019-11-16 01:32:15 +01:00
Luís Cobucci
8c47dcb6fc
Merge pull request #7863 from Seb33300/skip-limit-subquery
...
Paginator: Skip limit subquery if not required
2019-11-16 01:21:43 +01:00
Sébastien ALFAIATE
6347190886
Skip limit subquery if not required
2019-11-16 01:03:22 +01:00
Luís Cobucci
9162f3519d
Merge pull request #7900 from doctrine/2.6.x-merge-up-into-2.7
...
Merge up 2.6 to 2.7
2019-11-16 00:27:50 +01:00
Grégoire Paris
fc9314d9f5
Merge remote-tracking branch 'origin/2.7' into 7900--2.6.x-merge-up-into-2.7
2019-11-15 23:50:05 +01:00
Luís Cobucci
26806d08eb
Require more updated doctrine packages
2019-11-15 23:46:22 +01:00
Luís Cobucci
6a827d5b61
Merge pull request #7861 from ferrastas/bug_removing_collection
...
Delete statements will not be created using `clear`
2019-11-15 22:58:31 +01:00
Gabriel Ostrolucký
7d77984306
Restore ability to clear deferred explicit tracked collections
...
This was regression from #7862 which tried to respect tracking config
when clearing collections, but this logic can happen in UOW only,
PersistentCollection::clear is triggered too early to know what
is (going to be) persisted.
Fixes #7862
2019-11-15 22:49:06 +01:00
Ferran Vidal
ec93014713
Delete statements will not be created using clear.
2019-11-15 22:43:53 +01:00
Luís Cobucci
c83094bde0
Merge pull request #7684 from rharink/2.6
...
only replace '_id' at end of columnName
2019-11-15 16:50:16 +01:00
Robert den Harink
982d1519db
only replace '_id' at end of columnName
2019-11-15 16:36:48 +01:00
Marco Pivetta
f7c04ae537
Merge pull request #7901 from lcobucci/add-deprecation-notices
...
Add deprecation warnings for 2.7.x
2019-11-15 16:15:31 +01:00
Michael Moravec
f9a4258ded
Upgrading notes for 2.7
2019-11-15 14:43:33 +01:00
Michael Moravec
eb9f11bf96
Added deprecation warnings for 2.x
2019-11-15 14:43:15 +01:00
Luís Cobucci
2b8cb9de79
Add basic tool to verify deprecation messages
2019-11-15 14:42:48 +01:00
Luís Cobucci
570abb5bad
Fix PHP warnings in test suite
2019-11-15 14:42:47 +01:00
Luís Cobucci
855244fd10
Merge pull request #7865 from Ocramius/fix/#7837-paginate-with-custom-identifier-types-even-with-cached-dql-parsing
...
#7837 paginate with custom identifier types even with enabled DQL query cache
2019-11-15 11:08:22 +01:00
Guilherme Blanco
c62977412c
Merge pull request #7869 from BenMorel/patch-4
...
UnitOfWork::clear() misses $eagerLoadingEntities
2019-11-15 00:27:08 -05:00
Gabriel Ostrolucký
98e557b68e
Improve assertion failure message for testWillFindSongsInPaginatorEvenWithCachedQueryParsing
2019-11-14 23:37:13 +01:00
Mickaël RAYBAUD-ROIG
3a32c00dcf
Add a failing test for issue #7505
2019-11-14 23:28:42 +01:00
Gabriel Ostrolucký
1dde2c9e8e
Add test case verifying eager loads are clear
...
Otherwise, getClassMetadata would be triggered more times
2019-11-14 22:17:06 +01:00
Marco Pivetta
adfd010a78
Merge pull request #7889 from ajgarlag/hotfix/fix-tests-with-dbal-2.10
...
Use quoted collation declaration when available.
2019-11-05 15:52:18 +01:00
Antonio J. García Lagar
1bc4e1f594
Use quoted collation declaration when available.
2019-11-05 14:58:24 +01:00
Marco Pivetta
21680df9bd
Merge pull request #7884 from rogeriolino/patch-1
...
[Documentation] Advanced field value... - missing entity alias
2019-11-05 01:23:52 +01:00
Rogério Alencar Lino Filho
19aa3c125c
missing entity alias
2019-10-31 18:20:58 -03:00
Marco Pivetta
e9e012a037
Merge pull request #7880 from kuraobi/update-doc-dql-qb
...
Update documentation to recommend DQL over QueryBuilder when possible
2019-10-29 19:04:03 +01:00
Mathieu Lemoine
d1db0655ac
Update documentation to recommend DQL over QueryBuilder when possible
2019-10-29 16:26:17 +01:00
Luís Cobucci
2d643e6b7b
Merge pull request #7876 from nicolas-grekas/sf5-cmd
...
Fix compat of commands with Symfony 5
2019-10-23 16:12:18 +02:00
Nicolas Grekas
4d6b1f3e63
Fix compat of commands with Symfony 5
2019-10-23 16:00:19 +02:00
Jonathan H. Wage
d9c30e34c4
Merge pull request #7723 from nicolas-grekas/sf5
...
Allow Symfony 5.0
2019-10-23 15:57:25 +02:00
Nicolas Grekas
90c1ee0bd0
Allow Symfony 5.0
2019-10-23 15:57:25 +02:00
Marco Pivetta
cfcca3a63c
Merge pull request #7600 from Majkl578/travis-php7.4-2.7
...
[2.7] CI: Test against PHP 7.4snapshot instead of nightly (8.0)
2019-10-23 15:57:24 +02:00
Michael Moravec
af0949adab
Merge pull request #7382 from Majkl578/homepage-2.7
...
Update homepage
2019-10-23 15:57:24 +02:00
Michael Moravec
cdb652ad87
CI: Test against PHP 7.4snapshot instead of nightly (8.0)
2019-10-23 15:57:24 +02:00
Claudio Zizza
4fb1ebfc10
Create 2.7 upgrade headline for deprecation changes
2019-10-23 15:57:24 +02:00
Michael Moravec
46c1b57560
Update homepage
2019-10-23 15:57:24 +02:00
Claudio Zizza
fdbbf7edd1
Add deprecation of EntityManagerInterface::copy() to upgrade information
2019-10-23 15:57:23 +02:00
Claudio Zizza
2fed8204c1
Set copy-method as deprecated
2019-10-23 15:57:23 +02:00
Michael Moravec
76f03b5db0
Bump version to 2.7-dev
2019-10-23 15:57:19 +02:00
Guilherme Blanco
9fef4e86e4
Merge pull request #7871 from BenMorel/2.6
...
AbstractQuery::getSingleScalarResult() throws exception when no result
2019-10-18 10:37:53 -04:00
Benjamin Morel
4781dc03e9
AbstractQuery::getSingleScalarResult() throws exception when no result
2019-10-16 20:41:00 +02:00
Benjamin Morel
cc5f84ac22
UnitOfWork::clear() misses $eagerLoadingEntities
2019-10-16 10:11:55 +02:00
Marco Pivetta
023e94661a
#7837 force expiry of query cache when WhereInWalker is being used
...
In order to figure out the paginated query identifier type, we would
have to parse the DQL query into an AST+SQL anyway, so we'd have
to re-parse it manually: instead of doing that, we can force the
`WhereInWalker` to be reached at all times by forcing the
`$whereInQuery` to use no query cache.
While it is a sad performance regression, it is also not a
noticeable one, since we'll be performing an `O(1)` operation
around an I/O one (query execution, in this case).
2019-10-10 18:23:31 +02:00
Marco Pivetta
b59fc23f86
#7837 reproduced issue: DQL caching prevents WhereInWalker run
...
Since `WhereInWalker` does not run, query parameters are not translated
from their in-memory type to the expected SQL type when the paginator
is run again with the same DQL string. This is an architectural
issue, since (for the sake of simplicity) we moved parameter
translation into the SQL walker, we didn't consider that SQL
walkers only act when no cache is in place. The translatio
needs to be moved into the paginator logic again.
2019-10-10 17:30:43 +02:00
Luís Cobucci
d71dd5d94f
Bump up version
2019-10-08 20:04:50 +02:00
Luís Cobucci
63513e9a05
Merge pull request #7856 from lcobucci/fix/underscore-strategy-dont-work-with-numbers
...
Fix underscore naming strategy behaviour with numbers
2019-10-08 12:06:24 +02:00
Luís Cobucci
c802bc46a5
Format NamingStrategyTest according to our CS
2019-10-08 11:56:11 +02:00
Luís Cobucci
506bf0ee12
Allow numbers in property names on underscore naming strategy
2019-10-08 11:56:11 +02:00
Luís Cobucci
a36809db72
Merge pull request #7851 from peter-gribanov/reflFieldValue2.6
...
Remove not used variable $reflFieldValue in ObjectHydrator
2019-10-04 07:50:26 +02:00
Peter Gribanov
5b00d7ba5e
remove not used variable $reflFieldValue in ObjectHydrator
2019-10-03 11:14:24 +03:00
Luís Cobucci
b22604352d
Merge pull request #7849 from axi/patch-1
...
Mention SQL logger impact on batch processing
2019-10-02 14:14:48 +02:00
axi
00c6b1bc60
Update batch-processing.rst
...
Clarify note
2019-10-02 14:00:06 +02:00
Luís Cobucci
4b0d86ee92
Merge pull request #7842 from vpArth-php/gh-7841
...
#7841 SchemaTool generates extra diff for platforms without FK support
2019-10-02 10:50:42 +02:00
Alexander Deider
3707c39124
#7841 SchemaTool generates extra diff for platforms without FK support
2019-10-02 15:35:59 +07:00
Luís Cobucci
fe72b00df2
Merge pull request #7850 from nlx-lars/nlx-lars/bugfix/7836-dont-merge-criteria
...
Don't merge PersistentCollection orderBy with criteria in matching()
2019-10-02 10:02:38 +02:00
Lars Lauger
79a7ecc92f
Don't merge PersistentCollection orderBy with criteria in matching()
...
If no orderings are given to PersistentCollection::matching(), the
orderBy annotation will be used if present. If the criteria contains
orderings, those will be used without merging them with the orderBy.
See #7836
2019-10-02 09:23:38 +02:00
Luís Cobucci
16df8bfe0d
Merge pull request #7298 from dunglas/patch-2
...
Add a missing type in Query::getFirstResult PHPDoc
2019-10-02 04:27:19 +02:00
Kévin Dunglas
b37ceaa9f7
Add a missing type in Query::getFirstResult and Query::getDQL
2019-10-02 04:13:42 +02:00
Luís Cobucci
c41fdbce8a
Merge pull request #7727 from madand/patch-1
...
[doc] Finish incomplete definition of class UTCDateTimeType
2019-10-02 04:11:20 +02:00
Luís Cobucci
7526adc80a
Merge pull request #7443 from naitsirch/fix/issue6793
...
Added doc about exception in Query#getOneOrNullResult()
2019-10-02 04:07:25 +02:00
Andriy Kmit
766eb693fb
Finish incomplete definition of class UTCDateTimeType
2019-10-02 03:57:06 +02:00
Luís Cobucci
f9e2ae3488
Merge pull request #7667 from jschaedl/patch-1
...
Fixes example One-To-One, Self-referencing
2019-10-02 03:56:01 +02:00
Luís Cobucci
6bf2ff5d10
Merge pull request #7671 from jschaedl/patch-4
...
Added missing "the"
2019-10-02 03:45:50 +02:00
Jan Schädlich
27fcc01d81
Fixes example One-To-One, Self-referencing
2019-10-02 03:37:23 +02:00
Jan Schädlich
3ac1f8e680
Added missing "the"
2019-10-02 03:36:06 +02:00
Luís Cobucci
b63db53552
Merge pull request #7764 from guillaume-a/7763
...
#7763 escape quotes in field comments
2019-10-02 02:56:05 +02:00
Guillaume Aveline
bed8186573
Fix comment quoting in the EntityGenerator
...
Fixes: https://github.com/doctrine/orm/issues/7763
2019-10-02 02:42:09 +02:00
Luís Cobucci
f08ff83d0a
Merge pull request #7768 from mickaelandrieu/patch-1
...
EntityManagerHelper can't accept an array of paths
2019-10-01 22:51:13 +02:00
axi
7c8c0906be
Update batch-processing.rst
...
Looking for a way to improve one of our bulk update treatment, I went back to this page then found elsewhere that setting logger to null was a really effective way to improve time and memory consumption. Might be a right place to state it ? Don't know if my edit style is ok
2019-10-01 17:46:09 +02:00
Grégoire Paris
167cb44ea1
Merge pull request #7742 from bocharsky-bw/patch-1
...
Start i var from 1 instead of 0
2019-09-28 18:54:56 +02:00
Mickaël Andrieu
5d74bdb240
Remove misleading documentation
...
EntityManagerHelper does not have a second argument, see
ca38249f6c/lib/Doctrine/ORM/Tools/Console/Helper/EntityManagerHelper.php (L49)
2019-09-28 12:32:09 +02:00
Luís Cobucci
ca38249f6c
Merge pull request #7838 from samnela/fix/name-classmetadata
...
Fix the name of ClassMetadata in documentation
2019-09-27 22:31:49 +02:00
Samuel NELA
6a74f373b9
Fix the name of ClassMetadata in documentation
2019-09-27 21:59:32 +02:00
Luís Cobucci
b52ef5a100
Merge pull request #7322 from dennisenderink/fix/joinedsubclasspersister-pass-identifier-types-on-delete
...
JoinedSubclassPersister pass identifier types on delete
2019-09-20 16:30:26 +02:00
Luís Cobucci
ef783f7049
Make use of the PersisterHelper to get field type
...
Removing the unnecessary code duplication.
2019-09-20 16:17:43 +02:00
Luís Cobucci
435d624d33
Centralise functional test classes
...
Which provides better isolation and makes things a bit more
understandable.
2019-09-20 16:17:43 +02:00
Dennis Enderink
53775fe086
Added correct return types to docblock
2019-09-20 16:17:43 +02:00
Dennis Enderink
59f1679fed
Patched spacing
2019-09-20 16:17:43 +02:00
Dennis Enderink
390d081fca
Created new DBAL type and updated/reverted tests; also clarified new method return type
2019-09-20 16:17:43 +02:00
Dennis Enderink
37d1d57900
Added unit tests
2019-09-20 16:17:42 +02:00
Dennis Enderink
d7a537c941
Pass ClassMetadata object instead of string in parent classes loop
2019-09-20 16:17:42 +02:00
Dennis Enderink
cfe73cd74f
Separated class identifiers types retrieval in a separate method and implemented in JoinedSubclassPersister delete method
2019-09-20 15:40:03 +02:00
Luís Cobucci
d0e1da8c51
Merge pull request #7490 from vladyslavstartsev/patch-2
...
Fix broken link
2019-09-20 15:32:13 +02:00
vladyslavstartsev
7fbe663ea0
Fix broken link
...
closing #7489
2019-09-20 15:31:12 +02:00
Luís Cobucci
409f2f5d82
Merge pull request #7672 from jschaedl/patch-5
...
Added cross-links to relevant documentation
2019-09-20 15:30:14 +02:00
Luís Cobucci
3d8b672771
Merge pull request #7610 from smtchahal/patch-1
...
Change APC to OPcache in improving-performance.rst
2019-09-20 15:29:07 +02:00
Jan Schädlich
17650a6100
Added cross-links to relevant documentation
2019-09-20 15:19:49 +02:00
Luís Cobucci
1588ca7e1f
Merge pull request #7821 from Ocramius/bug/#7820-paginator-ignores-dbal-type-conversions-in-identifiers
...
Bug: #7820 paginator ignores dbal type conversions in identifiers
2019-09-20 15:13:58 +02:00
Marco Pivetta
0de17319d3
#7820 use PersisterHelper to figure out identifier types
...
This logic was pre-existing, but I forgot about it while writing
#7820 , therefore it was re-implemented inside this unit of
code. Now we just use the `PersisterHelper`, which does all
the nice and shiny identifier type discovery operations we need.
2019-09-20 15:03:22 +02:00
Marco Pivetta
681ff32e76
#7820 documented PersisterHelper#getTypeOfField() array return type
...
Array values are `string`, and the array is a packed array.
2019-09-20 14:57:44 +02:00
Marco Pivetta
caee6c8685
#7820 restricted return type of Doctrine\ORM\Mapping\ClassMetadataInfo#getTypeOfColumn()
...
This method will always return `string|null`, so we can safely
remove DBAL types from its possible return types.
2019-09-20 14:51:56 +02:00
Marco Pivetta
c67a515cc2
As per discussion with @lcobucci, it is better to keep dragons where
...
there be dragons, and this change does indeed rewrite the previous
approach by moving the responsibility of type conversion on a query
object from the `Paginator` to the `WhereInWalker`, which already
has access to class metadata for the root of the selection (and can
reliably detect the root of the selection too)
2019-09-19 20:05:34 +02:00
Luís Cobucci
24892779f7
Merge pull request #7818 from SenseException/simple-annotation-docs
...
Add note into docs about not using SimpleAnnotationReader
2019-09-18 10:49:43 +02:00
Marco Pivetta
39d2113549
Fixed #7820 - convert identifiers for WHERE IN(?) queries before binding parameters
...
This patch introduces new internal API on the `ResultSetMapping` class, which is responsible
for finding the type of the single column identifier of a DQL query selection root.
2019-09-17 16:54:25 +02:00
Marco Pivetta
65522d9775
Failing test case for #7820 - paginator doesn't use custom ID types
...
When using a `Doctrine\ORM\Tools\Pagination\Paginator` to iterate over a query that has entities with a custom DBAL type used in the identifier, then `$id->__toString()` is used implicitly by PDO, instead of being converted by the `Doctrine\DBAL\Types` system.
In order to reproduce this, you must have identifiers implementing `#__toString()` (to allow the `UnitOfWork` to hash them) and other accessors that are used by the custom DBAL type during DB/PHP conversions. If `#__toString()` and the DBAL type conversions are asymmetric, then the paginator will fail to find records.
Tricky situation, but this very much affects `ramsey/uuid-doctrine` and anyone relying on the `uuid_binary`.
2019-09-17 11:37:50 +02:00
Claudio Zizza
50eecf698c
Add note into docs about not using SimpleAnnotationReader
2019-09-15 22:50:46 +02:00
Luís Cobucci
20ab78e3c1
Merge pull request #7753 from SenseException/getting-started-annotation
...
Add ORM annotations in getting-started docs
2019-09-12 17:01:53 +02:00
Luís Cobucci
613ffe9bbd
Backport documentation sidebar
2019-09-10 16:31:41 +02:00
Luís Cobucci
61ff45f98e
Merge pull request #7785 from mlocati/php74-fixes
...
Fix "access array offset on value of type null" PHP 7.4 notices
2019-09-10 16:08:49 +02:00
Luís Cobucci
a8aa475d09
Add PHP 7.4 to test matrix
2019-09-10 15:48:05 +02:00
Luís Cobucci
a4215cfa59
Update locked dependencies
2019-09-10 15:48:04 +02:00
Luís Cobucci
a4ac9a721f
Upgrade PHPUnit to 7.5
2019-09-10 15:48:03 +02:00
Michele Locati
447183e235
Fix "access array offset on value of type null" PHP 7.4 notices
2019-09-10 15:47:57 +02:00
Luís Cobucci
642e543b4b
Merge pull request #7778 from umpirsky/fix/issue-7266
...
Guard L2C regions against corrupted data
2019-08-14 18:07:58 +02:00
Luís Cobucci
80503c4837
Guard cache regions against corrupted data
...
For some bizarre reason the underlying cache drivers are returning
unexpected values, which are leaking to the cache objects and causing
them to error.
This makes our cache regions much more strict about the types that are
fetched from the cache provider, ensuring that no invalid information is
ever sent to the hydrators.
2019-08-14 17:42:56 +02:00
Luís Cobucci
3577064f8c
Make closure static
...
To adhere to our coding standard.
2019-08-14 17:42:56 +02:00
Luís Cobucci
b6663733c0
Add type assertion to be more strict about persister type
2019-08-14 17:42:56 +02:00
Luís Cobucci
b9d6834213
Remove unnecessary function calls
2019-08-14 17:42:56 +02:00
Luís Cobucci
eafc4c5a0c
Remove unnecessary parentheses
2019-08-14 17:42:56 +02:00
Saša Stamenković
ecf80b47a0
Call to a member function resolveAssociationEntries() on boolean
...
The following mistakes occur occasionally:
```
Call to a member function resolveAssociationEntries() on boolean {"detail":"[object] (Symfony\\Component\\Debug\\Exception\\FatalThrowableError(code: 0): Call to a member function resolveAssociationEntries() on boolean at /www/vendor/doctrine/orm/lib/Doctrine/ORM/Cache/DefaultQueryCache.php:140)"}
```
On cache miss the parameter `$entityEntry` sometimes will be false. This fixes issue #7266 .
2019-08-14 17:42:56 +02:00
Luís Cobucci
5499555862
Merge pull request #7791 from Steveb-p/fix-docs
...
Fix preFlush event documentation stating incorrectly that flush can be called safely
2019-08-14 14:03:13 +02:00
Paweł Niedzielski
70df74f65f
Fix preFlush event documentation stating incorrectly that flush can be called safely
...
Original author: egonolieux
Supersedes #6858
2019-08-14 13:41:31 +02:00
Luís Cobucci
74415becce
Merge pull request #7737 from Smartel1/smartel1/patch1
...
Fix MEMBER_OF comparison when using criteria in query builder
2019-08-14 10:07:11 +02:00
drews
3a56cf8ad9
Add MEMBER_OF comparison to queryExpressionVisitor
2019-08-14 09:47:20 +02:00
Luís Cobucci
6b7f53f0f3
Merge pull request #7766 from stephanschuler/respect-collection-ordering-in-selectable-matching
...
Respect collection orderBy meta when matching()
Fixes https://github.com/doctrine/orm/issues/7767
2019-08-13 23:42:32 +02:00
Stephan Schuler
e51666e8be
Fix PersistentCollection::matching() not respecting collection ordering
...
The ordering of a Criteria is prefered over the collections default
ordering.
The default collection ordering used as additional sorting attributes.
2019-08-13 23:34:54 +02:00
Luís Cobucci
6e56bcd75f
Merge pull request #7750 from AlexSmerw/issue_7735_null_values_in_entities_cache_for_2.6
...
Fix incorrect return of null values in L2C
2019-08-12 01:28:20 +02:00
Luís Cobucci
48bfef1f7a
Merge pull request #7761 from paxal/persistent_collection/deferred_explicit_2.6
...
Do not modify UOW on PersistentCollection::clear() when owner has DEFFERED_EXPLICIT change tracking policy
2019-08-12 01:21:21 +02:00
A.Kuterev
e8f91434a7
Avoid reusing variable name
...
The same variable name is used below, and that causes a bug etc.
Fixes https://github.com/doctrine/orm/issues/7735
2019-08-12 01:18:48 +02:00
Luís Cobucci
7e26d82790
Merge pull request #7794 from lcobucci/fix-compatibility-with-dev-dependencies
...
Fix test compatibility with DBAL 2.10.x-dev
2019-08-12 00:00:45 +02:00
Luís Cobucci
869b70e4db
Use Ubuntu Xenial for MySQL 5.7 build
...
Since July 21st 2019 it's no longer possible to install MySQL 5.7 in
Ubuntu Trusty.
More info: https://docs.travis-ci.com/user/database-setup/#mysql-57
2019-08-11 23:41:32 +02:00
Luís Cobucci
33904cb9c1
Fix test compatibility with DBAL 2.10.x-dev
2019-08-11 23:41:32 +02:00
Cyril PASCAL
a42191eecf
Add functional test for ArrayCollection::clear() bug
2019-07-19 16:21:12 +02:00
Cyril PASCAL
3fbf163d34
Do not modify UOW on PersistentCollection::clear() when owner has DEFFERED_EXPLICIT change tracking policy
2019-06-26 16:07:15 +02:00
naitsirch
1c45e1b744
Fixed grammatical mistake in doc
...
Co-Authored-By: Grégoire Paris <postmaster@greg0ire.fr >
2019-06-24 22:07:56 +02:00
Claudio Zizza
c777aa62b6
Fix of ORM annotation in examples
2019-06-23 23:39:41 +02:00
Luís Cobucci
6296bd4e1d
Merge pull request #7744 from noobshow/patch-1
...
Fixed a typo-error
2019-06-18 08:30:35 +02:00
Luís Cobucci
5a236c19f5
Merge pull request #7731 from greg0ire/try-mysql-addon
...
Replace custom install script with add-on
2019-06-17 23:33:04 +02:00
Olumide Samson
4f8a1f92a3
Fixed a typo-error
...
exploitet changed to exploited
2019-06-17 09:00:45 +01:00
Victor Bocharsky
5612790307
Start i var from 1 instead of 0
...
Because (0 % $batchSize) === 0 but we don't want to execute flush() and clear() on the first iteration.
2019-06-11 13:19:56 +03:00
Jonathan H. Wage
0b5be00374
Merge pull request #7732 from lchrusciel/patch-1
...
[Documentation] Missing comma fix
2019-06-04 11:11:46 -05:00
Łukasz Chruściel
145cc782ff
[Documentation] Missing comma fix
2019-06-04 17:38:26 +02:00
Jonathan H. Wage
9712506be8
Merge pull request #7729 from JoppeDC/patch-1
...
Update DATE_ADD and DATE_SUB docs
2019-06-04 10:23:15 -05:00
Grégoire Paris
bd9ead11c5
Replace custom install script with add-on
...
Following this documentation:
https://docs.travis-ci.com/user/database-setup/#mysql-57
found via https://stackoverflow.com/a/49542847/353612
2019-06-03 22:12:54 +02:00
Joppe de Cuyper
a98ebf7344
Whitespace fixes
2019-06-03 20:21:19 +02:00
Joppe de Cuyper
c721ab63ee
Update DATE_ADD and DATE_SUB docs
2019-06-03 20:20:03 +02:00
Jonathan H. Wage
2820438afc
Merge pull request #7694 from darrylhein/patch-1
...
Change variable name in docs
2019-04-29 11:00:10 -05:00
Darryl Hein
180cfcc3e3
change variable name
...
to make it consistent throughout document
2019-04-28 21:07:22 -06:00
Marco Pivetta
52d806a34a
Merge pull request #7612 from spirlici/patch-1
...
Update ordered-associations.rst
2019-03-12 00:16:09 +01:00
Marco Pivetta
49a8f2ec96
Merge pull request #7630 from yethee/gh-7629
...
Fix #7629 - `scheduledForSynchronization` leaks memory when using `@ORM\ChangeTrackingPolicy("DEFERRED_EXPLICIT")`
2019-03-01 21:24:57 +01:00
yethee
7f5f4629e5
Ensure state is cleanup after empty commit
2019-03-01 23:00:01 +03:00
yethee
d91e0b3867
Failing tests
2019-02-28 17:12:54 +03:00
Sergiu Pirlici
b537758b32
Update ordered-associations.rst
...
Fixed some typos
2019-02-16 15:04:45 +02:00
Sumit Chahal
2ba6e473de
Change APC to OPcache in improving-performance.rst
...
OPcache is a lot better supported now than APC,
which is apparently not maintained anymore.
2019-02-16 16:44:21 +05:30
Marco Pivetta
de97061d65
Merge pull request #7596 from mbessolov/patch-1
...
Correct method names and broken link in docs
2019-02-09 15:47:17 +01:00
Michael Bessolov
624ee78081
Correct method names and broken link in docs
...
This basically applying the same documentation fix as in #7335 (master) to 2.6 branch
2019-02-08 22:29:10 -08:00
Marco Pivetta
e003bb2bb4
Merge pull request #7577 from SenseException/advanced-config-link
...
Fix of single link to dbal docs in advanced-configuration.rst
2019-01-23 07:48:12 +01:00
Claudio Zizza
5c5f310646
Fix of link to dbal docs
2019-01-22 22:42:13 +01:00
Marco Pivetta
c10433e512
Merge pull request #7572 from SenseException/remove-codeigniter
...
Remove codeigniter Framework example
2019-01-17 22:35:58 +01:00
Claudio Zizza
580c530041
Remove codeigniter example from docs
2019-01-17 21:54:33 +01:00
Marco Pivetta
4d461afbd6
Merge pull request #7571 from batwolf/patch-1
...
Fix typo in inheritance mappings docs
2019-01-17 21:42:45 +01:00
Marco Pivetta
536e31f343
Merge pull request #7385 from SenseException/links-and-typos
...
Update information and links of documentation
2019-01-17 21:11:50 +01:00
Marc Plotz
c6eb4df25e
fix typo
...
`has to allow null values` vs `has to allows null values`
2019-01-17 10:14:56 +01:00
Claudio Zizza
aae00e3987
Fix of links and php version after review
2019-01-07 14:40:26 +01:00
Claudio Zizza
b56800b15c
Fix of links and anchors
2019-01-07 14:40:17 +01:00
Claudio Zizza
be461be36b
Update getting help section
2019-01-07 14:40:10 +01:00
Claudio Zizza
85171a9490
Fix of reStructuredText format
2019-01-07 14:40:02 +01:00
Claudio Zizza
f5b9f2052a
Update MySQL links to current version
2019-01-07 14:39:54 +01:00
Claudio Zizza
3d652997d1
Remove changelog from documentation
...
This was removed in favour of the UPGRADE.md file, which
contains the changelog information needed.
2019-01-07 14:39:42 +01:00
Marco Pivetta
10393dca68
Merge pull request #7557 from doctrine/malarzm-patch-1
...
Change Stackoverflow tag to doctrine-orm
2019-01-05 17:48:41 +01:00
Maciej Malarz
597bfaea03
Change Stackoverflow tag to doctrine-orm
2019-01-04 22:20:24 +01:00
Jonathan H. Wage
98b8ced814
Merge pull request #7551 from Majkl578/repo-rename/2.6
...
[2.6] Migrate repository name doctrine/doctrine2 -> doctrine/orm
2019-01-03 17:18:59 -06:00
Michael Moravec
efaee8ce85
Migrate repository name doctrine/doctrine2 -> doctrine/orm
2019-01-03 09:07:03 +01:00
Luís Cobucci
6e93f5bb72
Merge pull request #7528 from Ocramius/fix/#7527-prevent-unit-of-work-lookup-for-known-value-types
...
Fix #7527 : prevent `UnitOfWork` lookup for DBAL types specified in `Doctrine\ORM\Query#setParameter()`
2018-12-21 21:54:20 +01:00
Marco Pivetta
a41f5673bc
#7527 automated CS checks
2018-12-20 22:59:46 +01:00
Marco Pivetta
ca436f0bae
#7527 performance benchmark - verifying performance impact of inferred query parameter types
...
As an example result:
```
./phpbench.phar run tests/Doctrine/Performance/Query --iterations=50 --revs=50 --report=aggregate
PhpBench 0.15-dev (dcbe193). Running benchmarks.
Using configuration file: /home/ocramius/Documents/doctrine/doctrine2/phpbench.json
\Doctrine\Performance\Query\QueryBoundParameterProcessingBench
benchExecuteParsedQueryWithInferredParameterTypeI49 P0 [μ Mo]/r: 643.684 634.664 (μs) [μSD μRSD]/r: 17.700μs 2.75%
benchExecuteParsedQueryWithDeclaredParameterTypeI49 P0 [μ Mo]/r: 97.673 94.251 (μs) [μSD μRSD]/r: 8.259μs 8.46%
2 subjects, 100 iterations, 100 revs, 0 rejects, 0 failures, 0 warnings
(best [mean mode] worst) = 88.460 [370.679 364.458] 127.400 (μs)
⅀T: 37,067.880μs μSD/r 12.980μs μRSD/r: 5.603%
suite: 133f0e30090f815142331ebec6af18241694e7c0, date: 2018-12-19, stime: 10:47:10
+------------------------------------+--------------------------------------------------+--------+--------+------+-----+------------+-----------+-----------+-----------+-----------+----------+--------+-------+
| benchmark | subject | groups | params | revs | its | mem_peak | best | mean | mode | worst | stdev | rstdev | diff |
+------------------------------------+--------------------------------------------------+--------+--------+------+-----+------------+-----------+-----------+-----------+-----------+----------+--------+-------+
| QueryBoundParameterProcessingBench | benchExecuteParsedQueryWithInferredParameterType | | [] | 50 | 50 | 5,970,568b | 604.680μs | 643.684μs | 634.664μs | 677.640μs | 17.700μs | 2.75% | 6.59x |
| QueryBoundParameterProcessingBench | benchExecuteParsedQueryWithDeclaredParameterType | | [] | 50 | 50 | 5,922,424b | 88.460μs | 97.673μs | 94.251μs | 127.400μs | 8.259μs | 8.46% | 1.00x |
+------------------------------------+--------------------------------------------------+--------+--------+------+-----+------------+-----------+-----------+-----------+-----------+----------+--------+-------+
```
This indicates that the performance impact for NOT declaring parameter types
explicitly is *MASSIVE*.
2018-12-19 10:52:11 +01:00
Marco Pivetta
d8212e8dd6
Merge pull request #7530 from vladyslavstartsev/patch-3
...
Documentation error fix
2018-12-17 16:00:44 +01:00
vladyslavstartsev
12eb9f42dc
Documentation error fix
2018-12-16 20:33:21 +02:00
Marco Pivetta
23af164d7a
Note: this will still lead to the UnitOfWork#getSingleIdentifierValue() still being
...
called when not specifying the type of a DQL parameter being bound via
`Doctrine\ORM\Query#setParameter()`:
```php
$query->setParameter('foo', $theValue, $theType);
```
A full parameter bind is required in order to gain back performance:
```php
$query->setParameter('foo', $theValue, $theType);
```
This is up for discussion with patch reviewers.
2018-12-16 18:05:02 +01:00
Marco Pivetta
960a437d46
#7527 failing test case: UnitOfWork#getSingleIdentifierValue() should not be called for a well specified parameter type
...
As previously reported by @flaushi in https://github.com/doctrine/doctrine2/pull/7471#discussion_r241949045 , we discovered
that binding a parameter causes a `ClassMetadataFactory#getClassMetadata()` call, which in turn leads to large performance
regression when using any `object` type as parameter.
Following two snippets lead to an internal `ClassMetadataFactory#getClassMetadata()` call, which in turn leads to an
exception being thrown and garbage collected, plus multiple associated performance implications:
```php
$query->setParameter('foo', new DateTime());
$query->getResult();
```
```php
$query->setParameter('foo', new DateTime(), DateTimeType::NAME);
$query->getResult();
```
This is due to following portion of code:
434820973c/lib/Doctrine/ORM/Query.php (L406-L409)
Notice how `$value = $this->processParameterValue($value);` happens before attempting to infer the type for the parameter value.
That call leads to this segment being reached, which leads to the regression:
434820973c/lib/Doctrine/ORM/AbstractQuery.php (L423-L433)
Assuming the bound parameter type is provided, we can completely skip attempting to introspect the given object:
```php
$query->setParameter('foo', new DateTime(), DateTimeType::NAME);
$query->getResult();
```
Processing the parameter value is not needed in this case, so we can safely skip that logic for all known parameters.
In order to not introduce a BC break or change the `AbstractQuery#processParameterValue()` implementation, we could filter
out all parameters for which the type is given upfront, and later on merge them back in instead.
The test expectation to be set is for `UnitOfWork#getSingleIdentifierValue()` to never be called.
2018-12-16 15:37:45 +01:00
Marco Pivetta
237bebe2ed
Merge pull request #7519 from koftikes/fix/#7518-phpdoc-error
...
#7518 Fixed type mismatch between `EntityRepository#__construct()` and its documented constructor arguments
2018-12-13 08:14:30 +01:00
Jonathan H. Wage
fc3dca772e
Merge pull request #7521 from doctrine/update-chat-link
...
Update chat link from Gitter to Slack.
2018-12-12 20:07:31 +00:00
Konstantin Litvinov
ee64d31f48
7518 Fixed PHPDoc Error.
2018-12-12 17:08:35 +03:00
Michael Moravec
493ff74a0d
Merge pull request #7473 from Majkl578/incremental-cs-2.x
...
Incremental CS checks in 2.x branches
2018-12-10 14:43:55 +01:00
Michael Moravec
78c7000962
Lock dependencies for Code Quality stage
2018-12-10 13:58:51 +01:00
Michael Moravec
6a05e01298
Perform incremental coding standard checks for pull requests
2018-12-10 13:58:51 +01:00
Gabriel Ostrolucký
7de3434733
Update doctrine/coding-standard in 2.x branch
...
Co-Authored-By: Michael Moravec <me@majkl.me >
2018-12-10 13:58:51 +01:00
Luís Cobucci
74e6189f3e
Merge pull request #7483 from javiereguiluz/patch-9
...
Fixed a minor syntax issue
2018-11-21 10:48:33 +01:00
Javier Eguiluz
2e7a3affba
Fixed a minor syntax issue
2018-11-21 09:06:54 +01:00
Luís Cobucci
505ec21f97
Bump up development version
2018-11-21 01:24:06 +01:00
Luís Cobucci
434820973c
Bump up version
2018-11-21 00:46:46 +01:00
Luís Cobucci
41ff526921
Merge pull request #6830 from Tobion/fix-collation-foreign-key
...
fix applying column options on foreign key columns
2018-11-21 00:41:17 +01:00
Luís Cobucci
0be52b0087
Isolate entities used by the new test
...
To ensure we don't have any unintended side-effect.
2018-11-21 00:20:20 +01:00
Tobias Schultze
ee8dc496d9
Fix applying collation on foreign key columns
2018-11-21 00:20:15 +01:00
Luís Cobucci
f80656cddf
Merge pull request #7317 from protecinnovations/fix/7316-xml-order-by-dir-many-to-many
...
[XML] Fix default value of many-to-many order-by to ASC
2018-11-20 13:11:22 +01:00
Alex Denvir
72121c01ec
[XML] Fix default value of many-to-many order-by to ASC
2018-11-20 12:33:29 +01:00
Luís Cobucci
ac505390dd
Merge pull request #7472 from seferov/patch-2
...
fix incorrect phpdoc typehint
2018-11-20 09:41:01 +01:00
Luís Cobucci
728e6e15c5
Merge pull request #7441 from asgrim/fix-getResult-type
...
$hydrationMode throughout can be a string as well as int (for custom modes)
2018-11-20 09:40:04 +01:00
Luís Cobucci
d21305378c
Merge pull request #7471 from alcaeus/fix-unloaded-metadata-parameter-processing
...
Fix parameter value processing for objects with unloaded metadata
2018-11-15 11:34:31 +01:00
Andreas Braun
0552749059
Fix parameter value processing for objects with unloaded metadata
2018-11-15 11:21:05 +01:00
Farhad Safarov
fbd3fe95e4
fix incorrect phpdoc typehint
2018-11-13 13:01:10 +03:00
James Titcumb
c6d02daee0
$hydrationMode throughout can be a string as well as int (for custom modes)
2018-11-12 13:58:42 +00:00
Luís Cobucci
5208035003
Merge pull request #7444 from naitsirch/fix/issue6968
...
Fixed URLs of doctrine-mapping.xsd in docs
2018-11-12 11:40:01 +01:00
Luís Cobucci
d93956eff0
Use HTTPS endpoint for XML schema location
2018-11-12 11:29:32 +01:00
naitsirch
b3b06d3e7d
Fixed URLs of doctrine-mapping.xsd in docs
...
Until now the references to the `doctrine-mapping.xsd` consisted of different URLs.
A grep of docs showed:
* /Users/robo/dev/php/Doctrine/doctrine-mapping.xsd
* http://doctrine-project.org/schemas/orm/doctrine-mapping.xsd
* http://www.doctrine-project.org/schemas/orm/doctrine-mapping.xsd
* https://raw.github.com/doctrine/doctrine2/master/doctrine-mapping.xsd
Now it is used http://doctrine-project.org/schemas/orm/doctrine-mapping.xsd everywhere.
2018-11-12 11:09:15 +01:00
Michael Moravec
427f815975
Merge pull request #7465 from unguul/patch-1
...
Fixes tiny typo in the 'Working with DateTime instances' documentation
2018-11-11 23:24:29 +01:00
Michael Moravec
bf601ce268
Merge pull request #7421 from seferov/patch-1
...
JIRA to Github issues on Limitations and Known Issues
2018-11-11 23:24:00 +01:00
Michael Moravec
8bfb363fcc
Merge pull request #7434 from naitsirch/fix/doc-faq-public-property
...
Removed FAQ paragraph stating public variables are disallowed
2018-11-11 23:22:58 +01:00
Michael Moravec
ebf2630a66
Merge pull request #7435 from oguzdumanoglu/patch-2
...
Fix a typo on Documentation
2018-11-11 23:22:25 +01:00
Michael Moravec
9018955e1f
Merge pull request #7412 from ThomasLandauer/patch-1
...
Some formatting improvements
2018-11-10 21:05:50 +01:00
Thomas Landauer
88d58ae0a3
Some formatting improvements
2018-11-10 20:45:03 +01:00
Michael Moravec
2fc99afd44
Merge pull request #7423 from ThomasLandauer/patch-2
...
Update association-mapping.rst
2018-11-10 20:40:44 +01:00
Michael Moravec
fa0885e25d
Merge pull request #7374 from SenseException/deprecate-yaml-docs
...
Deprecation message in documentation for YAML
2018-11-10 20:33:51 +01:00
Alexandru Ungureanu
0e4a0108d2
Fixes small typo
2018-11-08 13:59:21 +02:00
naitsirch
17bc627bf2
Added hint about exception in Query#getOneOrNullResult()
...
When calling `Query#getOneOrNullResult()` and there are more than one
objects in the result an `NonUniqueResultException` is thrown.
This information was missing in the documentation about the query result
formats.
This commit addresses #6793 .
2018-10-29 21:26:02 +01:00
Oguz Dumanoglu
58370256c0
Fix a typo
...
There was a typo in Working with Associations page.
2018-10-19 16:32:27 +02:00
naitsirch
d5364231c2
Removed FAQ paragraph stating public variables are disallowed
...
In #7427 @flaushi mentioned the outdated paragraph. This commit removes
this one.
2018-10-18 22:36:29 +02:00
Luís Cobucci
4df3a4d436
Merge pull request #7428 from Majkl578/php7.3
...
CI: Test against PHP 7.3
2018-10-14 09:39:26 +02:00
Michael Moravec
812989490c
CI: Test against PHP 7.3
2018-10-13 20:33:26 +02:00
Thomas Landauer
892ef9edb7
Update association-mapping.rst
...
Added info about owning and inverse side.
2018-10-09 21:33:42 +02:00
Farhad Safarov
982782f8c9
JIRA to Github issues
2018-10-09 11:52:22 +03:00
Michael Moravec
7319f524a3
Merge pull request #7397 from eibt/patch-1
...
Update getting-started.rst
2018-09-23 07:04:34 +02:00
Michael Moravec
1d71fbf77b
Merge pull request #7367 from timdev/fix/entitymanager-find-with-optimistic-lock-no-need-tx
...
Fix for BC break in 2.6.2 when calling EM::find() with LockMode::OPTIMISTIC outside of a TX
2018-09-23 06:43:26 +02:00
Ivan
7eacfec2c3
Fix typo in getting-started.rst
2018-09-23 06:39:11 +02:00
Michael Moravec
46f2a41cf7
Merge pull request #7377 from sserbin/fix-query-andx-doctype
...
Fix query andX doctype
2018-09-23 06:37:42 +02:00
Michael Moravec
fd2baf6f65
Merge pull request #7260 from stof/regression_commit_order
...
Fix the handling of circular references in the commit order calculator
2018-09-23 05:44:14 +02:00
Michael Moravec
c8bf06d549
Merge pull request #7401 from bobdenotter/patch-1
...
[docs] Fix docblock in `inheritance-mapping.rst`
2018-09-23 05:34:59 +02:00
Tim Lieberman
3acfa50214
Fix for BC break #7366 when calling EM::find() with LockMode::OPTIMISTIC outside of a TX
2018-09-23 05:33:05 +02:00
sserbin
3dbe205498
Query\Expr::andX(): added string as allowed parameter type
2018-09-23 05:23:49 +02:00
Michael Moravec
899cce8094
Merge pull request #7363 from philippe-unitiz/2.6
...
Fix compatibility with phan
2018-09-23 05:16:52 +02:00
Bob den Otter
7400d51444
Fix docblock in inheritance-mapping.rst
2018-09-23 05:12:55 +02:00
Michael Moravec
96c344d22b
Merge pull request #7345 from guilliamxavier/improve-DOMDocument-construct
...
Correct DOMDocument constructor in test
2018-09-23 05:11:21 +02:00
Michael Moravec
f48d71ecd0
Merge pull request #7378 from BenMorel/patch-2
...
Typo fix
2018-09-23 05:05:58 +02:00
philippe-unitiz
d3acbbf79b
Fix constructor argument type in Query\Base
2018-09-23 05:02:30 +02:00
philippe-unitiz
cb9ec8234b
Fix multiline parameter phpDoc in Query\Expr
...
See https://github.com/phan/phan/issues/1897 (parser won't accept `@param` spanning over several lines)
2018-09-23 05:02:01 +02:00
Guilliam Xavier
47c72e583e
correct load-only DOMDocument constructor in test
2018-09-23 04:52:52 +02:00
Christophe Coevoet
568c2d308c
Fix the computation of commit order for circular dependencies
...
When finding a circular dependencies, we must ensure that all dependencies
of a node have been visited before adding it to the sorted list.
2018-09-20 12:13:25 +02:00
Christophe Coevoet
11a7f359d1
Add a unit test reproducing the commit order regression
2018-09-20 12:11:44 +02:00
Christophe Coevoet
145f1f5198
Add a test reproducing GH7259
2018-09-20 11:53:08 +02:00
Claudio Zizza
ff1df41485
Add deprecation note to getting-started chapter
2018-09-07 21:06:08 +02:00
Claudio Zizza
d36aec8fb7
Add deprecation message for YAML into docs
2018-08-30 23:24:30 +02:00
Benjamin Morel
2779b5ee91
Typo fix
2018-08-28 14:56:01 +02:00
Pierre-Louis FORT
32efbd3edd
Handle removed parameters by tree walker in Paginator
2018-08-27 11:23:21 +02:00
Luís Cobucci
68718eac1b
Merge pull request #7360 from lcobucci/fix-partial-reference-docblock
...
Document getPartialReference() properly
2018-08-19 16:25:51 +02:00
Luís Cobucci
7b64b4a207
Document getPartialReference() properly
...
According to the current implementation that method also returns `null`,
however the interface's documentation was incorrect.
Ref: https://github.com/doctrine/doctrine2/blob/v2.6.2/lib/Doctrine/ORM/EntityManager.php#L514-L516
2018-08-18 14:52:17 +02:00
Michael Moravec
f1143f591f
Merge pull request #7325 from paxal/php73_compatible
...
Make code php 7.3 lint-compatible
2018-08-02 14:23:28 +02:00
Cyril PASCAL
07fc401d25
Make code php 7.3 lint-compatible
2018-07-26 14:32:52 +02:00
Luís Cobucci
96f166a7e9
Merge pull request #7307 from Majkl578/remaining-deprecations
...
Fix remaining usages of deprecated ClassLoader and Inflector from doctrine/common
2018-07-13 07:27:10 +02:00
Michael Moravec
f4b775323d
Fix remaining usages of deprecated ClassLoader and Inflector from doctrine/common
2018-07-13 05:31:39 +02:00
Michael Moravec
43d308116d
Bump version to 2.6.3-DEV
2018-07-12 23:24:26 +02:00
Michael Moravec
d2b4dd71d2
Preparing v2.6.2 release
2018-07-12 22:47:13 +02:00
Luís Cobucci
36e6a73d5b
Merge pull request #7296 from Majkl578/fix/2.6/#7286
...
Fix #7286 : StringPrimary no longer accepts aggregate functions as argument
2018-07-10 00:05:51 +02:00
Michael Moravec
e26158a45e
Fix #7286 : StringPrimary no longer accepts aggregate functions as argument
2018-07-09 19:12:39 +02:00
Marco Pivetta
3cfcd6a856
Merge pull request #7291 from Majkl578/fix/2.6/#7068
...
[2.6] Fix for #7068 : EntityManager::find() with pessimistic lock should check for transaction
2018-07-03 09:40:48 +02:00
Michael Kühn
ff68806bfa
Fix for #7068 : EntityManager::find() with pessimistic lock should check for transaction
2018-07-03 03:00:58 +02:00
Michael Moravec
4192c3abf4
Merge pull request #7290 from Majkl578/dbal-2.8-tests-compat
...
Fix compatibility with DBAL 2.8 (doctrine/dbal#3157 )
2018-07-03 02:58:02 +02:00
Michael Moravec
ac1e1c7d23
Fix compatibility with DBAL 2.8 where OFFSET 0 is no longer generated ( doctrine/dbal#3157 )
2018-07-03 02:14:23 +02:00
Luís Cobucci
9ab999618c
Merge pull request #7276 from Majkl578/entityrepository-count-upgrade
...
Add UPGRADE note for EntityRepository::count()
2018-07-03 02:05:46 +02:00
Michael Moravec
f2666a472f
Add UPGRADE note for EntityRepository::count()
2018-06-27 20:41:59 +02:00
Luís Cobucci
ceda5d3bc7
Merge pull request #7274 from Majkl578/non-deprecated-lexer-and-inflector
...
Use non-deprecated version of Lexer and Inflector
2018-06-25 23:56:32 +02:00
Michael Moravec
6d81d519b6
Use non-deprecated version of Lexer and Inflector
2018-06-25 14:20:52 +02:00
Marco Pivetta
88d1d79516
Merge pull request #7253 from JarJak/patch-2
...
Mention that Doctrine does not use Entities public API
2018-06-09 07:28:20 +02:00
Jarek Jakubowski
cfc6cfd1a3
Unnecessary newline removed, small improvements in text
2018-06-09 00:29:59 +02:00
Jarek Jakubowski
6b7d67b427
Add info about Doctrine not using constructor
2018-06-08 20:29:37 +02:00
Jarek Jakubowski
b6d08b15c0
Mention that Doctrine does not use Entities public API
2018-06-08 18:47:39 +02:00
Marco Pivetta
01f89a8cdc
Merge pull request #7190 from Tobion/patch-1
...
Fix wrong type in phpdoc of AbstractIdGenerator
2018-04-13 16:29:25 +01:00
mikeSimonson
efd7a5dca6
Merge pull request #7146 from Awkan/fix/7141-xml-order-by-default-asc
...
[XML] Fix default value of one-to-many order-by to ASC
2018-04-12 22:29:41 +02:00
Tobias Schultze
7ba0290643
entity should be nullable as in master
2018-04-10 19:15:48 +02:00
Tobias Schultze
8ceb47178b
Fix wrong type in phpdoc of AbstractIdGenerator
...
\Doctrine\ORM\Mapping\Entity is the annotation class which is not correct. The entity object itself is meant here as tests also assume see https://github.com/doctrine/doctrine2/blob/2.6/tests/Doctrine/Tests/ORM/Id/AssignedGeneratorTest.php#L28
Found this when running phpstan on our code that used a custom generator.
2018-04-10 18:31:36 +02:00
Donovan Bourlard
2560d4f419
Fix default value of one-to-many order-by to ASC, #7141
2018-03-22 14:51:02 +01:00
Marco Pivetta
87ee409783
Merge pull request #7082 from mariusklocke/issue-7062
...
Add failing test for issue #7062
2018-02-27 08:30:56 +01:00
Luís Cobucci
d47c1f3e9b
Fix basic entity persister type resolver
...
Which was using the wrong way to fetch the field type and using the
association type instead of the column type.
2018-02-26 14:39:06 +01:00
Marius Klocke
b952dac339
Add a failing test for issue 7062
2018-02-26 14:39:05 +01:00
Luís Cobucci
ffb7d4c79c
Merge pull request #7093 from lcobucci/patch-association-identifier-not-quoted
...
Fix updating entities with quoted identifier association
2018-02-25 20:28:33 +01:00
Jan Langer
e68717b725
Fix updating entities with quoted identifier association
2018-02-25 20:10:18 +01:00
Luís Cobucci
30a063ef9d
Merge pull request #6701 from vhenzl/pr/issue-6531-test
...
Add failing tests for #6531
Fixes https://github.com/doctrine/doctrine2/issues/6043
Fixes https://github.com/doctrine/doctrine2/issues/6531
Fixes https://github.com/doctrine/doctrine2/issues/7002
Fixes https://github.com/doctrine/doctrine2/pull/7003
2018-02-19 23:17:19 +01:00
Nicolas FRANÇOIS
35c3669ebc
Fix handling entities with post generated IDs as FK
...
This prevents a throw in UnitOfWork#addToIdentityMap because some fields
are null.
2018-02-19 23:05:13 +01:00
Vašek Henzl
23f4f03575
Add failing tests for #6531
...
Tests are based on examples from "Composite and Foreign Keys as Primary Key" tutorial:
http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/tutorials/composite-primary-keys.html
2018-02-19 22:14:57 +01:00
Luís Cobucci
a912fc09be
Add @group to delete query test
2018-02-19 22:04:28 +01:00
Marco Pivetta
a736a3713b
Merge pull request #6988 from kbond/inheritance-issue
...
Inheritance middle-layer doesn't get hydrated
2018-02-19 12:13:08 +01:00
Luís Cobucci
f2da5bc93e
Extract private method to retrieve discriminator values
2018-02-19 12:07:44 +01:00
Luís Cobucci
2905b435db
Remove loose comparison on discriminator values
...
According to mapping drivers the discriminator values can always be
converted to strings so it's safe to assume that we can actually do a
strict comparison during hydration.
2018-02-19 12:07:43 +01:00
Toni Cornelissen
48ca6dbcec
Use partial discriminator map on multi-inheritance
...
Hydrator was ignoring data from subclasses when using multiple
inheritance levels. With this patch it will now use the discriminator
values from all subclasses of the class being hydrated.
2018-02-19 12:07:42 +01:00
Kevin Bond
15a4302902
Inheritance middle-layer doesn't get hydrated with HYDRATE_OBJECT
2018-02-19 12:07:41 +01:00
Marco Pivetta
1f82a20312
Merge pull request #7077 from lcobucci/fix-delete-bc-break
...
Fix BC-break on delete without alias DQL
2018-02-19 11:32:46 +01:00
Luís Cobucci
fc943b70f6
Use early-returns to improve readability of the Parser
2018-02-19 00:53:42 +01:00
Luís Cobucci
f36470941c
Fix BC-break on delete queries with nasty workaround
...
The `v2.5.x` series of the ORM allowed to have DELETE DQLs without using
an alias, even though it didn't follow the grammar rules of the parser.
We fixed that issue on `v2.6.0` however that was a BC-breaking change
and lots of people were relying on this faulty behaviour.
This workaround fixes the BC-break, without even trying to be elegant.
In `v2.7.0.` we should raise a deprecation notice to notify people that
we'll drop that "feature" in `v3.0`.
2018-02-19 00:53:36 +01:00
Carnage
ae6d80daab
Adds sql generation test
2018-02-19 00:50:27 +01:00
Luís Cobucci
44e82e2720
Remove unused functions
2018-02-17 19:49:16 +01:00
Luís Cobucci
e94467d6da
Fix incorrect value in L2C+lock test
...
Which was causing the optimistic lock to fail in MySQL since it was
trying to update the data with exact same value.
2018-02-17 19:46:22 +01:00
Luís Cobucci
794c7708e8
Merge branch 'backport/fix/l2c-version' into 2.6
...
Backporting https://github.com/doctrine/doctrine2/pull/7069
2018-02-17 18:09:39 +01:00
‘Andrey Lukin’
8e73926359
Add version fields into L2C data
2018-02-17 18:05:32 +01:00
‘Andrey Lukin’
8fc1d74820
Add test for L2C using optimistic locks
...
As explained in #7067 , fields with `@ORM\Version` annotation were not
being added to L2C cached data.
2018-02-17 18:05:27 +01:00
Luís Cobucci
496c6a9f03
Merge branch 'backport/fix-date-issues-once-and-for-all' into 2.6
...
Backporting https://github.com/doctrine/doctrine2/pull/7055
2018-02-09 17:21:29 +01:00
Luís Cobucci
7873f700b0
Add missing tests for day calculation
...
For the DATE_SUB() and DATE_ADD() functions.
2018-02-09 17:21:06 +01:00
Luís Cobucci
46c0861f45
Fix date calculation in tests (again)
...
Now using PHP to calculate the expected date manipulation, keeping a day
as delta since PHP resets the hour when performing operations with
days/weeks/months/years.
February is a wonderful month, isn't it?
2018-02-09 17:21:06 +01:00
Luís Cobucci
5149c0ff25
Merge branch 'backport/fix/7031-tests-february' into 2.6
...
Backporting: https://github.com/doctrine/doctrine2/pull/7032
2018-02-02 09:07:25 +01:00
Michael Moravec
cf99d62472
QueryDqlFunctionTest: Increase delta for testDateAdd() to work in February
2018-02-02 08:59:35 +01:00
Luís Cobucci
5878797eae
Merge pull request #6971 from rolando-caldas/master
...
Exception Call to undefined method Doctrine\Common\Cache\MemcachedCache::setMemcache()
2018-01-30 01:53:35 +01:00
Rolando Caldas
8c2d090dc8
Exception Call to undefined method Doctrine\Common\Cache\MemcachedCache::setMemcache()
...
When memcached extension is loaded Doctrine\ORM\Tools\Setup.php calls to setMemcache method. The MemcachedCache class has the setMemcached method instead. Changed this call in Setup to setMemcached and $memcache to $memcached to keep the name like the extension
2018-01-30 01:38:56 +01:00
Luís Cobucci
3f772eac32
Merge pull request #7021 from lcobucci/fix-phpstan-check
...
Fix incorrect variable reference
2018-01-30 01:38:21 +01:00
Luís Cobucci
62c952d258
Fix wrong variable reference
2018-01-30 01:21:34 +01:00
Luís Cobucci
c2f698e56e
Merge pull request #6997 from NicolaF/fix/fix-6991-2.6
...
ManyToManyPersister fails to remove join table entry if there is multiple join columns
2018-01-30 01:19:12 +01:00
Nicolas FRANÇOIS
40f2a3efba
Add test case for many-to-many collection deletion, when owning side has a composite PK
2018-01-30 01:04:28 +01:00
Nicolas FRANÇOIS
333b9c0b99
Fix #6991 : correctly resolve identifer values in ManyToManyPersister
2018-01-19 12:19:02 +01:00
Luís Cobucci
90d19b4131
Bumping development version to v2.6.1-DEV
2017-12-20 02:01:05 +01:00
Luís Cobucci
374e7ace49
Preparing v2.6.0 release
2017-12-20 01:38:15 +01:00
Marco Pivetta
d752cafb47
Merge pull request #6911 from lcobucci/bump-dependencies
...
Require more up-to-date dependencies
2017-12-20 00:19:31 +01:00
Luís Cobucci
0e44271a40
Require more up-to-date dependencies
2017-12-20 00:10:05 +01:00
Marco Pivetta
4c89498359
Merge branch 'feature/#6767-allow-association-as-JTI-identifier'
...
Close #6767
2017-12-19 18:02:48 +01:00
Marco Pivetta
b6aa4bab15
#6767 using in_array rather than array_search
...
Ref: https://github.com/doctrine/doctrine2/pull/6767/files#r157355050
2017-12-19 18:01:38 +01:00
Marco Pivetta
27c42d418b
#6767 removed unused variable
...
Ref: https://github.com/doctrine/doctrine2/pull/6767/files#r157354726
2017-12-19 18:00:03 +01:00
Tyler Romeo
bb8970286d
Allow association mappings as IDs for joined-table inherited entity
...
SchemaTool has custom logic for creating the primary key of a
joined-table inherited entity. This logic overlooked association maps
as a possible source for identity columns, resulting in a fatal error
when fetching the primary key list for child entities.
Removed any custom logic for generating primary keys for root entities
in joined-table inheritance, deferring to the common logic used for
other entities.
Also adjusted the child entity logic, scanning association maps for
identity columns, and including the column as appropriate. It also
ensures that the primary key columns are in the correct order.
2017-12-19 17:58:31 +01:00
Luís Cobucci
b210c1e364
Merge pull request #6905 from Majkl578/setup-cache-7.1-compat
...
Setup: Switch Apc -> Apcu and Memcache -> Memcached
2017-12-19 08:21:02 +01:00
Guilherme Blanco
a16dc65cd2
Fixes #1391 , DDC-3693
2017-12-18 22:46:48 -05:00
Guilherme Blanco
0345f7b836
Merge pull request #1578 from StoshSeb/patch-1
...
Fixed DDC-3740
2017-12-18 22:41:18 -05:00
Michael Moravec
349724f05b
Setup: Switch Apc -> Apcu and Memcache -> Memcached
2017-12-19 02:43:03 +01:00
Michael Moravec
e1825e37ef
Merge pull request #6780 from aequasi/patch-1
...
getRepository actually returns ObjectRepository
2017-12-18 00:40:47 +01:00
Luís Cobucci
cfa1dfbfe6
Merge pull request #6887 from greg0ire/stable_stability
...
Use stable packages
2017-12-18 00:39:02 +01:00
Grégoire Paris
8e3c3f0bae
Add marker variable for Travis
2017-12-18 00:14:00 +01:00
Grégoire Paris
ad3c3f4114
Implement conditional build
...
This will make cron builds fail, which is a bit more noticeable than an
allowed failure.
2017-12-17 23:38:16 +01:00
Grégoire Paris
8ca7db8852
Use stable packages
...
This will make it easier to contribute. It will also make reviews safer
since you will be able to tell if a PR is reponsible for a broken build
or not. Catching errors early is still possible by having a look at
allowed failures.
2017-12-17 23:38:16 +01:00
Michael Moravec
ca42879f9e
Merge pull request #6898 from Majkl578/upgrade-typos
...
UPGRADE: Added method parenthesis, fixed method name
2017-12-17 04:43:43 +01:00
Michael Moravec
28b6ca3a16
UPGRADE: Added method parenthesis, fixed method name
2017-12-17 04:31:42 +01:00
Luís Cobucci
c4a5e5c3f8
Merge pull request #6748 from KonstantinKuklin/patch1
...
Fix missing null check on `AbstractQuery#setResultCacheProfile()`
2017-12-17 03:37:06 +01:00
Konstantin Kuklin
c308986a90
Fix insufficient variable check
...
To ensure that `AbstractQuery#setResultCacheProfile()` doesn't raise
errors when being called with `null`.
2017-12-17 03:21:52 +01:00
Luís Cobucci
739f518ebe
Merge pull request #6892 from thexpand/patch-1
...
Re-order attributes of relation complex types
2017-12-17 02:49:49 +01:00
Cvetomir
a46e794b60
Re-order attributes of relation complex types
...
This will provide the same look for all of the relations: one-to-many, many-to-one, one-to-one, many-to-many.
It helps during auto-completion of XML code when creating XML schema for an entity.
The order is as follows: field, target-entity, mapped-by, inversed-by, indexed-by, fetch, orphan-removal.
2017-12-17 02:36:41 +01:00
Luís Cobucci
d3ff823f97
Merge pull request #6812 from Deltachaos/bugfix/inheritance-joins-master
...
Fix syntax error when join unrelated entity with discriminator entity
2017-12-17 01:42:42 +01:00
Maximilian Ruta
32c125def1
Fix syntax error when join with discriminator
2017-12-17 01:25:50 +01:00
Michael Moravec
0837493a7c
Merge pull request #6894 from Majkl578/fix-readme-php-version
...
README: Fix PHP version
2017-12-17 01:16:50 +01:00
Luís Cobucci
260c2e899a
Merge pull request #6897 from lcobucci/update-phpstan
...
Upgrade PHPStan to 0.9.x
2017-12-17 01:08:48 +01:00
Luís Cobucci
74ce8913fc
Upgrade phpstan to 0.9
...
Applying the necessary fixes.
2017-12-17 00:55:50 +01:00
Luís Cobucci
80a94727ee
Run tests also with the stable version of dependencies
2017-12-17 00:54:12 +01:00
Luís Cobucci
d6212dd09e
Merge pull request #6896 from lcobucci/improve-build-stages
...
Run all code quality tools in the same stage
2017-12-17 00:04:58 +01:00
Luís Cobucci
122e9c3aa3
Run all code quality tools in the same stage
...
In order to execute things in parallel and speed up the build.
2017-12-16 23:52:20 +01:00
Luís Cobucci
8e4f624f90
Merge pull request #6895 from lcobucci/simplify-LimitSubqueryWalker
...
Reduce complexity of LimitSubqueryWalker#walkSelectStatement()
2017-12-16 23:50:24 +01:00
Luís Cobucci
441c5d138c
Reduce complexity of LimitSubqueryWalker#walkSelectStatement()
...
Ensuring that the code follows our code standards.
2017-12-16 23:31:50 +01:00
Michael Moravec
b3654f95d0
README: Fix PHP version
2017-12-16 22:05:22 +01:00
Michael Moravec
aacea65519
Merge pull request #6889 from carusogabriel/clean-elses
...
Clean elses
2017-12-16 05:30:33 +01:00
Gabriel Caruso
d0d802309c
Clean elses
2017-12-14 05:55:54 -02:00
Michael Moravec
a352c214a0
Merge pull request #6805 from yesdevnull/patch-1
...
[Docs] Corrected NamingStrategy demo code to match example
2017-12-12 04:30:01 +01:00
Dan Barrett
cd00ccae69
Updated table/column names example to be lowercase
2017-12-11 12:14:39 +11:00
Guilherme Blanco
e149f89cfe
Merge pull request #6820 from plfort/#6819-pagination-optim
...
#6819 Optimize LimitSubqueryWalker
2017-12-10 19:56:31 -05:00
Marco Pivetta
b79b26aa8b
Merge pull request #5805 from borNfreee/patch-1
...
Fix typo in documentation
2017-12-08 09:44:35 +01:00
Maks Rafalko
04d9bc40e4
Update validation-of-entities.rst
2017-12-08 09:33:41 +03:00
Michael Moravec
31816f6e2f
Merge pull request #1442 from elazar/patch-1
...
Corrected bad class reference in "Adding own commands"
2017-12-08 05:13:04 +01:00
Michael Moravec
d32a8634aa
Merge pull request #5736 from guilliamxavier/patch-3
...
Fix PHP syntax error in composite-primary-keys.rst
2017-12-08 04:39:56 +01:00
Luís Cobucci
f13f7ebe54
Merge pull request #6862 from OskarStark/typo
...
fixed closing tag
2017-12-03 11:27:52 +01:00
Oskar Stark
79e1be8c3d
fixed closing tag
2017-12-01 15:41:52 +01:00
Luís Cobucci
92dd27fe3f
Merge pull request #6826 from JKapitein/patch-1
...
Add Type::GUID to $typeAlias list in EntityGenerator
2017-11-28 00:38:11 +01:00
JKapitein
ad0a8c53fa
Add Type::GUID to $typeAlias list in EntityGenerator
...
Right now, when generating entities, a column of type 'guid' will generate the following PHPDoc:
```
/**
* Get id
*
* @return guid
*/
public function getId() {...}
```
Since guid is not a valid PHP type, this throws a warning in PHPStorm, and I assume most IDEs.
Adding the type to the type alias list fixes the problem.
2017-11-28 00:11:32 +01:00
Luís Cobucci
be18256a93
Merge pull request #6849 from lcobucci/fix/options-on-entity-generation
...
Make entity generator generate values for all supported options
Fixes: https://github.com/doctrine/doctrine2/issues/6703
2017-11-26 20:55:28 +01:00
Luís Cobucci
bc7aeb9d11
Make entity generator create the correct options
...
The `EntityGenerator` was not creating the field options for all
supported values.
2017-11-26 20:05:52 +01:00
Luís Cobucci
6e095f7c3b
Merge pull request #6801 from foaly-nr1/DDC6029
...
Improve misleading ORMInvalidArgumentException message
Fixes: https://github.com/doctrine/doctrine2/issues/6029
2017-11-26 18:54:01 +01:00
foaly-nr1
c0a505366f
Use the correct type for the exception message
...
Since the UoW checks each item of a *-to-many association to ensure
it has the correct type, we should never say that we expect an instance
of `Doctrine\Common\Collections\Collection` or an `array`.
2017-11-26 17:55:59 +01:00
foaly-nr1
b211dd4db7
Add failing test for misleading exception message
...
Describes: https://github.com/doctrine/doctrine2/issues/6029
2017-11-26 17:55:59 +01:00
Luís Cobucci
3ca65e28fc
Merge pull request #6683 from alextech/bugfix/xml_sequence_params
...
Supply default values for optional values in sequence mapping if omitted by driver.
Fixes: https://github.com/doctrine/doctrine2/issues/6682
2017-11-26 17:07:03 +01:00
Sasha Alex Romanenko
b3331b2237
Enforce sequence XSD requirement
...
Supply default values for allocationSize and initialValue optional parameters.
Related to: https://github.com/doctrine/doctrine2/issues/6682
2017-11-26 16:33:27 +01:00
Luís Cobucci
dfc31bc855
Merge pull request #6740 from mduplouy/DDC288
...
Fix operator when using criteria on ManyToMany
Fixes: https://github.com/doctrine/common/issues/600
2017-11-26 14:21:57 +01:00
Mathieu Duplouy
7c28a932ae
Add operator to walkComparison output
2017-11-26 14:03:54 +01:00
Mathieu Duplouy
15c145f3b3
Add failing test for DCOM-288
...
Reported on: https://github.com/doctrine/common/issues/600
2017-11-26 13:54:54 +01:00
Luís Cobucci
dda42f6c09
Merge pull request #6848 from lcobucci/cache-namespace-fix
...
Fix overwriting explicit cache namespace
Replaces: https://github.com/doctrine/doctrine2/pull/5904
2017-11-26 13:22:24 +01:00
Jan Jakes
99b2e57606
Fix overwriting explicit cache namespace
2017-11-26 12:48:12 +01:00
Luís Cobucci
d3759a2447
Fix incorrect arguments on SetupTest
...
Which was only caught by adding proper type declaration on private
methods.
2017-11-26 12:26:28 +01:00
Luís Cobucci
b7cace86a0
Merge pull request #6705 from Majkl578/ticket/6699
...
Fix parameter name comparison in AbstractQuery regarding different types (fixes #6699 )
Fixes https://github.com/doctrine/doctrine2/issues/6699
2017-11-24 03:00:07 +01:00
Luís Cobucci
b8fd708139
Fix parameter name comparison in QueryBuilder#setParameter() with different types
2017-11-24 02:43:01 +01:00
Michael Moravec
6cb5a9c50a
Fix parameter name comparison in AbstractQuery#setParameter() with different types
2017-11-24 02:43:00 +01:00
Michael Moravec
4bbb1067ac
Add failing test for #6699
2017-11-24 02:42:59 +01:00
Luís Cobucci
b47a39be64
Merge pull request #6655 from OskarStark/symfony-style
...
Use SymfonyStyle for command output
2017-11-24 01:52:00 +01:00
Oskar Stark
6b5eb11458
Use SymfonyStyle for command output
2017-11-24 01:25:17 +01:00
Luís Cobucci
43a88d539d
Format commands' tests
...
To simplify and organise the code (also replacing `$this->assert*`
with `self::assert*`).
2017-11-24 01:25:15 +01:00
Luís Cobucci
8a893068ce
Remove constants existence validation
...
These constants are available since PHP 5.4 and since we're requiring
PHP 7.1 there's no reason to require them.
I've also simplified the `array_map()` call since it's useless to
define a closure that simply calls a function.
2017-11-24 01:25:14 +01:00
Oskar Stark
214dc9896b
Use addOption()/addArgument() to configure commands
...
In order to simplify and standardise the definition of the commands.
2017-11-24 01:20:09 +01:00
Luís Cobucci
ba32237e2b
Merge pull request #6844 from lcobucci/configure-phpcs
...
Configure PHPCS
2017-11-23 13:30:18 +01:00
Luís Cobucci
984327d782
Update PHPStan
2017-11-23 11:29:39 +01:00
Luís Cobucci
2be1b7d0b8
Add configuration for PHPCS
...
And execute it on Travis (allowing it to fail for now to prevent a lot
of conflicts with `develop`).
2017-11-23 11:26:33 +01:00
Luís Cobucci
13197123c5
Sort dependencies definitions
2017-11-23 11:15:52 +01:00
Luís Cobucci
24408b42d3
Merge pull request #6843 from lcobucci/use-new-scrutinizer-config
...
Use new analyser on scrutinizer-ci
2017-11-23 11:08:52 +01:00
Luís Cobucci
8918bd3b8a
Use new analyser on scrutinizer-ci
...
Also preventing from running the tests (because that's already done on
Travis-CI) and simplifying the build failure conditions.
2017-11-23 10:24:18 +01:00
Pierre-Louis FORT
4ab9413675
Test that orderByItem is string
2017-11-10 10:45:57 +01:00
Pierre-Louis FORT
91408a3a54
#6819 Optimize LimitSubqueryWalker when resultVariable are involved and they are not used in "order by"
2017-11-09 14:34:11 +01:00
Dan Barrett
bccc46dc12
Corrected demo code to match example
...
Example paragraph mentions changing column titles to upper case, yet `strtolower` was being used.
2017-11-01 16:40:04 +11:00
Luís Cobucci
a82f6c5725
Merge pull request #6742 from Legenyes/feature/DDC-2938_Support_all_time_intervals_on_DATE_ADD
...
Add support second, minute, week, year on DATE_ADD and DATE_SUB
Fixes #5835
2017-10-31 20:46:02 +01:00
Luís Cobucci
59792654c0
Improve tests for DATE_ADD and DATE_SUB
...
So that we can do proper assertions and cover all the possibilities
of the functions.
2017-10-31 15:48:26 +01:00
Sébastien Lévêque
f277eef6ea
Add support second, minute, week, year on DATE_ADD and DATE_SUB
2017-10-29 21:48:40 +01:00
Andreas
ed86ee2567
Merge pull request #6800 from ErikJson/master
...
Fix some grammar and outdated information in docs
2017-10-29 05:53:58 +01:00
Erik Johansson
302c3a6640
Fix some grammar and outdated information in docs
2017-10-29 00:28:10 +03:00
Luís Cobucci
0497f50ba6
Merge pull request #6766 from ThomasLandauer/patch-1
...
Moved explanation out of PHP-Codeblock...
2017-10-26 09:49:48 +02:00
Marco Pivetta
2129801ac1
Merge pull request #6788 from kejwmen/fix/custom-types-docs
...
[Docs] Type::convertToDatabaseValue is always called
2017-10-24 08:46:02 +02:00
Mateusz Sip
620319f206
Type::convertToDatabaseValue is always called
2017-10-24 01:50:58 +02:00
Marco Pivetta
5f3afa4c4f
Merge pull request #6778 from stevepetcu/clarify-embedded-embeddable-docs
...
Clarify docs for embedded and embeddable.
2017-10-19 12:40:50 +02:00
Aaron Scherer
99db207a9f
getRepository actually returns ObjectRepository
2017-10-18 19:10:00 -07:00
Stefan Petcu
0bea6881da
Clarify docs for embedded and embeddable.
2017-10-17 19:21:34 +02:00
Guilherme Blanco
e279dfaa91
Merge pull request #6772 from greg0ire/disallow_many_to_one_orphan_removal
...
Disallow orphan removal attribute on many-to-one
2017-10-16 07:47:26 -04:00
Guilherme Blanco
87a6d0b77e
Merge pull request #6774 from greg0ire/proove_orphan_removal_is_useless
...
Proove orphan removal is useless
2017-10-15 22:12:31 -04:00
Grégoire Paris
ffd3d34f34
Disable uuid generation
...
Apparently, setting a value by hand is not enough to avoid it.
2017-10-14 12:39:58 +02:00
Grégoire Paris
57e9feffb2
Avoid uuid generation
...
pg needs an extra module to do this, so let's spare us that and set them
manually.
2017-10-14 12:39:58 +02:00
Grégoire Paris
6b5c97055c
Set null on delete, at database level
2017-10-14 12:39:57 +02:00
Grégoire Paris
30fccf8e83
Proove orphan-removal on many-to-one is useless
2017-10-14 12:39:57 +02:00
Grégoire Paris
2a865177b9
Disallow orphan removal attribute on many-to-one
...
It only makes sense for collections, and there is no collection here.
Plus the docs do not say it is supported.
See
http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/working-with-associations.html#orphan-removal
2017-10-13 16:38:02 +02:00
Thomas Landauer
d560449661
Minor formating
2017-10-11 22:50:32 +02:00
Thomas Landauer
436b15e873
Moved explanation out of PHP-Codeblock...
...
...to make it visible for XML and YML too.
2017-10-11 22:45:42 +02:00
Marco Pivetta
aea970722e
Merge pull request #6764 from AlessandroMinoccheri/fix_doc
...
fixed little typo inside documentation
2017-10-11 20:44:16 +02:00
Alessandro Minoccheri
b1466e6d3e
fixed little typo inside documentation
2017-10-11 17:04:29 +02:00
Luís Cobucci
8e16748ff8
Merge pull request #6734 from ossinkine/issue-6734
...
Add DateInterval type parameter
2017-10-11 13:13:09 +02:00
Luís Cobucci
9e9e5628f5
Merge pull request #6755 from BenMorel/patch-2
...
EntityManager::getReference() can return null
2017-10-09 20:05:46 +02:00
Luís Cobucci
f2dc9a8f92
Merge pull request #6760 from doctrine/fix/#6759-showstopper-one-to-one-inverse-not-being-loaded-with-correct-identifier-restrictions
...
#6759 showstopper one-to-one inverse not being loaded with correct identifier restrictions when defining `joinColumn`
2017-10-08 14:47:15 +02:00
Marco Pivetta
66f903a38f
#6759 remove # symbol from @group annotation as per @lcobucci's review
...
Ref: https://github.com/doctrine/doctrine2/pull/6760#discussion_r143353225
2017-10-08 14:26:45 +02:00
Marco Pivetta
3dd7eb5888
#6759 removing outdated comment as per @alcaeus' review
...
Ref: https://github.com/doctrine/doctrine2/pull/6760#discussion_r143347881
2017-10-08 10:57:33 +02:00
Marco Pivetta
dd12ba88ee
#6759 avoiding reuse of the $identifier variable when constructing an identifier from the owning side value
...
Fixes #6759
2017-10-07 12:54:36 +02:00
Marco Pivetta
83e00d5010
#6759 cleaning up test case, using new models from the isolated namespace
2017-10-07 12:52:34 +02:00
Marco Pivetta
d831f4fd9f
#6759 segregating test models into their own namespace
2017-10-07 12:48:19 +02:00
Marco Pivetta
6ba2d1c317
#6759 cleaning up test case body
2017-10-07 10:09:44 +02:00
Jan Langer
5f99cad669
Failing test - inverse side OneToOne loaded without identifier condition
2017-10-06 17:34:34 +02:00
Benjamin Morel
fb7a96caf9
EntityManager::getReference() can return null
2017-10-05 00:27:11 +02:00
Jonathan H. Wage
13f838f8be
Merge pull request #6749 from KonstantinKuklin/patch2
...
sync type of property em with constructor value
2017-10-04 08:47:55 -04:00
Konstantin Kuklin
2d88e45240
sync type of property em with constructor value
2017-10-04 03:43:20 +03:00
Marco Pivetta
2ade863bca
Merge pull request #6746 from doctrine/malarzm-patch-1
...
[DOCS] Emphasize that Embeddable can only contain simple fields
2017-10-03 17:42:31 +02:00
Maciej Malarz
19dcd629c0
[DOCS] Emphasize that Embeddable can only contains simple fields
2017-10-03 17:14:06 +02:00
Gocha Ossinkine
4fdbdabae4
Add DateInterval type parameter
2017-09-28 13:15:40 +05:00
Marco Pivetta
53245e8a73
Merge pull request #6731 from guiajlopes/master
...
#6723 Remove variable from UnitOfWork#createEntity()
2017-09-26 13:10:39 +02:00
Guilherme Lopes
a7e13f89cc
#6723 Remove variable from UnitOfWork#createEntity()
2017-09-26 12:52:18 +02:00
Marco Pivetta
1d5c87ee4b
Merge pull request #6714 from guiajlopes/master
...
Remove unnecessary else
2017-09-21 14:30:25 +02:00
Marco Pivetta
f96dc3ba91
Merge pull request #6715 from PowerKiKi/patch-3
...
Promote nullable types from PHP 7.1
2017-09-21 14:29:23 +02:00
Adrien Crivelli
3d3ecc77bd
Drop PHP version specifics
2017-09-21 21:28:19 +09:00
Guilherme Lopes
df1250ee4b
Fix negation clause and also adding both conditions in the same if
2017-09-21 13:42:51 +02:00
Adrien Crivelli
d995203ee1
Promote nullable types from PHP 7.1
...
Also don't show type hinting in a bad light with sentences such as "If you insist on type-hinting"
2017-09-21 17:29:54 +09:00
Guilherme Lopes
8ecddc4fc1
Adding empty line between logic blocks
2017-09-21 10:13:19 +02:00
Guilherme Lopes
059cfd86df
Remove unnecessary else
2017-09-21 10:02:43 +02:00
Benjamin Eberlei
0c4f9a8866
Clarify some assumptions the object hydration makes.
2017-09-16 17:15:08 +02:00
Marco Pivetta
6a86175617
Merge pull request #6695 from wshafer/prefix-update
...
Update table prefix docs
2017-09-11 20:58:11 +02:00
Marco Pivetta
bf8e27b422
Merge pull request #6690 from bitwombat/issue_6686
...
Clarify association mapping language
2017-09-11 08:51:50 +02:00
Marco Pivetta
80f7824b3d
Merge pull request #6691 from keradus/php_syntax
...
Use newer PHP syntax
2017-09-11 08:50:05 +02:00
Westin Shafer
828bfdf4ae
Update docs for deprecated setTableName()
...
Updated docs to remove deprecated setTableName() and replace it with setPrimaryTable()
2017-09-07 13:59:32 -06:00
Dariusz Ruminski
c7d6d62393
Use newer PHP syntax
2017-09-06 01:32:49 +02:00
Greg Bell
c429f1c38b
Clarify association mapping language
...
- 5.3 was wrong - should really be 'inversedBy'
- 11.1 - change 'use' to 'have' for consistency. A class has an attribute.
- See https://github.com/doctrine/doctrine2/issues/6686
2017-09-06 07:58:34 +10:00
Marco Pivetta
8b81691e77
Merge pull request #6685 from votemike/update-maxresult-docblocks
...
Updating `Query#$_maxResults` to allow for `null` (no limit)
2017-09-04 11:40:06 +02:00
Michael Gwynne
d0d1e557d1
Adding change to appease scrutinizer
2017-09-04 10:11:43 +01:00
Michael Gwynne
fd9f96c766
Updating _maxResults to allow for null
2017-09-04 09:26:11 +01:00
Marco Pivetta
4bc29d1049
Merge branch 'fix/#5796-catch-also-throwable-in-transactional-abstraction'
...
Close #5796
2017-09-02 13:58:08 +02:00
Marco Pivetta
c016e2d434
Adding minimal test to verify EntityManager behavior against #5796
2017-09-02 13:55:07 +02:00
Marco Pivetta
12043cd845
#5796 minor CS fixes (imported symbols) and removing last PHP5 compliance bits
2017-09-02 13:47:58 +02:00
Marco Pivetta
a1c93bfd48
#5796 replacing Exception catching with Throwable catching, removing PHP5 compliance code
2017-09-02 13:44:12 +02:00
Benjamin Morel
874a5e3547
Catch Throwable in PHP 7
2017-09-02 13:41:53 +02:00
Marco Pivetta
68706034e5
Merge pull request #6658 from Majkl578/fix/allow-stable-yaml
...
Drop explicit conflict with stable symfony/yaml
2017-08-30 22:43:28 +02:00
Michael Moravec
bfc76adce0
Drop explicit conflict with stable symfony/yaml
...
As per discussion in #6639 , conflict with versions below 3.4
of the YAML component is superfluous, previous versions
would work just fine even with bb994b9e70 .
2017-08-30 22:06:19 +02:00
Marco Pivetta
8c7052c99c
Merge pull request #6652 from doctrine/fix/allow-batch-insert-test-to-run-in-multiple-revolutions
...
Correcting the `SimpleInsertPerformanceBench` duplicate record issues when run with multiple revolutions/iterations
2017-08-26 16:42:51 +02:00
Marco Pivetta
e1e7485e58
Correcting the SimpleInsertPerformanceBench, which was running into duplicate record integrity constraint violations when run with >1 revs
2017-08-26 16:41:03 +02:00
Marco Pivetta
7a0385634f
Merge pull request #6651 from doctrine/fix/use-quote-model-set-when-available
...
Replacing direct `quote` model-set schema creation with actually existing model-set setup
2017-08-26 14:23:26 +02:00
Marco Pivetta
922c55f5dd
Replacing direct quote model-set schema creation with actually existing model-set setup
2017-08-26 14:15:05 +02:00
Marco Pivetta
61404e2d6d
Merge pull request #6640 from doctrine/fix/#6284-#6217-avoid-passing-l2-cache-information-internals-to-the-uow
...
#6217 #6284 when hydrating an entity with a composite primary key that is both an `EAGER` and a `LAZY` association and also cached, the `DefaultQueryCache` tries to pass L2 cache implementation detail objects to the `UnitOfWork`
2017-08-25 09:22:45 +02:00
Marco Pivetta
660f164568
#6284 #6217 s/$this->assert/self::assert as per @lcobucci's review
2017-08-25 09:21:12 +02:00
Marco Pivetta
acfc890dbd
Merge pull request #6644 from AlessandroMinoccheri/fix_documentation_typo
...
fixed typo into native-sql documentation
2017-08-24 11:29:17 +02:00
Alessandro Minoccheri
a708d4076e
fixed typo into native-sql documentation
2017-08-24 11:27:54 +02:00
Marco Pivetta
aac0204611
Merge pull request #6642 from radmax/patch-1
...
Fixed typo in DQL docs
2017-08-24 10:57:11 +02:00
radmax
ed047520c3
fixed typo
2017-08-24 10:55:29 +02:00
Marco Pivetta
caa008b61d
#6284 #6217 removing hacks around the ClassMetadata details - invalid fix that was actually fixing the symptom
2017-08-23 00:25:29 +02:00
Marco Pivetta
07b397f341
#6284 fixing actual issue, which comes from an extremely tricky L2 caching issue.
...
We are not hydrating some of the cached association data into entities due to keys missing in the cache association definition.
Since this is an extreme edge case that is just a mismatch between db and cache, a detailed explanation was provided in the fix snippet as well
2017-08-23 00:19:49 +02:00
Marco Pivetta
c9d1f852de
#6284 removing unused lazy entity
2017-08-22 21:41:04 +02:00
Marco Pivetta
c29a1e96b7
#6284 removing unused separate class
2017-08-22 21:40:42 +02:00
Marco Pivetta
a2f4053a81
#6284 renaming variables, classes and properties to fit tested behavior
2017-08-22 21:38:44 +02:00
Marco Pivetta
3f09e20955
#6284 correcting alignment, removing stuff that isn't strictly needed
2017-08-22 21:31:01 +02:00
Marco Pivetta
220dc79ebf
#6284 renaming entities to match the scope of this test
2017-08-22 21:29:27 +02:00
Marco Pivetta
6f6e88cfb6
#6284 adding assertions about equality of the loaded classes
2017-08-22 21:27:46 +02:00
Marco Pivetta
dac1ce4172
#6284 removing profile entity, since it is not needed to reproduce the issue
2017-08-22 21:21:53 +02:00
Marco Pivetta
ca39abcd71
#6284 reducing annotation mapping clutter
2017-08-22 21:17:14 +02:00
Marco Pivetta
4e0b76ce69
#6284 eager fetching is strictly required to verify the issue
2017-08-22 21:14:38 +02:00
Marco Pivetta
805ba041ef
#6284 reducing annotation mapping clutter
2017-08-22 21:12:45 +02:00
Marco Pivetta
3842ad8ea1
#6284 simplifying tests to a minimum, removing unused auto-generated id field
2017-08-22 21:11:03 +02:00
Marco Pivetta
c7281f6ade
#6284 simplifying tests to a minimum, removing unused auto-generated id field
2017-08-22 21:08:06 +02:00
Marco Pivetta
a8453dda89
#6284 removing the "WTF" part of the logic - an association cache entry should never ever reach metadata
2017-08-22 21:03:14 +02:00
Waleed Gadelkareem
309b286ed3
Add tests for #6217
2017-08-22 19:45:26 +02:00
Marco Pivetta
8ad3dfd3bd
Merge branch 'fix/#1521-DDC-2922-defer-checking-non-persisted-entities-through-multiple-differently-mapped-cascading-associations'
...
Close #1521
Close DDC-2922
2017-08-22 10:26:15 +02:00
Marco Pivetta
645cccf2db
#1521 DDC-2922 adapting test so the UnitOfWork stops bragging about previous inconsistent states
2017-08-22 10:24:46 +02:00
Marco Pivetta
2be32f249c
#1521 DDC-2922 adapting UoW and exception implementation to the new specification
2017-08-22 09:57:57 +02:00
Marco Pivetta
4a007c76f5
#1521 DDC-2922 spec for a new exception endpoint that produces a multi-new-non-cascaded-entities error message
2017-08-22 09:56:43 +02:00
Marco Pivetta
a754eae0f0
#1521 DDC-2922 verifying that persistence operations will resume normally after a crash due to invalid new values detected on associations - tweaked test to make it fail
2017-08-22 08:51:27 +02:00
Marco Pivetta
89fbb6a060
#1521 DDC-2922 verifying that persistence operations will resume normally after a crash due to invalid new values detected on associations
2017-08-22 08:49:42 +02:00
Marco Pivetta
2751c0fff2
#1521 DDC-2922 minor code cleanup - renaming internal private methods, variables, removing redundant if/else
2017-08-21 20:08:20 +02:00
Marco Pivetta
87e8bccb11
#1521 DDC-2922 removed redundant integration test that was replaced by a unit test
2017-08-21 19:58:52 +02:00
Marco Pivetta
f39614136f
#1521 DDC-2922 reproducing test scenarios within the UnitOfWorkTest
2017-08-21 19:58:16 +02:00
Marco Pivetta
a3208f8d08
#1521 DDC-2922 removed unrelated model usage from test - using minimal models only
2017-08-21 19:47:16 +02:00
Marco Pivetta
e21b29c264
#1521 DDC-2922 simplified test case to a minimum reproducible unit
2017-08-21 19:44:38 +02:00
Darien Hager
b456cffa2d
Move final cascade-persist-checking so that it covers not just normal flushes, but also flushes where specific entities are singled out.
2017-08-21 09:08:31 +02:00
Darien Hager
17b996da8c
Speculative fix: Defer any errors for missing cascade-persist until object graph has been better-explored
2017-08-21 09:08:31 +02:00
Darien Hager
92dc39bfb9
Add extra assertions to test to ensure that flush actually succeeded in saving all items
2017-08-21 09:08:31 +02:00
Darien Hager
997000352a
Add another test to demonstrate the bug doesn't appear if everything is flushed at once.
2017-08-21 09:08:31 +02:00
Darien Hager
6f8a80be79
Move failing unit test into ticket-specific case
2017-08-21 09:08:31 +02:00
Darien Hager
c4465abaa0
Initial failing test-case to demonstrate cascade-persist problem.
2017-08-21 09:08:12 +02:00
Marco Pivetta
ddccd42bb1
Merge pull request #6636 from Kwadz/annot-ref-update
...
Mention the nullable default value for @column
2017-08-20 08:17:41 +02:00
Richard
9eaf23a5e0
Mention the nullable default value for @column
...
Related to #6632
2017-08-20 05:57:00 +02:00
Marco Pivetta
a30d8d85ea
Merge branch 'fix/#6303-#6304-check-for-null-discriminator-before-hydrating-inheritance-rows'
...
Close #6303
Close #6304
ge aborts
2017-08-19 18:37:04 +02:00
Marco Pivetta
44f2e22f14
#6303 #6304 documenting why collisions in field name hydration in STI/JTI require additional information and checks in the hydration process
2017-08-19 18:30:33 +02:00
Marco Pivetta
4cbcdb761a
#6303 #6304 documenting that the discriminator map order is extremely important for this test
2017-08-19 18:25:44 +02:00
Marco Pivetta
b66643d52e
#6303 #6304 removing useless union type usage
2017-08-19 17:49:14 +02:00
Marco Pivetta
42d9162bd5
#6303 #6304 re-enabling disabled test code data
2017-08-19 17:47:12 +02:00
Marco Pivetta
8af68614fc
#6303 #6304 correcting type mapping. For simple_array, [] == null (which is bullshit), so we use array here
2017-08-19 17:45:26 +02:00
Marco Pivetta
764ab59882
#6303 #6304 making unnecessary visible fields private
2017-08-19 17:06:27 +02:00
Marco Pivetta
468496be1a
#6303 #6304 using strict types in the tests
2017-08-19 17:05:44 +02:00
Marco Pivetta
e18fb6607d
#6303 #6304 removing duplicate test details
2017-08-19 17:04:26 +02:00
Marco Pivetta
2ab363ab82
#6303 #6304 adding void hints where applicable
2017-08-19 16:53:41 +02:00
Marco Pivetta
0882b10213
#6303 #6304 simplified tests, removing references to contract naming
2017-08-19 16:51:31 +02:00
Marco Pivetta
328467c226
#6303 #6304 simplified tests, removing references to contract naming
2017-08-19 16:48:50 +02:00
Marco Pivetta
f6ce69fe29
#6303 #6304 minor CS fixes in the test code - alignment/formatting
2017-08-19 16:37:24 +02:00
Marco Pivetta
aaad25a061
#6303 #6304 reverting changes to the OrmFunctionalTestCase
2017-08-19 16:25:20 +02:00
Marco Pivetta
c503b81421
#6303 #6304 removing += operator usage on arrays (scary\!), CS (alignment)
2017-08-19 16:02:30 +02:00
Marco Pivetta
7e7921e32f
#6303 #6304 documenting why the loose comparison is required
2017-08-19 15:58:50 +02:00
fullbl
8cc29e84a0
Update AbstractHydrator.php
...
revert strict comparison in hydration (fails on some dates)
2017-08-19 15:56:59 +02:00
Full
db9c12f1af
comparison on discriminator value with !==
2017-08-19 15:56:59 +02:00
fullbl
82db643b4f
clarified what's the problem in a comment
2017-08-19 15:56:59 +02:00
Full
4c7286f57b
removed trailing spaces
2017-08-19 15:56:59 +02:00
Full
0072054020
moved all test models into test class
2017-08-19 15:56:59 +02:00
Full
0b8e468f06
fix wrong pharenthesis
2017-08-19 15:56:59 +02:00
Full
bf06b7dbbc
check if array is set before assigning
2017-08-19 15:56:59 +02:00
Full
ad3b9de4b8
use dataMap also in first test function
2017-08-19 15:56:59 +02:00
Full
6d40859228
added tests on empty values
2017-08-19 15:56:59 +02:00
Full
aac523d155
tests with custom inheritance tree
2017-08-19 15:56:59 +02:00
Marco Pivetta
671fd50725
Merge pull request #6572 from bitwombat/doc_changes
...
Add additional detail and clarifications on SELECT
2017-08-18 21:45:17 +02:00
Marco Pivetta
1a0bb82e1d
Merge pull request #6392 from Jean85/pr_1441_rebased
...
Correct DQL `INSTANCE OF` to filter all possible child classes
2017-08-18 21:35:54 +02:00
Marco Pivetta
a426808a16
Merge branch 'fix/#6633-#3788-avoid-xml-external-entity-loading-errors-in-xml-mapping-driver'
...
Close #6633
Close #3788
2017-08-18 21:12:37 +02:00
Marco Pivetta
492fb50744
#6633 #3788 documenting why simplexml_load_file() was not used
2017-08-18 21:08:14 +02:00
Alessandro Lai
c799c6da8b
Add new functional test to check usage of INSTANCEOF with multiple parameters
2017-08-18 14:49:56 +02:00
Aljosha Papsch
eb762dea23
XmlDriver: Avoid PHP bug #62577 by avoiding simplexml_load_file.
...
Doctrine is affected by PHP bug #62577 . simplexml_load_file is not
able to load files if libxml_disable_entity_loader(true) has been
called. simplexml_load_file fails with the message:
I/O warning : failed to load external entity "/my/mappings/my_entity.dcm.xml"
in /path-to/lib/Doctrine/ORM/Mapping/Driver/XmlDriver.php on line 711
This error occurs even if there are no external entities in the XML file.
Waiting for the PHP bug to be resolved is infeasible, because it is
unresolved since years. Therefore Doctrine needs to circumvent the bug
by replacing simplexml_load_file with simplexml_load_string while getting
the file contents itself. simplexml_load_string is not affected by the
PHP bug.
2017-08-18 14:23:43 +02:00
Alessandro Lai
19bc4991ae
Add more CS fixes
2017-08-18 12:35:51 +02:00
Alessandro Lai
9864a5a9b9
Add unit test for HierarchyDiscriminatorResolverTest
2017-08-18 12:11:09 +02:00
Alessandro Lai
5224a89549
Apply various and CS fixes as per review
2017-08-18 11:02:28 +02:00
Alessandro Lai
d4db126bb0
Remove code duplication of the getAllDiscriminators method
2017-08-18 10:17:52 +02:00
Marco Pivetta
60e29b40a0
Merge branch 'fix/#5579-fix-performance-of-single-entity-flush-with-notify-tracking-policy'
...
Close #5579
2017-08-18 09:30:43 +02:00
Marco Pivetta
496c22db0e
#5579 completely removing a changeset when cleaning up
2017-08-18 09:27:47 +02:00
Marco Pivetta
1bf8465f43
#5579 correcting assertion static/instance method usage
2017-08-18 09:25:47 +02:00
Marco Pivetta
ff15a2bc79
#5579 correcting visibility of clearEntityChangeSet, which should be reverted to public
2017-08-18 09:23:28 +02:00
Marco Pivetta
9d7be0f927
#5579 s/clear/cleanup
2017-08-18 09:22:23 +02:00
Marco Pivetta
2921f068b7
#5579 cleaning up postCommitClear implementation
2017-08-18 09:21:53 +02:00
Marco Pivetta
9707701d10
#5579 isolating multi-entity-commit and single-entity-commit scenarios for the tracking policy changeset clearing
2017-08-18 09:15:48 +02:00
Marco Pivetta
df1577db0c
#5579 cleaning up test case, adding assertions critical to the understanding of the code
2017-08-18 09:13:56 +02:00
xhuberty
866a424963
Fix issue when using notify tracking policy with multiple flush on entity
2017-08-18 09:07:40 +02:00
Greg Bell
74c83f3cec
Fix format and content as-per discussion in PR
2017-08-18 15:20:17 +10:00
Marco Pivetta
5770459bfc
#6441 moving expected exception annotations into explicit method calls
2017-08-18 04:44:17 +02:00
Marco Pivetta
94640aca88
Merge pull request #6441 from sensorario/remove-loosely-comparison
...
Verify that the `fileLockRegionDirectory` passed to the `DefaultCacheFactory` cannot be empty
2017-08-18 04:38:20 +02:00
Marco Pivetta
fda770700a
Merge pull request #6579 from Nek-/patch-1
...
Add string type as possible parameter for between
2017-08-18 04:33:04 +02:00
Marco Pivetta
da109c36b7
Merge pull request #6630 from doctrine/fix/remove-reliance-on-yaml-deprecated-constants
...
Remove reliance on Symfony\Component\Yaml deprecated constants
2017-08-16 20:52:18 +02:00
Marco Pivetta
40515472c1
Bumping ORM YAML dependency to 3.4+, explicitly forbidding compatibility with older YAML component versions
2017-08-16 20:21:26 +02:00
Marco Pivetta
bb994b9e70
Removing reference to deprecated YAML component constant that is ignored after symfony 3.4
2017-08-16 20:20:22 +02:00
Marco Pivetta
76e2155fb3
Merge branch 'feature/#6593-#5864-export-metadata-should-contain-entity-listeners'
...
Close #6593
Close #5864
ge aborts
2017-08-16 19:58:23 +02:00
Marco Pivetta
894490c2a0
#6593 #5864 removing incorrect null return value in API marked as string
2017-08-16 19:57:26 +02:00
Marco Pivetta
e1acba3ae4
#6593 #5864 reverted all public/protected API parameter and return type changes
...
That's still to be considered a BC break, since child classes are broken if incompatible.
Sorry @tPl0ch :-(
2017-08-16 19:53:32 +02:00
Marco Pivetta
9005c5afdd
Merge branch 'fix/#6626-skip-proxy-generation-for-embeddable-classes'
...
Close #6626
Close #6625
2017-08-16 15:23:46 +02:00
Marco Pivetta
71218b66b9
#6626 #6625 minor CS fixes (removed useless assignments)
2017-08-16 15:23:20 +02:00
Issei.M
0bc91f8733
Replace double quote with single quote
2017-08-16 15:23:20 +02:00
Issei.M
de6d932e8c
Fix CS / Add annotation
2017-08-16 15:23:20 +02:00
Issei.M
9e837dc53c
Skip embeddable classes proxy generation
2017-08-16 15:23:20 +02:00
Marco Pivetta
57a9509dec
Merge branch 'fix/#6623-#1515-ensure-abstracthydrator-hydrateall-cleans-up-on-unit-of-work-clear'
...
Close #6623
2017-08-16 15:10:38 +02:00
Marco Pivetta
ff3c89d8b1
#6623 minor code cleanups (removing useless assignments, array callback syntax)
2017-08-16 15:10:27 +02:00
Marco Pivetta
7024926f10
#6623 splitting test scenario into two bits
2017-08-16 15:07:48 +02:00
Thomas Ploch
e4006e533c
[FX] Use single quotes for XML root in XmlExporter
2017-08-16 12:26:33 +02:00
Thomas Ploch
b1e091b0e1
[FX] Looking up PHP internal functions from the root namespace is faster
2017-08-16 12:25:31 +02:00
Thomas Ploch
599865528e
[CS] Remove obsolete doc blocks #2
2017-08-16 12:24:37 +02:00
Thomas Ploch
fe88422e68
[CS] Remove obsolete doc blocks
2017-08-16 12:24:00 +02:00
Thomas Ploch
741819f060
Revert "Minor coding style fixes and more docblock removal"
...
This reverts commit ec3eed68ca .
2017-08-15 10:28:43 +02:00
Thomas Ploch
ec3eed68ca
Minor coding style fixes and more docblock removal
2017-08-15 10:17:20 +02:00
Thomas Ploch
b7ae5b4afb
Entity listeners are now processed by exporters
...
The current implementation of the exporters are not taking the entity
listeners into account. I have added test cases for most of the edge
cases I could think of and implemented the Exporter handling.
This PR originates from https://github.com/doctrine/doctrine2/pull/5864 ,
I was overwhelmed by the amount of conflicts I had to resolve so I
started anew on a clean master HEAD.
Squashed commits:
- Code review aftermath
- Add even more return type declarations
- Added `return null` to methods declared with nullable return types
- Removed unneeded docblocks when types are self-explanatory
2017-08-15 10:08:50 +02:00
Nikolas Tsiongas
f0ed4e87b5
fix AbstractHydrator addEventListener on hydrateAll()
...
# Conflicts:
# tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3146Test.php
2017-08-14 00:45:50 +02:00
Marco Pivetta
a0c0d3bf2a
Revert "Merge branch 'fix/#6499-#6533-fix-commit-order-calculation-consider-all-join-column-fields'"
...
This reverts commit 2a58645cb5 , reversing
changes made to 6d428c90e2 .
2017-08-11 22:29:45 +02:00
Marco Pivetta
2a58645cb5
Merge branch 'fix/#6499-#6533-fix-commit-order-calculation-consider-all-join-column-fields'
...
Close #6499
Close #6533
2017-08-11 22:17:02 +02:00
Marco Pivetta
1ede3c514f
#6499 #6533 simplifying nullable column check - null coalesce operator makes it *SOMEWHAT* more readable (no miracles)
2017-08-11 22:13:20 +02:00
Marco Pivetta
166c5816b6
#6499 #6533 calibrating test so that the association is populated after persistence in some edge cases
2017-08-11 22:10:02 +02:00
Marco Pivetta
25829ea450
#6499 #6533 simplifying test scenario to the bone, adding description of what happened at persistence-level
2017-08-11 22:05:00 +02:00
Marco Pivetta
ebd521c56e
#6499 #6533 minor CS fixes in the test
2017-08-11 21:55:02 +02:00
Marco Pivetta
b352cd3e22
#6499 #6533 minor CS fixes in the test
2017-08-11 21:54:30 +02:00
Gabe van der Weijde
da3cd04993
-- Transformed into a minimal example.
...
-- Processed Ocramius' feedback.
2017-08-11 21:51:17 +02:00
Gabe van der Weijde
db2530d6fd
-- Proposed fix due to logic error.
2017-08-11 21:51:17 +02:00
Gabe van der Weijde
16a14f2238
-- Created test for validation issue #6499 .
2017-08-11 21:51:17 +02:00
Marco Pivetta
6d428c90e2
Merge branch 'fix/#6464-#6475-correct-SQL-generated-with-JTI-and-WITH-condition'
...
Close #6464
Close #6475
2017-08-11 21:45:34 +02:00
Marco Pivetta
9ad91ddc1c
#6464 #6475 using PHP 7.1 void and string return hints where available
2017-08-11 21:45:23 +02:00
Marco Pivetta
91a5091612
#6464 #6475 cleaning up test - removed invalid fetch join, CS
2017-08-11 21:39:13 +02:00
Stefan Siegl
025ed1147b
#6464 code review updates
2017-08-11 21:36:33 +02:00
Stefan Siegl
99fdbf550d
generate nested join sql for CTIs, closes #6464
2017-08-11 21:36:33 +02:00
Stefan Siegl
55882ca7a6
#6464 add test
2017-08-11 21:36:33 +02:00
Marco Pivetta
633c8461c8
Merge branch 'fix/#6614-clean-modified-collection-causing-double-dirty-object-persistence'
...
Close #6613
Close #6614
Close #6616
2017-08-11 21:29:16 +02:00
Marco Pivetta
352b3ba6f6
#6613 #6614 #6616 adding void return type to newly introduced test methods
2017-08-11 21:28:18 +02:00
Marco Pivetta
c2dd274c42
#6613 #6614 #6616 adding void return type
2017-08-11 21:27:09 +02:00
Marco Pivetta
004ac51869
#6613 #6614 #6616 minor performance optimisations around the new restoreNewObjectsInDirtyCollection implementation
2017-08-11 21:14:05 +02:00
Marco Pivetta
3579997531
#6613 #6614 #6616 removing DDC6613 test, which was fully ported to unit tests
2017-08-11 21:11:31 +02:00
Marco Pivetta
a2ca6bbfaf
#6613 #6614 #6616 ensuring that the collection is marked as non-dirty if all new items are contained in the initialized ones
2017-08-11 21:09:34 +02:00
Andreas Braun
1174ec6e8a
Add failing test for dirty flag
2017-08-11 20:39:03 +02:00
Marco Pivetta
b064fe3d86
#6613 #6614 #6616 removing repeated PersistentCollectionTest chunks of code
2017-08-11 19:08:24 +02:00
Marco Pivetta
93c4064679
#6613 #6614 #6616 initializing a dirty collection that has new items that are also coming from initialization data de-duplicates new and persisted items
2017-08-11 19:02:39 +02:00
Marco Pivetta
04a5b122b0
#6613 #6614 #6616 moved integration test basics to a unit test that verifies basic dirty collection initialization semantics
2017-08-11 18:58:05 +02:00
Marco Pivetta
345cf1acf8
#6613 #6614 correcting broken test that isn't using objects against a PersistentCollection
2017-08-11 15:15:57 +02:00
Marco Pivetta
031e79e726
#6613 #6614 correcting broken test that isn't using objects against a PersistentCollection
2017-08-11 15:14:42 +02:00
Marco Pivetta
d44e6e1a9e
#6613 #6614 ensuring that only newly added items that weren't loaded are restored in the dirty state of the collection
2017-08-11 15:13:39 +02:00
Marco Pivetta
1fc7f81741
#6613 #6614 after initialization, the collection should be dirty anyway
2017-08-11 14:47:51 +02:00
Marco Pivetta
5e2257db04
#6613 #6614 adding assertions about collection initialization and dirty status
2017-08-11 14:46:11 +02:00
Marco Pivetta
d2c9b22397
#6613 #6614 removing IDE-generated header
2017-08-11 14:44:28 +02:00
Marco Pivetta
8c4b5a4b71
#6613 #6614 removing phone/user specifics, using ORM naming for associations
2017-08-11 14:44:04 +02:00
Marco Pivetta
80f12ed490
#6613 #6614 correcting column mapping (was integer, should be string), segregating phone creation away
2017-08-11 14:41:32 +02:00
Marco Pivetta
a4e547b691
#6613 #6614 remove superfluous mappings
2017-08-11 14:34:35 +02:00
Marco Pivetta
eca1d6b3ea
#6613 #6614 rewrote test logic to be less magic-constant-dependent
2017-08-11 14:27:34 +02:00
Marco Pivetta
c195064ba4
#6613 #6614 CS - applying @group annotation to the test
2017-08-11 14:23:21 +02:00
Marco Pivetta
625f792290
#6613 #6614 removing dedicated DDC6613 model directory
2017-08-11 14:22:31 +02:00
Marco Pivetta
112a402016
#6613 #6614 smashing entity definitions into the test
2017-08-11 14:21:56 +02:00
Marco Pivetta
0a1a84163e
#6613 #6614 better test specification - removing useless assertions
2017-08-11 14:20:07 +02:00
Marco Pivetta
594e60d3f7
#6613 #6614 simplifying entity definition - using auto-assigned string identifiers to reduce moving parts
2017-08-11 14:19:01 +02:00
Uladzimir Struts
874d60d8c7
It added the unit test #6613
2017-08-11 13:46:21 +03:00
Marco Pivetta
bbe005837e
Merge pull request #6607 from lcobucci/be-strict-with-risky-tests
...
Be strict with risky tests
2017-08-06 14:40:16 +02:00
Luís Cobucci
b960170fe1
Move test to the right place and add assertions
...
That test was removed from "performance" group but we forgot to move it
to the correct namespace.
It was also not doing any assertion, which is quite bad.
More info:
- https://github.com/doctrine/doctrine2/issues/3333
2017-08-06 12:51:58 +02:00
Luís Cobucci
27300bf4af
Make PHPUnit strict about risky tests
2017-08-06 12:51:16 +02:00
Luís Cobucci
aa13e49fdf
Merge pull request #6606 from lcobucci/add-exception-msg
...
Add message to NonUniqueResultException
2017-08-06 12:28:58 +02:00
Jean Carlo Machado
c2167664fc
add test of NonUniqueResultException message presence
2017-08-06 12:08:57 +02:00
Alfredo Costa
8952176c73
Add message to NonUniqueResultException
2017-08-06 12:07:47 +02:00
Marco Pivetta
2b8acb9907
Merge pull request #6601 from martin-georgiev/master
...
Fix double spacing in "cascade persist missing" exception message
2017-08-03 21:36:58 +02:00
Martin Georgiev
30088fe529
Fix double spacing in exception's message
2017-08-03 11:52:06 +01:00
Marco Pivetta
6744b48bc2
Merge pull request #6598 from mikeSimonson/xml-dtd-improvements2
...
More refinement of the xml dtd
2017-08-02 23:30:52 +02:00
mike
a54a258866
More refinement of the xml dtd
2017-08-02 22:58:05 +02:00
Marco Pivetta
97914c0f3e
Merge pull request #6588 from reypm/master
...
Updating docs to support for APCu as a cache driver
2017-07-31 17:00:36 +02:00
reypm
40ee7af9c8
Fixing issue in APC driver
2017-07-30 15:31:42 -04:00
reypm
0c30bab776
Adding extra tilde and updating APC references to APCu (APC is deprecated as per http://php.net/manual/en/intro.apc.php )
2017-07-30 14:40:19 -04:00
reypm
5d8dc1757f
Updating docs to support for APCu as a cache driver
2017-07-30 12:51:39 -04:00
Marco Pivetta
8149a1dd83
Merge pull request #6581 from Majkl578/travis-stages
...
Travis enhancements: Use Build Stages, added PHP 7.2
2017-07-25 04:44:41 +02:00
Michael Moravec
dbb0cdea51
Travis enhancements: Use Build Stages, added PHP 7.2
2017-07-25 03:54:04 +02:00
Maxime Veber
03d33ec900
Add string type as possible parameter for between
...
People may want to enter a date, or simply the parameter name. Linter may report an error while it's a good usage.
2017-07-24 14:23:16 +02:00
Luís Cobucci
84079572f7
Merge pull request #6575 from lcobucci/improvement/move-performance-tests-to-phpbench
...
Move performance tests to phpbench
2017-07-23 10:46:26 +02:00
Luís Cobucci
e07c90df44
Add PHPBench to Travis-CI matrix
...
Also separating the execution of the tests from other tools.
2017-07-23 10:30:19 +02:00
Marco Pivetta
cfa9d787fe
Removing old ProxyPerformanceTest
2017-07-23 10:16:51 +02:00
Marco Pivetta
f1bc1bbf12
Mocks required by the proxy performance benchmarks
2017-07-23 10:16:50 +02:00
Marco Pivetta
d8140d700a
Benchmarking proxy initialization logic
2017-07-23 10:16:49 +02:00
Marco Pivetta
d658364b59
Benchmarking instantiation of proxies
2017-07-23 10:16:48 +02:00
Marco Pivetta
77ce354f18
Removing old UnitOfWorkPerformanceTest
2017-07-23 10:16:47 +02:00
Marco Pivetta
b1bbad3b15
Unit of work changeset computation test
2017-07-23 10:16:46 +02:00
Marco Pivetta
7515dd20f2
Removing old PersisterPerformanceTest
2017-07-23 10:16:45 +02:00
Marco Pivetta
8ec186f095
Removing old inheritance persister test
2017-07-23 10:16:44 +02:00
Marco Pivetta
52402917a0
Benchmarking hydration of a STI
2017-07-23 10:16:43 +02:00
Marco Pivetta
c5a636ebfb
Corrected benchmark name: benchmark affects a STI
2017-07-23 10:16:42 +02:00
Marco Pivetta
2692435705
Benchmarking insert operations for a JTI
2017-07-23 10:16:41 +02:00
Marco Pivetta
29f55eaef9
Removing instantiation overhead from benchmark
2017-07-23 10:16:40 +02:00
Marco Pivetta
5401cb5329
Removed old InsertPerformanceTest (moved to benchmark)
2017-07-23 10:16:39 +02:00
Marco Pivetta
d51235f200
Removing useless imports
2017-07-23 10:16:37 +02:00
Marco Pivetta
cbb0c1bd04
Corrected class name - needs to end with Bench
2017-07-23 10:16:36 +02:00
Marco Pivetta
ef0edc8929
Benchmarking simple insert operations (batched)
2017-07-23 10:16:35 +02:00
Marco Pivetta
fd27b22ad1
Removing old HydrationPerformanceTest
2017-07-23 10:16:34 +02:00
Marco Pivetta
93dc028194
Benchmarking full object hydration with fetch joins and mixed values
2017-07-23 10:16:33 +02:00
Marco Pivetta
608b3ed6a4
Benchmarking mixed fetch-join with partial hydration
2017-07-23 10:16:32 +02:00
Marco Pivetta
131aac531a
Removing unused $entityManager variable
2017-07-23 10:16:31 +02:00
Marco Pivetta
1e16cb83f8
Full object hydration benchmark
2017-07-23 10:16:30 +02:00
Marco Pivetta
97735cdb68
Partial hydration bench
2017-07-23 10:16:29 +02:00
Marco Pivetta
f23359c1f3
Renaming bench methods, for clarity
2017-07-23 10:16:28 +02:00
Marco Pivetta
0fdcc71887
CS (alignment)
2017-07-23 10:16:27 +02:00
Marco Pivetta
8774b02c88
Testing mixed array hydration (with scalars and fetch-joined results)
2017-07-23 10:16:26 +02:00
Marco Pivetta
d8ddc47f83
Array hydration benchmark
2017-07-23 10:16:25 +02:00
Marco Pivetta
88ea1d33fa
Full hydration + query benchmark
2017-07-23 10:16:24 +02:00
Marco Pivetta
f95c81b210
Simple array hydration benchmark
2017-07-23 10:16:23 +02:00
Marco Pivetta
94adf97550
Factory used to create a new entity manager
2017-07-23 10:16:22 +02:00
Marco Pivetta
37cb2c0722
Benchmark autoloading definitions
2017-07-23 10:16:20 +02:00
Marco Pivetta
25669c51b6
PHPBench base config
2017-07-23 10:16:17 +02:00
Marco Pivetta
c8a41598c9
Not a performance test
2017-07-23 10:16:04 +02:00
Luís Cobucci
9826d9c29a
Merge pull request #6485 from elt/versionWithCustomTypePrimaryKey
...
#5804 Versioning doesn't work with a custom type primary key
2017-07-22 23:29:12 +02:00
Luís Cobucci
6bf9f6f72f
Remove unnecessary annotation from test
2017-07-22 22:41:07 +02:00
Luís Cobucci
eba8fec1fb
Move identifier types extraction to a method
2017-07-22 22:39:47 +02:00
Alessandro Frangioni
60a2628f9d
Iteration simplified
2017-07-22 22:26:31 +02:00
Alessandro Frangioni
82c87081b4
Changed SQL declaration for custom type
2017-07-22 22:26:31 +02:00
Alessandro Frangioni
f6907b9503
Applied patches as for #6496
2017-07-22 22:26:31 +02:00
Alessandro Frangioni
4ef0a238bf
Inferring id's field types
2017-07-22 22:26:31 +02:00
Alessandro Frangioni
af3591fbca
Fixes #5804
2017-07-22 22:26:31 +02:00
Marco Pivetta
1d8c7f9bac
Merge pull request #6556 from lcobucci/fix/command-list
...
Update ConsoleRunner's command list
2017-07-22 22:19:57 +02:00
Luís Cobucci
5109322f7d
Make explicit the design decisions of ConsoleRunner
2017-07-22 21:56:59 +02:00
Luís Cobucci
d4b94e097a
Ensure that ConsoleRunner has the right command list
2017-07-22 21:56:56 +02:00
Luís Cobucci
2b824ea9df
Update ConsoleRunner command list
...
Adding L2C commands and DBAL reserved words command.
2017-07-22 21:56:42 +02:00
Marco Pivetta
2fb3cfdba2
Merge pull request #6143 from chihiro-adachi/patch-1
...
fixed #5622 - mysql 5.7 ONLY_FULL_GROUP_BY
2017-07-22 21:41:51 +02:00
Luís Cobucci
5389ad7261
Make LimitSubqueryOutputWalker a bit more readable
...
Also simplifying the REGEX to remove the ORDER BY type (ASC/DESC) with a
substr() since OrderByItem#type is always defined.
2017-07-22 20:34:18 +02:00
Luís Cobucci
3d5acd607b
Bump up doctrine/instantiator version
2017-07-22 19:30:47 +02:00
Luís Cobucci
4a736f48f8
Add MySQL 5.7 to Travis configuration
...
Following the same setup of doctrine/dbal#2764 .
2017-07-22 19:28:29 +02:00
chihiro-adachi
60601a9323
fix query and tests
2017-07-22 19:28:28 +02:00
Martin Kirilov
854ff17ab9
Should fix MySQL 5.7 issues caused by ONLY_FULL_GROUP_BY
...
Should fix MySQL 5.7 issues caused by ONLY_FULL_GROUP_BY
2017-07-22 19:28:28 +02:00
Greg Bell
624af3df22
Add note clarifying WHERE, WITH and HAVING
...
- A per Ocramius' explanation in #6563
2017-07-22 17:40:56 +10:00
Greg Bell
80573038ed
Add additional detail and clarifications on SELECT
...
- Also the effect of WHERE on result array.
2017-07-22 17:28:48 +10:00
Marco Pivetta
668ad4cc29
Merge pull request #6550 from alcaeus/fix-persistent-collection-return
...
Fix return value of removeElement for extra lazy collections
2017-07-22 09:26:15 +02:00
Marco Pivetta
fb3ec7648d
Merge pull request #6569 from stoccc/patch-1
...
Added a test case for postLoad on fetch-joined entities - fetch joined entities should have lifecycle events fired as well
2017-07-21 18:30:38 +02:00
Luís Cobucci
39572a8b6e
Merge pull request #6570 from stloyd/patch-1
...
Prevent Travis-CI failure if xdebug is not available
2017-07-21 11:19:30 +02:00
Joseph Bielawski
247fb6ef0d
Prevent Travis-CI failure if xdebug is not available
2017-07-21 11:03:05 +02:00
stoccc
17892bb327
added named parameter and LifecycleCallbackCascader::getId()
2017-07-21 10:47:32 +02:00
stoccc
c47cf1de34
Added a test case for postLoad on fetch-joined entities
...
see https://github.com/doctrine/doctrine2/issues/6568
2017-07-21 10:33:28 +02:00
Marco Pivetta
63519be69c
Merge pull request #6562 from bitwombat/doc_changes
...
Make minor English fixes.
2017-07-21 02:15:19 +02:00
Greg Bell
34c25a3ee3
Make minor English fixes.
...
- Remove the apparently dangling text at the bottom of
reference/query-builder.rst
2017-07-19 11:14:46 +10:00
Andreas Braun
45e1817f6f
Add test for removing element not in collection
2017-07-13 16:39:06 +02:00
Andreas Braun
260cc6e3e0
Fix return of removeElement on collections
...
Fixes #5745
2017-07-13 08:16:00 +02:00
Marco Pivetta
e3ecec36ad
Merge pull request #6545 from Landerstraeten/patch-1
...
Fix newline in annotation example in documentation
2017-07-12 08:23:18 +02:00
Lander Vanderstraeten
c678577f8f
Fix newline
2017-07-11 13:18:52 +02:00
Luís Cobucci
c32ba8f5d1
Merge pull request #6535 from Majkl578/phpstan
...
[master] PHPStan integration - levels 0 + 1
2017-07-07 10:36:08 +02:00
Michael Moravec
74c48c201d
Push PHPStan to level 1
2017-06-30 00:27:50 +02:00
Ondrej Mirtes
1231861b09
Initial PHPStan integration (level 0)
2017-06-30 00:27:49 +02:00
Alessandro Lai
c7ef9085fb
Merge additional fix (and master changes) from taueres/fix-instance-of-subclasses
2017-06-26 09:45:44 +02:00
Sergio Santoro
e91dcf8fb4
Fix discriminator resolution when using parameters
2017-06-24 13:35:44 +02:00
Alessandro Lai
b1f7c59ed5
Adding a failing test case for parameter binding using metadata with INSTANCE OF
2017-06-24 10:58:18 +02:00
Alessandro Lai
2fd8752818
Simplify stubs used in tests
2017-06-24 10:58:18 +02:00
Alessandro Lai
d2f7514248
Put all tests classes in a single namespace
2017-06-24 10:58:18 +02:00
Alessandro Lai
167dfde00f
Apply additional fixes to the SqlWalker to fix tests
2017-06-24 10:58:18 +02:00
Alessandro Lai
5181eae8d6
Refactor a bit the SqlWalker modifications
2017-06-24 10:58:18 +02:00
Alessandro Lai
31d2d84160
Fix test
2017-06-24 10:58:18 +02:00
Alessandro Lai
bd47ec95a1
Move tests to ticket namespace (and rename them)
2017-06-24 10:58:18 +02:00
Alessandro Lai
0e88f1b654
Split SqlWalker::walkInstanceOfExpression method
2017-06-24 10:58:18 +02:00
Alessandro Lai
aa233f8e57
Fix small CS issues as per review
2017-06-24 10:58:18 +02:00
Alessandro Lai
04acde667a
Fix as per review
2017-06-24 10:58:18 +02:00
Sergio Santoro
7d98135084
[QUERY] "INSTANCE OF" now behaves correctly with subclasses
...
There was a bug in the "INSTANCE OF" operator as described in
https://groups.google.com/forum/#!topic/doctrine-user/B8raq8CNMgg
"INSTANCE OF" was not taking into account subclasses.
It was merely translating the class to its discriminator.
This is not correct since the class can have subtypes and those
are, indeed, still instance of the superclass.
Also, classes may not have a discriminator (e.g. abstract classes).
This commit also provides useful tests to avoid regression.
2017-06-24 10:58:18 +02:00
Marco Pivetta
388afb46d0
Merge pull request #6245 from lcobucci/l2c-use-getMultiple
...
Use `getMultiple()` to fetch associations as well in L2 cache fetch operations
2017-06-24 09:17:55 +02:00
Marco Pivetta
5d98247178
Merge pull request #5756 from whyte624/master
...
s/__tostring()/__toString() in Expr\OrderBy
2017-06-24 04:12:55 +02:00
Marco Pivetta
b66dd0b6fa
Merge pull request #5787 from iBet7o/patch-doc
...
Fix bug: orderBy documentation
2017-06-24 04:05:41 +02:00
Marco Pivetta
807f1422a3
Merge branch 'fix/#1515-clean-hydrator-listeners-on-hydration-end'
...
Close #1515
2017-06-24 03:41:00 +02:00
Marco Pivetta
995054d884
#1515 dropping DDC-3146 test, which was moved to the hydration tests
2017-06-24 03:40:46 +02:00
Marco Pivetta
0b5d877d5f
Migrating #1515 tests to AbstractHydratorTest
2017-06-24 03:40:12 +02:00
Marco Pivetta
067e01e0d7
#1515 cleaning up test case, since the PHPUnit 5.4+ API is much nicer
2017-06-24 03:32:58 +02:00
Marco Pivetta
aba486ea2d
#1515 removing redundant assignment, short array notation
2017-06-24 03:27:12 +02:00
Emiel Nijpels
9eb2d6139e
DDC-3146 remove event listener from event listener in abstract hydrator in cleanup function
2017-06-24 03:22:12 +02:00
Marco Pivetta
41bcdb3268
Merge pull request #6494 from astepin/gh-6356
...
Add failing test for #6314 and PR #6356
2017-06-23 12:54:29 +02:00
Marco Pivetta
95b30c1d40
Merge pull request #6515 from lcobucci/use-updated-environment
...
Use the Travis' Trusty build environment
2017-06-23 11:33:15 +02:00
Luís Cobucci
21ad7a1913
Create schema based on config file (on MySQL & MariaDB)
2017-06-23 11:21:36 +02:00
Alessandro Lai
d4cdc6e1fe
Adding a failing test case for parameter binding using metadata with INSTANCE OF
2017-06-22 09:50:53 +02:00
Marco Pivetta
af1ea1ae1d
Merge pull request #5623 from Jean85/patch-1
...
[DOCUMENTATION] Update tests README
2017-06-22 08:03:42 +02:00
Marco Pivetta
379acd9dfd
Merge pull request #5734 from amerryma/master
...
Update tools.rst
2017-06-22 08:02:40 +02:00
Luís Cobucci
e8332a45de
Use the Travis' Trusty build environment
...
To see if that solves the XML validation issues (since the issues are
possibly happening due to old libxml versions).
2017-06-22 08:01:13 +02:00
Luís Cobucci
3df6b7316b
Merge pull request #6243 from enumag/patch-3
...
Fix CountOutputWalker for queries with GROUP BY
2017-06-22 07:16:38 +02:00
Jáchym Toušek
fc609271e0
Fix CountOutputWalker for queries with GROUP BY
2017-06-22 07:09:20 +02:00
Alessandro Lai
ba69cc8f7a
Simplify stubs used in tests
2017-06-21 13:25:31 +02:00
Alessandro Lai
8b9c29738d
Put all tests classes in a single namespace
2017-06-21 10:26:31 +02:00
Alessandro Lai
11c54b7715
Apply additional fixes to the SqlWalker to fix tests
2017-06-21 10:11:31 +02:00
Alessandro Lai
30256e7a08
Refactor a bit the SqlWalker modifications
2017-06-21 09:34:16 +02:00
Marco Pivetta
b925cce6c4
Merge branch 'docs/#5677-upgrade-getting-started-documentation'
...
Close #5677
2017-06-21 08:29:31 +02:00
NateC
b446afd937
Updating the Getting Started guide's documentation
2017-06-21 08:29:20 +02:00
Marco Pivetta
9cfdf1ef81
#6325 documenting minor BC break introduced by adding a required parameter to the exception named constructor
2017-06-21 08:20:20 +02:00
Marco Pivetta
9b9128ae77
Merge branch 'improvement/#6325-improve-dql-exception-message-for-single-valued-inverse-association-path'
...
Close #6325
2017-06-21 08:16:49 +02:00
Marco Pivetta
b21cb3e2a0
#6325 adding IDE hints, type hints, replacing double quotes with single quotes
2017-06-21 08:16:24 +02:00
Tomasz Darmetko
633a442046
Add path expresion to QueryException::associationPathInverseSideNotSupported()
2017-06-21 08:12:04 +02:00
Marco Pivetta
33cee11e6f
Merge pull request #6389 from mikeSimonson/xml-dtd-improvements
...
XSD definition improvements
2017-06-21 08:08:14 +02:00
Marco Pivetta
98aa25b0ea
Merge branch 'fix/#5798-undefined-schema-tool-index'
...
Close #5798
2017-06-21 06:34:57 +02:00
Marco Pivetta
6e9c1d8a4b
#5798 adding void test method return declaration, using ::class reference over string reference
2017-06-21 06:34:45 +02:00
Sergey Fedotov
d13327eca2
Fix undefined index for discriminator column in SchemaTool
2017-06-21 06:27:15 +02:00
Marco Pivetta
fe8259a094
Merge branch 'fix/#5715-fix-metadata-filtering-in-cli-tools'
...
Close #5715
2017-06-21 06:21:52 +02:00
Marco Pivetta
01d226aff0
#5715 removed superfluous mapping information
2017-06-21 06:21:22 +02:00
Marco Pivetta
29fe76cced
#5715 short array notation
2017-06-21 06:20:30 +02:00
Marco Pivetta
2ce40a6aeb
#5715 s/CLASSNAME/class
2017-06-21 06:18:24 +02:00
Marco Pivetta
f0e403211b
#5715 adding return hints \(void\) to test methods
2017-06-21 06:17:18 +02:00
Guilliam Xavier
a9cc522e8a
Add regex tests for MetadataFilter (PR #507 )
2017-06-21 06:14:01 +02:00
Guilliam Xavier
1afa8a915d
Add more basic tests for MetadataFilter
2017-06-21 06:14:01 +02:00
Guilliam Xavier
87e9879edd
Fix MetadataFilter not testing filters after first
2017-06-21 06:14:01 +02:00
Guilliam Xavier
652358a4de
Add failing test for #5715 (unit test for MetadataFilter)
2017-06-21 06:14:01 +02:00
Marco Pivetta
07a9b10f36
Merge branch 'fix/#6168-#6167-force-nextval-selection-on-the-master-server'
...
Close #6167
Close #6168
2017-06-21 06:04:34 +02:00
Marco Pivetta
a97c2659fc
#6167 #6168 rewrote SequenceGeneratorTest for better readability and error messages
2017-06-21 06:04:06 +02:00
Marco Pivetta
462481ebbe
#6167 #6168 - better connection mock documentation/docblocks/return-types
2017-06-21 05:47:19 +02:00
Marco Pivetta
d2be4a2b48
#6167 #6168 - clarifying on the reasoning why query is used instead of fetchColumn
2017-06-21 05:44:58 +02:00
Michał Kurzeja
571115cf18
#6167 Code review updates, better readability
2017-06-21 05:42:26 +02:00
Michał Kurzeja
71b040c849
#6167 - tests - throw exception if wrong method used to get sequence nextval
2017-06-21 05:42:26 +02:00
Michał Kurzeja
edffb4d449
#6167 - fixed tests and added info why query is used in SequenceGenerator
2017-06-21 05:42:26 +02:00
Michał Kurzeja
60b6073643
Fixes #6167 - nextval issue on master-slave PostgreSQL setup
2017-06-21 05:42:26 +02:00
Marco Pivetta
1e3bf6562e
Merge branch 'feature/#6162-report-that-subqueries-are-not-allowed-in-from-and-join'
...
Close #6162
2017-06-21 05:39:01 +02:00
Marco Pivetta
3260d220e8
#6162 adding @group annotation, spacing
2017-06-21 05:38:42 +02:00
Marco Pivetta
a7dcdd8d48
Documenting thrown exception type, spacing #6162
2017-06-21 05:36:13 +02:00
SimonHeimberg
1dbc67cce1
Tests for Subqueries set expectations directly before their occurrence
2017-06-21 05:34:12 +02:00
SimonHeimberg
5b6d766961
Tests for not supported Subqueries in FROM and JOIN
2017-06-21 05:33:28 +02:00
SimonHeimberg
f5d4db7d9c
Report that FROM and JOIN do not support Subqueries
2017-06-21 05:31:25 +02:00
Marco Pivetta
7523513be5
Merge pull request #6511 from lcobucci/make-scrutinizer-more-strict
...
Define build failure conditions on scrutinizer
2017-06-20 17:34:46 +02:00
Luís Cobucci
aa9f34b600
Configure build failure conditions
...
So that contributors receive some automated feedback in case maintainers
are not fast enough.
2017-06-20 14:06:40 +02:00
Luís Cobucci
1bdc61f932
Remove tools that are not supported anymore
2017-06-20 09:43:43 +02:00
Marco Pivetta
93f617536b
Merge pull request #6501 from mpdude/patch-1
...
Clarify the impact of changing the fetch mode
2017-06-20 07:31:36 +02:00
Marco Pivetta
256091282e
Merge pull request #6500 from SamKnows/feature/override-aggregate-functions
...
Allow internal functions to be overridden.
2017-06-20 07:29:51 +02:00
Mathew Davies
747c1857d6
Make the new aggregate function definitions final.
2017-06-20 07:27:32 +02:00
Mathew Davies
05758f4564
Documented changes in UPGRADE.md
2017-06-20 07:27:30 +02:00
Mathew Davies
49e4b1004c
Update LimitSubqueryOutputWalkerTest
2017-06-20 07:27:29 +02:00
Mathew Davies
3e3751cfd9
Remove aggregate function conditional in SqlWalker.
2017-06-20 07:27:27 +02:00
Mathew Davies
966f9a84c2
phpDoc and type hint changes.
2017-06-20 07:27:26 +02:00
Mathew Davies
e4847534a4
Remove @throws in Configuration where necessary.
2017-06-20 07:27:25 +02:00
Mathew Davies
866418e40f
No longer treat aggregate functions as a special case.
2017-06-20 07:27:24 +02:00
Mathew Davies
e4ff7a35a8
Write a test case for a custom function override.
2017-06-20 07:27:22 +02:00
Mathew Davies
914c400a7d
Check for custom functions first.
2017-06-20 07:27:20 +02:00
Marco Pivetta
e80cd74c3e
Merge pull request #6507 from lcobucci/upgrade-dependencies
...
Upgrade dependencies
2017-06-20 07:18:28 +02:00
Luís Cobucci
ad5014decc
Merge pull request #6508 from magnetik/patch-1
...
[Doc] Fix links to api doc in the second level cache documentation page
2017-06-20 07:09:42 +02:00
Luís Cobucci
9fa456b9f0
Bump versions of some dependencies
2017-06-19 17:43:38 +02:00
Luís Cobucci
e123f16ec9
Require PHP 7.1
2017-06-19 17:43:37 +02:00
Luís Cobucci
99dc8aa2a9
Drop HHVM support
2017-06-19 17:43:16 +02:00
Baptiste Lafontaine
177c48107d
Fix links to api doc
2017-06-19 13:31:10 +02:00
Matthias Pigulla
8f9f41ea89
Fix typo
2017-06-15 01:03:38 +02:00
Matthias Pigulla
5a2a771173
Clarify the impact of changing the fetch mode
...
Seems to work for one-to-many as well, but with a negative performance impact.
2017-06-15 01:02:45 +02:00
Marco Pivetta
fc67b398a1
Merge pull request #6479 from lcobucci/fix-risky-tests
...
Fix all risky tests
2017-06-13 01:20:57 +03:00
Luís Cobucci
5c02e0c1e8
Remove APC dependency on tests
...
By using a shared array cache so that we can reproduce different cache
instances that shares the stored data.
2017-06-12 23:05:58 +02:00
Luís Cobucci
a9c711ad7e
Register custom types to not skip model set validation
...
Also removing an empty and unused model set.
2017-06-12 23:05:57 +02:00
Luís Cobucci
ee5f222c58
Rename data provider so that it doesn't get executed as test
2017-06-12 23:05:56 +02:00
Luís Cobucci
8dccd27b52
Add the correct assertions for tests that don't have any
2017-06-12 23:05:55 +02:00
Luís Cobucci
d8663cd9ee
Use a more appropriate assertion on some tests
2017-06-12 23:05:54 +02:00
Luís Cobucci
8796e2d938
Expect an exception instead of failing the test
...
Since that's the assertion we're actually doing.
2017-06-12 23:05:53 +02:00
Luís Cobucci
19fc91482e
Validate if optimistic locks are released properly
...
By trying to update an entry using a different connection.
2017-06-12 23:05:52 +02:00
Luís Cobucci
99df158fc8
Allow passing a connection while creating an entity manager
...
Also removing unsed arguments.
2017-06-12 23:05:51 +02:00
Luís Cobucci
1bf884970f
Increment assertion count manually
...
Which is needed to test void methods that shouldn't raise any exception
on a certain condition. If the interpreter gets to the point where the
assertion count is incremented it means that no exceptions have been
thrown and our test is successful.
Important to note that some tests were slighly refactored to simplify
things a bit.
2017-06-12 23:04:56 +02:00
Luís Cobucci
8d144daf01
Remove duplicated tests (keeping them on unit test suite only)
2017-06-12 23:04:55 +02:00
Luís Cobucci
043ca69f0b
Fix some code style issues in tests
2017-06-12 23:04:54 +02:00
Benjamin Eberlei
3dc0f471fe
Merge pull request #6481 from lcobucci/improve-build-extensions
...
Improve build extensions
2017-06-12 20:45:25 +02:00
Marco Pivetta
c0c08d92ba
Merge pull request #6493 from astepin/small-code-improvements
...
Minor fixes: typos, documentation, etc.
2017-06-11 12:14:30 +03:00
Artem Stepin
799190d5e4
- fixed columnPrefix generator for the embedded annotation
2017-06-09 22:25:19 +02:00
Artem Stepin
351b6972a4
Merge branch 'original-pr-6356' into gh-6356
2017-06-09 21:58:57 +02:00
Artem Stepin
7a63e81c94
Add failing test for gh-#6314 (gh-#6356)
2017-06-08 23:18:47 +02:00
Artem Stepin
43009682a4
minor code work:
...
- method calls with incorrect case
- removed unused imports
- typos and some other minor code smells
- documentation update (wrong return types etc. )
2017-06-08 22:04:07 +02:00
Marco Pivetta
049ad1e079
Merge pull request #6491 from SamKnows/fix/mock-implementations
...
Fix Mock Implementations.
2017-06-08 19:06:25 +02:00
Mathew Davies
b42c36f472
Update phpDoc
2017-06-08 16:43:18 +01:00
Mathew Davies
9f13557d14
Be consistent with the rest of the file.
2017-06-08 16:42:11 +01:00
Mathew Davies
633b821e18
Update StatementArrayMock to implement the right interface.
2017-06-08 16:31:59 +01:00
Mathew Davies
a59367423a
Update StatementMock to implement the right interface.
2017-06-08 16:25:57 +01:00
Mathew Davies
1559db7ac1
Update HydratorMockStatement to implement the right interface.
2017-06-08 16:25:03 +01:00
Marco Pivetta
971c400025
Merge pull request #6462 from mkosiedowski/proxy-embedded-fields-fix
...
Fix #6460 - \Doctrine\ORM\Mapping\ClassMetadataInfo::hasField should return true for embedded fields
2017-06-01 15:52:07 +02:00
Luís Cobucci
2359360149
Disable XDebug based on PHPUnit flags instead
...
Then we don't need to keep changing versions information.
2017-06-01 07:40:28 +02:00
Marco Pivetta
22ecc2d58c
Merge pull request #5938 from Ma27/feature/DDC5934-allow-fetch-override
...
#5934 - add `fetch` option to `AssociationOverride` in order to override fetch strategy for subclasses of entities
2017-05-31 20:24:57 +02:00
Maximilian Bosch
49bb345533
#5934 - #5938 - fix accidentally introduced regression with wrong target of ::class expression
2017-05-31 15:01:25 +02:00
Maximilian Bosch
fcfaa13df9
#5934 - #5938 - use ClassMetadata::class expression rather than FQCN in config drivers as of @Ocramius's review
2017-05-31 14:52:55 +02:00
Maximilian Bosch
92476b5953
#5934 - add fetch option to AssociationOverride in order to override fetch strategy for subclasses of entities
2017-05-30 18:19:48 +02:00
Marco Pivetta
205ee72e33
Merge pull request #6478 from lcobucci/fix-yaml-tests
...
Fix YAML related tests
2017-05-30 14:05:19 +02:00
Luís Cobucci
f9062d9931
Force YAML parser to convert keys to string
...
Since Symfony 3.3 implicit conversion is not enabled by default so we
need to pass that flag manually.
Related to: https://github.com/symfony/symfony/pull/21774
2017-05-30 13:53:45 +02:00
Luís Cobucci
f18e178960
Fix wrong YAML mapping
...
We had duplicated keys and that's no longer valid on symfony/yaml 3.3.
2017-05-30 12:51:51 +02:00
Luís Cobucci
2a239be45e
Merge pull request #6466 from fmagnan/patch-1
...
Update QueryBuilder.php
2017-05-23 18:44:10 +02:00
Franck Magnan
db528a44b1
Update QueryBuilder.php
...
Hello,
thank you very much for your work, it's awesome!
I found a minor error in PHPDOC for method setParameter. Argument "type" can be a string or null but can be also an int if it comes from \PDO::PARAM_*. So I've changed typehint "string" into "mixed".
2017-05-23 18:42:01 +02:00
Simone Gentili
4bf2e890fb
remove loosely comparison
2017-05-23 10:28:45 +02:00
Maciej Kosiedowski
76f0fe45af
fixes in tests
2017-05-22 15:52:19 +02:00
Maciej Kosiedowski
f304685c68
Fix #6460 - \Doctrine\ORM\Mapping\ClassMetadataInfo::hasField should return true for embedded fields
2017-05-22 14:41:06 +02:00
Marco Pivetta
6ea30f0354
Merge pull request #6456 from bitwombat/doc_changes
...
Fixes and clarifications to Association Mapping document
2017-05-21 15:17:40 +02:00
Greg Bell
00aba32c67
Resolve conflicts
2017-05-21 16:56:16 +10:00
Greg Bell
46cebfb33d
Clarify concepts, fix minor English issues.
...
- Globally change 'Shipping' to 'Shipment' - shipment is a noun and thus a clearer name for an object.
- Add definition of unidirectional to the top of the document.
- Explain inversedBy and mappedBy the first time they are used.
- Clarify some ownership and bidirectionality text.
- Minor English and punctuation fixes.
2017-05-21 16:39:06 +10:00
Greg Bell
89bf6152a6
Merge branch 'doc_changes' of https://github.com/bitwombat/doctrine2 into doc_changes
2017-05-21 14:14:52 +10:00
Greg Bell
75821e75f5
Clarify English and a few concepts
...
- Globally change 'Shipping' to 'Shipment' - shipment is a noun and thus a
clearer name for an object.
- Move definition of unidirectional from example to the top of the document.
- Explain inversedBy and mappedBy the first time they are used.
- Clarify some ownership and bidirectionality text.
- Minor English and punctuation fixes.
2017-05-21 14:14:28 +10:00
Greg Bell
7bfd172156
Clarify English and a few concepts
...
- Globally change 'Shipping' to 'Shipment' - shipment is a noun and thus a
clearer name for an object.
- Move definition of unidirectional from example to the to of the document.
- Explain inversedBy and mappedBy the first time they are used.
- Clarify some ownership and bidirectionality text.
- Minor English and punctuation fixes.
2017-05-21 14:10:38 +10:00
Marco Pivetta
ee066cc5de
Merge pull request #6451 from nicolas-grekas/sf4
...
Allow Symfony 4.0
2017-05-18 12:59:19 +02:00
Nicolas Grekas
7ce2381bdd
Allow Symfony 4.0
2017-05-18 12:57:36 +02:00
Marco Pivetta
334b7e68a7
Merge pull request #6442 from sensorario/performance-improvement
...
Compute size of loaders in the test suite beforehand, and not on each iteration
2017-05-16 13:40:17 +02:00
Marco Pivetta
95c60219d5
Merge pull request #6446 from eibt/update-docs-theme-submodule
...
Update theme submodule
2017-05-16 13:21:34 +02:00
Ivan
73770ac090
Update git submodule "docs/en/_theme"
...
- This fixes the broken image at the footer of Doctrine 2 ORM's docs
2017-05-15 14:53:23 -06:00
Simone Gentili
0a801b895e
compute size of loaders beforehand and not on each iteration
2017-05-15 07:43:15 +02:00
Luís Cobucci
e9b54de488
Merge pull request #6439 from sensorario/align-equals-signs
...
align equals signs
2017-05-14 10:21:42 +02:00
Simone Gentili
fac7e8facb
align equals signs
2017-05-13 23:05:37 +02:00
Marco Pivetta
c222c1d17a
Merge pull request #6433 from mpdude/patch-1
...
Remove dead code in the schema tool
2017-05-10 19:31:40 +02:00
Luís Cobucci
2695f5e3a5
Merge pull request #6436 from lcobucci/fix-result-set-cache-eviction
...
Pass the connections parameters for cache key generation
2017-05-10 18:07:12 +02:00
Luís Cobucci
885c431bd9
Pass the connection parameters for cache key generation
...
That argument was added to not have key collisions for different
connections.
More info: https://github.com/doctrine/dbal/pull/713
2017-05-10 17:52:38 +02:00
Matthias Pigulla
5c1908d82f
Remove dead code
...
Hopefully this does not do anything...?
2017-05-09 19:21:49 +02:00
Marco Pivetta
7bb02d0dbd
Merge pull request #6417 from lcobucci/fix-expire-result-cache
...
Fix expire result cache
2017-05-03 12:40:33 +02:00
Alessandro Lai
96bcee4fa9
Fix test
2017-05-03 11:42:51 +02:00
Alessandro Lai
21e12ef4a9
Move tests to ticket namespace (and rename them)
2017-05-03 11:06:43 +02:00
Alessandro Lai
11c84c7b20
Split SqlWalker::walkInstanceOfExpression method
2017-05-03 11:00:26 +02:00
Alessandro Lai
3219fe5316
Fix small CS issues as per review
2017-05-03 10:46:24 +02:00
Luís Cobucci
e71272e2b4
Evict result set cache if Query#expireResultCache() was called
2017-05-02 23:25:56 +02:00
bruno da silva
85a52d781e
add a not weel writend/nammed test testing Query::expireResultCache()
2017-05-02 23:25:56 +02:00
Marco Pivetta
2c1ebc4ef1
Merge pull request #6416 from lcobucci/fix-quote-on-inheritance
...
Fix quoting when using inheritance as well
2017-05-02 09:42:03 +02:00
Marco Pivetta
77ee69f1a8
Merge pull request #6367 from SirWaddles/fix-inheritance-alias
...
Fix inheritance alias
2017-05-02 09:25:18 +02:00
Timothy Clissold
0a10f347d3
Fix inheritance join alias
2017-05-02 00:17:16 +02:00
Luís Cobucci
6c0654c144
Merge pull request #6274 from Necsord/issue/5887-one-to-one-with-custom-id-object-relationship-fix
...
Fixing #5887 - lazy loading of one-to-one relationship with custom id object
2017-04-30 20:10:37 +02:00
Marcin Szulc
a360da5a7e
Fix lazy loading of 1-to-1 relationship with custom id object
...
Fixing case when lazy loading of entity in one-to-one relationship on the side without foreign key
did not return eht entity because of custom type not being detected and properly formatted before
applying to database query.
Closes https://github.com/doctrine/doctrine2/issues/5887
2017-04-30 19:53:28 +02:00
Luís Cobucci
0aef63b350
Fix quoting also when using inheritance
2017-04-30 19:36:41 +02:00
Luís Cobucci
4ebf27de35
Use "quoted" from existing data if exists
...
In order to keep that information for inheritance mapping.
2017-04-30 19:36:40 +02:00
Luís Cobucci
942bb6cb1f
Remove dead code from OrmFunctionalTestCase
2017-04-30 19:36:39 +02:00
lemartin
7c6c5d87c8
Fix quoting issues related to ticket #6402
...
Apply quoting strategy to foreign key columns of one-to-one relation so
that correct select statements are generated. And use unquoted column
names in result mapping instead of quoted ones, as consumers (namely
IdentifierFlattener) expect unquoted column names.
2017-04-30 13:51:49 +02:00
Luís Cobucci
ccaa4b8ce1
Use getMultiple() to fetch associations as well
2017-04-30 13:43:29 +02:00
Vytautas Stankus
a557c97a93
Add support for STARTS_WITH and ENDS_WITH comparison operators
2017-04-30 13:19:51 +02:00
Jarek Jakubowski
38bfcc6a7a
Fix notice in ClassMetadata when there is no ID Column defined
...
When you forget about defining the ID/PK Column, then this ugly Notice appear.
Now it will throw nice Exception.
2017-04-30 11:38:47 +02:00
Marco Pivetta
03972c9c3a
Merge pull request #6410 from PowerKiKi/patch-2
...
Minor typo naming strategy documentation
2017-04-23 14:25:39 +02:00
Adrien Crivelli
692a1afa86
Minor typo naming strategy documentation
2017-04-22 00:05:57 +09:00
Alessandro Lai
4eb4465169
Fix as per review
2017-04-18 11:57:49 +02:00
Marco Pivetta
318e9a5596
Merge pull request #6400 from neobyteUK/master
...
Fix incorrect YAML datetime version field.
2017-04-15 02:23:56 +02:00
Richard Henry
e44a83fc7b
Fix incorrect YAML datetime version field.
2017-04-15 01:18:44 +01:00
Marco Pivetta
b88480212a
Merge pull request #6399 from neobyteUK/master
...
Fix incorrect YAML example for versioning a field.
2017-04-15 01:24:06 +02:00
Richard Henry
6b6c300319
Fix incorrect YAML example for versioning a field.
2017-04-15 00:12:53 +01:00
Marco Pivetta
7c5b27da2c
Merge pull request #6395 from yannickl88/master
...
Updated broken links
2017-04-12 23:14:30 +02:00
Yannick de Lange
7e50a965fa
Updated broken links
...
Updated all links pointing to
http://www.doctrine-project.org/documentation/ * to their
http://docs.doctrine-project.org counterparts
2017-04-12 23:09:48 +02:00
Sergio Santoro
e798bfe34a
[QUERY] "INSTANCE OF" now behaves correctly with subclasses
...
There was a bug in the "INSTANCE OF" operator as described in
https://groups.google.com/forum/#!topic/doctrine-user/B8raq8CNMgg
"INSTANCE OF" was not taking into account subclasses.
It was merely translating the class to its discriminator.
This is not correct since the class can have subtypes and those
are, indeed, still instance of the superclass.
Also, classes may not have a discriminator (e.g. abstract classes).
This commit also provides useful tests to avoid regression.
2017-04-11 17:50:01 +02:00
mike
0865181702
Do not force an order of definition in the entity elements
2017-04-11 09:43:50 +02:00
mike
b43325760d
Add a type for the class FQCN
2017-04-11 09:43:31 +02:00
mike
f537eb2915
Add a table name type that accept quoted table name
2017-04-11 09:43:25 +02:00
chihiro-adachi
2c5e76c961
fix class name.
2017-04-07 14:33:41 +02:00
Marco Pivetta
03b4397557
Merge pull request #6378 from Sam-Burns/phpunit6
...
PHPUnit 6
2017-04-01 06:49:33 +02:00
Sam-Burns
3d7a7346f7
Quieting risky test warnings where tests do actually perform assertions
2017-03-31 23:23:22 +01:00
Sam-Burns
5bd7bd8d48
Updating to PHPUnit 6
2017-03-31 21:59:02 +01:00
Marco Pivetta
904f4d5021
Merge pull request #6377 from Sam-Burns/minimum-dependencies
...
Minimum dependencies
2017-03-31 20:46:14 +02:00
Sam-Burns
7aab261c24
Switching to a PHPUnit version that doesn't throw a stty-related PHP warning on Travis
2017-03-31 15:46:04 +01:00
Sam-Burns
f5b4e8c823
Specifying minimum version of doctrine/annotations with which tests pass
2017-03-31 15:24:07 +01:00
Sam-Burns
60cc11461d
Bumping doctrine/cache minimum version, to make tests pass
2017-03-31 15:07:53 +01:00
Sam-Burns
f2edf36248
Bumping doctrine/collections minimum version, to make tests pass
2017-03-31 15:07:53 +01:00
Sam-Burns
d6049f8631
Adding breaking build testing with minimum Composer dependencies
2017-03-31 15:07:29 +01:00
Adam Gąsowski
5507e0be29
Fix wrong variable name
...
Fix $fieldMapping to $embeddedClass in generateEmbeddedPropertyDocBlock
2017-03-23 19:12:40 +01:00
Marco Pivetta
1aa02f9afc
Merge pull request #6326 from SenseException/check-option
...
[Documentation] Add column check-option to documentation
2017-03-12 11:53:13 -04:00
Boris Yonchev
bd1efaf528
DDC-2780 - Fixed issue with IS NULL on join aliases
2017-03-07 18:34:50 +01:00
Claudio Zizza
504e701020
Add existing column check-option to documentation
2017-03-06 00:34:18 +01:00
Marco Pivetta
e4704beaf9
Merge pull request #6287 from lcobucci/fix-test-suite
...
Fix EntityManagerDecorator tests
2017-02-13 01:46:01 +01:00
Luís Cobucci
dcc80af7d9
Fix EntityManagerDecorator tests
...
We were expecting a return value for all methods but on 6a56df9a24
we changed some methods to be void and of course that affected the
ORM.
2017-02-12 18:38:21 +01:00
Marco Pivetta
10935dd843
Merge pull request #6285 from svencan/doc-typos
...
Fix typos and wording in NamingStrategy documentation
2017-02-10 18:55:05 +01:00
Sven Cannivy
260c8d0113
Fix typos and wording in NamingStrategy documentation
2017-02-10 18:48:57 +01:00
Marco Pivetta
23ae83e351
Merge pull request #6268 from enumag/patch-4
...
Fix annotation
2017-01-31 12:00:42 +01:00
Jáchym Toušek
64ab53a243
Fix annotation
2017-01-31 11:57:01 +01:00
mikeSimonson
e42d0bdda5
Merge pull request #6262 from mikeSimonson/doc
...
Fix a link to a ref in another page
2017-01-27 09:30:38 +01:00
mike
f3df000d29
Fix a link to a ref in another page
2017-01-27 09:27:25 +01:00
mikeSimonson
5989ea1752
Merge pull request #6260 from mikeSimonson/doc
...
Document the Custom option of the generated value annotation
2017-01-26 14:12:34 +01:00
Marco Pivetta
888f1be7c9
Merge pull request #6257 from weaverryan/add-criteria-note
...
Adding a note about the `Doctrine\ORM\QueryBuilder#addCriteria()` method
2017-01-25 16:56:12 +01:00
Ryan Weaver
63bd6c359c
[Docs] Adding a note about the addCriteria method on QueryBuilder
2017-01-25 10:52:17 -05:00
mike
773af5b306
Document the Custom option of the generated value annotation
2017-01-25 15:54:03 +01:00
Marco Pivetta
9c76c3766f
Merge pull request #6251 from mbeccati/ddc2660-test-fix
...
Add missing group to DDC2660Test.php
2017-01-24 13:43:59 +01:00
Matteo Beccati
c816d375e8
Add missing group to DDC2660Test.php
...
With the current PHPUnit version and PHP 7.2/master, the test fails with:
1) Doctrine\Tests\ORM\Functional\Ticket\DDC2660Test::testIssueWithExtraColumn
array_flip(): Can only flip STRING and INTEGER values!
2) Doctrine\Tests\ORM\Functional\Ticket\DDC2660Test::testIssueWithoutExtraColumn
array_flip(): Can only flip STRING and INTEGER values!
Due to the group being NULL vs "" on older PHP versions.
I will also file a bug report or fix to PHPUnit and/or PHP itself, but it sounds
like the missing group was just a typo.
2017-01-24 12:46:19 +01:00
Marco Pivetta
b181228d69
Merge pull request #6250 from johndodev/patch-1
...
Note on Entity listeners
2017-01-23 09:57:58 +01:00
John
57f560401b
Note on Entity listeners
...
As requested here https://github.com/doctrine/doctrine2/issues/6247#issuecomment-274123780 I thought it should be interesting to note that.
The note could be longer, like "You should avoid to have multiple methods for the same event (e.g. multiple @PrePersist) since the execution order is not guaranteed".
2017-01-23 09:35:26 +01:00
Luís Cobucci
119aa4e46c
Merge pull request #6244 from lcobucci/l2c-ensure-root-classname-everywhere
...
Make sure we're using the rootEntityName on all places
2017-01-20 00:05:48 +01:00
Luís Cobucci
1f53afa9cd
Make sure we're using the rootEntityName on all places
...
Otherwise we might end up with duplicated cache entries and weird
results (specially regarding associations).
2017-01-19 17:24:47 +01:00
Luís Cobucci
4f28aaa206
Refactor to use class_map() instead
2017-01-16 23:22:52 +01:00
Mikhail Polyanin
bb943afabe
Optimization. Multiple get in QueryCache
2017-01-16 23:02:23 +01:00
mikeSimonson
247b085fce
Merge pull request #6239 from mikeSimonson/travis-update
...
Travis update
2017-01-16 18:17:36 +01:00
mike
5968b9e62f
Removing php 7.1 from the allowed failure
2017-01-16 17:09:49 +01:00
mike
a831bb82ce
Adding hhvm as allowed to fail in the test matrix
2017-01-16 17:08:47 +01:00
Marco Pivetta
41a377948b
Documenting BC Break introduced by the removal of Doctrine\ORM\Query\SqlWalker#walkCaseExpression()
...
Ref: https://github.com/doctrine/doctrine2/pull/5600
2017-01-15 23:56:44 +01:00
Marco Pivetta
09cbb9ff48
Merge pull request #5600 from billschaller/remove-dead-code-walk-case-expression
...
Remove dead code SQLWalker::walkCaseExpression
2017-01-15 23:52:38 +01:00
Marco Pivetta
730db5fd2e
Merge pull request #6232 from gadelkareem/patch-3
...
Allow gearman env vars
2017-01-14 01:18:13 +01:00
Marco Pivetta
3d7ddc89b4
Merge pull request #6231 from gadelkareem/patch-2
...
Allow gearman environment vars
2017-01-14 01:15:46 +01:00
Waleed Gadelkareem
109ac5f827
Allow gearman env vars
2017-01-13 18:11:10 +01:00
Waleed Gadelkareem
d137ffe0a4
Allow gearman environment vars
2017-01-13 18:09:36 +01:00
Marco Pivetta
31c40f8342
Merge pull request #6216 from malukenho/enhancement/remove-unused-param
...
Remove unused "$className" argument
2017-01-12 17:04:01 +01:00
Jefersson Nathan
5208187f1a
rewording upgrade sentence
2017-01-12 13:02:10 -03:00
Marco Pivetta
9e35d9712d
Merge pull request #6227 from ThomasLandauer/patch-3
...
Minor formatting improvements
2017-01-12 16:13:59 +01:00
Thomas Landauer
4fccf84c82
Added link
...
Sorry, I don't know how to link to the exact section 8.8
2017-01-12 14:23:55 +01:00
Thomas Landauer
38636e7db4
Minor formatting improvements
...
Numbered lists aren't displayed nicely, see e.g. http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/working-with-associations.html#persistence-by-reachability-cascade-persist - is this a rendering bug?
2017-01-12 13:59:24 +01:00
Thomas Landauer
63e4eea9e2
Complete re-write of "Transitive persistence / Cascade Operations" ( #6219 )
...
Follow-up of https://github.com/doctrine/doctrine2/pull/6171
2017-01-12 12:49:46 +01:00
Jefersson Nathan
df5f480b4c
document change as minor BC Break
2017-01-11 17:35:28 -03:00
Marco Pivetta
4e304df495
Merge pull request #6223 from lcobucci/fix-l2c-region-namespace
...
Appends cache namespace when it exists (for L2C regions)
2017-01-11 11:33:41 +01:00
Luís Cobucci
eaedc37d7b
Fix alignment issues on DefaultCacheFactoryTest.php
2017-01-11 11:04:43 +01:00
Luís Cobucci
5a562b3571
Appends cache namespace when it exists (for L2C regions)
...
We're overriding the namespace without even checking if it was previously
set, what causes problems when people uses that feature 😉
2017-01-11 11:01:39 +01:00
Marco Pivetta
4e573038be
Merge pull request #6220 from enumag/patch-2
...
Fix annotations
2017-01-10 12:50:39 +01:00
Jáchym Toušek
617ec9219e
Fix annotations
2017-01-10 09:12:18 +01:00
Marco Pivetta
ce4abdea55
Merge pull request #6171 from ThomasLandauer/patch-3
...
Include example of a cascaded "persist" operation
2017-01-09 14:08:31 +01:00
Thomas Landauer
7c168c2047
Update working-with-associations.rst
...
As requested: https://github.com/doctrine/doctrine2/pull/6171#pullrequestreview-15695400
2017-01-09 14:07:17 +01:00
Marco Pivetta
145c44630e
Merge pull request #6215 from malukenho/doc/#2190-add-link
...
Added link to `Transitive Persistence`
2017-01-05 22:22:07 +01:00
Jefersson Nathan
eaeecc3857
Remove unused arguments
2017-01-05 18:21:49 -03:00
Jefersson Nathan
f570eb5922
#2190 — Refer link to proper section and links more occurrence from Transitive Persistence
2017-01-05 12:46:01 -03:00
Jefersson Nathan
a1839048dd
#2190 — added link to Transitive Persistence
2017-01-05 11:48:16 -03:00
Luís Cobucci
c86865aa71
Merge pull request #6212 from malukenho/hotfix/#1808-fix-sql-example
...
Fix wrong DQL example
2017-01-04 07:34:18 +01:00
Jefersson Nathan
8b499a4791
#1808 — Fix wrong DQL example
2017-01-03 21:37:07 -03:00
Marco Pivetta
06691e0150
Merge pull request #6207 from gabidavila/master
...
Documentation: Fixes missing namespaces on class call
2017-01-02 19:40:44 +01:00
gabidavila
fc8ede844d
Fixes missing namespaces on class call
2017-01-02 16:11:46 -02:00
Marco Pivetta
443902f9f9
Merge pull request #6205 from railto/master
...
Remove support for PHP 5.x
2017-01-02 09:42:07 +01:00
Mark Railton
563c79bd80
Removes support for PHP 5.x
2017-01-02 08:36:42 +00:00
Marco Pivetta
d0c3f961ef
Merge pull request #6204 from alcohol/rip-5.6
...
rip 5.6
2017-01-02 09:28:08 +01:00
Rob Bast
a8d7b327ef
rip 5.6
2017-01-02 09:27:34 +01:00
Marco Pivetta
c24a89f4a3
Merge pull request #6197 from BenMorel/patch-2
...
getSingleScalarResult() returns NULL when the query yields no results
2016-12-26 04:41:20 +01:00
Benjamin Morel
3ce833fb62
getSingleScalarResult() returns NULL when the query yields no results
...
`NoResultException` is not thrown in this case.
2016-12-26 02:11:50 +01:00
Thomas Landauer
f3909ae885
Update working-with-associations.rst
2016-12-23 20:09:25 +01:00
Marco Pivetta
22b5fb1ad4
Merge pull request #6179 from biggianteye/getting-started-fixes
...
Minor fixes to the 'getting started' page
2016-12-23 04:03:05 +01:00
Burhan Ali
f64d543d0c
Add minor fixes to the 'getting started' page
2016-12-19 03:34:51 +00:00
Thomas Landauer
eecf4382b0
Update working-with-associations.rst
2016-12-18 23:05:10 +01:00
Thomas Landauer
a8a3a8c9e7
Update working-with-associations.rst
2016-12-18 21:58:44 +01:00
Thomas Landauer
1a8eeacfba
Update working-with-associations.rst
2016-12-18 21:42:08 +01:00
Marco Pivetta
cd1a5fcadc
Merge pull request #6177 from doctrine/fix/#6174-#5570-merging-new-entities-should-also-trigger-prepersist-lifecycle-callbacks
...
Fix #6174 #5570 : merging new entities should also trigger prepersist lifecycle callbacks with merged entity data
2016-12-18 16:42:44 +01:00
Marco Pivetta
21a5d8ca1b
#6174 #5570 removed modifications applied to the CompanyContractListener, since UnitOfWorkTest now completely encapsulates the scenarios being covered
2016-12-18 15:48:10 +01:00
Marco Pivetta
cfd595b699
#6174 #5570 removed unused imports
2016-12-18 15:46:49 +01:00
Marco Pivetta
018a5db08f
#6174 #5570 renamed entity for better fitting the use-cases it's in
2016-12-18 15:46:34 +01:00
Marco Pivetta
f39f1a2e11
#6174 #5570 removed unused test class
2016-12-18 15:45:03 +01:00
Marco Pivetta
262d13a047
#6174 #5570 adding group annotations to newly introduced test
2016-12-18 15:44:48 +01:00
Marco Pivetta
f4595d3a2f
#6174 #5570 prePersist listeners should never be called when entities are merged, but are already in the UoW
2016-12-18 15:43:29 +01:00
Marco Pivetta
30cd2d172b
#6174 #5570 started moving tests around prePersist event subscriber triggering on UnitOfWork into the UnitOfWorkTest
2016-12-18 15:37:49 +01:00
Marco Pivetta
9582ffc982
#6174 #5570 CS fixes around the EntityListenersOnMergeTest
2016-12-18 14:53:54 +01:00
Marco Pivetta
00c67ba2db
#6174 #5570 adding group annotation to newly introduced tests
2016-12-18 14:47:55 +01:00
Marco Pivetta
0c2edcd08a
#6174 #5570 CS - spacing/variable naming
2016-12-18 14:47:16 +01:00
Marco Pivetta
a22f165026
#6174 #5570 removed unused/dead code
2016-12-18 14:45:08 +01:00
Marco Pivetta
ab0e854830
#6174 #5570 CS - spacing
2016-12-18 14:39:46 +01:00
Marco Pivetta
85e2dc8f22
#6174 #5570 CS - spacing
2016-12-18 14:38:10 +01:00
Marco Pivetta
3ce262a61a
#6174 #5570 flattened nested conditionals
2016-12-18 14:36:39 +01:00
Marco Pivetta
81d44d4d6e
#6174 #5570 documenting thrown exception types
2016-12-18 14:32:31 +01:00
Marco Pivetta
754f36ef65
#6174 #5570 CS - alignment
2016-12-18 14:27:35 +01:00
bilouwan
1be226cf63
Rename test
2016-12-15 15:12:29 +01:00
bilouwan
7f4de25a26
Cherry pick unit test from PR #5570 (Fix PrePersist EventListener when using merge instead of persist)
2016-12-15 13:03:53 +01:00
bilouwan
493d39f5df
doMerge will mergeEntityStateIntoManagedCopy BEFORE persistNew to let lifecyle events changes be persisted
2016-12-15 12:49:11 +01:00
bilouwan
d1c8d378cf
Create failing test to reveal the issue
2016-12-15 12:47:45 +01:00
Thomas Landauer
879d4e7df0
Update working-with-associations.rst
2016-12-14 21:46:18 +01:00
Thomas Landauer
29062fb42e
Update working-with-associations.rst
2016-12-14 21:39:47 +01:00
Thomas Landauer
a06f8d4759
Update working-with-associations.rst
2016-12-14 21:38:10 +01:00
Thomas Landauer
6aa81d1d36
Include example of a cascaded "persist" operation
...
Following up on https://github.com/doctrine/doctrine2/issues/2943 I started to clarify how it's supposed to be done.
Please check if this would be necessary (at line 511):
`$myFirstComment->setUser($user);`
...and add it (in case).
2016-12-14 00:10:39 +01:00
Marco Pivetta
6e6be3fdd9
Merge pull request #6164 from eyepin/patch-1
...
Update EntityGenerator.php
2016-12-12 08:30:16 +01:00
Marco Pivetta
24377156b4
Merge pull request #6166 from lcobucci/use-php56-features
...
Normalise codebase with PHP 5.6 features
2016-12-12 08:03:43 +01:00
Luís Cobucci
ba9fecc43f
Remove commented code that seems to not be important
2016-12-08 18:16:11 +01:00
Luís Cobucci
62d122bd54
Remove old "CLASSNAME" constants from test models
2016-12-08 18:15:48 +01:00
Luís Cobucci
fda6fdd9fb
Use "::class" syntax on "tests" directory
2016-12-08 18:13:39 +01:00
Luís Cobucci
512aa8a3c7
Use "::class" syntax on "lib" directory
2016-12-08 17:09:35 +01:00
Luís Cobucci
234989d069
Use short-array syntax on "lib" directory
2016-12-08 00:31:12 +01:00
Luís Cobucci
c609072ce1
Use short-array syntax on "bin" directory
2016-12-07 23:34:14 +01:00
Luís Cobucci
74c8a08828
Use short-array syntax on "tests" directory
2016-12-07 23:33:41 +01:00
Luís Cobucci
1d5e16e9d9
Use short-array syntax on "tools" directory
2016-12-07 23:32:17 +01:00
eyepin
521588f498
Update EntityGenerator.php
...
orm:generate:entities genrates 2 blank lines
PSR2: All PHP files MUST end with a single blank line.
this worked for me
2016-12-07 13:13:21 +01:00
Marco Pivetta
6af1d2843f
Bumping doctrine/common dependency to allow ^2.7.1
2016-12-04 06:55:26 +01:00
Marco Pivetta
555e8ae641
Merge branch 'fix/#6017-check-entity-name-in-clear-call-should-be-a-string'
...
Close #6017
2016-11-27 18:39:55 +01:00
Marco Pivetta
dc3b166811
#6017 replaced random_int() with rand(), since we still support oldstable PHP (5.6.x)
2016-11-27 18:38:57 +01:00
Marco Pivetta
44a6141235
#6017 removed clear($entityName) tests from UnitOfWorkTest: now covered in EntityManagerTest
2016-11-27 18:37:45 +01:00
Marco Pivetta
53c5824a6b
#6017 removed clear($entityName) parameter validity checks
...
The `UnitOfWork` is advanced stuff: don't touch if you don't know what you are doing.
2016-11-27 18:37:45 +01:00
Marco Pivetta
1d7397caf0
#6017 moving entity name validity checks into the EntityManager API, documenting newly thrown exception types
2016-11-27 18:37:45 +01:00
Marco Pivetta
92274124f9
#6017 moving tests around clear() into the EntityManager tests
...
`UnitOfWork` assumptions are OK, since we don't want to clutter the API even more down there
2016-11-27 18:37:45 +01:00
Marco Pivetta
49333867f8
FQCN reference correction
2016-11-27 18:36:49 +01:00
Marco Pivetta
9894dcb4b0
#6017 clear($proxyClassName) should behave like clear($realClassName)
2016-11-27 18:36:49 +01:00
Marco Pivetta
fdb2af07e7
#6017 hardened clear() logic, which now ensures that persisted entries are correctly cleared
2016-11-27 18:36:49 +01:00
Marco Pivetta
dffd765b1e
#6017 requesting clear('nonExistingEntityName') now raises a MappingException
2016-11-27 18:36:48 +01:00
Marco Pivetta
c1038096e0
#6017 requesting clear('nonExistingEntityName') should raise a MappingException
2016-11-27 18:36:48 +01:00
Marco Pivetta
8f77afdc34
#6017 removed unused ORMException::invalidEntityName
2016-11-27 18:36:48 +01:00
Marco Pivetta
754e1f5d42
#6017 throwing an ORMInvalidArgumentException when clearing with non-string data. Also removing duplicate null checking
2016-11-27 18:36:48 +01:00
Marco Pivetta
c97799f151
#6017 expecting an ORMInvalidArgumentException when clearing with invalid data
2016-11-27 18:36:48 +01:00
Marco Pivetta
56598596a4
#6017 adding @group annotation to newly introduced tests
2016-11-27 18:36:48 +01:00
Marco Pivetta
6ad9c9ea04
#6017 test coverage for ORMInvalidArgumentException::invalidEntityName
2016-11-27 18:36:48 +01:00
Marco Pivetta
c4d41fe56a
#6017 moved ORMException::invalidEntityName to ORMInvalidArgumentException::invalidEntityName
2016-11-27 18:36:48 +01:00
Jeremy Benoist
6b1d64d484
Remove unecessary persist in tests
2016-11-27 18:36:48 +01:00
Jeremy Benoist
be4aafd4f6
Use ORMException instead of a default exception
2016-11-27 18:36:48 +01:00
Jeremy Benoist
2a7d21ad18
Throw an exception instead of a workaround
2016-11-27 18:36:48 +01:00
Jeremy Benoist
4a87f00fab
Avoid error when entityName isn't a string
2016-11-27 18:36:48 +01:00
Marco Pivetta
77a338e0fd
Merge branch 'fix/#5935-#5684-#6020-#6152-id-generator-convert-to-custom-dbal-id-type'
...
Close #5935
Close #5684
Close #6020
Close #6152
2016-11-27 17:49:54 +01:00
Marco Pivetta
cff5c07014
#5935 #5684 #6020 #6152 removed useless NAME constant from the test
2016-11-27 17:49:09 +01:00
Marco Pivetta
73ea0ba8f3
#5935 #5684 #6020 #6152 adding description to the test scenario
2016-11-27 17:45:50 +01:00
Marco Pivetta
e736d19677
#5935 #5684 #6020 #6152 extracted identifier conversion to a private method
2016-11-27 17:42:12 +01:00
Christian Hammerl
0a86c324ad
Add test case for autoincremented id of custom type
2016-11-27 01:45:56 +01:00
Renan Gonçalves
52badf1cdd
Convert generated id value to its PHP representation.
...
According to the conversion rules of a specific DBAL mapping type.
2016-11-27 01:43:50 +01:00
Marco Pivetta
4c59ec9282
Merge pull request #5834 from ismailbaskin/patch-1
...
Fix custom-id-generator class attribute type
2016-11-26 07:04:02 +01:00
Marco Pivetta
dc7c6ed72c
Merge pull request #5897 from mikaelz/patch-1
...
Check for Xcache from INI setting
2016-11-26 06:48:55 +01:00
Marco Pivetta
28025b8230
Merge branch 'cleanup/#5914-cleanup-sql-walker-code'
...
Close #5914
2016-11-26 06:45:16 +01:00
Marco Pivetta
0ed18fb062
#5914 removed unused conditional inside EntityGenerator, replaced with array_filter() instead
2016-11-26 06:44:53 +01:00
Marco Pivetta
5d477cdbbc
#5914 ClassMetadataInfo#$lifecycleCallbacks is a multi-dimensional array
2016-11-26 06:42:46 +01:00
ReenExe
b2f5da19a4
clear code
2016-11-26 06:40:56 +01:00
ReenExe
401300b295
decrease nested if
2016-11-26 06:40:56 +01:00
ReenExe
12465e08ad
agree with scrutinizer
2016-11-26 06:40:32 +01:00
Marco Pivetta
89a00860e4
Merge branch 'fix/#6068-docblock-entity-generation-for-nullable-types'
...
Close #6068
2016-11-26 06:35:33 +01:00
Marco Pivetta
f8002ca27e
#6068 hardened test logic to verify that nothing is present after the |null in @var and @return types
2016-11-26 06:35:23 +01:00
Marco Pivetta
a4f76bda34
#6068 corrected nullable field expression generator, made it private to avoid misuse
2016-11-26 06:26:53 +01:00
Marco Pivetta
1d2baedfd5
#6068 simplified variable docblock codegen for nullable instance properties
2016-11-26 06:22:25 +01:00
Marco Pivetta
3341781f52
#6068 inlined code generating expression
2016-11-26 06:20:12 +01:00
Javier Spagnoletti
1dfadef221
Removed surplus semicolon at EntityGenerator::generateFieldMappingPropertyDocBlock()
2016-11-26 06:12:31 +01:00
Javier Spagnoletti
ad6469b64a
Update tests
2016-11-26 06:12:31 +01:00
Javier Spagnoletti
087d081601
Fix CS
2016-11-26 06:12:31 +01:00
Javier Spagnoletti
d3c604567b
Update docblock generation for nullable fields
2016-11-26 06:12:31 +01:00
Marco Pivetta
c148059593
Merge branch 'fix/#6110-collection-clear-should-also-clear-keys'
...
Close #6110
2016-11-26 06:06:59 +01:00
Marco Pivetta
20190605a0
#6110 CS (whitespace removal)
2016-11-26 06:06:49 +01:00
Marco Pivetta
9acf170292
#6110 split test into multiple sub-scenarios involving PersistentCollection key checking
2016-11-26 06:02:16 +01:00
Steevan BARBOYON
fa09a95023
Clear $this->collection even when empty, to reset indexes
2016-11-26 05:57:56 +01:00
Marco Pivetta
b06dcb89b3
Merge pull request #5947 from alexryderwhytewaters/patch-1
...
Missing `ClassMetadataExporter` instantiation in the reverse engineering code samples
2016-11-26 05:47:34 +01:00
Marco Pivetta
f11697361d
Merge pull request #5948 from Michal-sk/patch-1
...
Update association-mapping.rst to ease understanding of what associations mean
2016-11-26 05:46:39 +01:00
Marco Pivetta
a9c2778f30
Merge pull request #6085 from arjank/fix/Call_correct_method_in_test
...
More specific named native query throw exceptions test
2016-11-26 05:28:28 +01:00
Marco Pivetta
be1fd130f1
Merge pull request #6025 from ywarnier/ywarnier-patch-1
...
Fix typo in batch-processing doc
2016-11-26 05:26:20 +01:00
Marco Pivetta
a9230b8546
Merge branch 'cleanup/#5987-code-simplifications'
...
Close #5987
2016-11-26 05:25:01 +01:00
Marco Pivetta
3cd7b8c951
#5987 CS: spacing after ! (not) operator
2016-11-26 05:23:04 +01:00
Marco Pivetta
24da9061b9
#5987 inlined check for boolean 'true' literal
2016-11-26 05:22:43 +01:00
Javier Spagnoletti
e2b198112e
[minor] Add missing type hints, add strictness for some checks, remove some useless calls
2016-11-26 05:18:46 +01:00
Marco Pivetta
e7f2e35383
Merge pull request #5977 from gadelat/cleanup-1
...
Remove unneeded ternary operator from Query::contains
2016-11-26 05:05:37 +01:00
Marco Pivetta
979fede80c
Merge pull request #6038 from ReenExeContributor/cleanup-UnitOfWork
...
remove excess `check`
2016-11-26 04:59:16 +01:00
Marco Pivetta
8c38f5775d
Merge pull request #6121 from kalessil/sca
...
Static Code Analysis with Php Inspections (EA Extended)
2016-11-26 04:57:48 +01:00
Marco Pivetta
899393d3bb
Merge pull request #6142 from mbeccati/php72-count-fix
...
Fix incompatibility w/ PHP7.2+
2016-11-26 04:56:39 +01:00
Marco Pivetta
bfa9a31ad7
Merge pull request #6145 from lcobucci/improve-test-documentation
...
Improving the documentation of enums as discriminators test
2016-11-23 19:35:20 +01:00
Luís Cobucci
6344fd34cb
Improving the documentation of enums as discriminators test
...
@Ocramius was too eager to merge stuff
Related to: https://github.com/doctrine/doctrine2/pull/6141
2016-11-23 19:20:47 +01:00
Marco Pivetta
7789df39c5
Merge pull request #6141 from lcobucci/object-as-discriminators
...
Allow using objects as discriminators
2016-11-23 19:14:53 +01:00
Luís Cobucci
1b39cd87ad
Allow using objects as discriminators
2016-11-23 18:56:36 +01:00
Marco Pivetta
86fd0c5aa9
Merge pull request #6028 from lcobucci/fix/l2c-inheritance-query-cache
...
Make child entity share the timestamp region with parent class
2016-11-23 18:06:52 +01:00
Matteo Beccati
39dcf3e4c6
Fix incompatibility w/ PHP7.2+
...
Mock_ParserResult_*::getParameterMappings() was returning null, which
was then passed to count() on Query.php:308, causing a "Parameter must
be an array or an object that implements Countable" error.
2016-11-22 07:42:06 +01:00
Luís Cobucci
317e86802d
Make child entity share the timestamp region with parent class
2016-11-20 19:27:53 +00:00
Marco Pivetta
95d9c64aec
Merge pull request #6138 from WhiteEagle88/version-docs
...
Added examples for version column in the xml and yml formats
2016-11-19 23:04:47 +01:00
Dmytro Boiko
53cd9c4ca8
Added examples for version column in the xml and yml formats
2016-11-19 23:34:10 +02:00
Marco Pivetta
e7856f90d8
Merge branch 'feature/#6136-better-exception-message-on-invalid-connection-object'
...
Close #6136
2016-11-18 09:21:18 +01:00
Marco Pivetta
d2643eeb8b
#6136 Removed regex assertion - constant assertion is sufficient
2016-11-18 09:19:27 +01:00
SpacePossum
e37041aa94
Update message.
2016-11-18 08:06:11 +01:00
Marco Pivetta
f1bf045af3
Merge pull request #6130 from kalimatas/fix-xml-option-boolean
...
#6129 Added unit test for boolean option values.
2016-11-17 21:24:44 +01:00
Alexander Guz
8d433cdb39
#6129 Fixed code style and @depends in test.
2016-11-17 21:05:58 +01:00
SpacePossum
f9a605f6ca
Add details about invalid Connection passed at creation.
2016-11-17 17:23:22 +01:00
Alexander Guz
7bf206adb4
#6129 Moved test to AbstractMappingDriverTest.
2016-11-16 20:01:11 +01:00
Alexander Guz
8580f02c6a
#6129 Use User::class to get metadata instead of string.
2016-11-16 18:07:58 +01:00
Alexander Guz
cdf4af5f27
Added unit test for boolean option values.
...
It fail now. In `XmlDriver::_parseOptions` we need somehow to maintain
a list of options, that are supposed to be boolean, and then call
`$this->evaluateBoolean()` on them.
2016-11-16 17:56:07 +01:00
Marco Pivetta
05e77868ab
Merge pull request #6120 from mschroeder/patch-3
...
Fixed typos regarding the strategy for composite keys (xml mapping)
2016-11-06 18:50:00 +01:00
Vladimir Reznichenko
db375a22cc
Static Code Analysis with Php Inspections (EA Extended): revert unsets
2016-11-06 17:58:45 +01:00
Vladimir Reznichenko
0bf3d7f84c
Static Code Analysis with Php Inspections (EA Extended)
2016-11-06 14:22:47 +01:00
Martin Schröder
155672af40
Fixed typos regarding the strategy for composite keys (xml mapping reference)
...
The strategy for composite primary keys must be "NONE" although the id generator class is \Doctrine\ORM\Id\AssignedGenerator. Calling the strategy "ASSIGNED" is misleading.
2016-11-06 14:05:50 +01:00
Marco Pivetta
bd58e4de4f
Merge pull request #6119 from mschroeder/patch-2
...
Fixed typo regarding the id generator mandatory for composite keys
2016-11-06 13:38:50 +01:00
Martin Schröder
3e98fdb082
Fixed typo regarding the id generator mandatory for composite primary keys
...
The strategy for composite primary keys must be "NONE" although the id generator class is \Doctrine\ORM\Id\AssignedGenerator. Calling the strategy "ASSIGNED" is misleading.
2016-11-06 13:37:07 +01:00
Marco Pivetta
3b6309318b
Merge pull request #6014 from photodude/patch-1
...
As of HHVM 3.15 pgsql is supported, add php 7.1 to tests
2016-11-05 10:03:49 +01:00
mikeSimonson
60a967bb1d
Merge pull request #6113 from mikeSimonson/master
...
Fix documentation
2016-11-03 21:10:41 +01:00
mike
b8b5c2d686
Merge branch 'master' of github.com:doctrine/doctrine2
2016-11-03 20:42:59 +01:00
mike
11c2d815ef
Correcting a use statment in the documentation
2016-11-03 20:40:48 +01:00
Marco Pivetta
56741a3fee
Merge pull request #6063 from kormik/patch-1
...
Fix PHP version in readme.
2016-10-27 02:11:19 +02:00
Marco Pivetta
c8df209409
Merge pull request #6065 from adiq/patch-1
...
Update Autoloader namespace [docs]
2016-10-27 02:10:43 +02:00
Marco Pivetta
fb95116a26
Merge pull request #6101 from malukenho/add-license-checker
...
Add license checker to the build
2016-10-27 01:16:18 +02:00
Jefersson Nathan
83da3d4b04
Revert "composer require --dev malukenho/docheader"
...
This reverts commit 81fefb40db .
2016-10-26 13:27:38 -03:00
Jefersson Nathan
5c6ecdcf1b
Revert "add license template file"
...
This reverts commit e4050edb4e .
2016-10-26 13:27:29 -03:00
Jefersson Nathan
dc07fc609e
Revert "add license checker to the build"
...
This reverts commit ca1a9473d3 .
2016-10-26 13:27:18 -03:00
Jefersson Nathan
dbe843fc4b
remove license from header of test files
2016-10-26 13:24:33 -03:00
Jefersson Nathan
b8a18cd0a1
fix license header inconsistencies
2016-10-25 23:58:42 -03:00
Jefersson Nathan
ca1a9473d3
add license checker to the build
2016-10-25 23:53:17 -03:00
Jefersson Nathan
e4050edb4e
add license template file
2016-10-25 23:52:07 -03:00
Jefersson Nathan
81fefb40db
composer require --dev malukenho/docheader
2016-10-25 23:51:31 -03:00
Marco Pivetta
26cf90e1c5
Merge pull request #6095 from mschroeder/patch-1
...
Fixed typo in annotations reference
2016-10-25 05:56:54 +02:00
Marco Pivetta
cf1ba3183d
Merge pull request #6089 from damour/master
...
Remove duplicated enum type comment from declaration.
2016-10-25 05:48:57 +02:00
Garanzha Dmitriy
3861cbf317
Remove duplicated enum type comment from declaration.
2016-10-21 11:30:27 +03:00
Martin Schröder
cdad5a82c5
Fixed typo in annotations reference
2016-10-20 13:32:59 +02:00
Marco Pivetta
d6eddab94f
Revert "Merge pull request #6092 from ThomasLandauer/patch-2"
...
This reverts commit ade3f3a7f3 , reversing
changes made to a6e44d9305 .
2016-10-18 10:00:10 -07:00
Marco Pivetta
ade3f3a7f3
Merge pull request #6092 from ThomasLandauer/patch-2
...
Updated a link (hopefully :-)
2016-10-18 09:46:53 -07:00
Thomas Landauer
d3c2c40452
Updated a link (hopefully :-)
2016-10-18 18:21:46 +02:00
Marco Pivetta
a6e44d9305
Merge pull request #6087 from chihiro-adachi/fix-namespace
...
Fix namespace
2016-10-18 07:12:22 -07:00
chihiro-adachi
42c4938a8b
cache -> cached
2016-10-18 12:09:43 +09:00
chihiro-adachi
fb1136cc9a
adjust the appearance of the table
2016-10-15 15:47:49 +09:00
chihiro-adachi
03da85e19e
fix namespace
2016-10-15 15:41:10 +09:00
Arjan
a4379cc9e2
Fixes named native query test
...
- Makes sure the correct method is called in the test
- Verifies that the correct method is called by checking the exception message
2016-10-13 22:54:32 +02:00
Marco Pivetta
a353cb81a3
Merge pull request #6080 from ThomasLandauer/patch-1
...
Fixed typo + added link
2016-10-11 17:02:07 +02:00
Thomas Landauer
277833b487
Fixed typo + added link
2016-10-11 16:59:03 +02:00
Marco Pivetta
47cb963731
Merge pull request #6070 from Dreamlex/master
...
Update events.rst
2016-10-06 02:40:04 +02:00
alexndlm
fc81760b54
Update events.rst
...
https://github.com/doctrine/doctrine2/pull/169
2016-10-05 14:16:47 +03:00
Adrian Zmenda
96b3797ad6
Update Autoloader namespace
2016-10-03 12:25:49 +02:00
Tomas Kormanak
974a9f4b9e
Fix PHP version in readme.
2016-10-02 22:38:40 +02:00
ReenExe
2ee56a595b
remove excess check
2016-09-15 19:41:34 +03:00
Yannick Warnier
05db15f7ee
Fix typo in batch-processing doc
...
See http://www.dictionary.com/misspelling?term=apparant&s=t
2016-09-12 12:22:49 -05:00
Marco Pivetta
cd11723e63
Merge branch 'fix/#5768-#5755-clone-proxy-private-properties-in-multi-level-inheritances'
...
Close #5768
Close #5755
2016-09-10 20:51:27 +02:00
Marco Pivetta
3fca33bdc4
#5768 #5755 cleaned up test scenario, using new mocking logic as per PHPUnit 5.4+
2016-09-10 20:45:01 +02:00
Ed Hartwell Goose
67e205b36a
Fixes #5755 , uses '->getReflectionProperties()' instead of '->getReflectionClass()->getProperties()' to ensure all fields are copied, and adds test to confirm behaviour
2016-09-10 20:37:20 +02:00
Marco Pivetta
22105058fa
Merge branch 'fix/#5689-avoid-object-hash-conflicts-due-to-merge-operations'
...
Close #5689
2016-09-10 20:22:52 +02:00
Marco Pivetta
503b211a22
#5689 removed unused reflection access
2016-09-10 20:19:15 +02:00
Marco Pivetta
f8436b2165
#5689 removed OidReuseTest, which was moved to UnitOfWork tests
2016-09-10 20:15:59 +02:00
Marco Pivetta
75bf197e11
#5689 moved OidReuseTest contents into the UnitOfWork tests
2016-09-10 20:15:33 +02:00
Walt Sorensen
99d704ff45
Drop mariadb: 5.5 tests
...
reorder matrix so all HHVM tests are at the bottom
2016-09-10 12:15:25 -06:00
Walt Sorensen
29f51b4a26
Remove the last hhvm3.15 tag
2016-09-09 18:00:40 -06:00
Walt Sorensen
1f521d26f3
Set to HHVM latest (currently 3.15 until next release)
...
Move sudo: false to the top line to be more clear about use of containers as default vs the trusty builds for HHVM
2016-09-09 17:21:03 -06:00
Walt Sorensen
fda2cd7d0e
Set all HHVM-3.15 to allowed failure
2016-09-09 15:59:23 -06:00
Walt Sorensen
a879811b6c
Fast finish to avoid waiting on allowed failures
...
Also Allow HHVM 3.15 with pgsql to fail
2016-09-09 15:51:34 -06:00
Walt Sorensen
e52ca954f0
fixing the xdebug error with php 7.1, nightly and HHVM-3.15
2016-09-09 15:42:31 -06:00
Walt Sorensen
d7a0ed0611
pin to HHVM 3.15 and add PHP 7.1
...
Stop testing against old HHVM 3.9 and test against current LTS 3.15
2016-09-09 15:35:33 -06:00
Mathieu De Zutter
44af69c5d2
Additional assertion to check that unreferenced objects are not in UOW.
2016-09-09 23:22:31 +02:00
Mathieu De Zutter
b8c7d871be
Remove old code in comments.
2016-09-09 23:22:31 +02:00
Mathieu De Zutter
01d51bfca3
Avoid conflicts due to spl_object_hash().
...
When merging an entity with a to-many association, it will store the
original entity data using the object hash of the to-be-merged entity
instead of the managed entity. Since this to-be-merged entity is not
managed by Doctrine, it can disappear from the memory. A new object
can reuse the same memory location and thus have the same object hash.
When one tries to persist this object as new, Doctrine will refuse it
because it thinks that the entity is managed+dirty.
This patch is a very naive fix: it just disables storing the original
entity data in case of to-many associations. It may not be the ideal
or even a good solution at all, but it solves the problem of object
hash reuse.
The test case relies on the immediate reusing of memory locations by
PHP. The variable $user has twice the same object hash, though referring
a different object. Tested on PHP 5.6.17
Without the fix, the test fails on the last line with:
A managed+dirty entity Doctrine\Tests\Models\CMS\CmsUser@[...] can not
be scheduled for insertion.
2016-09-09 23:22:31 +02:00
Walt Sorensen
48dcbe9d35
As of HHVM 3.15 pgsql is supported
2016-09-09 15:18:48 -06:00
Marco Pivetta
3e3bfbf6d8
Merge pull request #6013 from guhelski/fix_typo
...
Documentation - Fix typo
2016-09-09 21:31:41 +02:00
guhelski
60346e0046
Fix typo
2016-09-09 16:46:35 +02:00
Guilherme Blanco
81f4d3b0fb
Merge pull request #6011 from lcobucci/refactor/use-method-instead
...
Use `ClassMedatada#isIdGeneratorIdentity()` instead of constant to add the ID on query
2016-09-09 10:25:00 -04:00
Luís Cobucci
e43b9e9e3a
Use isIdGeneratorIdentity() to add the ID on query
...
It's quite handy when creating CUSTOM id generators that should also
rely on AUTO_INCREMENT stuff (one can just extend the `ClassMedatadaFactory`
and create a different instance of `ClassMetadata` that overrides that
method).
2016-09-09 07:52:44 +00:00
Marco Pivetta
e7e142ea4a
Merge pull request #6010 from phansys/entity_repo_count
...
Update exception message at `EntityRepository::__call()`
2016-09-08 19:21:06 +02:00
Javier Spagnoletti
5353137617
Update exception message at EntityRepository::__call()
2016-09-08 13:32:06 -03:00
Marco Pivetta
009e94720b
Merge branch 'fix/#6001-second-level-cache-query-cache-timestamp-from-region'
...
Close #6001
2016-09-08 14:02:16 +02:00
Marco Pivetta
d27cffa8e6
#6001 documenting minor BC break in QueryCacheEntry#time type - specific version used
2016-09-08 13:51:21 +02:00
Luís Cobucci
dd476094af
The timestamp verification is now done by the validator
...
So it's useless to keep it here too.
2016-09-08 13:50:06 +02:00
Luís Cobucci
b431332cef
Evict query cache when entities are updated
2016-09-08 13:50:06 +02:00
Luís Cobucci
b49026b657
Add timestamp key to QueryCacheKey
2016-09-08 13:50:06 +02:00
Luís Cobucci
16a3a2a132
Use microtime to have more precision on cache time
2016-09-08 13:50:06 +02:00
Marco Pivetta
5eebdcf630
Merge branch 'fix/#6004-#5989-fix-hydration-in-a-joined-inheritance-with-simple-array-or-json-array'
...
Close #6004
Close #5989
2016-09-08 13:39:10 +02:00
Carl Vuorinen
43d22984ae
Add unit test for SimpleObjectHydrator
2016-09-08 13:37:00 +02:00
Carl Vuorinen
d2cbd5e872
PR fixes (public properties & correct letter case in annotations)
2016-09-08 13:37:00 +02:00
Carl Vuorinen
00bbf4f523
Use yoda condition in the null check
2016-09-08 13:37:00 +02:00
Carl Vuorinen
95546d68c5
Fix hydration in a joined inheritance with simple array or json array
...
SimpleArrayType and JsonArrayType convert NULL value to an empty array, which fails the null check that is used to prevent overwrite
Fixes issue #5989
2016-09-08 13:37:00 +02:00
Carl Vuorinen
12b5e79ff2
Create a failing test for issue #5989
...
Field with type=simple_array in a joined inheritance gets overridden by empty array in the hydrator
2016-09-08 13:37:00 +02:00
Marco Pivetta
8a87fa2d01
Merge branch 'feature/#6003-count-on-repositories'
...
Close #6003
2016-09-08 00:56:34 +02:00
Marco Pivetta
c5c56a9dad
#6003 clarifying thrown exception
2016-09-08 00:55:49 +02:00
Marco Pivetta
36e9904082
#6003 inlined persister retrieval
2016-09-08 00:55:09 +02:00
Marco Pivetta
e2cba87662
#6003 corrected return type definition
2016-09-08 00:54:49 +02:00
Marco Pivetta
7bf4a65c92
#6003 imported used symbol
2016-09-08 00:53:35 +02:00
Marco Pivetta
de4c854ac9
#6003 removed useless count() call
2016-09-08 00:48:52 +02:00
Marco Pivetta
5e51a985b7
#6003 no default parameter needed
2016-09-08 00:47:39 +02:00
Marco Pivetta
6f79a378d5
#6003 removed useless method parameter count checking duplication
2016-09-08 00:43:29 +02:00
Javier Spagnoletti
61f6b667c0
Remove default clause at EntityRepository::resolveMagicCall()
2016-09-08 00:32:15 +02:00
Javier Spagnoletti
591bae0855
Swap logic from EntityRespository::__call()
2016-09-08 00:32:15 +02:00
Javier Spagnoletti
bea3c653bc
Updated docs
2016-09-08 00:32:15 +02:00
Javier Spagnoletti
a90035e81a
Expose EntityPersister::count() through EntityRepository::count()
2016-09-08 00:32:15 +02:00
Marco Pivetta
35341769ea
Merge pull request #5972 from giginos/patch-1
...
Wrong return type of getResult()
2016-09-07 23:31:19 +02:00
Marco Pivetta
2814d6e2fa
Merge branch 'fix/#5975-fix_hydrating_fetch_join_with_composite_pk'
...
Close #5975
Close #5762
Close #5776
2016-09-07 23:22:51 +02:00
Marco Pivetta
50f321f2e9
#5975 minor test cleanups
2016-09-07 23:18:39 +02:00
Marco Pivetta
140960ebb1
#5975 short array syntax
2016-09-07 23:17:40 +02:00
Alexander Kurilo
74ec055d57
Use ::class const instead of FQCN string ( #5762 )
2016-09-07 23:15:00 +02:00
Alexander Kurilo
c6ea8b1129
Remove irrelevant accessors ( #5762 )
2016-09-07 23:15:00 +02:00
John Keller
3bec698fed
add functional test and bug fix for issue #5762
2016-09-07 23:15:00 +02:00
Marco Pivetta
a90f23dfc7
Merge pull request #6005 from cvuorinen/fix-functional-test-query-logger
...
Improve functional test query logger
2016-09-07 22:35:00 +02:00
Carl Vuorinen
0da6669fac
Fix functional test query logger
...
DebugStack starts queries array from index 1 rather than 0 so the last query was never printed.
Also array params caused an 'Array to string conversion' error
2016-09-03 23:52:34 +03:00
Gabriel Potkány
75f44008d6
Remove unneeded ternary operator from Query::contains
2016-08-16 01:31:46 +02:00
giginos
eb62ae5933
Wrong return type of getResult()
...
@see https://github.com/doctrine/doctrine2/issues/5971
2016-08-12 16:26:08 +02:00
Marco Pivetta
31a0c02b06
Merge pull request #5713 from OndraM/remove-coveralls
...
Cleanup no longer used coveralls settings; use scrutinizer badges
2016-07-31 03:19:42 +02:00
Michal-sk
f18d279710
Update association-mapping.rst
...
Added spoken word examples of the relationship methods
2016-07-21 13:41:21 +02:00
Michal-sk
718ee42e8e
Update association-mapping.rst
...
Added pointers on how to interpret the method names. This helped me to quicker grasp the concept of the Relations and there methods. Added a @var annotation to the `Collection` interface to make it clear that the `$groups` is a child of the `Collection` interface.
2016-07-21 07:39:07 +02:00
Alex Ryder
20fb340375
missing $cme under reverse eng code sample
2016-07-21 13:52:27 +12:00
Marco Pivetta
184f7d3285
Merge pull request #5942 from Erikvv/patch-1
...
Add @CustomIdGenerator to documentation
2016-07-20 15:25:22 +02:00
Erik van Velzen
b785a8dc02
Add @CustomIdGenerator to documentation
2016-07-18 18:16:34 +02:00
Marco Pivetta
2b47670831
Merge pull request #5931 from bitwombat/tutorial_fix
...
Clarify language regarding ArrayCollections.
2016-07-12 08:08:26 +02:00
Greg Bell
da43aa2d49
Clarify language regarding ArrayCollections.
...
See https://groups.google.com/forum/#!topic/doctrine-user/yJ8ABqBP5mI
2016-07-12 16:05:20 +10:00
Marco Pivetta
44feacd327
Corrected SLC test expected query count: since the identity map is now consistently hashing identifiers
2016-07-07 23:46:09 +02:00
Steve Müller
355d2c3d19
Merge pull request #5924 from doctrine/fix/allow-empty-identifier-string-as-proxy-identifier
...
Allow empty string identifiers
2016-07-07 23:11:54 +02:00
Marco Pivetta
d330da898f
Correcting order of deletes: cache_token relies on cache_complex_action
2016-07-07 22:24:37 +02:00
Marco Pivetta
5d12593e70
Rewrote ManyToOne SLC tests to not rely on multi-level auto-generated identifiers
...
Background:
Test relied on an `A->B->C` association:
* `A#id` being `B`
* `B#id` being `C`
* `C#id` being an auto-generated identifier (post-insert)
This cannot work, because it breaks the UnitOfWork's identity map.
Specifically, no entries for `A` and `B` can exist in the identity map until `C` entries
are persisted (post-insert).
That means that the identifier generator for `A` and `B` should not be an "assigned"
generator, but should instead be a post-insert generator waiting for other entities
to be persisted.
We cannot fix this in ORM 2.x, but we'll need to invent something for 3.x in order to
fix that (directed graph, or caching the order of operations in the metadata graph).
2016-07-07 21:29:10 +02:00
Marco Pivetta
dbcdc1d42a
Empty identifiers must be disallowed
2016-07-07 20:57:49 +02:00
Marco Pivetta
0d82128b2e
Registering a managed entity with an empty identifier is to be disallowed
2016-07-07 20:57:02 +02:00
Marco Pivetta
7544934158
Removing note that is not valid anymore
2016-07-07 20:39:52 +02:00
Marco Pivetta
1cb8d790b6
Disallowing null as part of the entity identifier
2016-07-07 20:29:00 +02:00
Marco Pivetta
2829174267
Simplified test: invalid entities must make it in the UnitOfWork manually, via registerManaged
2016-07-07 20:28:21 +02:00
Marco Pivetta
5b8b548bd4
When invalid (null) identifiers are provided, an exception should be thrown
2016-07-07 20:08:24 +02:00
Marco Pivetta
9abccba109
When invalid (null) identifiers are provided, an exception should be thrown
2016-07-07 19:58:43 +02:00
Marco Pivetta
da7582d329
Typo fix: s/$booleanTrue/$booleanFalse (C&P mistake)
2016-07-07 19:43:03 +02:00
Marco Pivetta
aa1fda6d5f
Checking for boolean true/false identifiers
2016-07-07 19:38:48 +02:00
Marco Pivetta
29d9f344e8
Non-empty composite key identifiers should also be supported
2016-07-07 19:35:39 +02:00
Marco Pivetta
549bfe127c
Correcting test case: expecting identifier hashes to support empty strings
2016-07-07 19:34:24 +02:00
Marco Pivetta
12789ee6ca
Basic tests around addToIdentityMap with valid string identifiers (empty string allowed)
2016-07-07 19:27:49 +02:00
Marco Pivetta
5761d07c46
Merge pull request #5918 from tonynelson19/master
...
Make setSQL and setDQL function calls case-sensitive.
2016-07-05 19:50:59 +02:00
Tony Nelson
cd36407f28
Update EntityManager.php
2016-07-05 12:48:00 -05:00
Tony Nelson
1880cbd8b6
Update dql-doctrine-query-language.rst
2016-07-05 12:46:16 -05:00
Marco Pivetta
27e9b49215
Merge pull request #5911 from ReenExeContributor/scrutinizer-clear-code
...
Scrutinizer clear code
2016-07-05 18:21:08 +02:00
ReenExe
bcc7983934
after review
2016-07-05 19:15:47 +03:00
Marco Pivetta
ab4b761110
Merge pull request #5913 from ReenExeContributor/clear-code-metadata-info
...
Clear code metadata info
2016-07-05 18:09:18 +02:00
ReenExe
f7c16ab364
remove else
2016-07-03 00:21:00 +03:00
ReenExe
99b1eaaabb
clear code - double condition after isset
2016-07-03 00:17:51 +03:00
ReenExe
1dba0b8545
clear code
2016-07-03 00:14:33 +03:00
ReenExe
0e8491a474
clear code
2016-07-03 00:11:44 +03:00
ReenExe
511b27517a
refactoring: extract method
2016-07-03 00:10:43 +03:00
ReenExe
a81458a0aa
1. merge conditions
...
2. convert `if` to `condition`
2016-07-03 00:05:31 +03:00
ReenExe
b108a2af52
merge conditions
2016-07-03 00:01:07 +03:00
ReenExe
f7317d700c
logical remove double condition
2016-07-02 23:58:29 +03:00
ReenExe
2301fb3ff2
move common cascades
2016-07-02 23:53:23 +03:00
ReenExe
eccec87796
clear code
2016-07-02 23:47:21 +03:00
ReenExe
c0fc4f1158
use internal function
2016-07-02 23:02:13 +03:00
ReenExe
52b2d9022a
use ternary
2016-07-02 23:00:40 +03:00
ReenExe
a7c4ca82fd
use ternary
2016-07-02 22:59:16 +03:00
ReenExe
6bf6bae219
clear code
2016-07-02 22:51:44 +03:00
ReenExe
c6675b0ce3
use ternary
2016-07-02 22:42:46 +03:00
ReenExe
db6c593463
clear code
2016-07-02 22:37:12 +03:00
ReenExe
347d1625bc
merge conditions
2016-07-02 22:33:23 +03:00
ReenExe
16cddd4693
claar code from Scrutinizer
2016-07-02 22:13:06 +03:00
Marco Pivetta
ffd1465af2
Merge pull request #5910 from ReenExeContributor/clear-code
...
Code cleanups: early return/internal function usage
2016-07-01 01:05:16 +02:00
ReenExe
8eef0beacb
clear code
2016-07-01 01:20:52 +03:00
ReenExe
015ec444c5
use PHP common functions
2016-07-01 01:17:25 +03:00
Marco Pivetta
32ea9112fa
Merge pull request #5898 from radmax/patch-1
...
Typo
2016-06-30 15:08:18 +02:00
Marco Pivetta
b55ef58025
Merge pull request #5902 from holtkamp/patch-1
...
Fixed typo (serves => servers)
2016-06-26 09:15:21 +02:00
Menno Holtkamp
a3e9529c02
Fixed typo (serves => servers)
2016-06-25 17:29:04 +02:00
radmax
2ab752bfc3
typo
2016-06-22 17:06:16 +02:00
Michal Zuber
7ef3e3a60c
Check for Xcache from INI setting
...
On a shared webhosting the Xcache module is loaded, but it can be disabled with .htaccess `php_flag xcache.cacher Off` which causes issues.
2016-06-22 08:50:36 +02:00
Marco Pivetta
04b48ae12b
Merge pull request #5892 from BreiteSeite/5882-documentation
...
#5882 recommend using latest stable PHP version in the getting started guide
2016-06-20 22:10:15 +02:00
Michael Kühn
58d8b86bd5
#5882 recommend using latest stable PHP version in the getting started guide
2016-06-20 21:17:36 +02:00
Marco Pivetta
8237760c1b
Merge pull request #5891 from Chrisp1tv/master
...
Fix typo in PHPDoc block of QueryBuilder.php
2016-06-20 15:11:54 +02:00
Christopher Anciaux
76badc296a
Fix typo in PHPDoc block of QueryBuilder.php
2016-06-20 14:20:36 +02:00
Marco Pivetta
1162440d55
Merge pull request #5837 from foaly-nr1/patch-1
...
Use constant consistently
2016-06-19 19:41:37 +02:00
Marco Pivetta
8c49ba6128
Merge pull request #5886 from gadelat/remove-unused-variables
...
removed some unused variables
2016-06-19 18:35:24 +02:00
Gabriel Potkány
56a6505294
removed some unused variables
2016-06-19 14:46:02 +02:00
Marco Pivetta
3dfc180720
Merge branch 'fix/#5867-allow-embeddable-usage-in-inheritance'
...
Close #5867
Close #4097
Close #4277
2016-06-19 12:44:37 +02:00
Marco Pivetta
18e3cb4440
#5867 @group annotations, describing scenario
2016-06-19 12:44:19 +02:00
Marco Pivetta
aa8cf7bae9
#5867 simplifying test case by inlining all required models into the test case
2016-06-19 12:42:49 +02:00
Luís Cobucci
27f3bc1e2c
Allow the usage of embedded objects on parent classes.
...
The `ClassMetadataInfo` was always using the "current class" to
fetch the reflection of a property even when a field is declared
on the parent class (which causes `ReflectionProperty` to throw
an exception).
2016-06-19 12:35:57 +02:00
Marco Pivetta
b59b966cc2
Merge pull request #5884 from doctrine/cleanup/drop-php-5.5-support
...
Drop PHP 5.5 support
2016-06-19 09:37:40 +02:00
Marco Pivetta
a9bca86d4d
Merge pull request #5885 from doctrine/fix/proxy-failure-fixes
...
Partially reverting #5860 due to type juggling horrors
2016-06-19 09:37:25 +02:00
Marco Pivetta
d00069e38b
Reverting 741da7806c, which was causing issues due to loose type checking
...
See this example on why the revert is needed: https://3v4l.org/8T34v
Code copied for reference:
```php
<?php
$a = 1;
switch ($a) {
case "1";
echo "FUCK YOU, STUPID LANGUAGE!";
break;
case 1;
echo __LINE__;
break;
}
```
2016-06-19 09:28:12 +02:00
Marco Pivetta
e409c10209
Requiring at least PHP 5.6 as minimum installed PHP version
2016-06-19 08:51:48 +02:00
Marco Pivetta
1610d916a4
Stop testing against PHP 5.5
2016-06-19 08:51:24 +02:00
Marco Pivetta
765e102d01
Merge pull request #5856 from doctrine/fix/#5854-default-query-cache-test-using-wrong-reflection-instance
...
#5854 workaround to avoid populating Second Level Cache from DQL queries with multiple nested DQL aliases
2016-06-19 08:48:38 +02:00
Marco Pivetta
ed7f658437
Testing against PHP nightly, but allowing it to fail
2016-06-19 08:41:00 +02:00
Marco Pivetta
659f6a3864
Merge pull request #5883 from sebastianbergmann/phpunit-5.4
...
Make test suite compatible with PHPUnit 5.4.
2016-06-18 16:44:00 +02:00
Sebastian Bergmann
9da83cfae8
Make test suite compatible with PHPUnit 5.4.
...
* Use createMock() and getMockBuilder() instead of getMock()
* Use expectException() and expectExceptionMessage() instead of setExpectedException()
2016-06-18 13:01:59 +02:00
FabioBatSilva
163dac4a91
#5854 - Fix SLC queries with multiple nested DQL aliases
2016-06-17 00:11:18 -04:00
Marco Pivetta
c834ccf3fa
#5854 added PHP 7.1 to the build matrix
2016-06-16 23:00:59 -04:00
Marco Pivetta
be090e2f75
#5854 removing failure caused by a ReflectionProperty being instantiated against the wrong class name in a test
2016-06-16 23:00:59 -04:00
Marco Pivetta
288e3191ce
#5854 - simple workaround to avoid populating SLC cache from DQL queries with multiple nested DQL aliases
2016-06-16 23:00:59 -04:00
Marco Pivetta
d3f6c5ec70
Merge pull request #5873 from vudaltsov/patch-1
...
Update query-builder.rst
2016-06-14 04:39:57 +02:00
Valentin Udaltsov
6ac7480df4
Update query-builder.rst
...
Removed one brace
2016-06-14 04:32:20 +03:00
Marco Pivetta
81fe6a82b3
Merge branch 'fix/#5858-yaml-exporter-should-only-introspect-join-column-on-owning-association-side'
...
Close #5858
2016-06-08 13:33:43 +02:00
Thomas Ploch
ea788fb734
Exporters should only inspect joinColumns for owning side in bi-directional OneToOne
...
rebased commits:
- Added test case for bi-directional OneToOne in YamlExporter
- Only inspect joinColumns for owning side in bi-directional OneToOne in YamlExporter
- Adding bi-directional test case without joinColumn to XmlExporter test
- Same testcase also applied to PhpExporter
- Fixing bi-directional issue in PhpExporter when inspecting joinColumns index
- Implemented @Ocramius suggestions
2016-06-08 13:24:43 +02:00
Marco Pivetta
7e4106d47c
Merge pull request #5860 from peter-gribanov/master
...
Removed hacky switch/case, migrated to if/else and early return statements
2016-06-08 12:39:03 +02:00
Marco Pivetta
9b902263d5
Merge pull request #5863 from tPl0ch/feature-drop-54
...
Remove EOL PHP 5.4 from `.travis.yml` and `composer.json` - Fixes #5862
2016-06-08 12:36:21 +02:00
Thomas Ploch
650d49ee81
Tightened PHP version constraint in composer.json
2016-06-08 12:19:31 +02:00
Thomas Ploch
68b0060595
Fixing PHP version constraint in composer.json
2016-06-08 12:11:11 +02:00
Thomas Ploch
649ff94b38
Remove EOL PHP 5.4 from .travis.yml - Fixes #5862
2016-06-08 12:08:50 +02:00
Peter Gribanov
fa7799cec1
return check EventManager
2016-06-08 12:24:41 +03:00
Peter Gribanov
c0a87597fa
correct code style
2016-06-08 11:47:09 +03:00
Peter Gribanov
0b5b7190d7
not check EventManager
2016-06-08 11:29:43 +03:00
Peter Gribanov
fadd0a338f
add createConnection static method
2016-06-08 10:58:44 +03:00
Peter Gribanov
741da7806c
change switch/case to if/else
2016-06-08 10:29:39 +03:00
Marco Pivetta
3bc61d5f5e
Merge branch 'fix/#5850-clearing-specific-entity-name-should-clear-also-its-entity-insertions'
...
Close #5850
Close #5849
2016-06-06 00:35:44 +02:00
Marco Pivetta
68c5d761a8
#5849 #5850 minor performance optimization - avoiding get_class() calls on all entity insertions
2016-06-06 00:25:48 +02:00
Marco Pivetta
b9b952ce8a
#5849 #5850 renamed clearEntityInsertions to clearEntityInsertionsForEntityName, for clarity
2016-06-06 00:13:39 +02:00
Marco Pivetta
20d86c5b27
#5849 #5850 refactored clearIdentityMapForEntityName to remove useless looping
2016-06-06 00:11:19 +02:00
Marco Pivetta
14e0800293
#5849 #5850 renamed clearIdentityMap to clearIdentityMapForEntityName, for clarity
2016-06-06 00:10:18 +02:00
Marco Pivetta
34d8e00df7
#5849 #5850 correcting test scenario: identity map could not be built with auto-generated identities+persist
2016-06-06 00:08:26 +02:00
Marco Pivetta
313e4a33e5
#5849 #5850 adding group annotations to the newly introduced test case
2016-06-05 23:54:16 +02:00
Rico Humme
beb2641492
Correct naming convention of function. Was confusing otherwise
2016-06-05 23:16:09 +02:00
Rico Humme
4d48781e2b
Split of functionality in separate functions
2016-06-05 23:16:09 +02:00
Rico Humme
3df494ddc8
Test Case for Clear entityInsertions for specific entityName
2016-06-05 23:16:09 +02:00
Rico Humme
70603ee3db
Clear entityInsertions for specific entityName
2016-06-05 23:16:09 +02:00
Marco Pivetta
90b7450747
Merge pull request #5853 from lcobucci/patch-1
...
Fix typo
2016-06-05 22:34:07 +02:00
Luís Otávio Cobucci Oblonczyk
2c1818d513
Fix typo
2016-06-05 10:25:08 +00:00
Marco Pivetta
1c2b7c9685
Merge pull request #5813 from jeanCarloMachado/issue_5786
...
Add embedded and embeddable annotations in annotations reference index
2016-05-26 00:58:40 +02:00
Jonny Schmid
a6eb7f7c96
Use constant consistently
2016-05-25 10:23:03 +01:00
ismail BASKIN
fafb8166f4
Fix custom-id-generator class attribute type
...
custom-id-generator tag's attribute type must be FQCN. But NMTOKEN type doesn't support backslash character.
2016-05-22 19:36:15 +03:00
Marco Pivetta
b3aa8254e4
Merge pull request #5823 from munkie/unused-code
...
Optimize imports. Remove full qualified class names. Remove dead code.
2016-05-13 04:47:26 +02:00
Marco Pivetta
2f60d6a1f8
Merge pull request #5817 from primozcigler/master
...
Added missing - in the in getting started docs.
2016-05-12 07:27:03 +02:00
Primoz Cigler
964d510357
Added missing - in the in getting started docs.
2016-05-11 09:11:55 +02:00
Mikhail Shamin
b173763bbb
Remove full qualified class names in tests
2016-05-11 03:00:44 +07:00
Mikhail Shamin
bf322b903d
Optimize imports. Remove full qualified class names
2016-05-11 01:55:12 +07:00
Jean Carlo Machado
56daa67f94
add embedded and embeddable annotations in annotations reference index
2016-05-09 22:25:22 -03:00
Maks Rafalko
c5283eea87
Fix typo
...
`cached` -> `catched`
2016-05-01 15:03:40 +03:00
Guilherme Blanco
59a0410951
Merge pull request #5729 from funivan/patch-1
...
Fix typo
2016-04-21 11:26:15 -04:00
iBet7o
165722cf05
Fix bug: orderBy documentation
2016-04-17 17:31:48 -05:00
Marco Pivetta
76a5229fac
Merge pull request #5771 from teohhanhui/patch-1
...
Remove note on findBy not supporting entity
2016-04-12 13:39:55 +02:00
Teoh Han Hui
6c2463b905
Remove note on findBy not supporting entity
2016-04-12 15:05:16 +08:00
Andrei Sozonov
2f2236a1d6
fix typo
2016-04-01 15:54:17 +03:00
Guilliam Xavier
60e2224e6b
Fix PHP syntax error in composite-primary-keys.rst
...
Add missing semicolon after `private $year` on line 12 of `Car` class example code to fix `Parse error: syntax error, unexpected 'public' (T_PUBLIC), expecting ',' or ';' in [...]/VehicleCatalogue/Model/Car.php on line 14`
2016-03-24 18:08:58 +01:00
Aaron Merryman
b3df49b2f3
Update tools.rst
2016-03-23 18:54:20 -07:00
ivan
01e53ba44a
Fix typo
2016-03-21 14:16:07 +02:00
Ondřej Machulda
f06f383a38
Cleanup no longer used coveralls settings
2016-03-12 01:24:56 +00:00
Marco Pivetta
c1943624ab
Merge pull request #5686 from mbeccati/build-fix
...
Fixed test failing due to changes in AnnotationReader
2016-03-04 19:37:47 +01:00
Matteo Beccati
82588c0af9
Fixed test failing due to changes in AnnotationReader
...
Doctrine\Tests\ORM\Mapping\AnnotationDriverTest::testLoadMetadataForNonEntityThrowsException
Argument 1 passed to Doctrine\Common\Annotations\AnnotationReader::__construct() must be an instance of Doctrine\Common\Annotations\DocParser, instance of Doctrine\Common\Cache\ArrayCache given, called in .../tests/Doctrine/Tests/ORM/Mapping/AnnotationDriverTest.php on line 19 and defined
See: https://revive.beccati.com/bamboo/browse/PHP-DOCTR-PHP55-646/test/case/11813971
2016-02-29 11:06:23 +01:00
mikeSimonson
4b45183dbd
Merge pull request #5670 from mikeSimonson/doc
...
Add precision on the time units
2016-02-23 17:15:24 +01:00
Marco Pivetta
6ed05a9670
Merge pull request #5675 from jeanCarloMachado/fix_broken_links_doc
...
Fixed broken links on getting-started tutorial
2016-02-21 14:44:07 +01:00
Jean Carlo Machado
4c2ced8fee
fixed broken links on getting-started tutorial
2016-02-21 10:31:14 -03:00
Marco Pivetta
aef8f63dd0
Merge pull request #5673 from svycka/patch-1
...
removed unused use statement
2016-02-19 11:38:00 +00:00
Vytautas Stankus
9c320ca64f
removed unused use statement
2016-02-19 12:26:53 +02:00
mikeSimonson
1fa71f15d9
Merge pull request #5671 from mikeSimonson/jira-update
...
Removing section about jira as it has been removed.
2016-02-17 12:13:43 +01:00
mike
38efda33e1
Removing section about jira as it has been removed.
2016-02-17 11:02:19 +01:00
mike
13473e8b4e
Add precision on the time units
2016-02-17 10:57:05 +01:00
Guilherme Blanco
9b4c50e81e
Final work around entity changeset fix
2016-02-16 05:03:11 +00:00
Guilherme Blanco
b784a04cf7
Fixed only variables should be passed by reference issue
2016-02-16 04:46:34 +00:00
Guilherme Blanco
86cde3a9df
Fixed #5605
2016-02-16 03:21:53 +00:00
Guilherme Blanco
d814ad7234
Merge pull request #5668 from petitchevalroux/many-to-many-criteria-fixes
...
Many to many criteria fixes
2016-02-15 21:07:17 -05:00
Patrick Poulain
9461839d42
Fix PostgreSql Tests
2016-02-15 21:07:09 +01:00
Patrick Poulain
e8296e8e7d
Fix ORM Driver Tests
2016-02-15 21:06:34 +01:00
Patrick Poulain
cbde629bf0
Fix MySql Tests
2016-02-15 21:06:01 +01:00
Marco Pivetta
02eaf6a17a
Merge pull request #5667 from JeroenDeDauw/ORMException
...
Add missing @throws tags
2016-02-15 15:38:44 +01:00
jeroendedauw
34dbefaf22
Add missing @throws tags
2016-02-15 15:15:32 +01:00
jeremygiberson@gmail.com
dd64161ece
forgot to delete from relational table first
2016-02-14 18:00:15 -07:00
jeremygiberson@gmail.com
cc7ef71a13
added teardown for new cmstag table
2016-02-14 17:48:53 -07:00
jeremygiberson@gmail.com
1e660abeb8
cascade all operations on cmstags
2016-02-14 17:43:58 -07:00
jeremygiberson@gmail.com
3ed64dcec2
changed relation table column name to match
2016-02-14 17:37:25 -07:00
Jeremy Giberson
dd3f67d862
updated manytomany so it maps field names to column names in criteria ordering
2016-02-11 13:39:31 -07:00
Jeremy Giberson
0feaf92348
improve test readability
2016-02-10 20:27:43 -07:00
Jeremy Giberson
ae785757a1
Merge branch 'fix-many-many-criteria' of github.com:petitchevalroux/doctrine2 into many-to-many-criteria-fixes
...
Conflicts:
lib/Doctrine/ORM/Persisters/Collection/ManyToManyPersister.php
2016-02-10 20:04:48 -07:00
Jeremy Giberson
0adeade045
merged git@github.com:SammyK/doctrine2.git:many-to-many-order-by-fix
2016-02-10 19:52:03 -07:00
Jeremy Giberson
f0accca99d
Merge branch 'DDC-3719-fix' of github.com:jeanCarloMachado/doctrine2 into many-to-many-criteria-fixes
2016-02-10 19:40:45 -07:00
Patrick Poulain
cfeda903e3
Fix many-to-many matching ignoring offset/limit
2016-02-05 11:14:47 +01:00
Jean Carlo Machado
468fe315ba
fixed indentation
2016-01-29 10:03:44 -02:00
Jean Carlo Machado
375b0369ae
added test of matching non-owing side with criteria
2016-01-28 19:36:52 -02:00
Marco Pivetta
788143dc03
Merge pull request #5634 from alexislefebvre/travis-ci-remove-duplicate-condition
...
Remove duplicate code in .travis.yml
2016-01-26 23:00:55 +01:00
Alexis Lefebvre
a1ca73d1e1
Remove duplicate code in .travis.yml
...
The "$TRAVIS_PHP_VERSION != '7.0'" condition was duplicated
See #5580 .
2016-01-26 22:28:56 +01:00
Alessandro Lai
1e97cf21e8
Reverting removal of lock tests paragraph; minor fixes
2016-01-20 16:52:13 +01:00
Alessandro Lai
2c70f4edf7
[DOCUMENTATION] Update tests README
2016-01-20 16:42:58 +01:00
Marco Pivetta
a4d84e0cd8
Merge pull request #5599 from zeroedin-bill/fix/5598-having-regression-fix
...
Fix #5598 issue with /, * in DQL not translating query components properly
2016-01-16 10:29:49 -06:00
Steve Müller
b491e75d64
Merge pull request #5612 from issei-m/patch-2
...
[Doc] Is it a typo?
2016-01-15 02:48:44 +01:00
Issei.M
5535690b75
[Doc] Fix typo
2016-01-14 19:39:16 +09:00
Bill Schaller
744c308337
Remove dead code SQLWalker::walkCaseExpression
2016-01-08 13:58:02 -05:00
Bill Schaller
55d4f515af
Fix issue were identifier operands in /,* arithmetic terms were not checked to see if they're query components
2016-01-08 12:53:05 -05:00
Alessandro Lai
d7e7baf2a2
Regression test: HAVING clause does not translate variable name when used with * and / math operators
2016-01-08 17:56:41 +01:00
Marco Pivetta
196ea2d0c5
Merge pull request #5597 from deeky666/DDC-5596
...
Fix documentation of schema tool's "save mode"
2016-01-08 16:14:14 +01:00
Steve Müller
f9217cf6f2
fix documentation of schema tool's "save mode"
...
fixes #5596
2016-01-08 15:37:19 +01:00
Steve Müller
1697293591
Merge pull request #1563 from rawkode/bugfix/incorrect-rollback-method-name
...
Fixing method name 'rollBack', which was documented as 'rollback'
2016-01-06 11:49:32 +01:00
Steve Müller
22b9574a0f
Merge pull request #5591 from doctrine/docs/remove-2-4-from-readme
...
Removing 2.4 from README
2016-01-06 00:49:59 +01:00
Marco Pivetta
5bd476209d
Removing 2.4 from README
2016-01-06 00:48:26 +01:00
Marco Pivetta
ebe11c7bcf
Merge pull request #5590 from zeroedin-bill/fix-discriminator-column-defaults
...
Fix discriminator column defaults
2016-01-05 23:42:56 +01:00
Bill Schaller
8bde0c8a90
Fix AnnotationDriver, XmlDriver, YamlDriver to properly set DiscriminatorColumn defaults for type and length.
...
Note: Even though the column definition generated for a discriminator column
would eventually default the type to string and length to 255, the docs specify
defaults that should be reflected explicitly in the discriminatorColumn mapping.
2016-01-05 12:32:25 -05:00
Bill Schaller
6963fd8f20
Update docs for @DiscriminatorColumn to indicate that it is optional.
2016-01-05 12:30:29 -05:00
Bill Schaller
d97fad26a5
Add tests to ensure DiscriminatorColumn is optional, and that optional params type and length have proper defaults.
2016-01-05 12:29:49 -05:00
Marco Pivetta
7f16e5bc51
Merge pull request #5585 from mikeSimonson/cpr-year
...
Replacing the hardcoded year with a function call
2016-01-04 11:06:01 +01:00
mike
50d7ed98ca
Replacing the hardcoded year with a function call
2016-01-04 10:47:37 +01:00
Marco Pivetta
b792e959cd
Merge pull request #5584 from harikt/patch-2
...
Fix broken links to blog post.
2016-01-02 18:03:26 +01:00
Hari K T
30eb4646f7
Fix broken links to blog post.
2016-01-02 22:30:32 +05:30
Marco Pivetta
b22cdab1bb
Merge pull request #5580 from doctrine/hotfix/move-from-coveralls-to-scrutinizer-coverage
...
Move from coveralls to scrutinizer coverage
2015-12-29 20:18:34 +01:00
Marco Pivetta
43787447d6
Test suite is SLOOOOOOOOWWWWWW
2015-12-29 17:11:14 +01:00
Marco Pivetta
75957ee3e7
We can safely run coverage reporting on PHP7 only
2015-12-29 17:07:38 +01:00
Marco Pivetta
3e87a1c4b8
Uploading coverage information via ocular.phar
2015-12-29 16:54:36 +01:00
Marco Pivetta
e37e1818c6
Adding scrutinizer-ci config
2015-12-29 16:51:44 +01:00
Marco Pivetta
86e13f9c5d
Removing coveralls dependency
2015-12-29 16:47:20 +01:00
Marco Pivetta
5849dec16f
Shameless plug
2015-12-29 16:46:59 +01:00
Marco Pivetta
3ca6828544
Allowing doctrine/common 2.6
2015-12-25 15:58:57 +01:00
Marco Pivetta
5e53e92fc5
Merge branch 'hotfix/common-2.6-upgrade-compat'
2015-12-25 15:26:30 +01:00
Marco Pivetta
e0148f14e2
doctrine/common 2.6.0 compat
...
Less strict assertion - no need to check the exact file name
2015-12-25 15:20:35 +01:00
Marco Pivetta
6e6d3e27ab
Common 2.6 compatibility
...
Internal structure of the ArrayCache has changed, therefore we should fix the tests depending on it instead
2015-12-25 15:10:21 +01:00
Marco Pivetta
eb62e4d6c3
Merge branch 'hotfix/#4884-support-proxy-php7-hints-generation'
...
Close #4884
2015-12-25 14:46:30 +01:00
Marco Pivetta
7057d3607e
#4884 - allow installation of doctrine/common 2.6.x, which allows generating type-hints on proxies
2015-12-25 14:46:11 +01:00
Marco Pivetta
3260291aef
Merge pull request #5572 from greg0ire/patch-2
...
Guess missing words
2015-12-25 14:40:29 +01:00
Grégoire Paris
f9715ac24a
Guess missing words
2015-12-22 17:44:00 +01:00
Marco Pivetta
24e4215ab3
Merge pull request #5557 from malukenho/enhancement/remove-unecessary-namespace-use-and-import
...
Remove unnecessary namespaces imports and usage
2015-12-16 10:50:51 +01:00
Jefersson Nathan
156075682f
Remove unnecessary namespaces imports and usage
2015-12-16 05:45:55 -03:00
Marco Pivetta
6099e45eef
Merge branch 'hotfix/#1572-target-entity-resolver-dql-with-interfaces-support-2.6.x'
...
Close #1572
2015-12-11 21:34:57 +01:00
Marco Pivetta
0c6b510c2a
#1572 - test coverage - interfaces should also resolve to target entities when in DQL
2015-12-11 21:34:11 +01:00
oprokidnev
e390dbd5ba
Target entity resolver for DQL
...
Since we have target entity resolver in doctrine this class check is not enought.
To gain interface resolution it is better to add interface check in addition to class_check here.
2015-12-11 21:33:59 +01:00
Marco Pivetta
b341d5c453
Merge pull request #5548 from doctrine/cleanup/classmetadata-get-column-names-simplification
...
Cleanup - `ClassMetadataInfo#getColumnNames()` simplification
2015-12-11 21:20:12 +01:00
Marco Pivetta
044b202379
Simplifying getColumnNames logic (can be an array_map call)
2015-12-11 20:50:18 +01:00
Marco Pivetta
b2a6f8aa0e
Adding test case for fetching column names by field names
2015-12-11 20:48:59 +01:00
Marco Pivetta
276a22fb6f
Merge branch 'cs/#1228-minor-php-cs-fixes'
...
Close #1228
2015-12-11 20:32:28 +01:00
Jeroen Thora
6dcb97a20e
Fixed many small phpcs issues
2015-12-11 20:30:41 +01:00
Marco Pivetta
0a1fa8920e
Merge pull request #1396 from Padam87/embeddable_docs
...
[Documentation] Initializing embeddables doc
2015-12-11 20:24:44 +01:00
Marco Pivetta
3971e8c55b
Merge branch 'hotfix/#1573-merge-associated-versioned-entity'
...
Close #1573
2015-12-11 20:17:05 +01:00
Marco Pivetta
996db42029
#1573 - correcting test asset namespace, removing unused properties and bi-directional association
2015-12-11 20:14:53 +01:00
Marco Pivetta
cf3a54ab95
Removing empty newline
2015-12-11 20:00:59 +01:00
Marco Pivetta
16baa8d60f
#1573 - correcting docblock arguments/description
2015-12-11 20:00:08 +01:00
Marco Pivetta
41235f61de
#1573 removing unused API
2015-12-11 19:59:08 +01:00
Marco Pivetta
21a250fc02
Merge pull request #1472 from PowerKiKi/mariadb
...
Add test for MariaDB 5.5 and 10.1 on Travis
2015-12-11 19:45:09 +01:00
Marco Pivetta
9ac7c3bf70
Merge pull request #5547 from doctrine/hotfix/php7-xdebug-incompatibility-fixes
...
Correcting minor test case incompatibility with XDebug 2.4.x
2015-12-11 19:39:43 +01:00
Marco Pivetta
342ab2f7f1
Correcting minor test case incompatibility with XDebug 2.4.x
...
In PHP 5.x + XDebug < 2.4, the output would be "string:..."
In PHP 7.x + XDebug >= 2.4, the output would be "the/file/name.php:11:string:..."
This is an improvement in XDebug that is quite annoying for our purposes, but is actually welcome to most users anyway.
This commit simply fixes that incompatibility
2015-12-11 19:15:48 +01:00
Marco Pivetta
84f2bf7204
Merge branch 'docs/#1497-update-orm-documentation-for-utc-datetime-type'
...
Close #1497
2015-12-11 18:53:28 +01:00
Marco Pivetta
8c086d1a6e
#1497 - minor CS fixes
2015-12-11 18:53:18 +01:00
Marco Pivetta
df129635cf
#1497 - simplifying UTC datetime handling logic in the examples
...
Highly performance sensitive code should avoid method calls, sadly
2015-12-11 18:52:26 +01:00
Marco Pivetta
a130ff96ba
#1497 - Using a PHP code block to describe how a datetime+utc type can be set up
2015-12-11 18:48:23 +01:00
Marco Pivetta
5b22e59383
Removing symfony-specific documentation
2015-12-11 18:43:53 +01:00
Marco Pivetta
624fcb4486
Merge branch 'docs/#1496-docblock-fixes'
...
Close #1496
2015-12-11 18:27:36 +01:00
Marco Pivetta
00718f6bf7
#1496 s/$this/self
2015-12-11 18:27:19 +01:00
Damien Gavard
9b4dadade0
Use @return $this instead of @return static for consistency
2015-12-11 18:22:26 +01:00
Damien Gavard
5687347d60
Fix invalid return type documentation
2015-12-11 18:22:26 +01:00
Damien Gavard
15aafaa11d
Use @return $this instead of return explicitly QueryBuilder
2015-12-11 18:22:26 +01:00
Damien Gavard
8d62aadf55
Fix invalid return type in docblock
2015-12-11 18:22:26 +01:00
Marco Pivetta
b1bf57db48
Merge pull request #1408 from baileylo/patch-1
...
[doc] Remove unused variable from sample code
2015-12-11 18:19:26 +01:00
Marco Pivetta
9e68a5adc7
Merge pull request #1579 from aschempp/proxy-initialized-cs
...
Reduce code duplication in ProxyFactory::createInitializer
2015-12-11 18:16:53 +01:00
Benjamin Eberlei
a6ddac0a96
Remove link to issue tracker
2015-12-08 22:51:45 +01:00
Marco Pivetta
bd94931201
Merge pull request #1574 from Ma27/patch-1
...
deduplication of internal UnitOfWork methods
2015-12-08 19:02:28 +01:00
Andreas Schempp
4df7699ced
Reduce code duplication in ProxyFactory::createInitialized
...
The only difference between the ~30 lines in the IF-statement
is that the __wakup method is called on the proxy object.
2015-12-06 14:56:36 +01:00
bilouwan
fb4d02c69b
Refactor testing Proxy not initilized
2015-12-04 14:49:01 +01:00
StoshSeb
da4a29c0e2
Fixed DDC-3740
...
The count must return an integer, not a string
2015-12-03 13:15:12 +01:00
bilouwan
d2cbdd1866
Fix superflous whitespaces & empty lines
2015-12-02 14:09:14 +01:00
Maximilian Bosch
f840f0d464
DDC-4022 execute callback parameter directly instead of using call_user_func
2015-12-01 22:31:27 +01:00
Maximilian Bosch
11f9b00d53
DDC-4022 method naming
2015-12-01 22:31:26 +01:00
Maximilian Bosch
33476d8c34
DDC-4022 minor improvements
2015-12-01 22:31:25 +01:00
Maximilian Bosch
c337f8f5c7
DDC-4022 deduplication of internal UnitOfWork methods
...
the methods UnitOfWork#afterTransactionRolledBack() and UnitOfWork#afterTransactionComplete do almost the same, so it can be abstracted into another private method.
2015-12-01 22:31:25 +01:00
Guilherme Blanco
3c3b7364ba
Hotfix for missing reverse dependency in case of non-implicit change tracking policies
2015-12-01 20:24:16 +00:00
Guilherme Blanco
9b77ba2c1a
Merge pull request #1570 from doctrine/DDC-2524
...
[RFC] Tests around reported cases over DDC-2524
2015-12-01 00:27:34 -05:00
David McKay
3c7d92e4cc
Fixed incorrect case of another two references of rollback
2015-11-30 16:53:31 +00:00
bilouwan
e8f40f58a1
Fix compatibility with php5.4
2015-11-30 10:35:42 +01:00
Guilherme Blanco
8ea62b95b8
Tests around reported cases over DDC-2524
2015-11-27 18:44:23 +00:00
bilouwan
832adae6b4
Unit test & fix for merge versionned entity
2015-11-27 17:28:45 +01:00
Guilherme Blanco
599f99471e
Merge pull request #1571 from montaniasystemab/patch-1
...
Fixed typo in QueryBuilder->where() docblock
2015-11-26 15:30:56 -05:00
montaniasystemab
b48fca543c
Fixed typo in QueryBuilder->where() docblock
2015-11-26 10:01:29 +01: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
Marco Pivetta
b980e98ba3
Merge pull request #1566 from BenMorel/typofix
...
Fix typos in DQL doc
2015-11-23 14:27:26 +01:00
Benjamin Morel
6d8778fd69
Fix typos in DQL doc
2015-11-23 12:18:18 +01:00
David McKay
f8ba3a3434
Fixing method name 'rollBack', which was documented as 'rollback'
2015-11-21 18:18:56 +00:00
Guilherme Blanco
3cff0f88bd
Merge pull request #1562 from deeky666/fix-empty-expression
...
Fix empty expression on PHP 5.4
2015-11-19 10:45:21 -05:00
Steve Müller
e0cb90d426
fix empty expression on PHP 5.4
2015-11-19 16:43:33 +01:00
Marco Pivetta
9c5cea3e95
Merge pull request #1561 from deeky666/DDC-4006
...
[DDC-4006] Inherit ID generator strategy mapping from embeddables
2015-11-19 16:34:32 +01:00
Guilherme Blanco
22e76e8624
Merge pull request #1559 from guiwoda/wrong-entity-cache-read-inheritance
...
Entity cache key is built differently on read than on write
2015-11-19 10:30:37 -05:00
Steve Müller
86c81da7ce
inherit ID generator strategy mapping from embeddables
2015-11-19 16:10:48 +01:00
Guido Contreras Woda
6c96e23a47
Test to verify the bug and the fix
2015-11-19 12:02:51 -03:00
Guilherme Blanco
0b45d96c74
Merge pull request #1560 from gitname/patch-2
...
Fix broken links
2015-11-17 21:40:13 -05:00
gitname
001d5b7ed3
Fix relative links
...
Fix 2 relative links to other docs files
2015-11-17 12:30:32 -08:00
Guido Contreras Woda
427642aaba
Entity cache key is built differently on read than on write
2015-11-17 16:10:17 -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
50ee47cc70
Merge pull request #1492 from nicolas-grekas/doc-fix
...
Fix misleading docblock example
2015-11-15 22:19:27 -05:00
Guilherme Blanco
04789dfec7
Merge pull request #1443 from meeuw/unsigned
...
Unsigned
2015-11-15 22:16:15 -05:00
Guilherme Blanco
7fc36b4110
Merge pull request #1450 from davidfuhr/doc-version
...
Link annotation ref to locking explanation
2015-11-15 22:14:36 -05:00
Guilherme Blanco
cdfcca2ff2
Merge pull request #1455 from xoeoro/patch-1
...
Update ExprTest.php
2015-11-15 22:12:36 -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
e8acfb5891
Merge pull request #1481 from mikeSimonson/composer-bin-fix
...
Remove the execution bit on the bin/doctrine.php
2015-11-15 22:02:19 -05:00
Guilherme Blanco
5ec9a62e2b
Merge pull request #1558 from doctrine/DDC-3922
...
[RFC] remove indexes overruled by primary key
2015-11-15 22:01:05 -05:00
vershnik
96398ba30f
remove indexes overruled by primary key
...
There can be unique indexes automatically created for join column.
If join column is also primary key we should keep only primary key on this column.
Oracle does not allow having both unique index and primary key on the same column, it is useless for mysql too.
(Previously it was done by DBAL, but now it allows duplicate indexes)
2015-11-16 02:49:41 +00:00
Guilherme Blanco
c561223d1b
Merge pull request #1557 from gitname/patch-1
...
Reduce ambiguity in Entities description
2015-11-15 21:25:30 -05:00
gitname
8192d5bb3e
Reduce ambiguity in Entities description
2015-11-15 13:27:51 -08:00
Jan Langer
91ce78815f
Second level cache stores identifier with correct type even if findById is called with wrong identifier type
2015-11-14 11:17:16 +01:00
Guilherme Blanco
71bb27a62f
Merge pull request #1555 from doctrine/DDC-3979
...
[RFC] DDC-3979
2015-11-13 11:38:55 -05:00
Guilherme Blanco
e64f44ec9b
Fix one to one inverse side cached entity association key generation
2015-11-13 15:58:52 +00:00
Marco Pivetta
802cc82c8d
Merge pull request #1554 from tai2/fix_document_transactional
...
Fix a documentation error.
2015-11-13 07:00:30 +01:00
tai2
50d87bd111
Fix a documentation error.
2015-11-13 12:07:21 +09:00
Guilherme Blanco
3a44a3dada
Merge pull request #1551 from doctrine/DDC-3976
...
[RFC] DDC-3976
2015-11-12 10:21:37 -05:00
Marco Pivetta
3452f5ccc3
Merge pull request #1553 from OskarStark/patch-1
...
doc fix
2015-11-12 11:50:15 +01:00
Oskar Stark
d49cd4aa1e
doc fix
2015-11-12 11:45:37 +01:00
Guilherme Blanco
58992ad523
Fixed support for inverse side second level cache
2015-11-12 05:00:08 +00:00
Guilherme Blanco
089a0ac60b
Merge pull request #1552 from guiwoda/l2-invalid-collection-cache-key
...
Collection cache key is built differently on read than on write
2015-11-11 10:22:46 -05:00
Guido Contreras Woda
d57ecc12c0
Collection cache key is built differently on read than on write
2015-11-11 12:10:29 -03:00
Guilherme Blanco
1187c51a89
Merge pull request #1529 from tkleinhakisa/2.1-upgrade
...
Update Upgrade.md after minor bc break in 2.5.0
2015-11-08 22:54:20 -05:00
Guilherme Blanco
46dec5478a
Merge pull request #1505 from qu1m/master
...
Fixed issue with entity manager when using LockMode::NONE
2015-11-08 22:51:38 -05: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
664925d7f4
Merge pull request #1550 from doctrine/cache-for-travis
...
[RFC] Added composer cache on travis
2015-11-08 22:41:48 -05:00
Guilherme Blanco
370dbf12de
Added composer cache on travis
2015-11-09 03:40:18 +00:00
Guilherme Blanco
3e0529db53
Merge pull request #1493 from alireza-m/master
...
Pass orderings, maxRresults and firstResult when call getHash
2015-11-08 22:36:06 -05:00
Guilherme Blanco
bad0f17c10
Merge pull request #1549 from doctrine/DDC-3697
...
[RFC] DDC-3697
2015-11-08 22:30:50 -05:00
Guilherme Blanco
443259f629
Some extra refinement over patch
2015-11-09 03:19:11 +00:00
Matthias Pigulla
b7bd42638d
Fix for DDC-3697 and DDC-3701
...
Also fix Lexer::match() so it does not accept T_WHERE when T_WITH is supposed to be matched. (DDC-3701)
2015-11-09 03:19:11 +00:00
Guilherme Blanco
ada97d55ce
Merge pull request #1375 from webimpress/fix/DDC-3671
...
DDC-3671 prevent duplicate unique index
2015-11-07 11:44:02 -05:00
Guilherme Blanco
6dfafad33c
Merge pull request #1547 from doctrine/fix-result-cache
...
[RFC] fixes result cache setting query caching
2015-11-07 11:22:14 -05:00
Alex Vasilenko
c8d2ac40f4
fixes result cache setting query caching
2015-11-07 16:14:54 +00:00
Guilherme Blanco
d7a3154954
Merge pull request #1397 from giosh94mhz/concat_expr_variable_arguments
...
Add Expr::concat support for multiple arguments
2015-11-07 10:45:04 -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
28cebeca1c
Merge pull request #1407 from aivus/patch-1
...
Add return to removeMethodTemplate
2015-11-06 23:11:42 -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
Marco Pivetta
378f6546b4
Merge pull request #1545 from doctrine/general-fixes
...
[RFC] General fixes
2015-11-06 22:56:00 -05:00
Guilherme Blanco
843966ac50
General fixes across CS, type resolving, test fixes, etc
2015-11-07 03:55:05 +00:00
Marco Pivetta
9e085ca0b3
Merge pull request #1308 from z38/override-inversedby
...
[DDC-3579] Allow override of inversedBy
2015-11-05 15:10:43 -05:00
Marco Pivetta
2fa289edee
Merge pull request #1514 from Metabor/patch-2
...
check if collection is empty without loading it
2015-11-05 14:46:15 -05:00
z38
ff28507b88
Allow override of inversedBy
2015-11-05 12:11:29 +01:00
Marco Pivetta
2383ccfba5
Merge branch 'feature/#1354-one-to-many-orphan-removal'
...
Close #1354
2015-11-05 00:24:29 -05:00
Marco Pivetta
f097478437
#1354 - DDC-3644 - short array syntax
2015-11-05 00:13:19 -05:00
Marco Pivetta
a7ded16204
#1354 - DDC-3644 - s/protected/private
2015-11-05 00:11:43 -05: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
Marco Pivetta
06c194310a
Merge pull request #1310 from nicolas-grekas/patch-1
...
Allow symfony 3.0 components
2015-11-04 23:23:06 -05:00
Marco Pivetta
d39a73cce6
Merge pull request #1541 from aleeeftw/master
...
Minor docblock correction
2015-11-01 12:07:35 +01:00
aleeeftw
5481e0fb8b
Minor docblock correction
...
The documentation for the method ‘addJoinedEntityFromClassMetadata’ is
wrong. As we can see currently says you need to pass an object and that
is wrong. The $relation variable is passed to ‘addJoinedEntityResult’
which is using it as a ‘string’.
2015-11-01 10:43:03 +00:00
Pantel
43b2419a3c
[DDC-3711] add Test that check if the association key are composite
2015-10-31 17:19:39 +01:00
Pantel
7de2e04ccd
[DDC-3711] add Tests that check if the association key are composite
2015-10-31 17:15:06 +01:00
Pantel
96687e04a6
[DDC-3711] Correct Error on manyToMany with composite primary key
2015-10-31 16:02:14 +01:00
Steve Müller
b1451cda52
Merge pull request #1533 from sergeyz/patch-1
...
Fix argument type
2015-10-22 09:38:06 +02:00
Marco Pivetta
b15e8b79dc
Merge pull request #1536 from AngelFQC/patch-1
...
Minor - Fix PHP Doc - Update Expr.php
2015-10-20 15:16:25 -07:00
Angel Fernando Quiroz Campos
47441666df
Update Expr.php
2015-10-20 16:55:43 -05:00
Ilya Antipenko
60b80c95cc
Add phpdoc tests for addXxx() and removeXxx() methods
...
Add tests for return types for addXxx() and removeXxx() methods
2015-10-17 17:14:56 +03:00
Marco Pivetta
290dc8989d
Merge pull request #1534 from senkal/gramma-fix/start-sentence-with-capital-letter
...
Use capital letter at the beginning of a sentence
2015-10-11 21:49:07 +02:00
Marcin Sekalski
52817cedfc
Use capital letter and the beginning of a sentence
2015-10-11 13:59:09 +01:00
Sergey Zhuravel
e354ebb162
Fix argument type
2015-10-09 13:53:25 +03:00
Klein Thomas
8535e01115
Move to 2.5 section
2015-10-09 07:12:28 +00:00
Klein Thomas
e682f48422
Update Upgrade.md after minor bc break in 2.5.1
...
The introduction of the second parameter in EntityRepository#createQueryBuilder generates a runtime notice if you have a sub-class of EntityRepository that has a second parameter in the createQueryBuilder method
2015-10-09 07:10:07 +00:00
Marco Pivetta
e91bce5f2a
Merge pull request #1528 from sprain/fix-typo-doc
...
Fixed typo in 9.6.7 of docs
2015-10-05 16:45:19 -03:00
Manuel Reinhard
c86ab7d239
Fixed typo in 9.6.7 of docs
2015-10-05 21:43:03 +02:00
Marco Pivetta
88f43a947d
Merge pull request #1518 from guiwoda/custom-generator-field-builder
...
Added custom ID generator definition to the FieldBuilder
2015-10-04 19:56:17 -03:00
Marco Pivetta
dd2068777c
Merge pull request #1526 from zinovyev/break-on-autoloader-selected
...
Break on autoloader selected
2015-10-04 15:04:42 -03:00
Ivan Zinovyev
1ddb63c88a
Break on autoloader selected
2015-10-04 19:58:57 +03:00
Guido Contreras Woda
3a7d2da2e5
Added custom ID generator definition to the FieldBuilder
2015-10-02 13:51:07 -03:00
Marco Pivetta
5c6f0edb23
Merge pull request #1516 from brabeji/patch-1
...
Clarify @DiscriminatorMap requirement
2015-10-02 05:30:09 -03:00
Marco Pivetta
b5799ae569
Merge pull request #1523 from BenMorel/expr
...
Documentation and case fixes in QueryBuilder
2015-10-01 15:49:29 -03:00
Benjamin Morel
7d4016a757
Documentation and case fixes in QueryBuilder
2015-10-01 20:04:16 +02:00
Marco Pivetta
61ad1bd137
Merge pull request #1520 from maqnouch/patch-1
...
Updated year range
2015-09-30 07:12:43 -03:00
AQNOUCH Mohammed
d02b059269
Updated year range
2015-09-29 22:52:45 +00:00
Jiří Brabec
4b87f5827f
Clarify @DiscriminatorMap reqirement
...
When trying to setup MTI with doctrine, this was always the sentence where I stopped reading as it seems useless if you are forced to specify list of children when you don't even know them. Today I accidentaly read further and found out that this is not necessary.
2015-09-25 12:47:51 +02:00
Oliver Tischlinger
60beca3760
changes after code review
2015-09-25 10:44:30 +02:00
Oliver Tischlinger
03523c67d5
add Unit Test for isEmpty change in LazyCriteriaCollection
2015-09-24 11:39:14 +02:00
Oliver Tischlinger
3e26330c53
check if collection is empty without loading it
...
Actually isEmpty() is always loading the collection in LazyCriteriaCollection.
A lazy version should use the existing functionality of count() to check if there are no elements if the collection is not initialized.
2015-09-23 17:34:11 +02:00
Marco Pivetta
b055d78ea1
Merge pull request #1510 from webfactory/doctrine-cache-removed-DoctrineNamespaceCacheKey
...
Fix tests
2015-09-19 10:39:39 +02:00
Marco Pivetta
2242a4c652
Merge pull request #1511 from BlueM/master
...
Fix class name: AbstractCache -> CacheProvider
2015-09-19 10:22:44 +02:00
Carsten Blüm
42a500a73d
Fix class name: AbstractCache -> CacheProvider
2015-09-19 08:34:00 +02: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
François-Xavier de Guillebon
4b7d8511f8
Fixed wrong variable used as array key
2015-09-14 18:34:55 +02:00
François-Xavier de Guillebon
a18ff95fc4
Fixed wrong property name
2015-09-11 17:17:28 +02:00
Marco Pivetta
8b79fe9d9b
Merge pull request #1506 from Tobion/patch-1
...
Fix variable reference in phpdoc of ClassMetadataInfo
2015-09-11 09:51:12 +01:00
Tobias Schultze
c03996d3b3
Fix variable reference in phpdoc of ClassMetadataInfo
2015-09-11 00:19:18 +02:00
Giorgio Premi
16172534bb
Add Expr::concat support for multiple arguments
2015-09-10 17:01:09 +02:00
Quim Manrique
1dbacec0e4
Fixed issue with entity manager when using LockMode::NONE
2015-09-08 00:31:03 +02:00
Marco Pivetta
1b09bb75b0
Merge pull request #1504 from phansys/doc_uuid_generator_strategy_2
...
Updated docs for basic mapping
2015-09-06 02:08:52 +02:00
Javier Spagnoletti
2e2921690a
Updated docs for basic mapping
...
Added note about UUID identifier generator strategy, which was added in 2.3 version:
0a83560
2015-09-05 15:40:37 -03: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
Marco Pivetta
d1b24dfe12
Merge pull request #1500 from zeroedin-bill/docs-build-improvements
...
Update docs dependency install script and readme to target Ubuntu 14.04
2015-09-04 08:41:38 +01:00
Marco Pivetta
5c8cca2f44
Merge pull request #1485 from hasumedic/php-version-docs
...
Changed references from PHP6 to PHP7
2015-09-04 08:40:37 +01:00
Marco Pivetta
8aa0cdd0b9
Merge pull request #1483 from longkey1/fix-typo
...
Fix typo
2015-09-04 08:37:40 +01:00
Marco Pivetta
2d00a9bcbf
Merge pull request #1482 from bocharsky-bw/patch-1
...
Add type hint for entity manager
2015-09-04 08:34:35 +01:00
Marco Pivetta
29c2b807ce
Merge pull request #1474 from localheinz/fix/unused-imports
...
Fix: Remove unused imports
2015-09-04 08:30:46 +01:00
Marco Pivetta
41ee7e0f1a
Merge pull request #1444 from cezarykluczynski/tutorial-opening-tags-fix
...
Missing opening tags added in one of the tutorials
2015-09-04 08:24:29 +01:00
Marco Pivetta
b062ffdead
Merge pull request #1452 from TomasVotruba/patch-1
...
composer: dev is now by default
2015-09-04 08:22:29 +01:00
Bill Schaller
3e5bf819e3
Update docs dependency install script and readme to target Ubuntu 14.04
2015-09-03 13:58:40 -04:00
Steve Müller
233ebb0ba1
Merge pull request #1499 from issei-m/patch-2
...
minor: removed useless line breaks
2015-09-03 16:40:59 +02:00
Issei.M
df461601f7
removed useless line breaks
2015-09-03 17:55:14 +09:00
Benjamin Eberlei
2b3648c725
[DCOM-293] Fix security misconfiguration vulnerability allowing local remote arbitrary code execution.
2015-08-31 14:16:50 +02:00
Adrien Crivelli
93806a8036
Update DateTime cookbook code
...
It seems that existing code was outdated and lacked ``use`` statement in order to work correctly.
We also added instructions on how to configure the new type, since it may not be straightforward for newcomers.
2015-08-27 15:39:26 +09:00
Alireza Meskin
dfa874642a
Pass orderings, maxRresults and firstResult when call getHash
2015-08-16 15:22:06 +04:30
Nicolas Grekas
df820a5695
Fix misleading docblock example
2015-08-14 14:35:25 +02: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
Alex Salguero
5393bc9956
Removed outdated PHP6 reference in "best practices" docs.
...
Changed references from PHP6 to PHP7 in tests.
2015-07-31 12:25:19 +01:00
Bocharsky Victor
dbd3fa4501
Add type hint for entity manager
2015-07-30 15:32:04 +03:00
longkey1
a3b1f85fd4
typo
2015-07-30 13:16:55 +09:00
mike
1d6adcaf4a
Remove the execution bit on the bin/doctrine.php
2015-07-29 08:41:33 +02:00
Marco Pivetta
71b1dde096
Merge pull request #1473 from ilyar/docs_fix_ref_and_title
...
Docs fix ref and title
2015-07-26 01:19:44 +03:00
Andreas Möller
8a9f6849a2
Fix: Remove unused imports
2015-07-24 12:48:34 +02:00
Ilya Rogov
f10f4b7c52
Fixed WARNING: Title underline too short
2015-07-24 11:09:33 +03:00
Ilya Rogov
bb8f1c77cc
Pretty Ref and Fixed WARNING: Duplicate explicit target name
2015-07-24 11:02:42 +03:00
Adrien Crivelli
57ca849848
Add test for MariaDB 5.5 and 10.1 on Travis
...
This use the brand new supported addon mariadb (not yet officially announced).
This is unfortunately a bit verbose, but I don't think there is any
alternative because we cannot install the addon when testing against mysql
otherwise it would overwrite mysql install.
2015-07-23 12:51:21 +09:00
Andy Cook
26c295b06b
Added non-functional tests for row number over function subselect expression fix; syntax fixes.
2015-07-17 13:24:19 +01:00
Marco Pivetta
f5e79fa0c0
Merge pull request #1466 from Majkl578/travis-container-infrastructure
...
Travis: Switch to container-based infrastructure
2015-07-16 22:18:33 +01:00
Michael Moravec
e87c94052d
Travis: Switch to container-based infrastructure
2015-07-16 22:47:33 +02:00
Marco Pivetta
1370424fed
Merge pull request #1400 from photodude/patch-1
...
mysqli is supported by HHVM
2015-07-16 21:08:32 +01:00
Marco Pivetta
ad056ebdc6
Merge pull request #1462 from DHager/document_transactional
...
Add a note to documentation for transactional()'s return values
2015-07-16 20:56:04 +01:00
Marco Pivetta
506df640b5
Merge pull request #1433 from goetas/slc-check-to-classmetadatainfo
...
Check for non-cacheable entities on metadata level, not at runtime
2015-07-16 20:41:30 +01:00
Asmir Mustafic
3a7b2991e8
PSR-2 CS improvements
2015-07-16 16:20:36 +02: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
Darien Hager
72d848901b
Add reminder to README for initializing git submodules
2015-07-15 18:59:14 -07:00
Darien Hager
8503c1247f
Document return-value substitution in EntityManager::transactional()
2015-07-15 18:58:18 -07:00
Marco Pivetta
6bf6db3533
Merge pull request #1451 from TomasVotruba/psr-4
...
composer: autoload via PSR-4
2015-07-15 22:24:59 +01:00
Marco Pivetta
70a22b6a73
Merge pull request #1390 from deviantintegral/chaincache-docs
...
Document the ChainCache class
2015-07-15 21:58:20 +01:00
Marco Pivetta
06a00cf073
Merge branch 'hotfix/#1387-DDC-3699-do-not-merge-managed-uninitialized-entities'
...
Close #1387
2015-07-15 21:51:21 +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
Lenard Palko
977f0a5b5c
Fix skipping properties if they are listed after a not loaded relation.
2015-07-15 21:26:45 +01:00
Marco Pivetta
67cda0cd75
Merge branch 'hotfix/#1381-wakeup-reflection-with-embeddable-and-staticreflection-serialization-fix'
...
Close #1381
2015-07-15 20:49:40 +01:00
Nico Vogelaar
b3af5590f9
Fixes ClassMetadata wakeupReflection with embeddable and StaticReflectionService
2015-07-15 20:49:16 +01:00
Marco Pivetta
34eb4fdec5
Merge branch 'hotfix/#1380-non-cache-persister-bug'
...
Close #1380
2015-07-15 20:37:30 +01:00
Marco Pivetta
56cedc5d4f
DDC-3683 - #1380 - reverting BC break, annotating correct types, cs fixes
2015-07-15 20:35:21 +01:00
Darien Hager
77d03ec745
Remove runtime assertion
2015-07-15 20:29:44 +01:00
Darien Hager
6f1107c4ee
Clarify state-changes, replace array_key_exists() with isset() for speed
2015-07-15 20:29:43 +01:00
Darien Hager
1659fab44f
Whitespace formatting tweaks
2015-07-15 20:29:43 +01:00
Darien Hager
d0892b21fb
Remove now-superfluous EntityManager check
2015-07-15 20:29:43 +01:00
Darien Hager
6d6a6a7fbd
Refactor LoadClassMetadataEventArgs to ensure it contains an EntityManager
2015-07-15 20:29:43 +01:00
Darien Hager
e8854b68bb
Change the test listener than layers on second-level-caching so that it is more conservative, only turning on caching-associations when it knows the target entity is cache-able.
2015-07-15 20:29:43 +01:00
Darien Hager
cddbbf00b4
Stumbled across a bug where signatures didn't match, but also the current persister-type didn't support getCacheRegion(). Unsure of exact mechanism, but clearly the constructor doesn't take the second argument anyway, may be old code.
2015-07-15 20:29:43 +01:00
Marco Pivetta
4b1851467b
Merge pull request #1458 from phansys/patch-1
...
[Paginator] Fixed boolean casting
2015-07-15 08:11:43 +01:00
Javier Spagnoletti
cedff7715e
[Paginator] Fixed boolean casting in Paginator
...
| Q | A
| ------------- | ---
| Bug fix? | yes
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| Tests pass? | yes
| Fixed tickets |
| License | MIT
| Doc PR |
2015-07-14 16:48:42 -03: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
xoeoro
44557a5afa
Update ExprTest.php
...
expr()->countDistinct allows to create COUNT(DISTINCT) expression with mulltiple fields but parser requires only one field.
\Doctrine\ORM\Query\Parser::AggregateExpression
some body, please, fix this problem
2015-07-13 10:45:17 +03:00
Dick Marinus
4a39754e76
unsigned is in fieldMapping['options']
2015-07-09 20:54:04 +02:00
Tomáš Votruba
e0872c55a9
composer: dev is now by default
2015-07-08 14:31:43 +02:00
Tomas Votruba
726383cafb
composer: autoload via PSR-4
2015-07-08 01:51:16 +02:00
David Fuhr
de424be9f7
[DX] Link annotation ref to locking explanation
...
The annotation reference contained no cross reference to the great
transaction and concurrency page. But this might be very useful for the
reader.
2015-07-07 18:45:56 +02:00
Guilherme Blanco
33c2ae465d
Merge pull request #1449 from dunglas/patch-1
...
minor: code quality in Paginator
2015-07-07 11:03:03 -04:00
Kévin Dunglas
abf6b8bee5
minor: Code quality in Paginator
2015-07-07 10:09:06 +02:00
Guilherme Blanco
96b065b282
Merge pull request #1447 from krispypen/patch-1
...
Fix second level caching for queries with multiple joins
2015-07-06 09:49:35 -04:00
Kris Pypen
5780f3209c
wrote a Test for second level cache with multiple levels of associations
2015-07-06 14:18:38 +02:00
Kris Pypen
a2a400b8fb
Fix second level caching for queries with multiple joins
...
The $metadata of the main entity is not always the metadata you need here, for example when you do join A with B and then B with C. For the second join it was using the metadata from A.
2015-07-03 14:45:25 +02:00
Cezary Kluczyński
793fe9d2d1
Missing opening tags added in one of the tutorials
2015-07-01 19:49:11 +02:00
Dick Marinus
9715f3dfcc
add field options as array
2015-06-30 19:42:22 +02:00
Matthew Turland
af2f6a6fff
Corrected bad class reference in "Adding own commands"
2015-06-29 22:58:48 -05:00
David Adams
6fa20062f3
allow ManyToManyPersister to handle identification types
2015-06-23 17:55:56 +00:00
Asmir Mustafic
32f0fefec7
Test XML driver with failing SLC mapping
2015-06-20 14:33:36 +02:00
Asmir Mustafic
4da0ee9db8
Test PHP driver with failing SLC mapping
2015-06-20 14:33:36 +02:00
Asmir Mustafic
5f2922b3a7
Test annotation driver with failing SLC mapping
2015-06-20 14:32:15 +02:00
Asmir Mustafic
012367a371
Removed runtime check test for non-cacheable entities
2015-06-20 14:32:14 +02:00
Asmir Mustafic
acbda4bc0e
YAML driver uses getAssociationCacheDefaults for SLC mapping
2015-06-20 14:32:14 +02:00
Asmir Mustafic
7d64be915c
XML driver uses getAssociationCacheDefaults for SLC mapping
2015-06-20 14:32:14 +02:00
Asmir Mustafic
f4f32a5213
Annotation driver uses getAssociationCacheDefaults for SLC mapping
2015-06-20 14:32:14 +02:00
Asmir Mustafic
11be4fae86
Do not check at runtime for non-cacheable associations
2015-06-20 14:32:14 +02:00
Asmir Mustafic
c685255fe3
Check for non-cacheable associations directly on the class metada info
2015-06-20 14:32:14 +02:00
Asmir Mustafic
6a428c6064
Allow to retreive association cache defaults
2015-06-20 14:32:14 +02:00
Bill Schaller
6b3056ff8c
Merge pull request #1430 from michael-lavaveshkul/master
...
"INSTANCE OF" example doesn't match description.
2015-06-18 10:30:14 -04:00
michael-lavaveshkul
073f570c67
Updated "INSTANCE OF" example code.
2015-06-17 22:15:17 -07:00
Marco Pivetta
37a409aa1f
Merge pull request #1429 from hallabro/update-preupdate-documentation
...
Update events.rst to reflect behaviour of preUpdate
2015-06-17 08:25:37 +01:00
Robin Hallabro
63a543d6a0
Update events.rst to reflect behaviour of preUpdate
2015-06-17 07:57:11 +02:00
Thomas Lallement
f41e59258c
Failing Test - Paginator with sorted collection
2015-06-16 16:34:37 -04:00
Benjamin Eberlei
ae5b8178e7
Merge pull request #1406 from XitasoChris/patch-1
...
add default value for GeneratedValue
2015-06-16 22:25:49 +02:00
Benjamin Eberlei
5ae40d571a
Merge pull request #1409 from haeber/patch-1
...
Added PHPDoc return type false of next method in Hydration/IterableResult
2015-06-16 22:21:20 +02:00
Benjamin Eberlei
8d1be42924
[DDC-3741] Add test for AbstractQuery#setHydrationCacheProfile(null)
2015-06-16 21:56:25 +02:00
Benjamin Eberlei
6423a33a23
Merge pull request #1411 from icambridge/patch-1
...
Allow null to be passed to setHydrationCacheProfile
2015-06-16 21:54:08 +02:00
Benjamin Eberlei
545e448024
Merge pull request #1416 from Restless-ET/patch-1
...
[2.5][Bug] Fix ConvertDoctrine1Schema->getMetadata
2015-06-16 21:38:35 +02:00
Benjamin Eberlei
5aded88cf6
Merge pull request #1418 from mageekguy/patch-2
...
Remove (useless?) call to parser::getLexer()
2015-06-16 21:36:14 +02:00
Benjamin Eberlei
1e7e8f216a
Merge pull request #1419 from c960657/cancel-orphan-removal
...
[DDC-3382] Allow orphan removal to be cancelled
2015-06-16 21:23:20 +02:00
Benjamin Eberlei
ac03c9d851
Add section about entities, proxies and reflection to "Limitations and Known Issues" chapter.
2015-06-16 21:11:29 +02:00
Christian Schmidt
96dbecec24
[DDC-3382] Allow orphan removal to be cancelled
2015-06-12 16:44:13 +02:00
Marco Pivetta
14ff7f50cf
Updating contributing notes to latest composer standard
2015-06-11 14:08:34 +01:00
Frédéric Hardy
b6d29c8b72
Remove (useless?) call to parser::getLexer()
...
The `$lexer` variable is not used, the method `parser::getLexer()` is just a dumb getter and do nothing, so in my opinion, the call to `parser::getLexer()` is useless in this context.
Can you confirm?
2015-06-08 16:04:58 +02:00
Restless-ET
b33612f9e7
[2.5][Bug] Fix ConvertDoctrine1Schema->getMetadata
...
This bug was introduced at #1205 while resolving #1200 .
2015-06-05 17:08:50 +01:00
Iain Cambridge
8625ca5187
Allow null to be passed to setHydrationCacheProfile
...
Currently null can be passed and is set as default, however if you do this you get an exception. This allows null to be passed and set.
There is an if statement later on to see if $this->_hydrationCacheProfile is null so it seems logical you can set it to be null.
2015-05-20 15:10:01 +02:00
Thomas Häber
d92785811b
Added PHPDoc return type false of next method
...
Because hydrateRow can return false, too. The PHPDoc return type of the next method has return false in addition to array.
2015-05-15 12:06:56 +02:00
Logan Bailey
272e8aa6f1
[doc] Remove unused variable from sample code
...
Removes lexer since it's not used.
2015-05-14 11:51:01 -07:00
Ilya Antipenko
6a98f0391d
Add return to removeMethodTemplate
2015-05-13 15:52:38 +03:00
Christopher Gross
702b8b3309
add default value for GeneratedValue
2015-05-12 14:16:02 +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
Marco Pivetta
900b55d16a
Merge pull request #1404 from stephan281094/typo
...
Fix PHPDoc typo
2015-05-07 13:36:20 +01:00
Stephan de Vries
f61526d3ff
Fix PHPDoc typo
2015-05-07 14:05:20 +02:00
photodude
4d6dfb2b81
PostgreSQL currently unsupported by HHVM
...
- Supported but you have to [install an officially supported dependency.](https://github.com/PocketRent/hhvm-pgsql/tree/releases )
2015-05-06 19:45:36 -06:00
photodude
652f999e83
pgsql and mysqli are supported by HHVM
...
- reference to [Known compatible extensions for HHVM](http://docs.hhvm.com/manual/en/extensions.alphabetical.php )
2015-05-06 19:45:24 -06:00
Marco Pivetta
330f88e44b
Merge pull request #1401 from stof/patch-2
...
Remove HHVM-nightly builds
2015-05-05 10:03:25 +01:00
Christophe Coevoet
1b9e197ff3
Remove HHVM-nightly builds
...
hhvm-nightly is not available anymore on Travis because HHVM dropped support for Ubuntu Precise, which is still used by Travis.
2015-05-05 10:41:44 +02:00
Wojciech Zylinski
af2295b73a
Switch to relationToTargetKeyColumns when matching non-owning side with Criteria. Fixes DDC-3719.
2015-05-03 18:39:51 +01:00
Adam Prager
961bff6a80
Initializing embeddables doc
2015-04-27 17:23:40 +02:00
Andrew Berry
f91fadd00c
Not all cache drivers are explicitly documented.
2015-04-19 20:51:46 -04:00
Andrew Berry
3d0f44f596
Document the ChainCache class.
2015-04-19 20:47:36 -04:00
Steve Müller
71d134fcc0
Merge pull request #1379 from holtkamp/patch-1
...
Added missing 'new' keyword for logger instantiation
2015-04-18 11:13:31 +02:00
Steve Müller
b8ef6cfd2f
Merge pull request #1384 from TomasVotruba/patch-1
...
cs
2015-04-18 11:07:17 +02:00
Steve Müller
2706812b37
Merge pull request #1385 from TomasVotruba/patch-2
...
duplicated param in phpdoc
2015-04-18 11:03:09 +02:00
Steve Müller
5ac291d0f4
Merge pull request #1386 from TomasVotruba/patch-3
...
PersisterException: missing license added
2015-04-18 10:57:12 +02:00
Tomáš Votruba
b3b0f6bd5b
PersisterException: missing license added
2015-04-17 12:46:52 +02:00
Tomáš Votruba
6fae618669
duplicated param in phpdoc
2015-04-17 10:13:40 +02:00
Tomáš Votruba
a71f2ba76f
cs
2015-04-17 10:12:18 +02:00
Guilherme Blanco
5f18618355
Merge pull request #1382 from holtkamp/patch-second-level-cache-association-hydration
...
Patch second level cache association hydration
2015-04-14 11:37:54 -04:00
Menno Holtkamp
5f891435f1
Use early return
2015-04-14 16:02:36 +02:00
Menno Holtkamp
34b6ce9259
Introduced getCacheEntryKey() to combine region name and cache key
2015-04-14 09:52:25 +02:00
Menno Holtkamp
dbc29d28d2
Simplified way to fetch multiple entries when index does not matter
2015-04-14 09:47:57 +02:00
Menno Holtkamp
012f33524b
Fixed some typo's
2015-04-14 09:43:22 +02:00
Menno Holtkamp
c236a67096
Used index as key to retrieve proper entry
2015-04-13 23:33:09 +02:00
Menno Holtkamp
74964e7d85
Improved testing region->getMultiple()
2015-04-13 23:31:19 +02:00
Menno Holtkamp
eef81b6eb9
Added missing 'new' keyword for logger instantiation
2015-04-09 15:06:41 +02:00
Bill Schaller
3f84be7b7c
Merge pull request #1377 from fprochazka/bugfix/paginator
...
LimitSubqueryOutputWalker: fix aliasing of property in OrderBy from MappedSuperclass
2015-04-08 20:05:51 -04:00
Filip Procházka
e501137d1a
LimitSubqueryOutputWalker: fix aliasing of property in OrderBy from MappedSuperclass
2015-04-09 01:43:05 +02:00
Filip Procházka
192da14842
Failing test case for broken paginator case
2015-04-09 01:42:46 +02:00
Michał Bundyra
699a6e1783
prevent duplicate unique index
2015-04-08 10:49:21 +01:00
Marco Pivetta
2c90930068
Merge pull request #1374 from mbeccati/fix-DDC767Test-php7-pg94
...
Fix DDC767Test failing on php7 + pg94
2015-04-06 04:22:24 +01:00
Marco Pivetta
6a41b73318
Merge pull request #1373 from aivus/patch-1
...
Add note about "symfony/yaml" dependency for yml mappings
2015-04-06 04:09:51 +01: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
Ilya Antipenko
a14517dc9d
Add note about "symfony/yaml" dependency for yml mappings
2015-04-05 15:26:12 +03:00
Bill Schaller
354ccdc58b
Merge pull request #1361 from Ocramius/hotfix/array-property-initialization
...
Hotfix: Reverting BC Break - PersistentCollection should accept `null` and `array` as constructor parameter
2015-04-04 20:26:19 -04:00
Marco Pivetta
ea824f39a9
Merge branch 'hotfix/#1365-query-dql-function-test-determinism'
2015-04-05 00:09:47 +01:00
Bill Schaller
f93f601715
fix rare query test failures due to nondeterminism without order by clause
2015-04-05 00:09:38 +01:00
Marco Pivetta
19e24eeb23
Merge pull request #1369 from DavidPrevot/clean-up
...
Drop empty file
2015-04-05 00:03:10 +01:00
Marco Pivetta
63d86c2e0f
Merge pull request #1371 from TomasVotruba/patch-2
...
Readme: drop "Downloads" link
2015-04-05 00:02:02 +01:00
Tomáš Votruba
c162b593be
Readme: drop "Downloads" link
...
Probably deprecated option
2015-04-05 00:38:43 +02:00
Marco Pivetta
a661a7371d
Merge pull request #1370 from TomasVotruba/vendor-clean
...
drop doctrine/common git submodule
2015-04-04 22:49:20 +01:00
Tomas Votruba
8f758dc932
drop doctrine/common git submodule
2015-04-04 22:43:50 +02:00
David Prévot
6f033a2c47
Drop empty file
2015-04-04 15:37:59 -04:00
Marco Pivetta
c7c6822c56
Merge pull request #1368 from TomasVotruba/patch-2
...
Readme: coverage badge for 2.4 added
2015-04-04 18:49:35 +01:00
Tomáš Votruba
257bf81a3b
Readme: coverage badge for 2.4 added
2015-04-04 19:47:43 +02:00
Marco Pivetta
fb055b5eab
Merge pull request #1366 from shieldo/patch-3
...
[Documentation] typo fixes
2015-04-04 00:29:33 +01:00
Douglas Greenshields
fb96a65733
[Documentation] typo fixes
2015-04-04 00:22:00 +01:00
Bill Schaller
052b8e802f
Merge pull request #1364 from shieldo/embeddedables
...
[Documentation] correct naming of Embeddable Objects feature
2015-04-03 12:08:37 -04:00
Douglas Greenshields
16a3d0d769
[Documentation] correct naming of Embeddable Objects feature
2015-04-03 17:05:47 +01:00
Bill Schaller
4a358284f6
Merge pull request #1363 from shieldo/patch-2
...
merged #1363
2015-04-03 10:53:48 -04:00
Douglas Greenshields
08b66f09b1
remove disclaimer about ORM 2.5 being in beta
2015-04-03 15:52:22 +01:00
Marco Pivetta
2a81adc1fc
Correcting ObjectHydrator logic: if an array is a default value for a collection-valued property, it should be cast to a Collection
2015-04-03 15:28:53 +01:00
Marco Pivetta
f0d2e8d150
Correcting static introspection issue in cache specific tests (null was being passed to a PersistentCollection)
2015-04-03 15:28:13 +01:00
Marco Pivetta
95b128ce8f
Removing irrelevant tests (as per discussion with @guilhermeblanco and @stof
2015-04-03 15:27:13 +01:00
Marco Pivetta
d49c907934
a PersistentCollection should only allow another collection as a wrapped collection
2015-04-03 15:26:38 +01:00
Tomas Votruba
e5efc23642
Readme: renamed to standard md suffix
2015-04-03 14:55:28 +02:00
Tomas Votruba
23fb24e2be
Readme: nicer badges
2015-04-03 14:55:09 +02:00
Marco Pivetta
ad5de6f67a
Merge pull request #1362 from TomasVotruba/patch-2
...
Readme: badges for 2.5 added; 2.3- dropped
2015-04-03 13:49:55 +01:00
Tomáš Votruba
8a4d1e2cf6
Readme: badges for 2.5 added; 2.3- dropped
...
If I understand [2.5 release info](https://github.com/doctrine/doctrine2/releases/tag/v2.5.0 ) correctly, 2.4 will have last bugfix, then security fixes. I suppose then 2.3 and lower are in EOL, thus not needed to check badge for. Also they don't have any branch.
2015-04-03 14:16:48 +02:00
Marco Pivetta
1993aecd4c
Reverting BC break: PersistentConnection#__construct() now accepts null|array|Collection again
2015-04-02 23:45:46 +01:00
Marco Pivetta
6b5188fee8
FQCN reference (class was not imported correctly)
2015-04-02 23:45:12 +01:00
Marco Pivetta
670972d5c3
PersistentCollection should still accept null and array as constructor argument, as it did before
2015-04-02 23:44:12 +01:00
Marco Pivetta
3bc3aeeb52
Minor docblock correction (discovered during testing)
2015-04-02 23:43:41 +01:00
Marco Pivetta
21b70577d3
Hydration of fetch-joined results fails when an entity has a default value of array for the collection property
2015-04-02 23:43:16 +01:00
Marco Pivetta
6b94dc61c6
Merge branch 'hotfix/#1360-docs-fix-misleading-embeddable-documentation-prefix'
2015-04-02 23:25:02 +01:00
Stefan Blanke
293c6f6313
Fixed misleading typo in Embeddables tutorial
2015-04-02 23:19:26 +02:00
Marco Pivetta
f495dfcc9c
Merge branch 'docs/#1359-correcting-mapping-in-working-with-objects-reference'
2015-04-02 21:55:57 +01:00
Juti Noppornpitak
3b6616fe65
Fixed typo in the documentation
2015-04-02 16:46:25 -04:00
Marco Pivetta
f20de54281
Bumping version to 2.6.0-DEV
2015-04-02 21:42:47 +01:00
Marco Pivetta
aa80c7d2c5
Preparing for v2.5.0 release
2015-04-02 21:40:18 +01:00
Marco Pivetta
f8270d7bb2
Bumping branch alias for master to 2.6.x-dev
2015-04-02 21:40:05 +01:00
Marco Pivetta
7ecadb4c61
Merge pull request #1358 from zerocrates/patch-1
...
Update docs for clear-cache commands
2015-04-02 20:33:51 +01:00
Marco Pivetta
014d554c28
Merge pull request #1355 from scaytrase/patch-1
...
[Docs] TablePrefix example - Check for being the owning side
2015-04-02 20:31:27 +01:00
Marco Pivetta
8d186528e6
Merge pull request #1357 from DavidPrevot/exec
...
Drop useless execution bit
2015-04-02 20:30:23 +01:00
John Flatness
5058312d6d
Update clear-cache command docs
2015-04-01 17:10:40 -04:00
David Prévot
b7cf41ca45
Drop useless execution bit
2015-04-01 16:01:22 -04:00
Pavel Batanov
ac70c18d50
Check for the being owning side
...
* Small fix do get rid of notice `undefined index 'joinTable'` as the inverse side does not declare `joinTable` at all.
* Shortened access to `$classMetadata->associationMappings[$fieldName]` for read accesses to increase readability
2015-04-01 14:55:52 +03:00
Marco Pivetta
61bcfda167
Bumping version to v2.5.0-DEV
2015-03-31 22:13:40 +01:00
Marco Pivetta
afd0f28c5f
Bumping version for v2.5.0-RC2 release
2015-03-31 22:12:50 +01:00
Marco Pivetta
13ef9fd179
Merge branch 'hotfix/#1350-default-property-value-for-sql-filter'
...
Close #1350
2015-03-31 22:03:20 +01:00
Marco Pivetta
9a2afd1a9a
#1350 - parameters should be an array by default
2015-03-31 22:02:48 +01:00
mmoreram
f6a1ea4859
Assigned default value to array
...
* For strict configurations of PHP, we were accessing to a non-array element
2015-03-31 22:02:05 +01:00
Marco Pivetta
82230cc427
Merge branch 'hotfix/#1353-#1347-#1351-fix-paginator-sorting-and-fetch-joining'
...
Close #1353
2015-03-31 21:55:27 +01:00
Marco Pivetta
ba00fc1e90
#1353 #1347 #1351 - s/inSubselect/inSubSelect (with docblock documentation)
2015-03-31 21:51:56 +01:00
Marco Pivetta
6c5dbd8d4c
#1353 #1347 #1351 - Removing double quotes (confusing)
2015-03-31 21:50:08 +01:00
Bill Schaller
5c93e61686
Fix issue in LimitSubqueryOutputWalker with entities having field names different from column names
2015-03-31 21:39:21 +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
b76107e20f
resolve review comments from @stof
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
09d28819b5
Fix issue where paginating on a query with a subquery in the where clause crashed
2015-03-31 21:38:58 +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
Bill Schaller
010d52378c
Fix LimitSubqueryOutputWalkerTest
2015-03-31 21:36:33 +01:00
Bill Schaller
a8342a4be2
Cleanup
2015-03-31 21:36:33 +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
Bill Schaller
54d7efd92c
Fix LimitSubqueryOutputWalker when used on tables with joined table inheritance
2015-03-31 21:32:28 +01:00
Marco Pivetta
b923c937e2
Merge branch 'hotfix/#1352-entity-generator-new-class-metadata-hotfix'
...
Close #1352
2015-03-31 08:45:48 +01:00
Fedik
5cd8334897
fix EntityGenerator RegenerateEntityIfExists
2015-03-27 13:10:14 +02:00
Marco Pivetta
60bacda685
Bumping version to 2.5.0-DEV
2015-03-25 23:16:30 +00:00
Marco Pivetta
df902c9c6a
Preparing release v2.5.0-RC1
2015-03-25 23:14:52 +00: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
Benjamin Morel
9eb458caa6
Query::_getQueryCacheId() directly accesses $this->_parsedTypes
2015-03-24 17:14:45 +01:00
Marco Pivetta
dc99ed286a
Merge branch 'hotfix/#1342-paginator-functional-test-integration-take2'
...
Close #1342
Close #1337
Close #1325
2015-03-24 00:39:03 +00:00
Marco Pivetta
d97d3ec0e5
Minor CS fixes (braces)
2015-03-24 00:37:17 +00:00
Marco Pivetta
45d39dd50d
Making preserveSqlOrdering API private
2015-03-24 00:36:13 +00:00
Marco Pivetta
6dfff304f3
Merge branch 'hotfix/#1337-fix-oracle-postgresql-paginator-sorting-issues' into hotfix/#1342-paginator-functional-test-integration
2015-03-24 00:25:12 +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
22d699008c
Merge branch 'hotfix/#1346-post-insert-big-integer-cast-avoidance'
...
Close #1346
2015-03-23 23:38:21 +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
Marco Pivetta
34168d7085
Merge pull request #1345 from zeroedin-bill/fix-crash-in-convertmapping-command
...
Fix crashes in ConvertMappingCommand and GenerateEntitiesCommand...
2015-03-23 22:35:33 +00:00
Jonathan H. Wage
525c77d4a1
Update docs theme submodule.
2015-03-23 22:10:06 +00:00
Josef Kříž
e57be9da5e
Fix: generated IDs are converted to integer
2015-03-23 17:51:04 +01:00
Karl Rixon
6070c9395d
Functional tests for partial selection with embeddables [DDC-3630]
2015-03-23 15:44:06 +00:00
Josef Kříž
d1a695b42b
Typo in phpdoc
2015-03-23 15:57:41 +01:00
Bill Schaller
4b10db3a43
Fix crashes in ConvertMappingCommand and GenerateEntitiesCommand when using entities with joined table inheritance
...
ConvertMappingCommand and GenerateEntitiesCommand both use the DisconnectedClassMetadataFactory, which allows metadata manipulation without loading the associated classes. Commit a36bea broke these two commands by adding a bailout condition in ClassMetadataFactory::populateDiscriminatorValue which checks $metadata->reflClass->isAbstract(). If the DisconnectedClassMetadataFactory is being used, $metadata->reflClass will always be null, causing a fatal error, "Fatal error: Call to a member function isAbstract() on null".
This commit adds a check to see if $metadata->reflClass is set before checking isAbstract.
2015-03-20 13:59:27 -04:00
Guilherme Blanco
e6887954ec
Merge pull request #1344 from zeroedin-bill/fix-slc-tests-console-decoration
...
Fix tests for SLC console commands failing due to console output decoration
2015-03-20 13:52:00 -04:00
Bill Schaller
b057b64c1c
Fix tests for SLC console commands failing due to comparison with decorated console output.
2015-03-20 13:45:49 -04:00
Bill Schaller
4c84f54493
Fix failures on SQL Server due to scalar select items not having an alias
2015-03-19 17:09:47 -04:00
Bill Schaller
591fd00d73
Fix capitalization of mapping annotations in PaginationTestCase.php
2015-03-19 16:47:04 -04:00
Marco Pivetta
24425436b0
Bumping version constants to 2.5.0-DEV
2015-03-18 22:38:42 +00:00
Marco Pivetta
483d48cc54
Bumping version constants for the 2.5.0-BETA1 release
2015-03-18 22:38:18 +00:00
Marco Pivetta
05db65d034
Merge pull request #1341 from javiereguiluz/patch-6
...
[doc] Minor fixes and typos
2015-03-18 22:02:15 +00:00
Javier Eguiluz
be18915ed6
Minor fixes and typos
2015-03-18 17:27:31 +01:00
Benjamin Eberlei
b3a6fb7fde
[DDC-3461] Renamed AssocationBuilder::isPrimaryKey() to makePrimaryKey(). Same for FieldBuilder and depreceating isPrimaryKey(). Adjust tests. Revert change in ClassMetadataInfo and fix bug.
2015-03-18 17:06:30 +01:00
Marco Pivetta
df8be6f31e
Correcting import that was colliding with another already imported User type
2015-03-17 23:58:53 +00:00
Marco Pivetta
4daf383e4f
Merge pull request #1303 from mrkrstphr/querybuilder-get-all-aliases
...
make QueryBuilder::getAllAliases public
2015-03-17 23:33:43 +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
Marco Pivetta
0738571b7d
Merge branch 'feature/#1316-allow-non-public-schema-join-tables'
...
Close #1316
2015-03-17 23:16:26 +00:00
Marco Pivetta
648fde8914
#1316 - removing useless null check (redundant with isset()), cs cleanups
2015-03-17 23:16:16 +00:00
Marco Pivetta
4095bbaa92
#1316 - adding @group annotation to newly introduced tests
2015-03-17 23:15:07 +00:00
Marco Pivetta
0c0d3a1a7c
#1316 - removing unused API from stub class
2015-03-17 23:14:29 +00:00
Marco Pivetta
bfd628e153
#1316 - refactoring test code to reduce the number of actual involved systems (quote strategy)
2015-03-17 23:14:13 +00:00
molchanoviv
ab740abe96
Add DefaultQuoteStrategyTest::testGetJoinTableName() test
2015-03-17 23:03:03 +00:00
molchanoviv
f244db80fb
Allow to join non-public schema tables
2015-03-17 23:03:03 +00:00
Marco Pivetta
8f0b3398d3
Merge branch 'hotfix/#1327-entity-generator-default-property-value-export'
...
Close #1327
2015-03-17 22:47:50 +00:00
Jeremy
ac9a5e69ec
Properly generate default value from yml & xml mapping
2015-03-17 22:47:11 +00:00
Bill Schaller
5c4b6a2140
resolve nitpicks from @Ocramius and @deeky666
2015-03-17 18:44:03 -04:00
Marco Pivetta
ce41e35c1f
Merge branch 'hotfix/#1338-identity-map-garbage-collection-prevention-on-canceled-remove'
...
Close #1338
2015-03-17 22:38:19 +00:00
Marco Pivetta
0a2d9fa130
#1338 - Removing redundant test case
2015-03-17 22:36:00 +00:00
Bill Schaller
d710555265
Remove shameful hack in LimitSubqueryOutputWalker - replace with significantly less shameful hack
2015-03-17 18:32:57 -04:00
Marco Pivetta
504552e779
Adding @group annotations for newly introduced tests
2015-03-17 22:31:05 +00:00
Marco Pivetta
b721841c73
#1338 DDC-3619 - moved test to unit of work tests
2015-03-17 22:30:06 +00:00
nclavaud
b492d61398
Update identityMap when entity gets managed again
...
http://www.doctrine-project.org/jira/browse/DDC-3619
When using SoftDeleteable doctrine extension, an entity can be scheduled
for deletion, then persisted before flushing. In such a case, the entity
was removed from the unit of work identity map and no reference was
hold. This could lead to spl_object_hash collisions, and prevent
another, new entity to be persisted later.
This fix makes sure the unit of work identity map holds a reference to
the entity after it has been soft-deleted.
2015-03-17 22:19:10 +00:00
Bill Schaller
df0875c596
Fix Paginator OrderBy clauses when ordering by columns from non-fetched joined tables
2015-03-17 17:32:28 -04:00
Marco Pivetta
da72f3e62c
Merge branch 'hotfix/#1336-handle-custom-object-type-identifiers-in-uow'
...
Close #1336
2015-03-17 21:31:03 +00:00
Marco Pivetta
5c89bb8c6b
#1336 DDC-3622 - removing implicit cast from string to CustomIdObject in entity API (confusing)
2015-03-17 21:29:30 +00:00
Marco Pivetta
712b6a7a64
#1336 DDC-3622 - adding @group annotations for newly introduced tests
2015-03-17 21:23:16 +00:00
Marco Pivetta
11da060668
#1336 - class constants over string references in tests - removing useless QueryBuilder usage
2015-03-17 21:21:20 +00:00
Marco Pivetta
40c41857e8
#1333 - Removing unused is_string() function call and cast (always a string)
2015-03-17 21:12:20 +00:00
Marco Pivetta
d6687e070e
#1333 - Removing useless is_string() function call, clarifying docblock parameters
2015-03-17 21:11:43 +00:00
Stefano Torresi
5d6a39d14c
fix tests tear down
2015-03-17 21:08:07 +00:00
Stefano Torresi
904bcfa4f9
add docs notice about custom object types as IDs
2015-03-17 21:08:07 +00:00
Stefano Torresi
c7ad932b5f
fix copyright notices
2015-03-17 21:08:07 +00:00
Stefano Torresi
1b850fbb23
add missing return statement
2015-03-17 21:08:07 +00:00
Stefano Torresi
2bdc1142fe
add string casting to id hashes
2015-03-17 21:08:06 +00:00
Stefano Torresi
41e873bd72
add failing functional test for custom id object types
2015-03-17 21:08:06 +00:00
Marco Pivetta
32137c72e4
Merge branch 'hotfix/#1333-datetime-immutable-dql-parameter-inference'
...
Close #1333
2015-03-17 21:01:05 +00:00
Marco Pivetta
376e74fb7e
#1333 - minor CS fixes - spacing/PSR-2
2015-03-17 20:59:56 +00:00
Jan Langer
8ac66bb608
Allow DateTimeInterface as parameter value
2015-03-17 20:58:20 +00:00
Bill Schaller
eebce88146
Revert "Revert "Merge branch 'hotfix/#1220-sort-paginator-subquery-output-only-once'""
...
This reverts commit 6a1755972d .
2015-03-17 13:58:50 -04:00
Karl Rixon
778ed04eac
Support embeddables in partial object query expression [DDC-3621]
2015-03-17 15:46:01 +00:00
Marco Pivetta
2fb11cdf05
Merge pull request #1335 from BenMorel/queryreturntype
...
Fix AbstractQuery::getParameter() documented return type
2015-03-17 14:58:21 +00:00
Benjamin Morel
8d7ba1aebb
Fixed AbstractQuery::getParameter() documented return type
2015-03-17 15:53:09 +01:00
Marco Pivetta
89ab4b3f48
Merge pull request #1334 from acrobat/internal-phpdoc-fix
...
Changed some wrong usage of the @internal phpdoc
2015-03-15 19:08:02 +01:00
Jeroen Thora
a409e7591d
Changed some wrong usage of the @internal phpdoc
2015-03-15 16:53:34 +01:00
Marco Pivetta
6cf76158a0
Merge pull request #1329 from Wilt/patch-1
...
Fix for inconsistent use of getSQLDeclaration
2015-03-13 17:44:40 +01:00
Marco Pivetta
d87118437e
Merge pull request #1330 from coolmic/patch-1
...
Fix @Column options sections in documentation
2015-03-12 22:16:28 +01:00
Marco Pivetta
cdc739b7f8
Merge pull request #1331 from 1ed/patch-2
...
[DOCS] Fixed class name in aggregate fields example
2015-03-12 22:14:38 +01:00
Gábor Egyed
6a75bf078b
[DOCS] Fixed class name in aggregate fields example
2015-03-12 19:27:54 +01:00
Coolmic
f2d8b6d762
Fix @Column options sections
...
I lose hours to find out how to make column collation works, mostly because of incorrect docs.
Annotations options is the equivalent of customSchemaOptions in https://github.com/doctrine/dbal/blob/master/docs/en/reference/schema-representation.rst
See d1e5034659/lib/Doctrine/ORM/Tools/SchemaTool.php (L443)
2015-03-12 12:22:59 +01:00
Wilt
228dc895ca
getSqlDeclaration -> getSQLDeclaration
...
Fixed inconsistent use of getSQLDeclaration method
2015-03-11 14:14:29 +01:00
Wilt
a6931dedaf
getSqlDeclaration -> getSQLDeclaration
...
Fixed inconsistent use of getSQLDeclaration method
2015-03-11 14:07:04 +01:00
Wilt
5ae888b853
getSqlDeclaration -> getSQLDeclaration
...
Fixed inconsistent use of getSQLDeclaration method
2015-03-11 14:06:36 +01:00
Wilt
ea70e080c2
getSqlDeclaration -> getSQLDeclaration
...
Fixed inconsistent use of getSQLDeclaration method
2015-03-11 14:05:36 +01:00
Marco Pivetta
cfc7236599
Merge pull request #1319 from TomasVotruba/patch-1
...
travis: PHP 7.0 nightly added
2015-03-11 01:12:18 +01:00
Marco Pivetta
a3f9f153dd
Merge pull request #1321 from vvh-empora/master
...
embeddedClasses support...
2015-03-10 21:53:05 +01:00
Marco Pivetta
73d4d88ba1
Merge pull request #1326 from guiwoda/orphan-removal-association-builder
...
Allow AssociationBuilder to set a relation as orphan removal
2015-03-09 23:18:59 +01:00
Guido Contreras Woda
71821bb7a3
Allow AssociationBuilder to set a relation as orphan removal
2015-03-09 18:54:35 -03:00
Volker von Hoesslin
0824c6136d
unittest DDC3597: fix for PHP 5.4
2015-03-04 11:55:08 +01:00
Marco Pivetta
34b7f07344
Merge pull request #1322 from dennisbirkholz/patch-1
...
Typo in documentation
2015-03-04 03:07:37 +00:00
Volker von Hoesslin
2aef87c9b2
add unittest for DDC3597
2015-03-03 16:59:48 +01:00
Dennis Birkholz
69e5562de4
Typo in documentation
...
Two list items where just one
2015-03-03 16:57:51 +01:00
vvh-empora
6afcac84d0
embeddedClasses support...
...
...for JoinedSubclassPersister.php
2015-03-03 11:40:19 +01:00
Tomas Votruba
0e14136fad
travis: PHP 7.0 nightly added
2015-03-02 20:41:50 +01:00
Marco Pivetta
f2f47930e6
Merge pull request #1320 from joshdifabio/patch-1
...
Fix 'entitiy' typo in Getting Started tutorial
2015-03-02 16:58:05 +00:00
Joshua Di Fabio
dce76bba60
Fix 'entitiy' typo in Getting Started tutorial
2015-03-02 16:53:44 +00:00
Guilherme Blanco
b1d918b124
Fixed more broken tests.
2015-03-01 23:57:38 -05:00
Guilherme Blanco
588c92875d
Removed fragile test.
2015-03-01 00:32:43 -05:00
Guilherme Blanco
19f18fa069
PersistentCollection now extends AbstractLazyCollection.
2015-03-01 00:30:21 -05:00
Guilherme Blanco
6e40361fe7
Merge pull request #1311 from jankramer/DDC-3582-nested-embeddable-hydration
...
[DDC-3582] Wrong class is instantiated when using nested embeddables
2015-02-27 10:31:58 -05:00
Jan Kramer
f09b9895b6
Fix embeddable instantiation in nested situations
2015-02-27 15:09:58 +01:00
Jan Kramer
c059de9e60
Implement test to show nested embeddables are not instantiated properly
2015-02-27 15:09:22 +01:00
Marco Pivetta
a41e774bb1
Merge pull request #1314 from FabioBatSilva/date-add-second
...
DATE_ADD - Support for seconds
2015-02-26 10:20:52 +00:00
Marco Pivetta
94223621dc
Merge pull request #1315 from GeekMode/GeekMode-patch-url-fix
...
Fixed broken url for implementing Serializable interface
2015-02-26 08:49:22 +00:00
Niro
1afaec9cbf
Fixed broken url for implementing Serializable interface
2015-02-26 02:53:37 -05:00
Guilherme Blanco
7fc1dc9209
Merge pull request #1313 from doctrine/querybuilder-indexby
...
Added programmatical support to define indexBy on root aliases.
2015-02-25 14:42:13 -05:00
FabioBatSilva
57bcd7cd3d
DATE_ADD - Support for seconds
2015-02-25 14:32:51 -05:00
Guilherme Blanco
5ab4c3d50c
Added programatical support to define indexBy on root aliases.
2015-02-25 14:29:10 -05:00
Guilherme Blanco
1369cdda2b
Merge pull request #1312 from ThomasLomas/master
...
Add proper pluralization into UpdateCommand
2015-02-24 13:37:34 -05:00
Thomas Lomas
37f5c82d15
Add proper pluralization into UpdateCommand
2015-02-24 18:13:13 +00:00
Asmir Mustafic
d33ee5e7ff
Removed unnecessary API from test cases
2015-02-24 08:53:22 +01:00
Nicolas Grekas
bad6593460
Allow symfony 3.0 components
...
Tests should tell if any deprecated interfaces of Symfony are used. If not, then the bundle is defacto compatible with 3.0
2015-02-22 20:13:44 +01:00
Guilherme Blanco
4680a7b861
Fixed bug where embedded reflection fields were never exposed to userland.
2015-02-20 14:10:28 -05:00
Asmir Mustafic
4d43f5ca52
Tested composite keys on non cache-able entities
2015-02-20 19:00:32 +01:00
Asmir Mustafic
d72ad9cc50
Handling composite keys on non cache-able entities
2015-02-20 10:00:36 +01:00
Marco Pivetta
38c819ae04
Merge pull request #1305 from guillaumerobin/patch-2
...
Documentation : fix table prefix with STI
2015-02-16 21:35:28 +00:00
Guillaume Robin
1661d96b92
Documentation : fix table prefix with STI
...
If an Entity use STI, it gets its table name from the parent class. In this case, we need to check that the class is the root class of the hierarchy when adding prefix, otherwise children class are prefixed twice.
2015-02-16 22:11:30 +01:00
Kristopher Wilson
a6448f5c77
make QueryBuilder::getAllAliases public
2015-02-16 08:31:14 -05:00
Asmir Mustafic
24dd0c6a55
Fixed delete order on tearDown method
2015-02-16 08:55:27 +01:00
Asmir Mustafic
b9577bf2f3
Added tests for many-to-one non cache-able relations
2015-02-16 08:55:27 +01:00
Asmir Mustafic
60164931b8
Handled one-to-many non cache-able relations
2015-02-16 08:55:27 +01:00
Asmir Mustafic
a2461d6d5f
Use identifier flattener to retrevie entity identifiers
2015-02-16 08:55:27 +01:00
Asmir Mustafic
58e20c70c6
Store column values of not cache-able associations
2015-02-16 08:55:27 +01:00
Michaël Gallego
ed6fa0deb4
Add failing test
2015-02-16 08:55:27 +01:00
Marco Pivetta
a13143b1ac
Merge branch 'feature/#1229-to-one-association-builder'
...
Close #1229
2015-02-16 02:06:32 +00:00
Marco Pivetta
1f67218dc5
#1229 - code style fixes (alignment/spacing)
2015-02-16 02:06:22 +00:00
Guido Contreras Woda
baeab5d4f4
More consistent test naming
2015-02-16 02:02:29 +00:00
Guido Contreras Woda
51881fed94
Added tests and validation on joinColumns being set before checking if its a composite key.
2015-02-16 02:02:29 +00:00
Guido Contreras Woda
cd728344e9
Allow an association to be set as primary key through the builder
2015-02-16 02:02:29 +00:00
Marco Pivetta
b5238966d1
Merge branch 'hotfix/#1295-fix-join-when-re-creating-query-builder-from-parts'
...
Close #1295
2015-02-16 01:23:54 +00:00
Dries De Peuter
4a6afb46e2
Fix join when recreation of query from parts.
2015-02-16 01:23:27 +00:00
Marco Pivetta
f90897465c
Merge branch 'hotfix/#1113-composite-pk-improved-support'
...
Close #1113
2015-02-16 01:17:48 +00:00
Marco Pivetta
2a99d5a19b
#1113 - minor CS fixes (spacing/alignment)
2015-02-16 01:02:56 +00:00
Asmir Mustafic
8eea7c86f7
Resolve association entries on multi get cache
2015-02-16 00:53:48 +00:00
Asmir Mustafic
cb52782e5e
Default Version Value identifier is always an array
2015-02-16 00:53:47 +00:00
Asmir Mustafic
c9e66e464d
Changed getSelectConditionStatementColumnSQL return docblock
2015-02-16 00:53:47 +00:00
Asmir Mustafic
1630ec1ebd
Fixed owing-inverse side search by criteria
2015-02-16 00:53:47 +00:00
Asmir Mustafic
4d531d8855
Right type detection on to-many relations
2015-02-16 00:53:47 +00:00
Asmir Mustafic
4323d9ce4c
Removed unused methods
2015-02-16 00:53:47 +00:00
Asmir Mustafic
7948b0c160
Identity map check
2015-02-16 00:53:47 +00:00
Asmir Mustafic
5838115582
Fixed type checking on to-many relations
2015-02-16 00:53:47 +00:00
Asmir Mustafic
2e890362c5
Tested second level cache with composite primary keys
2015-02-16 00:53:46 +00:00
Asmir Mustafic
51b34919ba
Second level cache check with composite primary keys
2015-02-16 00:53:46 +00:00
Asmir Mustafic
7222991b13
Tested composite primary key support
2015-02-16 00:53:46 +00:00
Asmir Mustafic
5e29bbd41f
Improved composite primary key support
2015-02-16 00:53:46 +00:00
Asmir Mustafic
2eb7dedf4f
Refactored IdentifierFlattener
2015-02-16 00:53:46 +00:00
Marco Pivetta
081ad0efbe
Merge pull request #1297 from eugene-dounar/docs-embeddable-mapping
...
[DDC-3480] Docs: Embeddable supported mappings
2015-02-14 23:20:09 +01:00
Marco Pivetta
eb90cf0c3b
Merge pull request #1298 from eugene-dounar/docs-clean-up-toc
...
Docs: Remove empty pages from TOC
2015-02-14 23:18:48 +01:00
Guilherme Blanco
4c68a38bd6
Merge pull request #1294 from weaverryan/target-platform-when-needed
...
Avoid Connection error when calling ClassMetadataFactor::getAllMetadata()
2015-02-04 16:42:55 -05:00
Ryan Weaver
0e08633790
Adding docblock
2015-02-04 13:51:02 -05:00
Ryan Weaver
75bb3a0de3
Small code change thanks to the comments and adding a test
2015-02-04 13:49:51 -05:00
Steve Müller
a0f3b75ec0
Merge pull request #1299 from javiereguiluz/patch-5
...
Fixed missing quote in one DQL example
2015-02-04 11:40:57 +01:00
Javier Eguiluz
aa0f18def3
Fixed missing quote in one DQL example
2015-02-04 11:12:15 +01:00
Eugene Dounar
f996f6583a
Remove empty pages from TOC
...
Remove Installation page from TOC as it was moved to "Installation and
Configuration"
2015-02-04 00:44:57 +03:00
Eugene Dounar
cd7f91910b
Docs: Embeddable supported mappings
...
Mention that only basic mapping is supported by embeddables
2015-02-04 00:17:13 +03:00
Marco Pivetta
78d3f51140
Merge pull request #1296 from joenivl/patch-1
...
Flip key value in $namespaces array
2015-02-03 14:48:44 +00:00
Jeroen van Leeuwen
f9cf2b6a95
Flip key value in $namespaces array
...
Key value should be other way around.
2015-02-03 14:54:21 +01:00
Guilherme Blanco
64ef89ce4c
Merge pull request #1292 from goetas/private-method-mark
...
Mark getSelectConditionStatementColumnSQL method as private
2015-01-28 22:11:49 -05:00
Ryan Weaver
b30d1dd39c
Only getting the target platform when it's *actually* needed to avoid errors
...
initialize() is called sometimes, even when the following code doesn't need
the targetPlatform property. Specifically, in AbstractClassMetadataFactory::getAllMetadata().
But as of DBAL 2.5.0, calling Connection::getDatabasePlatform() will make a
connection to the database, which means that sometimes it may fail (e.g. you
haven't configured your database yet). As a result, calling a method like
AbstractClassMetadataFactory::getAllMetadata() - which does not need the
targetPlatform - will fail, because determining the targetPlatform requires
a connection, which fails.
This avoids that - we only get the targetPlatform *when* we need it, which
are cases where we're doing things that do indeed need a connection.
2015-01-28 20:17:28 -05:00
Asmir Mustafic
fb5cd928ee
Mark getSelectConditionStatementColumnSQL method as private
2015-01-28 23:55:20 +01:00
Marco Pivetta
17a23ea825
Merge pull request #1222 from guiwoda/embeddables-in-metadata-builder
...
Embeddables in metadata builder
2015-01-28 22:25:10 +00:00
Marco Pivetta
3ed73b4a60
Merge pull request #1288 from Ocramius/hotfix/#1169-extra-lazy-one-to-many-is-noop-when-not-doing-orphan-removal
...
Hotfix - #1169 - extra lazy one to many must be no-op when not doing orphan removal
2015-01-28 20:27:22 +00:00
Marco Pivetta
e76b20b109
#1169 DDC-3343 - removing note about query count assertion
2015-01-28 20:01:57 +00:00
Marco Pivetta
ffaffa0b8a
Merge pull request #1290 from phansys/doc-slc
...
[Doc] [Reference] [Second Level Cache]
2015-01-27 16:37:22 +00:00
Javier Spagnoletti
c6158ae3f4
Updated reference for Second Level Cache (fixed some typos and docblocks).
2015-01-27 13:24:35 -03:00
Marco Pivetta
969788d928
Merge pull request #1289 from deeky666/improve-testsuite
...
Improve test suite
2015-01-27 12:24:36 +00:00
Steve Müller
3b61d2d0fe
initialize database schema only once and avoid unnecessary connections
2015-01-27 12:28:31 +01:00
Steve Müller
75e41eefb5
fix indentation
2015-01-27 10:02:57 +01:00
Steve Müller
5795d53ca7
remove temporary database dependencies from Travis build
2015-01-27 09:44:06 +01:00
Steve Müller
2fbc483fe3
apply current implementation from DBAL @ dcdf744e3fdd2ba99239ee41009e08a4b6450eff
2015-01-27 09:40:45 +01:00
Marco Pivetta
c7a6352b08
#1169 DDC-3343 - eagerly evicting cache if a persister passes a delete operation down to the DB
2015-01-27 09:04:28 +01:00
Marco Pivetta
a9671fdc2e
#1169 DDC-3343 - eagerly evicting cache if a persister passes a delete operation down to the DB
2015-01-27 09:04:00 +01:00
Marco Pivetta
c4019d96b9
#1169 DDC-3343 - when a deletion fails for some reason, related cache entries should be evicted to avoid collisions with DB state
2015-01-27 09:03:36 +01:00
Marco Pivetta
f32766c00d
#1169 DDC-3343 - when using one-to-many extra-lazy with orphan-removal, referenced entities should be deleted directly
2015-01-27 07:46:31 +01:00
Marco Pivetta
3f28adf9b6
#1169 DDC-3343 - correcting collection name used in tests
2015-01-27 07:45:58 +01:00
Marco Pivetta
a0eb6005f3
#1169 DDC-3343 - adding tests for orphan-removal + extra-lazy + one-to-many element removal behavior
2015-01-27 07:42:48 +01:00
Marco Pivetta
9eaac13615
#1169 DDC-3343 - correcting one-to-many persister - association should not be updated directly if no orphan removal is involved
2015-01-27 06:27:37 +01:00
Marco Pivetta
539c364ca6
#1169 DDC-3343 - updating test expectations - one-to-many changes should be no-op unless orphan removal is specified.
2015-01-27 06:26:55 +01:00
Marco Pivetta
9839c400b8
#1169 DDC-3343 - updating test expectations - one-to-many changes should be no-op unless orphan removal is specified.
2015-01-27 06:19:26 +01:00
Marco Pivetta
7e8d27d41a
Merge pull request #1287 from BenMorel/patch-1
...
Typo fix
2015-01-26 01:53:41 +01:00
Benjamin Morel
58e2510f41
Typo fix
2015-01-25 23:54:59 +01:00
Marco Pivetta
146354d835
Merge pull request #1280 from Ocramius/hotfix/#1277-find-one-with-eager-loads-is-failing
...
[DDC-3346] #1277 find one with eager loads is failing
2015-01-25 06:00:47 +01:00
Marco Pivetta
d024193cc0
Merge pull request #1272 from Ocramius/hotfix/DDC-2704-merge-inherited-transient-properties
...
[DDC-2704] - merge inherited transient properties - merge properties into uninitialized proxies
2015-01-25 05:55:53 +01:00
Marco Pivetta
d62cb6237f
Merge pull request #1286 from Ocramius/feature/remove-xdebug-from-non-coverage-builds
...
Removing XDebug from non-coverage builds
2015-01-25 05:51:11 +01:00
Marco Pivetta
5bf18298b1
Merge pull request #1281 from Ocramius/hotfix/#1169-extra-lazy-one-to-many-should-not-delete-referenced-entities
...
Hotfix/#1169 extra lazy one to many should not delete referenced entities
2015-01-25 05:43:34 +01:00
Marco Pivetta
3570f4a49a
#1277 DDC-3346 - disabling XDebug only for non-hhvm builds
2015-01-25 05:42:24 +01:00
Marco Pivetta
670acfc693
Removing XDebug from non-coverage builds
2015-01-25 05:35:31 +01:00
Marco Pivetta
d4b278c809
#1277 DDC-3346 - removing leftover comments
2015-01-25 05:03:19 +01:00
Marco Pivetta
cb780e8bb6
#1169 DDC-3343 - factoring logging into cached collection persister changes
2015-01-25 04:45:45 +01:00
Marco Pivetta
7e85c94f48
#1169 DDC-3343 - adapting cached collection persister logic to EXTRA_LAZY collection behavior
2015-01-25 04:40:30 +01:00
Marco Pivetta
4a05e19f37
Merge pull request #1283 from Ocramius/hotfix/#1267-order-by-broken-in-pagination-logic
...
#1267 - order by broken in pagination logic (reverts #1220 )
2015-01-24 19:20:00 +01:00
Marco Pivetta
97ea6a7d85
#1277 DDC-3346 - removing array-based persister context handling (better to just use private props)
2015-01-24 14:39:47 +01:00
Marco Pivetta
dff365318d
#1277 DDC-3346 DDC-3531 - enforcing 0 offset to avoid persisting more than 1 row
2015-01-24 14:39:47 +01:00
Marco Pivetta
186c593058
#1277 DDC-3346 DDC-3531 - proper bi-directional association setup
2015-01-24 14:39:46 +01:00
Marco Pivetta
39a8941d1b
#1277 DDC-3346 DDC-3531 - minor CS fixes/cleanups: avoiding setters
2015-01-24 14:39:46 +01:00
Marco Pivetta
04a271a04e
#1277 DDC-3346 DDC-3531 - refactoring test assets for readability
2015-01-24 14:39:46 +01:00
Marco Pivetta
36bc448880
#1277 DDC-3346 DDC-3531 - refactoring test code for simplicity/readability
2015-01-24 14:39:46 +01:00
Marco Pivetta
16f447d1ac
#1277 DDC-3346 DDC-3531 - correct usage of the model set (setUp/tearDown of model-related tables)
2015-01-24 14:39:46 +01:00
Marco Pivetta
6e3ad496e2
#1277 DDC-3346 DDC-3531 - constants over string references
2015-01-24 14:39:45 +01:00
Marco Pivetta
157bf203bc
#1277 DDC-3346 DDC-3531 - additional tests for LIMIT and OFFSET repository API (must not hydrate collections)
2015-01-24 14:39:45 +01:00
Marco Pivetta
1672448993
#1277 DDC-3346 DDC-3531 - renaming persister context switch for clarity
2015-01-24 14:39:45 +01:00
Marco Pivetta
a37fa97be3
#1277 DDC-3346 DDC-3531 - skipping joining of associations when limiting and fetch-joining to-many eager associations
2015-01-24 14:39:45 +01:00
Marco Pivetta
67f60f2286
#1277 DDC-3346 DDC-3531 - switching persister context at runtime, depending on choices
2015-01-24 14:39:44 +01:00
Marco Pivetta
23a0d9a1fb
#1277 DDC-3346 DDC-3531 - switch persister context at runtime
2015-01-24 14:39:44 +01:00
Marco Pivetta
8b9171c8ad
#1277 DDC-3346 DDC-3531 - caching the currently in use persister context
2015-01-24 14:39:44 +01:00
Marco Pivetta
ebdfab8f2c
#1277 DDC-3346 DDC-3531 - moved sqlTableAliases into the newly created CachedPersisterContext
2015-01-24 14:39:44 +01:00
Marco Pivetta
2a7f149029
#1277 DDC-3346 DDC-3531 - moved sqlAliasCounter into the newly created CachedPersisterContext
2015-01-24 14:39:44 +01:00
Marco Pivetta
b9f698c98c
#1277 DDC-3346 DDC-3531 - moved selectJoinSql into the newly created CachedPersisterContext
2015-01-24 14:39:43 +01:00
Marco Pivetta
55930a3402
#1277 DDC-3346 DDC-3531 - moved selectColumnListSql into the newly created CachedPersisterContext
2015-01-24 14:39:43 +01:00
Marco Pivetta
4c62d3bfda
#1277 DDC-3346 DDC-3531 - moved resultsetmapping into the newly created CachedPersisterContext
2015-01-24 14:39:43 +01:00
Pavel Batanov
981cebbf4c
Update test according to @Ocramius notes
2015-01-24 14:39:43 +01:00
Pavel Batanov
e36c7b0c2a
DDC-3346 failing test example
2015-01-24 14:39:42 +01:00
Marco Pivetta
28e0da4321
#1272 DDC-2704 - reverting classmetadata API changes (moved all to reflection property getter API)
2015-01-24 14:32:23 +01:00
Marco Pivetta
d952077d04
#1272 DDC-2704 - using the property getter utility rather than metadata API when fetching reflection properties for a class
2015-01-24 14:30:40 +01:00
Marco Pivetta
05a8e1c77d
#1272 DDC-2704 - test assets for the property getter utility tests
2015-01-24 14:30:07 +01:00
Marco Pivetta
1aa453d493
#1272 DDC-2704 - property getter utility is package private
2015-01-24 14:29:40 +01:00
Marco Pivetta
5ec300452a
#1272 DDC-2704 - implementation for a property getter utility
2015-01-24 14:29:09 +01:00
Marco Pivetta
1b0a5e38d9
#1272 DDC-2704 - specification for a property getter utility
2015-01-24 14:28:54 +01:00
Marco Pivetta
8910c2c482
DDC-2704 - data should be merged only into initialized proxies
2015-01-24 13:22:16 +01:00
Marco Pivetta
91f4ed8b92
DDC-2704 - data should be merged only into initialized proxies
2015-01-24 13:22:16 +01:00
Marco Pivetta
21995a8b10
DDC-2704 - more explicit value checking
2015-01-24 13:22:16 +01:00
Marco Pivetta
30dcece125
DDC-2704 - covering code handling class metadata skipping of static properties
2015-01-24 13:22:16 +01:00
Marco Pivetta
3df9b4d122
DDC-2704 - synchronized model classes to new test code
2015-01-24 13:22:16 +01:00
Marco Pivetta
885700d38c
DDC-2704 - should initializeAllReflectionProperties also on initializeReflection
2015-01-24 13:22:16 +01:00
Marco Pivetta
bd667b82d9
DDC-2704 - carefully checking defined classes in getAllReflectionProperties
2015-01-24 13:22:16 +01:00
Marco Pivetta
a4982a8dc2
DDC-2704 - handling partial initialization of the class as expected (class metadata may not hold reflection class after wakeup)
2015-01-24 13:22:15 +01:00
Marco Pivetta
1e6c071bb8
DDC-2704 - trying to get all reflection properties from a partially initialized class metadata instance will result in a failure
2015-01-24 13:22:15 +01:00
Marco Pivetta
4e08c99b86
DDC-2704 - trying to get all reflection properties from an unitialized class metadata instance will result in a failure
2015-01-24 13:22:15 +01:00
Marco Pivetta
0a3d6966d6
DDC-2704 - providing hotfix - also storing inherited transient properties in the class metadata
2015-01-24 13:22:15 +01:00
Marco Pivetta
5ae980e0f9
DDC-2704 - reducing test case clutter
2015-01-24 13:22:15 +01:00
Marco Pivetta
302e6218bb
DDC-2704 - renaming test case for clarity
2015-01-24 13:22:15 +01:00
Marco Pivetta
942004226c
DDC-2704 - basic test case verifying that merged transient properties are not handled when in an inheritance
2015-01-24 13:22:15 +01:00
Marco Pivetta
6a1755972d
Revert "Merge branch 'hotfix/#1220-sort-paginator-subquery-output-only-once'"
...
This reverts commit 8f097ab304 , reversing
changes made to b23a8dd429 .
Conflicts:
tests/Doctrine/Tests/ORM/Tools/Pagination/LimitSubqueryOutputWalkerTest.php
2015-01-24 13:10:25 +01:00
Austin Morris
c8160fcd0e
Failing test for an ORDER BY that is INNER JOINED in a subquery
2015-01-24 13:07:56 +01:00
Marco Pivetta
01a9dadee7
#1169 DDC-3343 - removed unused imports
2015-01-24 12:54:40 +01:00
Marco Pivetta
b7b716a6bb
#1169 DDC-3343 - moved tests to correct test class
2015-01-24 12:53:48 +01:00
Marco Pivetta
d443d4f3b6
#1169 DDC-3343 - additional test cases: removing proxies from an extra-lazy collection still updates the owning side values
2015-01-24 12:21:21 +01:00
Marco Pivetta
6a2b7c2a8e
#1169 DDC-3343 - correcting query count assertions on extra-lazy specific tests (some DELETE operations became UPDATE operations)
2015-01-24 12:20:33 +01:00
Marco Pivetta
99c5650ba4
#1169 DDC-3343 - removing duplicate test
2015-01-24 11:59:21 +01:00
Marco Pivetta
a8796fa489
#1169 DDC-3343 - integrating tests into the existing test suite
2015-01-24 11:58:57 +01:00
Marco Pivetta
ff986a9bf5
#1169 DDC-3343 - importing used classe
2015-01-24 11:54:58 +01:00
Marco Pivetta
ed0331d25a
#1169 DDC-3343 - optimized imports
2015-01-24 11:54:32 +01:00
Marco Pivetta
43f301fdad
#1169 DDC-3343 - refactoring test to use pre-existing test models
2015-01-24 11:54:17 +01:00
Marco Pivetta
15397bbe40
#1169 DDC-3343 - refactoring test to use pre-existing test models
2015-01-24 11:54:03 +01:00
Marco Pivetta
aed01ea571
#1169 DDC-3343 - minor refactoring: constant over string reference
2015-01-24 11:41:20 +01:00
Marco Pivetta
f184956d3a
#1169 DDC-3343 - one-to-many extra-lazy should not delete associated values when they are removed, but just update the owning side
2015-01-24 11:40:48 +01:00
Andrea Sprega
c2b3348f99
[DDC-3343] Failing test case (updated)
2015-01-24 11:30:17 +01:00
Andrea Sprega
db3697433b
[DDC-3343] Failing test case
2015-01-24 11:30:17 +01:00
Marco Pivetta
3f360d7fbc
Merge branch 'hotfix/#1257-discriminator-map-changes-documentation'
2015-01-24 09:21:27 +01:00
Marco Pivetta
52fb4e53bc
#1257 DDC-3300 DDC-3503 - describing new inheritance map requirements in the upgrade notes/blogpost
2015-01-24 09:21:13 +01:00
Marco Pivetta
efa375ac96
#1257 DDC-3300 DDC-3503 - providing upgrade notes for the breaking change in discriminator map declarations
2015-01-24 09:14:58 +01:00
Marco Pivetta
22533042a5
Merge pull request #1279 from phansys/doc-slc
...
[Doc][Reference][2nd level cache]
2015-01-23 16:25:53 +01:00
Javier Spagnoletti
72785eb27e
[Doc][Reference][2nd level cache]
...
* Fixed typo in TimestampRegion title.
* Normalized php snippets (comments, indentation).
2015-01-23 11:23:21 -03:00
Marco Pivetta
b889e18a9a
Merge branch 'hotfix/#1176-merging-entities-with-composite-association-identifier'
...
Close #1176
2015-01-22 12:11:16 +01:00
Marco Pivetta
a67332fb51
#1176 DDC-3378 - minor CS fixes (imports, spacing, IDE hints)
2015-01-22 12:11:03 +01:00
Marco Pivetta
8305649a45
#1176 DDC-3378 - refactored test logic to use the newly introduced test assets
2015-01-22 12:10:39 +01:00
Marco Pivetta
8987c9ab37
#1176 DDC-3378 - moved test asset entities to proper models directory
2015-01-22 12:07:42 +01:00
Adrien Brault
f189c1aaf0
Update test to valid use case
2015-01-22 11:18:12 +01:00
Adrien Brault
fc8191f557
Naive fix
2015-01-22 11:18:12 +01:00
Adrien Brault
4058ad3958
Add test exposing UnitOfWork merge bug
2015-01-22 11:18:12 +01:00
Marco Pivetta
dfa4bbd67a
Merge branch 'hotfix/resolve-target-entity-also-in-discriminator-map'
...
Close #1257
2015-01-22 09:52:17 +01:00
Marco Pivetta
6547d5462e
#1257 DDC-3300 - strengthening test case (missing assertion, test name)
2015-01-22 09:51:43 +01:00
Marco Pivetta
c1cc768aee
#1257 DDC-3300 - correcting further incomplete discriminator maps in the test suite
2015-01-22 09:50:59 +01:00
Marco Pivetta
cd3ffa8f14
#1130 DDC-3300 - removing typo causing parse error
2015-01-22 09:44:40 +01:00
Marco Pivetta
e969a6be85
#1130 DDC-3300 - rewording and clarifying logic that re-maps discriminator values when needed
2015-01-22 09:44:39 +01:00
Marco Pivetta
635d2c141f
#1130 DDC-3300 - minor CS fix (EOF EOL)
2015-01-22 09:44:39 +01:00
Marco Pivetta
fbe294927f
#1130 DDC-3300 - cleaning up test code
2015-01-22 09:44:39 +01:00
Marco Pivetta
8a6b1b48e3
#1130 DDC-3300 - removing unused ResolveDiscriminatorMapListener and related test
2015-01-22 09:44:39 +01:00
Marco Pivetta
b7c28924b1
#1130 DDC-3300 - fixed inheritance maps where inheritance members were missing
2015-01-22 09:44:39 +01:00
Marco Pivetta
a36bea2951
#1130 DDC-3300 - optimizing performance (looping over existing classes first): throwing exceptions if the class is not found in the discriminator map
2015-01-22 09:44:39 +01:00
Marco Pivetta
8579baf28c
#1130 DDC-3300 - minor refactoring (else removal, spacing)
2015-01-22 09:44:39 +01:00
Marco Pivetta
786c34faa5
#1130 DDC-3300 - refactoring auto-remapping of discriminator value into a private method
2015-01-22 09:44:38 +01:00
Marco Pivetta
c589b5d013
#1130 DDC-3300 - re-mapping discriminator column at runtime (based on modified class metadata)
2015-01-22 09:44:38 +01:00
mmoreram
5a1a32297b
Tested DDC-3300
2015-01-22 09:44:38 +01:00
mmoreram
93b6eeca54
Full resolveTargetEntities as constructor argument
2015-01-22 09:44:38 +01:00
mmoreram
fa45c0834d
Removed unused construct param
2015-01-22 09:44:38 +01:00
mmoreram
2a6c844953
Using constructor to define environment
2015-01-22 09:44:38 +01:00
mmoreram
7a73d27600
Added resolve entities support in discrim. map
2015-01-22 09:44:38 +01:00
Marco Pivetta
39c36f6037
Merge pull request #1232 from PowerKiKi/doc-partial-indexes
...
Explicit example of partial indexes
2015-01-22 09:21:57 +01:00
Adrien Crivelli
3caaf26069
Explicit example of partial indexes
2015-01-22 16:38:24 +09:00
Marco Pivetta
3930fd50a7
Merge pull request #1273 from TrkiSF2/master
...
Incorrect @throws doc. in getSingleScalarResult
2015-01-20 22:42:11 +01:00
Lukáš Lukáč
ea213ef23c
Merge pull request #1 from TrkiSF2/TrkiSF2-getSingleScalarResult-Doc
...
Incorrect @throws doc. in getSingleScalarResult
2015-01-20 17:24:29 +01:00
Lukáš Lukáč
5e6ec8ebf3
Incorrect @throws doc. in getSingleScalarResult
2015-01-20 17:21:43 +01:00
Guilherme Blanco
335492aed7
Merge pull request #1269 from spdionis/patch-1
...
[DDC-3520] self-update composer before install
2015-01-20 09:19:27 -05:00
Marco Pivetta
f019bf4379
Merge branch 'docs/#1264-2.5-upgrade-notes'
...
Close #1264
2015-01-20 12:12:57 +01:00
Marco Pivetta
542d9b664b
#1264 - removing backtick
2015-01-20 12:11:39 +01:00
Marco Pivetta
daf2763894
Merge pull request #1271 from kix/patch-1
...
Update migration_2_5.rst
2015-01-20 11:41:32 +01:00
Stepan Anchugov
6ac0ae3c87
Update migration_2_5.rst
...
Fixed some formatting issues and typos.
2015-01-20 15:35:47 +05:00
Spinei Dionis
2528d0b3fc
self-update composer before install
...
Updating composer before install seems like a good idea. At the moment for example the travis build is failing because of the new composer syntax with '^' and it would be fixed by composer self-update.
2015-01-20 03:31:42 +02:00
Guilherme Blanco
2418f8f5e6
Removed todo by implementing it.
2015-01-18 22:21:18 -05:00
Benjamin Eberlei
cd616ff40e
Update changelog docs
2015-01-18 22:52:30 +01:00
Marco Pivetta
d8d4ec6eb2
Merge branch 'hotfix/#1265-sti-persister-one-to-one-association-notices'
...
Close #1265
2015-01-18 18:27:33 +01:00
Marco Pivetta
544add9e8b
Merge branch 'hotfix/#1265-sti-persister-one-to-one-association-notices-fix' into hotfix/#1265-sti-persister-one-to-one-association-notices
2015-01-18 18:27:01 +01:00
Marco Pivetta
9abbdb9e7f
#1265 DDC-3517 - moved test assets to separate models dir, namespaced table names
2015-01-18 18:25:46 +01:00
Marco Pivetta
185f22668c
#1265 DDC-3517 - correcting test docblocks
2015-01-18 18:15:03 +01:00
Marco Pivetta
bffc99a116
#1265 DDC-3517 - failing test - finding via a STI root class fails if there is a one-to-one association in a subclass
2015-01-18 18:13:15 +01:00
Anderson Müller
d48093886d
Fix error undefined index "targetEntity"
2015-01-18 15:54:43 +01:00
Benjamin Eberlei
79ba8c6be8
Add Changelog/Migration to 2.5 documentation chapter.
2015-01-18 15:18:18 +01:00
Marco Pivetta
61e07e5907
Handling minor HHVM incompatibility (dumped value is different between PHP and HHVM)
2015-01-18 02:54:18 +01:00
Marco Pivetta
7cba76082e
Corrected test: metadata should be retrieved from a specific entity manager
...
Metadata is subject to modification depending on the active database platform (generator strategies, usually),
therefore it is not safe to pull it from an entity manager and sharing metadata across multiple entity managers.
2015-01-18 02:32:02 +01:00
Marco Pivetta
39766e645c
Merge branch 'feature/#1248-better-exception-messages-on-invalid-association-data'
...
Close #1248
2015-01-18 01:07:08 +01:00
Marco Pivetta
c7f5ee8e9e
#1228 DDC-3490 - Remove unused method
2015-01-18 01:05:53 +01:00
Marco Pivetta
b1d7a057fd
#1228 DDC-3490 - avoid catching unknown exceptions, remove unused method call
2015-01-18 01:05:36 +01:00
Marco Pivetta
1cd03625a5
#1228 DDC-3490 - fixed exception catching in BasicFunctionalTest logic
2015-01-18 00:59:58 +01:00
Marco Pivetta
66479334d4
#1228 DDC-3490 - computing changes of invalid objects should also fail
2015-01-18 00:55:40 +01:00
Marco Pivetta
9c1275bb1f
#1228 DDC-3490 - persistence of invalid values should also cause exceptions
2015-01-18 00:54:18 +01:00
Marco Pivetta
d0c0f43c79
#1228 DDC-3490 - preventing invalid association values from being persisted
2015-01-18 00:53:57 +01:00
Marco Pivetta
71a6a88de8
#1228 DDC-3490 -better/more complete exception message for invalid populated associations
2015-01-18 00:53:34 +01:00
Marco Pivetta
5e76f12000
#1228 DDC-3490 - tests for invalid association values handled in the UnitOfWork
2015-01-18 00:37:21 +01:00
flip111
83de071c00
Update ORMInvalidArgumentException.php
...
remove added `value` to exception
2015-01-18 00:16:10 +01:00
flip111
d1a2655090
Update UnitOfWork.php
...
rename duplicate method
2015-01-18 00:16:10 +01:00
flip111
b5dd999f84
Update ORMInvalidArgumentException.php
...
rename duplicate method
2015-01-18 00:16:10 +01:00
flip111
059c33e69d
Update UnitOfWork.php
...
removed one `)` too many
2015-01-18 00:16:10 +01:00
flip111
1ae153d315
Update UnitOfWork.php
2015-01-18 00:16:10 +01:00
flip111
643ae78691
Update ORMInvalidArgumentException.php
...
Add unused parameters for `invalidAssociation`
2015-01-18 00:16:09 +01:00
flip111
04e4940607
Update ORMInvalidArgumentException.php
...
`@return self` trend break with `@return ORMInvalidArgumentException`
2015-01-18 00:16:09 +01:00
flip111
88e071d22d
moved exception constructors out of UoW
2015-01-18 00:16:09 +01:00
flip111
b120dafb70
Added new exception constructors
2015-01-18 00:16:09 +01:00
flip111
00a2c8e09c
improved error handling for invalid association values
...
Possibly to do:
1. Make custom Exception for line 713
2. Make custom Exception for line 817
3. Does the object check on line 816 slow down the code too much? Alternatively a try-catch could be put around line 1415 or higher up.
2015-01-18 00:16:09 +01:00
Marco Pivetta
84562bca82
Merge branch 'hotfix/#1252-include-class-name-when-calling-naming-strategy-join-column-name'
...
Close #1252
2015-01-18 00:12:54 +01:00
Marco Pivetta
025565005d
#1252 DDC-3496 - reverting interface BC break
2015-01-18 00:11:47 +01:00
Marco Pivetta
369a9934a5
#1252 DDC-3496 - moving stub naming strategy to tests directory
2015-01-18 00:07:54 +01:00
Marco Pivetta
29007e7d79
#1252 DDC-3496 - minor test cleanups (avoiding private static method)
2015-01-18 00:03:49 +01:00
Jack Sleight
60523d1b62
Update docblock for joinColumnName to include className details
2015-01-17 23:57:52 +01:00
Jack Sleight
04d8f66b72
Tests for new class based join column NamingStrategy
2015-01-17 23:57:52 +01:00
Jack Sleight
be9d92bb26
Example NamingStrategy for using class name in join column names.
2015-01-17 23:57:52 +01:00
Jack Sleight
82163a3301
Include className in calls to NamingStrategy joinColumnName method.
2015-01-17 23:57:52 +01:00
Marco Pivetta
4cde35dc18
Merge branch 'feature/#954-multi-get-slc-regions'
...
Close #954
2015-01-17 23:49:40 +01:00
Marco Pivetta
d5f6b4440a
#954 DDC-2982 - s/CacheProvider/Cache in documentation
2015-01-17 23:44:40 +01:00
Marco Pivetta
b1474768fe
#954 DDC-2982 - Better type-safety in Doctrine\ORM\Cache\Region\DefaultMultiGetRegion instantiation logic
2015-01-17 23:43:34 +01:00
Marco Pivetta
624b98544a
#954 DDC-2982 - DefaultCacheFactory now supports generic Doctrine\Common\Cache\Cache instances
2015-01-17 23:42:49 +01:00
Marco Pivetta
95fe03b182
#954 DDC-2982 - Coverage for different instantiation of single-/multi-get cache regions
2015-01-17 23:42:15 +01:00
Marco Pivetta
564624814b
#954 DDC-2982 - Evicting all cache entries is not supported with a generic cache adapter
2015-01-17 23:30:37 +01:00
Marco Pivetta
0e4a7caf0b
#954 DDC-2982 - Evicting all cache entries is not supported with a generic cache adapter
2015-01-17 23:30:20 +01:00
Marco Pivetta
95c6cca336
#954 DDC-2982 - Minor CS fixes/IDE hints
2015-01-17 23:17:07 +01:00
Marco Pivetta
8ddcc4b270
#954 DDC-2982 - No need to check if a Region is a MultiGetRegion
2015-01-17 23:11:14 +01:00
Marco Pivetta
3c5a794691
#954 DDC-2982 - Making cache Region always a MultiGetRegion (no need to segregate the interface here)
2015-01-17 23:10:49 +01:00
Asmir Mustafic
3f64f3252b
Changed some tests to be compatible with the new implementation of
...
multiget region
2015-01-17 22:27:59 +01:00
Asmir Mustafic
e73bd9e9bb
New buildCacheEntry way bo build a entry for a cached collection
2015-01-17 22:27:59 +01:00
Asmir Mustafic
1b4eee6d0d
Fixed strange test case with CmsUser and second-level cache
2015-01-17 22:27:59 +01:00
Asmir Mustafic
5ec2014051
MultiGetCollectionHydrator depends knows the multi-get region
2015-01-17 22:27:59 +01:00
Asmir Mustafic
1bfa68d94f
Removed dependency with Region interface
2015-01-17 22:27:59 +01:00
Asmir Mustafic
779af8ce8e
Added dependency with doctrine/cache 1.4
2015-01-17 22:27:59 +01:00
Asmir Mustafic
77c2e24215
Added test case for buildCachedCollectioHydrator on DefaultCacheFactory
2015-01-17 22:27:59 +01:00
Asmir Mustafic
b0792330e4
Added test case for MultiGetRegion
2015-01-17 22:27:58 +01:00
Asmir Mustafic
74e93e4cad
Added multi-get support for second level cached collections
2015-01-17 22:27:58 +01:00
Marco Pivetta
8f097ab304
Merge branch 'hotfix/#1220-sort-paginator-subquery-output-only-once'
...
Close #1220
2015-01-17 22:13:36 +01:00
Bill Schaller
3fd3da3d46
Fixed removal of ASC and DESC keywords from orderby items that will be included in select list
2015-01-17 22:12:26 +01:00
Bill Schaller
39aeb9935b
Added failing testcase for Limit queries on entities with column names containing 'asc' or desc'
2015-01-17 22:12:26 +01:00
Bill Schaller
8350de781f
Doc fix
2015-01-17 22:12:26 +01:00
Bill Schaller
dfc0910756
Fixed how order by items are included in the select list of the select distinct wrapper statement
2015-01-17 22:12:26 +01:00
Bill Schaller
7031539314
Fixed SQL that could be considered invalid on the targeted platforms in LimitSubqueryOutputWalkerTest
2015-01-17 22:12:26 +01:00
Bill Schaller
ed800e4b86
Added function to LimitSubqueryOutputWalker which takes an order by clause and rebuilds it to work in the scope of the wrapping query
2015-01-17 22:12:25 +01:00
Bill Schaller
42bea80a6a
Added failing test cases for limit queries with with complex scalar order by items
2015-01-17 22:12:25 +01:00
Bill Schaller
a4ebc08c4f
* Modified tests in LimitSubqueryOutputWalkerTest.php to not have duplicated order by clauses
...
* Modified LimitSubqueryOutputWalker to not duplicate order by clauses
2015-01-17 22:12:25 +01:00
Marco Pivetta
b23a8dd429
Merge branch 'hotfix/#1262-restore-run-dql-command-functionality'
...
Close #1262
2015-01-17 21:31:11 +01:00
Marco Pivetta
fea0425a4f
#1262 DDC-3513 - RunDqlCommand should write to the output object rather than to the output buffer
2015-01-17 21:31:00 +01:00
Marco Pivetta
f06d652393
#1262 DDC-3513 - RunDqlCommand should display the generated SQL when asked to do so
2015-01-17 21:30:34 +01:00
Marco Pivetta
1c6fd512a5
#1262 DDC-3513 - providing basic coverage for the RunDqlCommand logic
2015-01-17 21:27:32 +01:00
Bob van de Vijver
3c2ed7d8a8
Fixes the broken DQL command
...
Now it can again output more than only the created SQL query.
See cdb62a70cd (comments)
2015-01-17 13:21:30 +01:00
Marco Pivetta
fe4d46014d
Merge branch 'hotfix/#1212-fix-regression-that-hid-join-aliases-in-criteria-expressions'
...
Close #1212
2015-01-17 08:35:27 +01:00
Kiel Goodman
0c5ea34fd4
[DDC-3436] Fix changes requested 2/2
2015-01-17 08:33:23 +01:00
Kiel Goodman
dc98da585d
[DDC-3436] Fix changes requested 1/2
2015-01-17 08:33:23 +01:00
Kiel Goodman
349966832f
[DDC-3436] Convert short array syntax to legacy style
2015-01-17 08:33:23 +01:00
Kiel Goodman
918d2910d9
[DDC-3108] Fix regression introduced in DDC-2764 where join aliases were no longer accessible in Criteria expressions
2015-01-17 08:33:23 +01:00
Marco Pivetta
6ba5211310
Merge branch 'hotfix/#1206-matching-should-not-modify-criteria'
...
Close #1206
2015-01-17 08:30:26 +01:00
Marco Pivetta
e9fd5678a5
#1206 DDC-3430 - PersistentCollection should not mutate the given Criteria instances when matching()
2015-01-17 08:30:16 +01:00
Oliver Tischlinger
f8072dd8e0
Fixed typo
2015-01-17 08:20:24 +01:00
Oliver Tischlinger
b5ba84f667
matching should not change critera
...
The matching should behave like in ArrayCollection, where it is not changed.
The criteria should be cloned so that it could be used for more than one matching operation.
2015-01-17 08:20:24 +01:00
Marco Pivetta
6164f17229
Merge branch 'hotfix/#1086-identifier-type-in-proxies'
...
Close #1086
2015-01-17 08:15:50 +01:00
Marco Pivetta
f13b085582
Using PersisterHelper instead of the unreliable ClassMetadataInfo#getTypeOfColumn()
2015-01-17 08:14:04 +01:00
Marco Pivetta
f1170c84a4
#1086 - Passing type information when building meta-mappings for JTI and STI inheritances
2015-01-17 08:09:55 +01:00
Marco Pivetta
40849f8ae1
#1086 - Minor CS fixes applied to the test case (simplifying)
2015-01-17 08:09:55 +01:00
Thomas Lallement
a0165858c4
Delete DDC0003Test.php
2015-01-17 08:09:55 +01:00
Thomas Lallement
033b8e51e9
Create DDC3223Test.php
2015-01-17 08:09:55 +01:00
Thomas Lallement
556c562258
Failing test (get id return string type)
2015-01-17 08:09:54 +01:00
Marco Pivetta
dad3a6bae1
Merge branch 'hotfix/#1178-correct-association-links-dbal-types-conversion'
...
Close #1178
2015-01-17 08:03:00 +01:00
Marco Pivetta
67f59dc256
Revert " #1178 - simplified ValueConversionType tests by using a single model-set for the entire subset of tests (faster as well)"
...
This reverts commit 2702540930 .
2015-01-17 08:01:31 +01:00
Marco Pivetta
2702540930
#1178 - simplified ValueConversionType tests by using a single model-set for the entire subset of tests (faster as well)
2015-01-17 07:59:03 +01:00
Marco Pivetta
131a39bad4
#1178 - s/getValue/getIdentifierValues
2015-01-17 07:59:03 +01:00
Marco Pivetta
584839d38a
#1178 - moved private method to the bottom of the class
2015-01-17 07:59:03 +01:00
Marco Pivetta
edf054cd0c
#1178 - removing duplicate configuration of the rot13 DBAL type
2015-01-17 07:59:03 +01:00
Marco Pivetta
b32c779c37
#1178 - minor typo (method names)
2015-01-17 07:59:02 +01:00
Marco Pivetta
d47f724f16
#1178 - restoring correct getJoinTableRestrictionsWithKey logic as per @jaspernbrouwer's previous implementation
2015-01-17 07:59:02 +01:00
Marco Pivetta
f88f5ce454
#1178 - fetching actual target entity when resolving column types of it
2015-01-17 07:59:02 +01:00
Marco Pivetta
a39b6869ca
#1178 - mapping between criteria parameters and types when fetching on one-to-many with additional criterions
2015-01-17 07:59:02 +01:00
Marco Pivetta
ce446a6f03
#1178 - correcting filtering when initializing a one-to-many collection that has composite complex (custom DBAL types) identifiers
2015-01-17 07:59:02 +01:00
Marco Pivetta
096bd90aed
#1178 - using the PersisterHelper to extract type of associated meta-result columns
2015-01-17 07:59:02 +01:00
Marco Pivetta
e5c4e65764
#1178 - proxy identifiers should be correctly converted
2015-01-17 07:59:02 +01:00
Marco Pivetta
0743238b43
#1178 - minor code duplication removal
2015-01-17 07:59:01 +01:00
Marco Pivetta
4eaa7ea821
#1178 - correcting class from which the type of a column should be fetched (source class when relationToSourceKeyColumns is used)
2015-01-17 07:59:01 +01:00
Marco Pivetta
6e2179aa8e
#1178 - handling custom types when filtering/removing by element in extra-lazy many-to-many associations
2015-01-17 07:59:01 +01:00
Marco Pivetta
5e49aeef6f
#1178 - handling custom types when filtering by key in extra-lazy many-to-many associations
2015-01-17 07:59:01 +01:00
Marco Pivetta
e39f08f6bd
#1178 - handling correct parameter binding when counting extra-lazy collections with custom-type referenced identifiers
2015-01-17 07:59:01 +01:00
Marco Pivetta
c82794bff7
#1178 - handling traversal of association mapping data in lazy-loading many-to-many requests on the inverse side
2015-01-17 07:59:01 +01:00
Marco Pivetta
1e606d1ed3
#1178 - adding note about ClassMetadataInfo#getTypeOfColumn() being unreliable/dangerous
2015-01-17 07:59:01 +01:00
Marco Pivetta
41900dca76
#1178 - correctly handling initialization of collections referenced via custom DBAL types
2015-01-17 07:59:00 +01:00
Marco Pivetta
91bceca7ee
#1178 - correcting collection insert/update logic to correctly cast values for custom typed columns
2015-01-17 07:59:00 +01:00
Marco Pivetta
aaa6443954
#1178 - PersisterHelper::getTypeOfColumn() should not fail silently, as that makes persister bugs impossible to spot
2015-01-17 07:59:00 +01:00
Marco Pivetta
a80532a538
#1178 - correcting association column type when dealing with multiple derived associations/identifier levels
...
Since the ClassMetadata can only know about internal state, any `joinColumn` association details on the
inverse side of an association need to be computed by fetching associated metadata.
2015-01-17 07:59:00 +01:00
Marco Pivetta
445798ed46
#1178 - reverting patch and keeping tests (rebase gone awry)
...
Also cleaning up `OrmFunctionalTestCase`
2015-01-17 07:59:00 +01:00
Jasper N. Brouwer
5c1d1931b7
Fixed typehints and use statements
2015-01-17 07:59:00 +01:00
Jasper N. Brouwer
fe21f18991
Fixed doc-blocks
2015-01-17 07:59:00 +01:00
Jasper N. Brouwer
a0b43d0a7f
Don't alias PersisterHelper to Helper
2015-01-17 07:58:59 +01:00
Jasper N. Brouwer
7b9c6a69bd
Add tests for extra lazy many-to-many associations
...
and fixed production code
2015-01-17 07:58:59 +01:00
Jasper N. Brouwer
ba3df8577b
Refined and added tests, fixed found issues
...
- Renamed id properties so they don't coexist between entities in a test
- Added tests for extra lazy one-to-many associations
- Fixed production code to make tests green
2015-01-17 07:58:59 +01:00
Jasper N. Brouwer
f7b14085f2
Abstracted infering binding types away in a helper
2015-01-17 07:58:59 +01:00
Jasper N. Brouwer
4f9f7eedf5
Removed DDC-3380 mentions in production code
2015-01-17 07:58:59 +01:00
Jasper N. Brouwer
f60f2a567a
Fixed associations using a value-conversion type for identifiers
2015-01-17 07:58:59 +01:00
Marco Pivetta
f6445d5a3e
Fixing build using a dedicated in-memory connection to stub out two real connections for DB-access checks
2015-01-17 07:58:35 +01:00
Marco Pivetta
074ec358ab
Merge branch 'hotfix/#1172-avoid-proxy-initialization-when-proxy-is-merged-into-uow'
...
Close #1172
2015-01-16 22:56:03 +01:00
Marco Pivetta
57ce6ccfcf
#1172 - fixed minor CS issues (spacing)
2015-01-16 22:54:30 +01:00
Marco Pivetta
45e733eb60
#1172 - adding @method annotation to simplify static introspection
2015-01-16 22:50:52 +01:00
Marco Pivetta
42c9ff026e
#1172 - renaming test class for clarity
2015-01-16 22:47:00 +01:00
Marco Pivetta
937113e234
#1172 - simplified logic, re-using existing generic model
2015-01-16 22:46:31 +01:00
Marco Pivetta
cd3fc6e6ea
#1172 - adding required @group annotations for newly introduced tests
2015-01-16 22:43:52 +01:00
Marco Pivetta
94724b7a56
#1172 - reverted: moving MergeUninitializedProxyTest tests into EntityManagerTest (invalid, as they are functional tests)
2015-01-16 22:43:03 +01:00
Marco Pivetta
3769cd1119
#1172 - adding required @group annotations for newly introduced tests
2015-01-16 22:37:38 +01:00
Marco Pivetta
70840131ff
#1172 - moved MergeUninitializedProxyTest tests into EntityManagerTest
2015-01-16 22:36:30 +01:00
Marco Pivetta
438feccd55
#1172 - removing redundant test logic
2015-01-16 22:25:41 +01:00
Marco Pivetta
de4e980389
#1172 - covering merging of unmanaged, un-initialized proxies bound to a different entity manager
2015-01-16 22:25:00 +01:00
Marco Pivetta
b7566dc65b
#1172 - correcting test: all connections should have a saved file instance
2015-01-16 22:20:58 +01:00
Marco Pivetta
d1e7960f99
#1172 - tests to verify that proxies keep distinct entity manager instances even across merging operations
2015-01-16 22:12:42 +01:00
Marco Pivetta
4ed0a6ce53
#1172 - removing redundant tests
2015-01-16 21:25:25 +01:00
Marco Pivetta
3df119f4fe
#1172 - when merging an initialized proxy, the managed proxy must be initialized before merging
2015-01-16 21:23:47 +01:00
Marco Pivetta
a18f258b4d
#1172 - covering merging of managed proxies
2015-01-16 21:15:39 +01:00
Marco Pivetta
0329ac5074
#1172 - covering also detached proxies - merging operations should not initialize either proxy
2015-01-16 21:14:13 +01:00
Marco Pivetta
dde09872df
#1172 - writing a more concise test case about merging detached proxies
2015-01-16 21:09:53 +01:00
Mathieu De Zutter
318b23097b
Don't load uninitialized proxies after merging.
...
Previous patch avoided initialization of proxies before merging, mainly to
fix a bug with merging. However, later on, doctrine tries again to load
the proxy. This is unnecessary and thus has been removed. This way, a
round trip to the database is saved.
2015-01-16 20:54:15 +01:00
Mathieu De Zutter
ec35d4886c
Don't load detached proxies when merging them.
...
Ticket DDC-1392 fixed an issue where uninitialized proxies could not be merged
because the merge routine couldn't get the identifier from them. The soution
was to initialize the proxy.
Ticket DDC-1734 fixed the merging of *unserialized* uninitialized proxies by
resetting their internals, so these proxies were able to initialize, as required
by the fix for DDC-1392.
Somehow, in the meanwhile, the fix for DDC-1392 is not needed anymore:
reverting the patch will not break the associated test (but it does break the
test for DDC-1734). This means it is not needed anymore to initialize the proxy
when merging.
Uninitialized proxies that get merged should not be loaded at all. Since they
are not initialized, the entity data for sure hasn't changed, so it can be
safely ignored. Actually, the only thing the data is needed for while merging,
is to copy it into the managed entity, but that one is already supposed to be
up to date. By not initializing the proxy, a potential database roundtrip is
saved, and the fix for DDC-1734 is not needed anymore.
Besides optimizing the merge, this patch also solves an issue with merging.
Currently, when a detached uninitialized proxy is merged while there is already a
corresponding managed entity (proxy or not), the ORM returns a blank entity
instead of returning the already managed entity. This patch makes sure that
already existing managed entities are re-used.
2015-01-16 20:54:15 +01:00
Marco Pivetta
f28654de12
Merge branch 'hotfix/#1133-better-exception-message-on-missing-embeddable-class-in-metadata'
...
Close #1133
2015-01-16 19:50:26 +01:00
Marco Pivetta
935a79e15f
#1133 DDC-3305 - minor cs fix (spacing)
2015-01-16 19:46:04 +01:00
Marco Pivetta
7e4dab17ec
#1133 DDC-3305 - test case with embeddable without referenced embeddable class
2015-01-16 19:45:16 +01:00
Javier Spagnoletti
705a7d2cc2
[Embeddables] Improved exception message when embeddables is missing 'class' attribute.
2015-01-16 19:18:46 +01:00
Marco Pivetta
655394d433
Merge branch 'hotfix/abstract-id-generator-revert-bc-break'
2015-01-16 18:53:36 +01:00
Marco Pivetta
6acfdc1439
Removing Doctrine\ORM\Id\AbstractIdGenerator#generate(EntityManagerInterface $em, $entity) from upgrade notes (BC break reverted)
2015-01-16 18:53:27 +01:00
Marco Pivetta
f799986be1
Reverting BC break in AbstractIdGenerator signature
2015-01-16 18:52:58 +01:00
Marco Pivetta
de589799e8
Merge pull request #1209 from Ocramius/hotfix/DDC-3427-allow-entitymanagerinterface-globally
...
s/EntityManager/EntityManagerInterface in type-hints
2015-01-16 15:06:58 +01:00
Marco Pivetta
efe9e3ab28
#1209 DDC-3427 - documenting s/EntityManager/EntityManagerInterface signature BC breaks
2015-01-16 14:55:16 +01:00
Marco Pivetta
339bd23ac8
#1209 DDC-3427 - removing leftover EntityManager hints (using interface instead)
2015-01-16 14:44:31 +01:00
Marco Pivetta
dd8db1acd2
DDC-3427 - s/EntityManager/EntityManagerInterface in relevant tests about identifier generation
2015-01-16 14:22:03 +01:00
Marco Pivetta
6fc0d84b7a
DDC-3427 - s/EntityManager/EntityManagerInterface in type-hints
2015-01-16 14:21:30 +01:00
Marco Pivetta
0e7646cf4b
Merge branch 'namespace-persisters'
...
Close #1258
2015-01-16 00:10:56 +01:00
Guilherme Blanco
f90475772d
Classify persisters into more granular namespaces.
2015-01-16 00:10:25 +01:00
Fabio B. Silva
f97bb00dff
Merge pull request #1259 from Ocramius/hotfix/cache-region-cache-namespace-mutability-removal
...
Hotfix: Cache region should not mutate injected cache instance settings
2015-01-15 15:26:23 -05:00
Marco Pivetta
0f2c117f3e
Cloning and configuring the cache adapter for each newly created cache region (fixes cache namespacing)
2015-01-15 21:17:49 +01:00
Marco Pivetta
6564f95260
Typo fix (region should be named 'bar', not 'foo'
2015-01-15 21:17:25 +01:00
Marco Pivetta
a82eecfc07
Each cache region built by the DefaultCacheFactory should have its own cache with its own unique namespace
2015-01-15 21:15:38 +01:00
Marco Pivetta
514fd008b9
Cache regions will not modify the injected cache instance settings
2015-01-15 21:01:35 +01:00
Marco Pivetta
f38d4551f1
Cache regions should not modify the injected cache instance settings
2015-01-15 21:01:02 +01:00
Guilherme Blanco
0b2fb7fd78
Fixed identifier quoting in functional tests.
2015-01-15 03:55:29 +00:00
Guilherme Blanco
8a0989aa50
Fixed identifier quoting in functional tests.
2015-01-15 03:50:18 +00:00
Marco Pivetta
5bd921139e
Merge branch 'hotfix/#1250-DDC-3493-fix-class-pseudo-constant-parsing-in-entitygenerator'
2015-01-15 04:16:44 +01:00
Guilherme Blanco
a1d77bdc65
Renamed coll to collection and some small updates to tests.
2015-01-15 03:14:48 +00:00
Marco Pivetta
5be57d0f4a
Merge branch 'hotfix/#1256-DDC-3493-fix' into hotfix/#1250-DDC-3493-fix-class-pseudo-constant-parsing-in-entitygenerator
...
Close #1250
Close #1256
2015-01-15 04:13:28 +01:00
Andrea Sprega
243210e896
DDC-3493 - fixed EntityGenerator parsing for php 5.5 "::class" syntax
2015-01-15 04:13:09 +01:00
lukasmaz
41dd584f62
Test case for "class" keyword
...
Test case for http://www.doctrine-project.org/jira/browse/DDC-3493
2015-01-15 04:12:31 +01:00
Marco Pivetta
55a75bfb1b
Merge pull request #1249 from doctrine/extra-lazy-get-m2m
...
Support for extra lazy get for both owning and inverse side on many to many associations.
2015-01-15 03:36:35 +01:00
Steve Müller
d343617f13
Merge pull request #1255 from Ocramius/cleanup/php-5.3-support-end
...
Cleanup: PHP 5.3 support end
2015-01-15 01:29:00 +01:00
Marco Pivetta
934e4fdde4
Merge pull request #1251 from TomasVotruba/travis-optimize
...
travis: optimize to run coverage only once
2015-01-15 01:20:02 +01:00
Marco Pivetta
a88726d84e
Merge branch 'hotfix/#1072-fix-iteration-of-file-lock-region-on-no-match'
...
Close #1072
2015-01-15 00:55:16 +01:00
Marco Pivetta
8b223c5c83
#1072 DDC-3191 - test cleanup: reflection is better than mixing up I/O operations and global state
2015-01-15 00:54:25 +01:00
Marco Pivetta
e2acd74cb4
#1072 DDC-3191 - minor performance optimization
2015-01-15 00:37:41 +01:00
Marco Pivetta
aca719be41
#1072 DDC-3191 - adding test for failing glob() operations on the FileLockRegion
2015-01-15 00:36:26 +01:00
Alexander Kurilo
58cd520e32
Fix attempt of traversing bool in FileLockRegion
2015-01-14 23:51:41 +01:00
Tomas Votruba
57cad1f232
travis: optimize to run coverage only once
2015-01-14 23:08:15 +01:00
Marco Pivetta
a1e40fc3f1
Removing PHP 5.3 references, simplified getting started docs
2015-01-14 21:02:15 +01:00
Marco Pivetta
3ee47bef41
Updating readme minimum required PHP version
2015-01-14 21:00:59 +01:00
Marco Pivetta
89520b1f38
Updating readme minimum required PHP version
2015-01-14 21:00:37 +01:00
Marco Pivetta
9024c04c72
Removing conditionals checking for PHP 5.4 support
2015-01-14 20:14:39 +01:00
Marco Pivetta
541e7bdf72
Refactoring test method: no need to test for PHP version
2015-01-14 20:13:46 +01:00
Marco Pivetta
8e28cb9119
Removing useless $self use statements, as PHP 5.4 supports $this in closures
2015-01-14 20:12:27 +01:00
Marco Pivetta
effe33096d
Dropping PHP 5.3 from the build matrix
2015-01-14 20:03:49 +01:00
Marco Pivetta
e05858b09c
Requiring PHP 5.4 as a minimum runtime
2015-01-14 20:02:48 +01:00
Marco Pivetta
e030dac3d0
Merge pull request #1253 from SofHad/fix-dbal-configuration-404
...
Fix dead link
2015-01-14 19:43:03 +01:00
Marco Pivetta
1d4b96eed0
Merge branch 'hotfix/#881-support-schema-on-platform-without-schema-emulation'
...
Close #881
2015-01-14 19:18:22 +01:00
Marco Pivetta
0106cba602
#881 DDC-2825 - reusing mapping files that already exist in models, where applicable
2015-01-14 19:17:39 +01:00
Marco Pivetta
7164e28138
#881 DDC-2825 - renaming table/schema name for clarity and to avoid collisions
2015-01-14 19:16:42 +01:00
Marco Pivetta
7b168de236
#881 DDC-2825 - removing unused imports
2015-01-14 19:05:40 +01:00
Marco Pivetta
962f479318
#881 DDC-2825 - refactoring test logic, removing dead private method
2015-01-14 19:04:58 +01:00
Marco Pivetta
80ce601eae
#881 DDC-2825 - refactoring test logic to use data-provider instead of code repetitions
2015-01-14 19:02:44 +01:00
Marco Pivetta
f874189456
#881 DDC-2825 - refactoring tests for clarity/readability and ease of use
2015-01-14 18:56:37 +01:00
Marco Pivetta
9d6890e6ca
#881 DDC-2825 - expectations are the first parameter in an assertion
2015-01-14 18:50:17 +01:00
Marco Pivetta
67788d89b5
#881 DDC-2825 - simplifying/extracting test logic: moved verifying metadata into separate test method
2015-01-14 18:47:17 +01:00
SofHad
9ba7c9a74d
Fix dead link
2015-01-14 18:43:46 +01:00
Marco Pivetta
0a91b83e27
#881 DDC-2825 - exploding test case into smaller units
2015-01-14 18:34:58 +01:00
Marco Pivetta
6f85ca3356
#881 DDC-2825 - exploding test case into smaller units
2015-01-14 18:31:11 +01:00
Marco Pivetta
3ba9689448
#881 DDC-2825 - aligning assignments
2015-01-14 18:19:22 +01:00
Marco Pivetta
f0102a69f9
#881 DDC-2825 - refactoring mapping driver to use ClassMetadata#setPrimaryTable() instead of duplicating explode() logic
2015-01-14 18:12:12 +01:00
Marco Pivetta
eefa3b2e53
#881 DDC-2825 - correcting YAML driver implementation (wasn't using extracted schema)
2015-01-14 18:06:29 +01:00
Marco Pivetta
04467218a3
#881 DDC-2825 - providing YAML mappings for explicit schema definition
2015-01-14 18:05:58 +01:00
Marco Pivetta
7911beaf1c
#881 DDC-2825 - providing YAML mappings for implicit schema definition
2015-01-14 18:05:38 +01:00
Marco Pivetta
51bf82b7e7
#881 DDC-2825 - correcting PHP mapping behavior when using implicit schema in table name
2015-01-14 17:54:00 +01:00
Marco Pivetta
0fd51cf852
#881 DDC-2825 - providing PHP mappings for implicit schema definition
2015-01-14 17:53:01 +01:00
Marco Pivetta
d96cd1b690
#881 DDC-2825 - providing PHP mappings for explicit schema definition
2015-01-14 17:52:51 +01:00
Marco Pivetta
53845b79e1
#881 DDC-2825 - providing XML mappings for implicit schema definition
2015-01-14 17:34:44 +01:00
Marco Pivetta
3820fa57d3
#881 DDC-2825 - XML mappings should handle explicitly defined schema name
2015-01-14 17:33:17 +01:00
Marco Pivetta
941bfca68c
#881 DDC-2825 - providing XML mappings for explicit schema definition
2015-01-14 17:27:53 +01:00
Marco Pivetta
617fd6cfdc
#881 DDC-2825 - moving YAML and XML mapping tests to base mapping driver tests. Excluding Static PHP mapping tests
2015-01-14 16:59:01 +01:00
Marco Pivetta
cf641cd0a3
#881 DDC-2825 - testing annotation driver with table name defining schema name as part of the name
2015-01-14 16:47:05 +01:00
Marco Pivetta
8b2b54c033
#881 DDC-2825 - typo fix (causing test failure)
2015-01-14 16:32:02 +01:00
Marco Pivetta
c6d839869b
#881 DDC-2825 - annotation mapping tests for explicitly defined schema name on mappings
2015-01-14 16:30:20 +01:00
Michaël Perrin
0dbc6a12ee
Update mapping documentation for schema support
...
Updated documentation:
* Annotations
* XML
* Yaml
* PHP
2015-01-14 15:48:49 +01:00
Michaël Perrin
54b3c0548d
Fix persistence exception on a table with a schema on a platform without schema support
2015-01-14 15:48:49 +01:00
Marco Pivetta
c571f6f6a9
Correctly dealing with emulated cascades in ExtraLazyCollectionTest
2015-01-14 14:36:01 +01:00
Steve Müller
00a8265fb9
Merge pull request #1181 from Ocramius/feature/#385-support-fetching-entities-by-aliased-name
...
Support fetching entities by aliased name
2015-01-14 13:54:33 +01:00
Marco Pivetta
ba5378fecc
#385 #1181 DDC-3385 - fixing Events docblocks as per @deeky666's review
2015-01-13 21:15:34 +01:00
Marco Pivetta
ae8ab0812e
#385 #1181 DDC-3385 - fixing OnClassMetadataNotFoundEventArgs docblocks as per @deeky666's review
2015-01-13 21:14:32 +01:00
Marco Pivetta
d712ad97a5
#385 #1181 DDC-3385 - test coverage for OnClassMetadataNotFoundEventArgs impl
2015-01-13 21:04:50 +01:00
Marco Pivetta
662b49608c
#385 #1181 DDC-3385 - aligning tests and implementation to new OnClassMetadataNotFoundEventArgs API
2015-01-13 20:56:57 +01:00
Marco Pivetta
6debf2c909
#385 #1181 DDC-3385 - aligning tests to new OnClassMetadataNotFoundEventArgs API
2015-01-13 20:56:40 +01:00
Marco Pivetta
762e798d22
#385 #1181 DDC-3385 - extending OnClassMetadataNotFoundEventArgs from ManagerEventArgs instead of generic EventArgs
2015-01-13 20:56:21 +01:00
Marco Pivetta
6021e3a1b8
#385 #1181 DDC-3385 - Updating docblock of OnClassMetadataNotFoundEventArgs
2015-01-13 20:49:08 +01:00
Marco Pivetta
06f256b410
#385 #1181 DDC-3385 - documenting onClassMetadataNotFound event
2015-01-13 20:45:00 +01:00
Marco Pivetta
f14063def5
#385 #1181 DDC-3385 - splitting test case to verify interface-first fetching of metadata (via fallback logic)
2015-01-13 20:38:01 +01:00
Marco Pivetta
94a2036d50
#385 #1181 DDC-3385 - adding @group annotation to newly introduced tests
2015-01-13 20:37:28 +01:00
Marco Pivetta
eaa9187dd8
#385 #1181 DDC-3385 - minor CS fix (spacing)
2015-01-13 20:33:30 +01:00
Marco Pivetta
8ea394e778
#385 #1181 DDC-3385 - removing @todo that was discussed/cleared
2015-01-13 20:33:10 +01:00
Marco Pivetta
a710706c81
#385 #1181 DDC-3385 - optimized imports, removing duplicate imports (caused by rebase conflicts)
2015-01-13 20:00:40 +01:00
Marco Pivetta
ce4df761df
Explicitly requiring doctrine/common with at least version 2.5
2015-01-13 19:51:35 +01:00
Marco Pivetta
e4cbdb57ad
Enabling fallback logic in metadata loading
2015-01-13 19:50:55 +01:00
Marco Pivetta
d91b0b4938
Minor CS fixes in the ResolveTargetEntityListener
2015-01-13 19:50:17 +01:00
Marco Pivetta
f5eb20b63d
OnClassMetadataNotFoundEventArgs should support setting the actually resolved ClassMetadata as a mutable event result vector
2015-01-13 19:50:17 +01:00
Marco Pivetta
efd4500e6b
ClassMetadataFactory should support fallback (event-based) logic for hooking into failed ClassMetadata loading
2015-01-13 19:50:15 +01:00
Bart van den Burg
d66356542d
added use statement
2015-01-13 19:49:58 +01:00
Bart van den Burg
3be43a1def
Rebased and renamed PreLoadClassMetadata to OnClassMetadataNotFound
2015-01-13 19:49:57 +01:00
Bart van den Burg
437f812718
Added new event to allow actions to be done before trying to load class metadata
2015-01-13 19:49:57 +01:00
Bart van den Burg
19c52e4ae1
added failing test
2015-01-13 19:49:57 +01:00
Bart van den Burg
51528fbdea
set metadata for interface to be able to fetch entites by interface name
2015-01-13 19:49:57 +01:00
Guilherme Blanco
25b7c64dc6
Implemented support for extra lazy get for both owning and inverse side on many to many associations.
2015-01-13 17:50:20 +00:00
Marco Pivetta
9c3cb57931
Merge branch 'optimize-persisters'
...
Close #1246
2015-01-13 15:05:45 +01:00
Marco Pivetta
35dd7f8e2b
#1246 DDC-3487 - docblock args fixes
2015-01-13 15:03:04 +01:00
Marco Pivetta
278b8bfa08
#1246 DDC-3487 - minor alignment fixes
2015-01-13 14:58:56 +01:00
Marco Pivetta
7f71cbc8c7
#1246 DDC-3487 - removed unused assignment, minor alignment fixes
2015-01-13 14:54:00 +01:00
Marco Pivetta
97d1d5343e
#1246 DDC-3487 - removed unused assignment, making $association variable overwrite more obvious
2015-01-13 14:46:34 +01:00
Marco Pivetta
c4366124c7
#1246 DDC-3487 - removed unused assignment, direct return instead
2015-01-13 14:45:13 +01:00
Marco Pivetta
17a865ec7f
#1246 DDC-3487 - correcting docblock (static introspection fix)
2015-01-13 14:39:05 +01:00
Marco Pivetta
b99f4461be
#1246 DDC-3487 - re-aligning SQL string concatenation for readability, fixed docblock return value hint
2015-01-13 14:37:32 +01:00
Marco Pivetta
5942b6c302
#1246 DDC-3487 - re-aligning SQL string concatenation for readability
2015-01-13 14:31:22 +01:00
Marco Pivetta
77234d6aec
#1246 DDC-3487 - removing unused assignment
2015-01-13 14:30:51 +01:00
Marco Pivetta
a8dcc2acf3
#1246 DDC-3487 - removing possible undefined value path for $newValId for clarity
2015-01-13 14:05:27 +01:00
Guilherme Blanco
c49b0795db
Update UPGRADE.md
2015-01-12 22:53:55 -05:00
Guilherme Blanco
de4723883f
Merge pull request #1171 from jaimz22/master
...
Improvements for complex select statements when using new object expression
2015-01-12 22:48:56 -05:00
Guilherme Blanco
bc268da8c2
Small optimization.
2015-01-13 03:30:07 +00:00
Guilherme Blanco
678f47f494
More deprecated code removal.
2015-01-13 02:52:31 +00:00
Guilherme Blanco
965cdbdbbb
Optimized column to field resolutions.
2015-01-13 02:18:49 +00:00
Guilherme Blanco
96955d6e79
Some small improvements to persisters.
2015-01-13 02:05:33 +00:00
Marco Pivetta
5630c37b35
Merge branch 'feature/#1240-include-identifiers-in-exception-messages'
...
Close #1240
2015-01-13 02:56:06 +01:00
Marco Pivetta
1bfa7ea754
#1240 DDC-3479 - Basic coverage for EntityNotFoundException
2015-01-13 02:55:51 +01:00
Marco Pivetta
fc72b41953
#1240 DDC-3479 - Using a static proxy constructor rather than the default constructor
2015-01-13 02:51:47 +01:00
Marco Pivetta
66c556fbfd
#1240 DDC-3479 - Fixing minor CS issues (naming, alignment)
2015-01-13 02:48:57 +01:00
Lars Strojny
8e4092750d
Include IDs in the exception message to ease debugging
2015-01-13 02:41:05 +01:00
Marco Pivetta
1ac688644a
Merge branch 'hotfix/#1242-lock-uninitialized-proxies'
...
Close #1242
2015-01-13 02:37:09 +01:00
Carnage
00b6f62287
Fixed issue
2015-01-13 02:36:58 +01:00
Carnage
36f9822466
Added test to demonstrate issue
2015-01-13 02:36:58 +01:00
Marco Pivetta
ef113e52ab
Merge branch 'feature/#1054-DDC-3161-allow-connection-access-in-filters'
...
Close #1054
2015-01-13 02:06:49 +01:00
Marco Pivetta
ef5a3f1bb7
#1054 DDC-3161 - adding @group annotation for newly introduced tests
2015-01-13 02:06:39 +01:00
Vladislav Veselinov
759836113f
assertion fix
2015-01-13 02:05:49 +01:00
Vladislav Veselinov
79bf84e1ad
revert typehint change
2015-01-13 02:05:49 +01:00
Vladislav Veselinov
9cb17d2915
EntityManagerInterface instead of EntityManager
...
Make connection available in filters
Add test for the changes
2015-01-13 02:05:49 +01:00
Marco Pivetta
14c3adbec0
Merge branch 'hotfix/#470-DDC-54-postLoad-deferred-event-triggering-tests'
...
Close #470
2015-01-13 01:43:44 +01:00
Marco Pivetta
b81209c278
#470 DDC-54 DDC-3005 - documenting postLoad and Doctrine\ORM\AbstractQuery#iterate() partial incompatibility
2015-01-13 01:43:12 +01:00
Marco Pivetta
f571a9ef88
#470 DDC-54 DDC-3005 - query iteration must cause eager hydrationComplete logic to be fired
2015-01-13 01:42:38 +01:00
Marco Pivetta
0ffc752f6f
#470 DDC-54 DDC-3005 - simple-object hydration should also trigger postLoad events when iterating over single results
2015-01-13 01:42:03 +01:00
Marco Pivetta
5cd73f0d12
#470 DDC-54 DDC-3005 - reverting assertion
...
`postLoad` should be triggered eagerly when using `iterate()`, as worse problems may be experienced with
missed initialization via listeners.
2015-01-13 01:36:13 +01:00
Marco Pivetta
0a19fbb376
#470 DDC-54 DDC-3005 - minor test cleanups, changing test according to current limitation to document the actual expected behavior
2015-01-13 01:26:04 +01:00
Marco Pivetta
a884452ffc
#470 DDC-54 DDC-3005 - removing unused PostLoadEventDispatcher
2015-01-13 01:16:46 +01:00
Marco Pivetta
b1144e74ea
#470 DDC-54 DDC-3005 - reverting hydrator changes, as patch DDC-3005 already deals with the issue
2015-01-13 01:09:23 +01:00
Lukasz Cybula
aa4796cd0d
Moved postLoad dispatching from UnitOfWork to object hydrators
2015-01-13 01:03:48 +01:00
Marco Pivetta
a906295c65
Merge branch 'hotfix/#1001-DDC-3005-defer-postload-event-after-fully-populated-associations'
...
Close #1001
2015-01-13 00:54:31 +01:00
Marco Pivetta
d09280a1dc
#1001 DDC-3005 - HydrationCompleteHandler cs fixes (line-wrap)
2015-01-13 00:52:12 +01:00
Marco Pivetta
45221b1951
#1001 DDC-3005 - removed HydrationCompleteHandler#invokeAllDeferredPostLoadEvents() (useless method call indirection)
2015-01-13 00:51:44 +01:00
Marco Pivetta
c9ccd91421
#1001 DDC-3005 - optimized HydrationCompleteHandler imports
2015-01-13 00:50:19 +01:00
Marco Pivetta
730c2a81f7
#1001 DDC-3005 - HydrationCompleteHandler static introspection cleanups, as well as memory and performance improvements
2015-01-13 00:50:05 +01:00
Marco Pivetta
8c54a65aa5
#1001 DDC-3005 - Verifying HydrationCompleteHandler skips over registered deferred loads that were already handled by hydrationComplete
2015-01-13 00:48:53 +01:00
Marco Pivetta
29d4d342bd
#1001 DDC-3005 - Testing HydrationCompleteHandler with multiple deferred entities postLoads
2015-01-13 00:45:07 +01:00
Marco Pivetta
948d6c2b9f
#1001 DDC-3005 - Testing HydrationCompleteHandler against all possible ListenersInvoker flags
2015-01-13 00:39:28 +01:00
Marco Pivetta
833058fd2e
#1001 DDC-3005 - Testing HydrationCompleteHandler when no events should be triggered
2015-01-13 00:36:17 +01:00
Marco Pivetta
7b81cfb6ea
#1001 DDC-3005 - Minor CS fixes in HydrationCompleteHandler
2015-01-13 00:33:15 +01:00
Marco Pivetta
89530f88f7
#1001 DDC-3005 - Removing dead assignment HydrationCompleteHandler#__construct()
2015-01-13 00:32:10 +01:00
Marco Pivetta
516d04c391
#1001 DDC-3005 - Removing useless dependency from the HydrationCompleteHandler to the UnitOfWork
2015-01-13 00:31:32 +01:00
Marco Pivetta
fccd08afa5
#1001 DDC-3005 - Basic coverage for the HydrationCompleteHandler
2015-01-13 00:29:50 +01:00
Marco Pivetta
af93539576
#1001 DDC-3005 - HydrationCompleteHandler should accept EntityManagerInterface instances
2015-01-13 00:06:07 +01:00
Marco Pivetta
22e12e0043
#1001 DDC-3005 - coverage annotations, minor CS fixes
2015-01-12 23:50:16 +01:00
Guilherme Blanco
dd883f2136
Moved delete() and update() to proper locations.
2015-01-12 22:04:04 +00:00
Strate
0c8a31bf2b
DDC-3005. Revert empty line. Removed @since annotation
2015-01-12 22:34:24 +01:00
Strate
96184b9541
DDC-3005.Removed warning in documentation
2015-01-12 22:34:24 +01:00
Strate
367a79206d
DDC-3005. Renamed class by removing underscore
2015-01-12 22:34:24 +01:00
Strate
35ea399d33
DDC-3005 Defer invoking of postLoad event to the end of hydration cycle.
...
1. Refactor handling of hydration complete: delegate this task to special object
2. Write test case for situation, when inside postLoad listener other entity is loading.
3. Make test, written on second step, be able to pass :)
2015-01-12 22:34:24 +01:00
Strate
f3b31c2807
DDC-3005 Defer invoking of postLoad event to the end of hydration cycle.
...
This feature makes guarantee, that postLoad event fires after all associations are populated
2015-01-12 22:33:40 +01:00
Marco Pivetta
b9c0868f08
Merge branch 'one-to-many-extra-lazy-joined-inheritance'
...
Close #1245
2015-01-12 22:05:12 +01:00
Marco Pivetta
0f362b0650
#1245 DDC-2504 - removing duplicate test
2015-01-12 22:03:54 +01:00
Marco Pivetta
ebf5811761
#1245 DDC-2504 - extracting test:
...
Removing an unmanaged/persisted/new item from a one-to-many extra-lazy association to a JTI does not initialize the collection
2015-01-12 21:55:57 +01:00
Marco Pivetta
25d40caf1e
#1245 DDC-2504 - extracting test:
...
Removing a managed item from a one-to-many extra-lazy association to a JTI does not initialize the collection
2015-01-12 21:43:37 +01:00
Marco Pivetta
ec08286173
#1245 DDC-2504 - constants over string references
2015-01-12 21:37:53 +01:00
Marco Pivetta
7a0cb1c370
#1245 DDC-2504 - splitting test method into a test about count() and one about contains() on a lazy persistent collection
2015-01-12 21:34:12 +01:00
Marco Pivetta
8d287b17d7
#1245 DDC-2504 - splitting test method into single feature checks
2015-01-12 21:29:48 +01:00
Guilherme Blanco
932a56f26f
Internalize UnitOfWork in CollectionPersisters. Updated related code.
2015-01-12 19:52:27 +00:00
Guilherme Blanco
c5f1b99721
Fixed wrong return.
2015-01-12 18:18:15 +00:00
Guilherme Blanco
73afcec22a
Implemented support for one to many extra lazy with joined inheritance.
2015-01-12 18:15:13 +00:00
Marco Pivetta
573153669c
Merge pull request #1244 from BenMorel/static
...
Change $this return type to static in AbstractQuery
2015-01-11 18:02:45 +01:00
Benjamin Morel
fbcf18cf33
Changed $this return type to static in AbstractQuery
...
This allows IDEs and static code analysis tools to properly understand the return type when chaining methods, for example when using the QueryBuilder.
2015-01-11 16:48:09 +00:00
Guilherme Blanco
4dbfdfb9d6
Merge pull request #1243 from doctrine/composer-autoloader-dev
...
Fixed phpunit tests autoload requirements and moved to composer autoload-dev
2015-01-10 16:05:14 -05:00
Guilherme Blanco
9201d09ab7
Fixed phpunit tests autoload requirements and moved to composer autoload-dev configuration.
2015-01-10 20:28:57 +00:00
Marco Pivetta
be91cc9bb3
Merge pull request #1239 from deeky666/fix-index-duplication
...
Fix index duplication for unique association join columns
2015-01-09 23:07:50 +01:00
Marco Pivetta
664b6bf4c5
Merge pull request #1227 from c960657/production-settings-query-cache
...
Ensure query cache is not ArrayCache in production
2015-01-09 16:58:38 +01:00
Steve Müller
d1e5034659
fix index duplication for unique association join columns
2015-01-08 15:39:41 +01:00
Marco Pivetta
0cbab230bf
Merge branch 'feature/#1238-allow-skipping-column-prefixing-in-xml-mapped-embeddables'
...
Close #1238
2015-01-08 13:33:52 +01:00
Marco Pivetta
6fdb100793
#1238 DDC-3293 DDC-3477 - exploding tests with set use-column-prefix="true" and use-column-prefix="false" xml mappings
2015-01-08 13:33:38 +01:00
Marco Pivetta
43db4a4182
#1238 DDC-3293 DDC-3477 - adding @group annotations for newly introduced tests
2015-01-08 13:28:11 +01:00
Andrey Knupp Vital
a701c9d046
Removing warning about non-availability of no-prefix in XML mappings
2015-01-08 10:11:22 -02:00
Andrey Knupp Vital
74a2cfc83b
Also adding docs for the new attribute use-column-prefix
2015-01-08 09:37:41 -02:00
Andrey Knupp Vital
08e8af9372
Type-hinting SimpleXMLElement (_getCascadeMappings)
2015-01-08 09:28:15 -02:00
Andrey Knupp Vital
b90943c56b
Minor improvements
2015-01-08 09:04:37 -02:00
Andrey Knupp Vital
bacadbf366
Adding tests for the attribute use-column-prefix
2015-01-08 00:11:34 -02:00
Andrey Knupp Vital
4935da138d
Respecting use-column-prefix instead of relying on false/0 of column-prefix
2015-01-08 00:10:24 -02:00
Andrey Knupp Vital
c964dd0cd2
Adding use-column-prefix attribute as proposed (DDC-3293) #1239
2015-01-08 00:09:30 -02:00
Andrey Knupp Vital
8bbc492978
Removing weird strict comparison on different types
2015-01-07 17:24:44 -02:00
Andrey Knupp Vital
82cda1ecb0
Prevents prefixing a column when false on column-prefix (XML)
2015-01-07 17:22:48 -02:00
Guilherme Blanco
ef65270387
Merge pull request #1230 from johannes/master
...
Allow dumping SQL query when passing DQL on cli
2015-01-06 21:39:11 -05:00
Marco Pivetta
6448627bc9
Merge pull request #1233 from SofHad/refactoring-duplicate-code
...
[Minor] Refactoring to avoid duplicate code
2015-01-04 22:59:05 +01:00
SofHad
eb22db0dcf
remove the unnecessary check
2015-01-04 21:01:32 +01:00
Marco Pivetta
5237692979
Merge pull request #1236 from abackstrom/patch-1
...
Minor docs fix: missing word 'do'
2014-12-31 09:59:33 +01:00
Marco Pivetta
d13e2fbb83
Merge branch 'hotfix/#1235-consistent-joined-subclass-persister-return-types'
...
Close #1235
2014-12-31 09:46:31 +01:00
Marco Pivetta
0f165bce50
#1235 DDC-3470 - coverage annotations
2014-12-31 09:46:19 +01:00
Marco Pivetta
a93e5fa1c2
#1235 DDC-3470 - license headers
2014-12-31 09:45:46 +01:00
Marco Pivetta
74f00327bd
#1235 DDC-3470 - adding @group annotation for newly introduced test cases
2014-12-31 09:45:33 +01:00
Marco Pivetta
e2b34ff5d2
#1235 DDC-3470 - joined subclass persister empty executeInserts() method return type test
2014-12-31 09:44:39 +01:00
Annika Backstrom
27fe4d78b7
Minor docs fix: missing word 'do'
2014-12-30 20:12:11 -05:00
Martin Prebio
8f15c5e905
Consistent return type confirming with interface
2014-12-31 01:28:05 +01:00
Sofiane HADDAG
8d91f7de60
Rename handleCache to updateCache
2014-12-30 14:49:12 +01:00
shaddag
ccb09ad0ac
Rename the private method
2014-12-30 14:10:56 +01:00
shaddag
12b5a0cdd7
Extracted ony the common logic
2014-12-30 14:06:48 +01:00
shaddag
50ef1369c3
[Minor] Refactoring to avoid duplicate code
2014-12-30 10:03:49 +01:00
Johannes Schlüter
cdb62a70cd
Allow dumping SQL query when passing DQL on cli
2014-12-24 14:15:23 +01:00
Christian Schmidt
61c72e4aa7
Ensure query cache is not ArrayCache in production
2014-12-19 20:18:45 +01:00
James Murray
d9cbe1a8b7
removed unnecessary fieldIdentificationVariable property check
2014-12-19 14:10:47 -05:00
James Murray
2f76571d3a
Added a fix for ObjectHydrator when the same number of scalar results and new object results exist
...
Adding additional tests for mixed New object and scalar query
2014-12-19 14:06:03 -05:00
Marco Pivetta
193e31f22a
Merge pull request #1226 from stof/patch-2
...
Update Travis badges to use the SVG version
2014-12-19 19:19:48 +01:00
Christophe Coevoet
92efd887e2
Update Travis badges to use the SVG version
2014-12-19 19:04:04 +01:00
Guido Contreras Woda
82847e1851
Added more docblock
2014-12-16 22:37:50 -03:00
Guido Contreras Woda
8fd28fcd8f
Added embedded and embeddables to ClassMetadataBuilder
2014-12-16 22:30:28 -03:00
Marco Pivetta
5a6bbbd624
Merge branch 'hotfix/#1216-tests-for-#1214-xml-driver-exporting'
...
Close #1216
Close #1214
2014-12-10 01:33:23 +01:00
Marco Pivetta
b6bbf6ac22
#1214 #1216 - adding @group annotation for newly introduced test cases
2014-12-10 01:33:09 +01:00
Fedik
68ed56ce27
test for #1214 , XML export the field options
2014-12-09 20:49:51 +02:00
Marco Pivetta
1cc42d6a63
Merge branch 'hotfix/#1202-nullable-options-should-be-allowed'
...
Close #1202
2014-12-08 01:35:11 +01:00
Marco Pivetta
78ba7f1073
#1202 - simplified test and test asset
2014-12-08 01:34:30 +01:00
Gareth Evans
c1000d23db
Added test that passes following previous commit
2014-12-08 01:31:14 +01:00
Gareth Evans
2fac6272a1
Checks key exists rather than isset
...
If the default value is set to `null`, `isset` will return `false` even though the key is actually there for a reason.
2014-12-08 01:31:14 +01:00
Marco Pivetta
9509bec79a
Merge branch 'hotfix/#1213-DDC-3437-reflection-embeddable-with-abstract-embeddable-ancestor'
...
Close #1213
2014-12-08 01:22:31 +01:00
Marco Pivetta
cf1b16a505
#1213 - DDC-3437 - renaming variables/alignment/clarifications in docblocks
2014-12-08 01:22:20 +01:00
Marco Pivetta
357292de44
#1213 - DDC-3437 - removing unused test assets
2014-12-08 01:20:00 +01:00
Marco Pivetta
55bcc193ae
#1213 - DDC-3437 - removing redundant test method
2014-12-08 01:19:15 +01:00
Marco Pivetta
af0be57538
#1213 - DDC-3437 - integrating new tests into the pre-existing data-provider
2014-12-08 01:18:36 +01:00
Marco Pivetta
d75d6ffb11
#1213 - DDC-3437 - adding relevant test assets
2014-12-08 01:17:57 +01:00
Marco Pivetta
d259ba91b3
#1213 - DDC-3437 - refactoring tests to support embeddable class name != embeddable class property declaring class
2014-12-08 01:17:25 +01:00
Austin Morris
d48546d2dd
fix instantiation of embedded object in ReflectionEmbeddedProperty
2014-12-08 01:06:11 +01:00
Guilherme Blanco
9900d35367
Merge pull request #1214 from Fedik/fix-xml-export-options
...
XML export driver: fix the options export
2014-12-07 10:52:45 -05:00
Fedik
c1eff7045a
XML export driver: fix export options
2014-12-07 13:05:19 +02:00
Guilherme Blanco
0059e01936
Merge pull request #1208 from Ocramius/hotfix/DDC-3427-class-metadata-factory-should-accept-entitymanagerinterface-instances
...
DDC-3427 - class metadata factory should accept `EntityManagerInterface` instances
2014-12-05 12:22:23 -05:00
Marco Pivetta
590d971f83
Merge pull request #1211 from Ocramius/hotfix/DDC-3434-paginator-ignores-hidden-fields-in-order-by-query
...
DDC-3434 - paginator ignores `HIDDEN` fields in `ORDER BY` query
2014-12-05 18:02:39 +01:00
Marco Pivetta
ac67a10d4c
DDC-3434 - adding note on why restoring 'HIDDEN' selected fields is relevant
2014-12-05 18:02:12 +01:00
Marco Pivetta
6169175a89
DDC-3434 - HIDDEN modifier marked fields in ORDER BY clause are always preserved when creating a paginator subquery
2014-12-05 17:11:57 +01:00
Marco Pivetta
6e8057b6ea
DDC-3434 - adding test case for HIDDEN modifier fields in ORDER BY sequences: should be preserved in any case
2014-12-05 17:10:39 +01:00
Marco Pivetta
0c9a898ccd
DDC-3434 - removed unneeded escaping sequences
2014-12-05 17:09:59 +01:00
Guilherme Blanco
a6cf714f41
Merge pull request #1210 from Ocramius/hotfix/DDC-3336-undefined-property-with-paginator-and-scalar-expression-select
...
DDC-3336 - undefined property with paginator walker and scalar expression in ORDER BY clause
2014-12-05 10:42:55 -05:00
Marco Pivetta
e53e8bfe8e
DDC-3336 - applied hotfix: only PathExpression instances have a $field property
2014-12-05 14:56:47 +01:00
Marco Pivetta
c689ff081d
DDC-3336 - adding missing type-hint docblock
2014-12-05 14:55:56 +01:00
Marco Pivetta
2bc8811e62
DDC-3336 - renamed test method for clarity
2014-12-05 14:55:26 +01:00
Marco Pivetta
42e0e6b0b8
DDC-3336 - adding failing test case: scalar expressions in the ORDER BY clause crash the LimitSubqueryOutputWalker
2014-12-05 14:54:26 +01:00
Marco Pivetta
529a268bbc
DDC-3336 - importing platform classes
2014-12-05 14:53:42 +01:00
Steve Müller
38650b748d
Merge pull request #1207 from Ocramius/hotfix/embedded-classes-reflection-new-instance-creation
...
Embedded classes reflection new instance creation with internal PHP classes
2014-12-05 14:24:23 +01:00
Marco Pivetta
e65417f1f6
DDC-3427 - Adding setting an EntityManagerInterface instance in the ClassMetadataFactory#setEntityManager()
2014-12-05 13:49:42 +01:00
Marco Pivetta
d20e018081
DDC-3427 - Adding a test to verify that the ClassMetadataFactory supports setting an EntityManagerInterface instance
2014-12-05 13:38:45 +01:00
Marco Pivetta
dcf824688a
Verifying that reflection properties that don't contain an embeddable will not crash reading properties, but will return null instead
2014-12-05 13:15:15 +01:00
Marco Pivetta
b4a23e97a9
ReflectionEmbeddedProperty should be like any ReflectionProperty, and should therefore extend it for type compatibility
2014-12-05 13:06:41 +01:00
Marco Pivetta
112fdf46d0
Using instantiator to work with internal PHP classes as embeddables
2014-12-05 13:00:54 +01:00
Marco Pivetta
a8b0ac82b4
Adding a data-provider case for a generic model (non-internal class)
2014-12-05 12:57:48 +01:00
Marco Pivetta
ecf028490f
Test to verify that Doctrine\ORM\Mapping\ReflectionEmbeddedProperty is able to interact with internal PHP classes
2014-12-05 12:56:34 +01:00
Marco Pivetta
7f84bc76a6
Namespace correction
2014-12-05 12:43:12 +01:00
Marco Pivetta
56cb47c585
Adding a test asset to play around with reflection and internal classes
2014-12-05 12:41:22 +01:00
Marco Pivetta
fc3f233923
Yodaism good for you: is.
2014-12-05 11:18:10 +01:00
Marco Pivetta
1d5a0a0a1b
Adding docblocks
2014-12-05 11:17:43 +01:00
Marco Pivetta
b9506ac64a
Merge pull request #1195 from decoursin/patch-1
...
Correction Events.rs - Entity Listeners Resolver
2014-12-04 14:03:09 +01:00
Marco Pivetta
8d4b46d014
Merge branch 'hotfix/#1204-metadata-xml-exporter-should-export-sequence-generator-info'
...
Close #1204
2014-12-04 14:00:34 +01:00
Marco Pivetta
c35f1310bc
#1204 - using specific XML assertions to build a less-fragile test (asserting on the entire string may cause failures if the XML structure changes)
2014-12-04 14:00:05 +01:00
Marco Pivetta
ce308dc476
#1204 - refactored sequence-generator metadata exporting into own private method for simplicity
2014-12-04 14:00:05 +01:00
Paulo de Freitas
aa1454562c
Fix sequence-generator in MetaData exporter for XML Driver.
2014-12-04 14:00:05 +01:00
Marco Pivetta
798a8b6d91
Merge pull request #1205 from Ocramius/hotfix/#1200-Yaml-parse-does-not-accept-files-in-symfony-2-6-fix
...
Hotfix - #1200 - Symfony 2.7.x deprecation fixes
2014-12-04 13:59:02 +01:00
Marco Pivetta
351707f1f1
#1200 - bumping symfony/console dependency to ~2.5 because of the Symfony\Component\Console\Helper\Table not being available in < 2.5
2014-12-04 13:42:38 +01:00
Marco Pivetta
9d2c0481ae
#1200 - removing console deprecation errors by using the new Symfony\Component\Console\Helper\Table instead of the deprecated TableHelper
2014-12-04 13:40:22 +01:00
Marco Pivetta
d3b1bf571b
#1200 - removing Yaml::parse() deprecation errors by passing in file contents instead of file paths
2014-12-04 13:37:59 +01:00
Guilherme Blanco
30bf192cf4
Merge pull request #1201 from marcosdsanchez/master
...
Update working-with-objects.rst
2014-12-01 10:52:56 -05:00
Marcos Sánchez
8e26705693
Update working-with-objects.rst
...
Fix syntax error in constructor.
2014-12-01 12:50:11 -03:00
Marco Pivetta
c2ad338707
Merge pull request #1198 from Bilge/patch-2
...
Tables for buttons.
2014-11-28 12:23:23 +01:00
Marco Pivetta
18fd892c85
Merge pull request #1199 from kormik/patch-1
...
minor typo
2014-11-28 11:14:09 +01:00
Tomas Kormanak
27e671378b
minor typo
2014-11-28 08:40:00 +00:00
Bilge
13c03b573c
Tables for buttons.
2014-11-28 05:18:18 +00:00
Marco Pivetta
ee13405a13
Merge pull request #1197 from Bilge/patch-1
...
Minor grammar fix.
2014-11-27 19:16:00 +01:00
Marco Pivetta
9eae0d5ce8
Merge branch 'hotfix/#1196-inherit-mapped-superclass-indexes'
...
See DDC-3418
See DDC-3419
Close #1196
2014-11-27 19:10:57 +01:00
Marco Pivetta
b3fe0904eb
#1196 DDC-3418 DDC-3419 - Minor CS fixes, explicit setExpectedException calls
2014-11-27 19:10:45 +01:00
Marco Pivetta
71135972c6
#1196 DDC-3418 DDC-3419 - Renamed _factory to cmf
2014-11-27 19:08:10 +01:00
Marco Pivetta
291b68634e
#1196 DDC-3418 DDC-3419 - Adding missing docblock for test private property
2014-11-27 19:07:16 +01:00
Bilge
f9b4df70ff
Minor grammar fix.
2014-11-27 18:07:10 +00:00
Marco Pivetta
34d2af8a77
#1196 DDC-3418 DDC-3419 - assertArrayHasKey() instead of assertTrue(isset(...))
2014-11-27 19:06:42 +01:00
Marco Pivetta
084ce7ecc0
#1196 DDC-3418 DDC-3419 - reducing test assets annotations spacing for readability
2014-11-27 18:57:49 +01:00
Marco Pivetta
b761d84d4f
#1196 DDC-3418 DDC-3419 - refactoring class metadata factory to avoid duplicate checks
2014-11-27 18:54:10 +01:00
Marco Pivetta
7648a3c590
#1196 DDC-3418 DDC-3419 - refactoring inherited indexes copying logic into separate private method
2014-11-27 18:52:03 +01:00
Dustin Thomson
17ec1aab77
Modified class metadata factory to have entity tables inherit indexes from mapped superclasses
2014-11-27 18:41:33 +01:00
Marco Pivetta
ec6781954a
Merge branch 'hotfix/#1188-support-count-queries-with-parameters-in-removed-query-parts'
...
Close #1188
2014-11-27 18:16:22 +01:00
Marco Pivetta
f536daa1e4
#1188 - Simplified and optimized parameter un-setting logic
2014-11-27 18:08:11 +01:00
Marco Pivetta
ac0f1b2ce2
#1188 - Importing parser class
2014-11-27 17:59:12 +01:00
Marco Pivetta
64752532dd
#1188 - assertCount instead of assertEquals
2014-11-27 17:57:42 +01:00
Marco Pivetta
42547234d2
#1188 - minor CS fixes (avoiding DQL one-liner)
2014-11-27 17:54:02 +01:00
Marco Pivetta
ecb09b5627
#1188 - accessing Doctrine\ORM\Tools\Pagination\Paginator#getCountQuery() via reflection for test purposes
2014-11-27 17:50:27 +01:00
Marco Pivetta
69064ac13d
#1188 - making Doctrine\ORM\Tools\Pagination\Paginator#getCountQuery() private, as it is an implementation detail
2014-11-27 17:48:37 +01:00
Marco Pivetta
a80117a4ee
#1188 - removing unused variable assignments
2014-11-27 17:42:14 +01:00
Paweł Kolanowski
af39fce6e5
Missing doc block, removed parse() parameter.
...
Missing doc block, removed parse() parameter.
2014-11-27 17:27:22 +01:00
Merixstudio
18244161f7
Filtering by auto-increnement field causes test error.
...
Executing the same test many times causes error because AI fields.
2014-11-27 17:27:22 +01:00
Merixstudio
de1843ad30
Testing SQLs in functional test is not necessary
2014-11-27 17:27:22 +01:00
Merixstudio
fa014ee55d
Test parameter removing parameters passed to select part of query.
2014-11-27 17:27:22 +01:00
Merixstudio
d02ea224df
Allowed to get count query from paginator.
2014-11-27 17:27:22 +01:00
Merixstudio
42aff75108
Fixed counting exception
...
Fixed "Invalid parameter number: number of bound variables does not match number of tokens " exception during execution count on Query where select part of query contains :parameters.
2014-11-27 17:27:22 +01:00
Nick DeCoursin
82c5547931
Correction Events.rs - Entity Listeners Resolver
...
Configuring the Entity Listener Resolver can only be done before Entity Manager is initialized as described here: https://github.com/doctrine/doctrine2/pull/1193
2014-11-26 19:29:58 -05:00
Steve Müller
bf5003f25e
Merge pull request #1192 from javiereguiluz/patch-4
...
Fixed a very minor typo
2014-11-25 09:42:10 +01:00
Javier Eguiluz
7e64d606d2
Fixed a very minor typo
2014-11-25 09:41:13 +01:00
Marco Pivetta
88ce68e733
Merge pull request #1190 from c960657/autogenerate-integer
...
Document that AUTOGENERATE_ constants are allowed
2014-11-21 21:54:00 +01:00
Christian Schmidt
89684b4ce9
Document that AUTOGENERATE_ constants are allowed
2014-11-21 21:11:32 +01:00
Marco Pivetta
e7be0c4dc9
Merge pull request #1184 from goetas/patch-2
...
Postgres SERIAL is not a post-insert identifier generation strategy
2014-11-12 10:31:52 +01:00
Asmir Mustafic
a1660997ff
Postgres SERIAL is not a post-insert identifier generation strategy
2014-11-12 10:10:06 +01:00
Marco Pivetta
9280a4621d
Merge pull request #1183 from NAYZO/patch-2
...
Update tools.rst
2014-11-12 10:04:49 +01:00
Ala Eddine Khefifi
44304c30b3
Update tools.rst
2014-11-12 09:55:51 +01:00
Marco Pivetta
ab62914f87
Merge pull request #1089 from encoder32/EntityRepositoryGeneratorDefaultRepository
...
EntityRepositoryGenerator default repository
2014-11-11 16:22:51 +01:00
Marco Pivetta
f987cf77b5
Merge branch 'hotfix/#1173-merge-association-to-identical-entities'
...
Close #1173
2014-11-11 12:38:08 +01:00
Marco Pivetta
2888791e5c
#1173 - test CS fixes, reduced clutter code, made method names more explicit
2014-11-11 12:37:16 +01:00
Marco Pivetta
511893e182
#1173 - applying CS fixes on top of the patch
2014-11-11 12:27:57 +01:00
Mathieu De Zutter
2ead9e23ab
Fix merging of entities with associations to identical entities.
...
Without this patch, when an entity that refers multiple times to the same
associated entity gets merged, the second references becomes null.
The main issue is that even though doMerge returns a managed copy, that value
is not used while cascading the merge. These identicial entities are already
detected through the visitor map, but they are ignored. There should be some
refactoring so cascadeMerge calls a function that checks if the parent must be
updated, based on the return value of its call to doMerge. However, this patch
tries to impact the code as little as possible, and only introduces a new
function to avoid duplicate code.
The secondary issue arises when using inverted associations. In that case, it
is possible that an entity to be merged is already merged, so the the visitor
map is looked up by the hash of a managed copy instead of the original entity.
This means that in this case the visitor map entries should also be set to the
entity, instead of being set to 'true'.
2014-11-11 12:12:25 +01:00
Mathieu De Zutter
9caef62489
Test case for merging entities with associations to identical entities.
2014-11-11 12:12:25 +01:00
Marco Pivetta
25849a3412
Merge pull request #1177 from c960657/production-settings-arraycache
...
Ensure metadata cache is not ArrayCache in production
2014-11-11 10:43:29 +01:00
Christian Schmidt
3287ce12a4
Fix namespace collission
2014-11-11 08:31:36 +01:00
Christian Schmidt
c973d8df1a
Code style fixes.
2014-11-11 07:35:52 +01:00
jaimz22
dd012dfd90
oops.. forgot to add a condition
2014-11-08 16:56:42 +00:00
jaimz22
e2f1ea7f23
stupid cloud 9 ide broke my code :( sorry
2014-11-08 16:45:58 +00:00
jaimz22
c47a072815
fixed for failing test case. when a single DTO is specified in the query, you no longer get a multidimensional array returned.
2014-11-08 16:36:55 +00:00
jaimz22
2ffda34f23
fixing a missing index error
2014-11-08 10:15:33 -05:00
Christian Schmidt
0990d64756
Ensure metadata cache is not ArrayCache in production
2014-11-08 15:05:56 +01:00
Marco Pivetta
76e1a469ef
Merge pull request #1027 from PowerKiKi/feature-partial-indexes
...
Support for Partial Indexes for PostgreSql and Sqlite
2014-11-05 13:19:29 +01:00
James Murray
da7e4ed8de
removing orphaned scalar results and allowing mixed results when use new object expressions
2014-10-28 17:59:37 -04:00
James Murray
85eac7200d
Adding the ability to alias new object expressions
2014-10-28 17:34:57 -04:00
Marco Pivetta
20c6bfd360
Aligning expected exception test to typo fix in doctrine/doctrine2@b7d104d2a2 , which was breaking the build
2014-10-23 07:01:59 +02:00
Guilherme Blanco
b7d104d2a2
Fixed typo
2014-10-21 22:43:26 -04:00
Guilherme Blanco
3a0d7d1d6b
Merge pull request #1146 from c960657/order-by-assoc
...
Allow orderBy to reference associations
2014-10-21 21:40:04 -04:00
Guilherme Blanco
3924ede3ad
Merge pull request #1128 from Erikvv/patch-1
...
Add QueryBuilder::addSelect()
2014-10-21 21:35:26 -04:00
Kim Hemsø Rasmussen
6fc6d18882
Merge pull request #1165 from Ocramius/feature/#1120-metadata-info-command
...
[DDC-3205] #1120 - metadata info command
2014-10-20 20:46:33 +02:00
Marco Pivetta
ea6f2130b4
#1120 - downgrading requirement for symfony/console to ~2.3
...
Just need `Symfony\Component\Console\Helper\TableHelper` availability
2014-10-20 18:51:39 +02:00
Marco Pivetta
95bc0fb456
#1120 - using the Symfony\Component\Console\Helper\TableHelper for symfony/symfony:~2.3 compatibility
...
(Instead of `Symfony\Component\Console\Helper\Table`)
2014-10-20 18:49:54 +02:00
Marco Pivetta
a0e107249f
Removing public properties validation (supported)
2014-10-20 15:15:05 +02:00
Marco Pivetta
9ccb56a7ab
#1120 - applying CS fixes as per @dantleech's review
2014-10-19 19:56:21 +02:00
Marco Pivetta
9bf8f6ed4c
DDC-3261 - fixed link to DBAL documentation (should always reference latest)
2014-10-19 19:18:11 +02:00
Marco Pivetta
29e99b2b89
#1120 - removed duplication: field and association mappings actually use the same dump format
2014-10-19 18:57:58 +02:00
Marco Pivetta
d5d64b756d
#1120 - removed redundant if block
2014-10-19 18:42:14 +02:00
Marco Pivetta
1208cc836a
#1120 - registering the new MappingDescribeCommand with the ORM's ConsoleRunner
2014-10-19 18:41:14 +02:00
Marco Pivetta
806068b0df
#1120 - removing useless variables, refactoring
2014-10-19 18:36:08 +02:00
Marco Pivetta
39a8a31de9
#1120 - removing unused private properties
2014-10-19 18:34:42 +02:00
Marco Pivetta
574f3ea909
#1120 - map functions over array iteration/mutation
2014-10-19 18:34:06 +02:00
Marco Pivetta
254a46e79c
#1120 - avoiding mutable state for rows/output
2014-10-19 18:32:12 +02:00
Marco Pivetta
250b38710c
#1120 - missing docblock parameter
2014-10-19 18:23:50 +02:00
Marco Pivetta
db74efbe34
#1120 - test coverage annotations
2014-10-19 18:22:28 +02:00
Marco Pivetta
0f289a1270
#1120 - cs cleanups - moving success cases at the end of methods
2014-10-19 18:21:45 +02:00
Marco Pivetta
97fdd0adb7
#1120 - cleaning up try-catch code when fetching metadata
2014-10-19 18:14:33 +02:00
Marco Pivetta
100766e360
#1120 - Removing example array('Foo', 'Bar', 'Boo') dumped data
2014-10-19 18:13:46 +02:00
Marco Pivetta
dcdffbffc7
#1120 - assuming existence of Symfony\Component\Console\Helper\Table
2014-10-19 18:13:01 +02:00
Marco Pivetta
a762158e99
#1120 - since we want to use Symfony\Component\Console\Helper\Table, symfony/console:~2.5 is required
2014-10-19 18:11:42 +02:00
Marco Pivetta
7cf427cfbf
#1120 - avoiding version comparisons when working with version-dependant constants
2014-10-19 17:53:40 +02:00
Marco Pivetta
ed79648d7d
#1120 - avoiding storing the Doctrine\ORM\EntityManager in the command itself
2014-10-19 17:51:17 +02:00
Marco Pivetta
cf078d8da8
#1120 - avoiding storing the Doctrine\ORM\EntityManager in the command itself
2014-10-19 17:49:28 +02:00
Marco Pivetta
e9d7c23261
#1120 - MappingDescribeCommand can be final
2014-10-19 17:43:32 +02:00
dantleech
37de75b2ae
Split new functionality into new command
2014-10-19 17:40:50 +02:00
dantleech
c71b489e9e
Added preg_quote and doc blocks
2014-10-19 17:40:50 +02:00
dantleech
b5552a82e3
Code review fixes
2014-10-19 17:40:50 +02:00
dantleech
51cd8f7ce8
Added test
2014-10-19 17:40:50 +02:00
dantleech
45ce6a41a3
Expanded scope of orm:info to include metadata information
2014-10-19 17:40:50 +02:00
Marco Pivetta
a9bd51c0e4
Merge branch 'hotfix/#615-enforce-A-to-Z-sql-table-aliases'
...
Close #615
2014-10-19 17:25:09 +02:00
Marco Pivetta
b989175754
#615 - Removing unused assignment
2014-10-19 17:24:07 +02:00
Marco Pivetta
264cd8ee11
#615 - Refactoring test case to remove duplication
2014-10-19 17:21:13 +02:00
Marco Pivetta
69494dc624
#615 - sql table aliases should stay constant over time
2014-10-19 17:18:30 +02:00
Marco Pivetta
10da2eb85b
#615 - Using a data provider to build aliases for the SqlWalkerTest
2014-10-19 17:16:07 +02:00
Marco Pivetta
17c9388473
#615 - Test coverage annotations
2014-10-19 17:10:39 +02:00
Marco Pivetta
435befd25c
#615 - EOF EOL fixes
2014-10-19 17:09:41 +02:00
Marco Pivetta
d557a0e01b
#615 - assignment alignment
2014-10-19 17:09:27 +02:00
Marco Pivetta
a4e9c235f8
#615 - assignment alignment
2014-10-19 17:08:33 +02:00
Mike Meier
109b0444f5
add SqlWalkerTest for getSQLTableAlias method
2014-10-19 17:05:34 +02:00
Mike Meier
fb5f76f025
rewrite tablePrefixAlias
2014-10-19 17:05:34 +02:00
Mike Meier
ebc996c820
Update SqlWalker.php
...
Always be sure that only a-z characters are used for table alias, otherwise use generic "t" for "table"
2014-10-19 17:05:34 +02:00
Steve Müller
06b5c84728
Merge pull request #1160 from Ocramius/hotfix/#1159-multiple-entity-managers-per-repository-factory
...
#1159 - multiple entity managers per repository factory should be supported
2014-10-19 14:58:04 +02:00
Marco Pivetta
0f26c62e73
Merge pull request #1143 from MajorCaiger/master
...
Fixed a bug so that a versioned entity with a oneToOne id can be created
2014-10-19 11:52:37 +02:00
Marco Pivetta
d361ed904e
Merge pull request #1164 from AlphaStream/fix-querybuilder-on-hhvm
...
[QueryBuilder] Remove unused method parameters to run on HHVM/PHP7
2014-10-19 10:56:32 +02:00
Marco Pivetta
697640f561
Setting default timezone, as HHVM is misconfigured on travis-ci
2014-10-19 10:54:35 +02:00
Alex Bakhturin
b33c9befb7
[QueryBuilder] Remove unused method parameters that are shadowed by local variables
...
PHP5 treats the left part of such assignment as an independent local variable, while HHVM treats it as a reference to the method parameter. This leads to the value of the parameter being changed, which, in turn, causes func_get_args() to return not what is expected.
This commit is a part of the effort to make Symfony run flawlessly on HHVM. This issue causes a bunch of Symfony tests to fail on HHVM.
2014-10-17 11:17:33 -07:00
Marco Pivetta
f5ecabbc21
Merge pull request #1163 from taavit/patch-1
...
Update xml-mapping.rst
2014-10-17 00:13:28 +02:00
Dawid Królak
143f87960e
Update xml-mapping.rst
...
Fixed closing entity tag.
2014-10-17 00:11:56 +02:00
Marco Pivetta
35d4405727
Merge pull request #1161 from gammamatrix/patch-1
...
Fixing error with from() parameters in example
2014-10-14 13:18:27 +02:00
Jeremy Postlethwaite
abe97bf0df
Fixing error with from() parameters in example
...
The from method requires $from and the $alias to be separate parameters.
public function from($from, $alias, $indexBy = null);
The examples show: from('User u')
2014-10-13 20:37:19 -07:00
Marco Pivetta
f28fa2d3a1
#1159 - EOF EOL CS fixes for Doctrine\ORM\Repository\DefaultRepositoryFactory tests
2014-10-14 01:49:57 +02:00
Marco Pivetta
b61496a36b
#1159 - adding UPGRADE.md notes for Doctrine\ORM\Repository\DefaultRepositoryFactory becoming final
2014-10-14 01:48:25 +02:00
Marco Pivetta
8093c6ddb0
#1159 - protecting Doctrine\ORM\Repository\DefaultRepositoryFactory API by making it final and its protected members private
2014-10-14 01:46:50 +02:00
Marco Pivetta
a9847533e5
#1159 - Doctrine\ORM\Repository\DefaultRepositoryFactory keeps separate caches per entity manager used to build repositories
2014-10-14 01:46:14 +02:00
Marco Pivetta
56378b9bf0
#1159 - optimized imports
2014-10-14 01:40:38 +02:00
Marco Pivetta
7142c9029c
#1159 - Doctrine\ORM\Repository\DefaultRepositoryFactory should create different repositories for different entity managers
2014-10-14 01:40:19 +02:00
Marco Pivetta
9ef3285ebb
#1159 - verifying that Doctrine\ORM\Repository\DefaultRepositoryFactory considers custom repository class from metadata when instantiating repositories
2014-10-14 01:35:51 +02:00
Marco Pivetta
1e467fd23c
#1159 - verifying that Doctrine\ORM\Repository\DefaultRepositoryFactory caches instantiated repositories locally
2014-10-14 01:32:04 +02:00
Marco Pivetta
5adce9a1e3
#1159 - base coverage for the Doctrine\ORM\Repository\DefaultRepositoryFactory implementation
2014-10-14 01:29:45 +02:00
Marco Pivetta
3ca0dae606
Merge pull request #1156 from NAYZO/patch-1
...
Fixed missed initialization in CommitOrderCalculator.php
2014-10-13 02:36:00 +02:00
Marco Pivetta
1e6ca40ffa
Merge pull request #1157 from gennadiylitvinyuk/patch-1
...
Fixing calls of schema-update tools
2014-10-13 02:32:42 +02:00
Marco Pivetta
1d8ef5ed18
Merge pull request #1158 from josemalonsom/update-query-builder-ref-doc
...
Update QueryBuilder reference documentation.
2014-10-13 02:26:42 +02:00
Jose M. Alonso M
82887d0361
Update QueryBuilder reference documentation.
...
- Updated the signature of methods "from", "innerJoin" and "leftJoin"
since it does not match the actual implementation.
- Added reference to the "join" method.
2014-10-12 20:31:33 +02:00
Gennadiy Litvinyuk
83cd44697d
Fixing calls of schema-update tools
...
composer-generated binaries should be called without php interpreter.
Added reminder to update schema.
2014-10-12 17:50:47 +02:00
Ala Eddine Khefifi
f2bdfe102e
Fixed missed initialization in CommitOrderCalculator.php
2014-10-12 14:04:41 +01:00
Marco Pivetta
10b801dec0
Adding note about a minor BC break: d2 does not call __clone on new objects anymore.
2014-10-06 14:57:03 +02:00
Christian Schmidt
94f5f53d2a
Allow orderBy to reference associations
2014-10-05 10:16:58 +02:00
Marco Pivetta
0bff6aadbc
Merge pull request #1147 from naitsirch/master
...
Extended the docs for mapping attributes precision and scale
2014-10-03 00:50:00 +02:00
Rob Caiger
dd398ce577
- Fixed the basic entity persister so that versioned OneToOne entities can be created
...
- Created an IdentifierFlattener utility class
- Moved the logic for the flatten identifier method into the new utility class
- Replaced calls for private flattenIdentifier to use new utility
- Added appropriate unit tests
2014-10-01 14:01:44 +01:00
Steve Müller
05045d9544
Merge pull request #1148 from naitsirch/hotfix/DWEB-118
...
[DWEB-118] Fixed small typo in documentation about extra lazy associations
2014-09-27 18:19:53 +02:00
naitsirch
547a902bd3
Fixed small typo in documentation about extra lazy associations #DWEB-118
2014-09-26 19:49:12 +02:00
Christian Stoller
d93f648230
Extended the docs for mapping attributes precision and scale
2014-09-25 09:38:34 +02:00
Marco Pivetta
3f8865c6fb
Merge pull request #1092 from birko/pagination-count-walker
...
[DDC-2794] Arbitrary Join count walkers solution
2014-09-23 00:30:30 +02:00
Marco Pivetta
15a00ea807
Clearing cache by --id, --regex, --prefix and --suffix is not supported anymore.
2014-09-14 17:30:47 +02:00
Marco Pivetta
f12c311a79
Merge pull request #1135 from deeky666/DDC-3304
...
[DDC-3304] Add support for embeddables in entity generator
2014-09-12 21:54:45 +02:00
Steve Müller
b291d8d589
add support for embeddables in entity generator
2014-09-12 20:29:37 +02:00
Steve Müller
b249aa9f65
Merge pull request #1132 from Ocramius/hotfix/DDC-3272-entity-generator-mapped-superclass-casing
...
DDC-3272 entity generator mapped superclass casing
2014-09-10 18:27:51 +02:00
Marco Pivetta
4974edc70a
DDC-3272 - fixing issue with mapped superclass name, minor refactoring
2014-09-10 17:00:06 +02:00
Marco Pivetta
dd9a6bea0a
DDC-3272 - minor cleanups - inspecting a test failure related with @Doctrine\ORM\Mapping\Table autoloading
2014-09-10 16:57:35 +02:00
Marco Pivetta
ffe38e5088
DDC-3272 - cleanups, importing classes, optimized imports
2014-09-10 16:41:49 +02:00
Marco Pivetta
b9090ef73e
DDC-3272 - failing test (to be run in insulation because of autoloading) that verifies that a wrong annotation is generated for @MappedSuperclass
2014-09-10 16:40:17 +02:00
Marco Pivetta
e2fea427a4
Merge pull request #1127 from crybat/master
...
Document embeddables column prefixing
2014-09-10 16:12:22 +02:00
encoder64
6bc003e47d
simple fixes
2014-09-10 01:07:22 +03:00
encoder64
e295a6d05e
visibility changed && few simple fixes
2014-09-09 22:17:10 +03:00
encoder64
409f6b4bc1
Unit Tests && simple fixes
2014-09-07 18:26:09 +03:00
encoder64
cd547fecea
Corrected names to DDC3231
2014-09-06 18:29:14 +03:00
encoder64
859a5f88cb
Unit Tests && simple fixes
2014-09-06 18:14:16 +03:00
encoder64
dc3bc45d1d
Merge remote-tracking branch 'upstream/master' into EntityRepositoryGeneratorDefaultRepository
2014-09-06 15:33:48 +03:00
Mauro Pinto
857fed0310
Make embeddable doc more succinct, fix xml
2014-09-03 11:13:28 +01:00
Erik van Velzen
ba50f978a5
Add QueryBuilder::addSelect()
2014-09-02 13:52:52 +02:00
František Bereň
589d26fc5e
Changed calling $from[0] to using reset($from)
...
changed usage $from[0] according suggestion from @Ocramius to use array
reset function
2014-09-02 08:39:29 +02:00
Mauro Pinto
3bd916f763
Document embeddables column prefixing
2014-09-01 12:48:10 +01:00
Marco Pivetta
d9b43dc649
Merge pull request #1116 from deeky666/DDC-3265
...
[DDC-3265] Fix DocBlock
2014-08-30 04:22:47 +02:00
Marco Pivetta
6e79515a75
Merge pull request #1123 from stof/patch-1
...
Fixed the structure of the reverse-engineered mapping
2014-08-30 04:19:55 +02:00
Marco Pivetta
6e34985b51
Merge pull request #1126 from phansys/master
...
Fixed new line in docblock
2014-08-30 04:13:55 +02:00
Javier Spagnoletti
f731a66e1c
Removed extra line breaks for docblocks in set, get, add and remove method templates.
2014-08-29 23:11:49 -03:00
Javier Spagnoletti
1378626937
Fixed new line in docblock ( 247803715b).
2014-08-29 22:49:23 -03:00
Guilherme Blanco
2a80e34179
Merge pull request #1125 from kcassam/patch-1
...
Update improving-performance.rst
2014-08-29 18:40:20 -04:00
Ka
2120d41029
add a link to said chapter
2014-08-29 08:47:28 +02:00
Ka
398688ab38
Update improving-performance.rst
2014-08-29 08:42:14 +02:00
František Bereň
d48be34696
CS Fixes
2014-08-28 13:17:25 +02:00
Guilherme Blanco
4b504c9436
Merge pull request #1109 from doctrine/hotfix/DDC-3120-php-5.6-RC3-compat
...
DDC-3120 - PHP 5.6-RC3 compatibility
2014-08-27 12:27:05 -04:00
Christophe Coevoet
f0c02bb6d9
Fixed the test expectations for the DatabaseDriver
2014-08-27 14:00:34 +02:00
Christophe Coevoet
00eb0d3b67
Fixed the structure of the reverse-engineered mapping
2014-08-27 13:56:02 +02:00
Guilherme Blanco
3d4113bd1b
Merge pull request #1122 from Ocramius/feature/support-arithmetic-expressions-in-count
...
Support arithmetic expressions in `COUNT()`
2014-08-26 21:01:56 -04:00
Marco Pivetta
48a86511cb
DDC-3276 - #1122 - updating EBNF in documentation to reflect new syntax support
2014-08-27 02:17:08 +02:00
Marco Pivetta
45d74e7220
DDC-3276 - #1122 - updating EBNF in docblock to reflect new syntax support
2014-08-27 02:12:08 +02:00
Marco Pivetta
a2e0133a94
Adding DDC-3276 test group
2014-08-27 02:01:56 +02:00
Marco Pivetta
097840dc93
Allowing expression in COUNT() DQL aggregation functions
2014-08-27 01:56:11 +02:00
Marco Pivetta
02ba144c8d
Adding test to verify SQL generation with an expression in COUNT()
2014-08-27 01:55:28 +02:00
Marco Pivetta
91fa4c9be3
Merge pull request #1121 from deeky666/DDC-3274
...
[DDC-3274] Improve schema validator error message for invalid bi-directional relations
2014-08-26 23:27:23 +02:00
encoder64
c8565c2772
Visibility for EntityRepositoryGenerator::generateClassName()
2014-08-26 21:42:55 +03:00
Steve Müller
8d3fba5540
improve schema validator error message for invalid bi-directional relations
2014-08-26 19:46:17 +02:00
Steve Müller
65f8357b46
Merge pull request #1119 from stof/travis_colors
...
Enabled colors for the PHPUnit output on Travis
2014-08-22 14:00:20 +02:00
Christophe Coevoet
e7739d9411
Enabled colors for the PHPUnit output on Travis
2014-08-22 13:42:43 +02:00
Steve Müller
ad1f228ef6
fix DocBlock
2014-08-22 09:26:54 +02:00
Guilherme Blanco
400acad533
Merge pull request #1105 from deeky666/nested-embeddables
...
Add support for nesting embeddables
2014-08-21 16:33:44 -04:00
Steve Müller
e47b31845c
Merge pull request #1115 from armetiz/patch-1
...
Fix wrong variable name
2014-08-21 11:22:35 +02:00
Thomas Tourlourat
613119599f
Fix wrong variable name
2014-08-21 10:42:22 +02:00
Marco Pivetta
ff80187930
Merge pull request #1098 from encoder32/DDC-1590
...
#DDC-1590: Fix Inheritance in Code-Generation
2014-08-18 22:35:52 +02:00
Marco Pivetta
c20b3a7cf2
Merge branch 'hotfix/#1112-single-repository-for-aliased-entity'
...
Close #1112
2014-08-18 15:22:13 +02:00
Marco Pivetta
dfbaac0401
#1112 - Fixed type-hint that is incompatible with most IDEs
2014-08-18 15:18:59 +02:00
Marco Pivetta
aab7fce2d4
#1112 - Elvis operator reduces code duplication even more
2014-08-18 15:17:54 +02:00
Marco Pivetta
bf03694e28
#1112 - Yoday need you may, better IDE hinting as well needed is.
2014-08-18 15:16:45 +02:00
Marco Pivetta
19d3552f2a
#1112 - Removing useless trimming of the entity name being passed in
2014-08-18 15:14:53 +02:00
Marco Pivetta
36bbd28b75
#1112 - adding test to verify that leading backslash is not relevant when fetching repositories
2014-08-18 15:11:39 +02:00
Marco Pivetta
ae16afa428
#1112 - adding DDC-3257 group to test method
2014-08-18 15:07:07 +02:00
Marco Pivetta
01f22988b1
#1112 - cleaning up repository test - makes assertions more clear/simpler to read
2014-08-18 15:06:37 +02:00
Marco Pivetta
3fed769b40
#1112 - avoiding useless assignments/splitted return statement
2014-08-18 15:02:34 +02:00
Marco Pivetta
7865de92ab
#1112 - renamed $class to $className
2014-08-18 15:01:52 +02:00
Giorgio Premi
a665cb0229
DefaultRepositoryFactory: single repository for aliased entities
2014-08-18 14:52:01 +02:00
Marco Pivetta
5ff67c92ee
Merge pull request #1111 from eko/master
...
Fix inheritance hierarchy wrong exception message
2014-08-15 16:13:33 +02:00
Vincent Composieux
edc2ed9512
Fix QueryException::instanceOfUnrelatedClass() message
2014-08-15 15:39:56 +02:00
Guilherme Blanco
ebc70d1baf
Merge pull request #1110 from baileylo/patch-2
...
Changed table name to be more appropriate.
2014-08-14 20:16:34 -04:00
Logan Bailey
9b7318ab4c
Changed table name to be more appropriate.
...
This change assumes that the Article object references the articles tables, not the user table.
2014-08-14 17:07:05 -07:00
Marco Pivetta
7b145f8269
DDC-3120 - requiring doctrine\instantiator:~1.0.1 as of doctrine/instantiator#4
2014-08-14 16:55:32 +02:00
Marco Pivetta
361ec2a474
DDC-3120 - using Doctrine\Instantiator when building new instances
2014-08-14 15:51:48 +02:00
Marco Pivetta
f8a8437c95
DDC-3120 - need to wakeup reflection BEFORE using any ClassMetadata API
2014-08-14 15:51:17 +02:00
Marco Pivetta
c2993bcdeb
DDC-3120 - add failing test for un-serialization of an internal PHP class from cached metadata instance
2014-08-14 15:39:58 +02:00
Marco Pivetta
d52dd39592
DDC-3120 - add failing test for un-serialization of an internal PHP class
2014-08-14 15:38:55 +02:00
Marco Pivetta
2c3126353c
DDC-3120 - adding instantiator dependency
2014-08-14 15:33:09 +02:00
Steve Müller
6ac19b04bf
Merge pull request #1108 from umpirsky/patch-1
...
Minor CS fix
2014-08-12 10:16:17 +02:00
Saša Stamenković
133bd288bf
Minor CS fix
2014-08-12 09:57:19 +02:00
Steve Müller
0768916a06
fix handling infinite nesting of embeddables
2014-08-12 07:56:39 +02:00
Steve Müller
bca9d31531
add support for nesting embeddables
2014-08-11 16:53:18 +02:00
encoder64
cd4bc93483
Simple Fixes
2014-08-09 13:27:38 +03:00
encoder64
20b72ef344
Visibility for EntityRepositoryGenerator::$repositoryName
2014-08-09 13:20:27 +03:00
Adrien Crivelli
1003466a5f
Surround ! with spaces according to code style
2014-08-05 18:07:00 +09:00
encoder64
94ba6e2dfc
#DDC-1590: Simple Fixes
2014-08-04 20:18:26 +03:00
Marco Pivetta
723529ffff
Merge pull request #1069 from anho/reuse-console-app
...
added method to be able to reuse the console application
2014-08-04 16:17:11 +02:00
encoder64
4e805bb59a
#DDC-1590: Fix Inheritance in Code-Generation: Code Style Fixes
2014-08-03 17:07:20 +03:00
encoder64
e0ae7634d5
#DDC-1590: Fix Inheritance in Code-Generation
2014-08-03 17:02:33 +03:00
Marco Pivetta
2ae8538f96
Merge pull request #1096 from simonharris/master
...
Changes for grammar and clarity
2014-07-31 18:02:34 +02:00
Simon Harris
7c2ab7fff8
Changes for grammar and clarity
2014-07-31 16:45:33 +01:00
Simon Harris
bf91d03adf
Merge pull request #1 from doctrine/master
...
Update from original
2014-07-31 16:24:31 +01:00
František Bereň
54ac6a0535
Updated Asset queries
...
Missing braces and selected fields
2014-07-31 09:01:58 +02:00
František Bereň
458b953522
fixed typos in tests
2014-07-31 08:43:02 +02:00
František Bereň
164352562b
Added Tests for Arbitrary Join
2014-07-31 08:31:39 +02:00
Marco Pivetta
0650bb954f
Merge pull request #1094 from thekeyboardbum/master
...
Fix bulk insert code example
2014-07-31 00:06:05 +02:00
Justin
2d23c95c3f
Fix bulk insert code example
...
Previous code example did not flush all entities when entity count was not a multiple of batch count.
2014-07-30 15:00:35 -07:00
Marco Pivetta
66d67445c9
Merge pull request #1093 from malukenho/patch-2
...
Use `null` comparation instead of `is_null()`
2014-07-30 21:58:55 +02:00
Jefersson Nathan
1b9f42ae67
Use null comparation instead of is_null()
2014-07-30 16:54:24 -03:00
František Bereň
a37f99f242
Root selection according other pagination tools
...
changed root selection in Walkers from looping queryComponents to using
$AST->fromClause as other walkers have
2014-07-30 15:55:14 +02:00
František Bereň
114bd2435f
Arbitrary Join count walkers solution
...
Possible solution for Arbitrary Join problem in pagination count
walkers:
https://groups.google.com/forum/#!topic/doctrine-user/rpPYCDNKOU8
Added a condition to test query component against SelectStatement from
clause
2014-07-30 09:56:22 +02:00
encoder64
df80d82aab
Reverted visibility for EntityRepositoryGenerator::generateEntityRepositoryNamespace()
2014-07-27 20:15:18 +03:00
encoder64
5d608b6206
Private method EntityRepositoryGenerator::generateEntityRepositoryNamespace() changed to protected
2014-07-27 19:05:42 +03:00
encoder64
a4c7a89507
className fix: If namespace is not set then ClassName will be cut of
2014-07-27 17:28:06 +03:00
encoder64
c04b01cbd7
Added NS checking
2014-07-27 17:02:19 +03:00
encoder64
3dc2a68583
simple fixes
2014-07-27 15:22:51 +03:00
encoder64
90efaeec42
Code Style fixes
2014-07-27 14:54:35 +03:00
encoder64
c0ee57ae55
Default/Custom Entity Repository for Entity Repository Generator
2014-07-27 14:44:31 +03:00
Marco Pivetta
089cca636e
Merge pull request #1088 from austinsmorris/fix-clt-autoload-path
...
Fix the composer autoload paths for the doctrine CLT
2014-07-24 17:34:21 +02:00
Austin Morris
a6a9c72a75
Fix the composer autoload paths for the doctrine CLT
2014-07-24 09:52:55 -04:00
Andreas Hörnicke
a76506c3fd
amended documentation
2014-07-24 09:38:08 +02:00
Andreas Hörnicke
1d16e5322f
added a simple test
2014-07-24 09:23:36 +02:00
Marco Pivetta
2b24478f05
Merge pull request #1087 from malukenho/patch-1
...
Remove the error control operator
2014-07-24 00:35:18 +02:00
Jefersson Nathan
70fe21b30a
Remove the error control operator
2014-07-23 17:09:47 -03:00
Adrien Crivelli
bb5345b330
Adapt formatting to pre-existing content
2014-07-22 10:44:45 +09:00
Adrien Crivelli
27adf8d6e9
Refactor partial into options array
...
This coherent with what is done for Table. All platform specific things
are grouped into an options array. Eventually flags should be migrated
into options as well.
2014-07-22 10:32:31 +09:00
Adrien Crivelli
eeb7ff4a6d
Support for Partial Indexes for PostgreSql and Sqlite
...
Support for Partial Indexes was available in Doctrine 1 following
http://www.doctrine-project.org/jira/browse/DC-82 . This commit
reintroduce support for Doctrine 2. We use the same syntax with an
optionnal "where" attribute for Index and UniqueConstraint.
2014-07-22 10:32:30 +09:00
Marco Pivetta
499f09fc99
Merge pull request #1084 from hartca/master
...
Update advanced-field-value-conversion-using-custom-mapping-types.rst
2014-07-18 01:25:50 +02:00
hartca
0ab2672872
Update advanced-field-value-conversion-using-custom-mapping-types.rst
2014-07-18 00:10:47 +01:00
Marco Pivetta
205a5de4e5
Merge pull request #1083 from deeky666/DDC-3073
...
[DDC-3073] Add documentation about how to map column options
2014-07-17 11:56:40 +02:00
Steve Müller
040c445297
add documentation about how to map column options
2014-07-17 11:28:43 +02:00
Guilherme Blanco
c019047d6c
Merge pull request #1082 from scotam/invalid-parameter-count
...
added more informative error messages when invalid parameter count
2014-07-15 11:06:53 -04:00
Rhodri Pugh
ad10a18071
added more informative error messages when invalid parameter count
2014-07-15 13:17:22 +01:00
Marco Pivetta
85fbf68436
Merge branch 'hotfix/#1019-detached-entity-exception-rewording'
...
Close #1019
2014-07-14 11:25:42 +02:00
Andreas Flack
0ade3aa62a
Improve phrasing on exception message instead of trying to fix callers
2014-07-14 11:25:04 +02:00
flack
b8ef3af982
Small grammar fix
...
The exception was reading
```
A detached entity was found during {removed|persisted} [entityName]
```
I changed the verbs to infinitive now. Alternatively, the text in ``ORMInvalidArgumentException::detachedEntityCannot`` could also be changed to read
```
Detached entity [entityName] cannot be {removed|persisted}
```
2014-07-14 11:25:04 +02:00
Marco Pivetta
5361676bba
Merge pull request #1038 from Greenflex/doc/dql-hidden-keyword
...
Add documentation for the `HIDDEN` keyword in DQL
2014-07-14 11:18:30 +02:00
Marco Pivetta
90dee7036d
Merge pull request #1067 from albertvolkman/add-fullstop-and-newline
...
Add fullstop and newline after property description.
2014-07-14 11:09:40 +02:00
Marco Pivetta
b80149344d
Merge pull request #1073 from kamazee/add_passing_type_to_rsm_in_sql_walker
...
Add missing type mapping
2014-07-14 10:51:13 +02:00
Alexander Kurilo
38fcc66c16
Add missing type mapping
...
Fixes DDC-3192
Refs DDC-2494
This is essentially a fix from DDC-2494 applied to SQLWalker.
The issue: type was not converted to PHP value when the result is fetched by
executing DQL query rather than using entity manager's findX(). Similar issue
for BasicEntityPersister (which is used when em's findX is executed) was fixed
in DDC-2494, but SQLWalker made the issue valid for any custom query.
2014-07-14 11:22:08 +03:00
Marco Pivetta
ae0ee72425
Merge pull request #1080 from danielsippel/DDC-2021
...
possible fix for DDC-2021
2014-07-11 21:35:34 +02:00
Daniel Sippel
ae2235fd3c
DDC-2021 sql generation test: remove comment
2014-07-10 00:32:24 +02:00
Daniel Sippel
b31ba98076
DDC-2021 add sql generation test
2014-07-10 00:27:28 +02:00
Daniel Sippel
45358bf5d0
possible fix for DDC-2021
2014-07-09 16:39:44 +02:00
Marco Pivetta
bf1e7e150e
Merge pull request #1078 from renan/patch-1
...
Removing Value Objects from limitations
2014-07-07 20:20:59 +02:00
Renan Gonçalves
c9901c9017
Removing Value Objects from limitations as per #835
2014-07-07 20:17:56 +02:00
Marco Pivetta
a8035f25a2
Merge pull request #1074 from zimmermanj42/DDC-3160
...
[DDC-3160] Alternate fix for DDC-2996 bug
2014-07-06 16:07:43 +02:00
Justin Zimmerman
6a4867512e
Fix test issues.
2014-07-04 11:15:57 -04:00
Justin Zimmerman
65e7cc9143
[DDC-3160] Change to fix that was implemented for DDC-2996.
...
A fix for DDC-2996 was implemented that broke quite a few extensions.
This commit is an attempt to fix the DDC-2996 bug without the adverse side effects seen in DDC-3160.
Basically, if changes are detected that would cause a changeset to be made, but the entity is awaiting insertion, the code will not save the changeset nor flag the entity as awaiting updating in the Unit of Work.
Some styling tweaks based on Pull Request guidelines.
2014-07-04 10:51:04 -04:00
Guilherme Blanco
8c0166d3bf
Merge pull request #1076 from velosipedist/fix-typos
...
Fix switch non-uniform syntax
2014-07-01 23:11:53 -04:00
velosipedist
60cb01be1f
Fix switch non-uniform syntax
2014-06-29 18:00:02 +04:00
Marco Pivetta
c370426792
Merge pull request #1075 from vilartoni/master
...
Fixed query cache id generation: added platform to hash
2014-06-27 22:37:36 +02:00
Antonio Vilar
4e61ceb0df
Added platform key
2014-06-27 22:36:02 +02:00
Antonio Vilar
0dde8585c3
Fixed query cache id generation: added platform to hash
2014-06-27 20:29:55 +02:00
Marco Pivetta
9e36a95a97
Merge pull request #1065 from egeloen/DDC-3179
...
[DDC-3179] EntityNotFoundException on the postRemove event if the entity is a proxy
2014-06-26 18:25:53 +02:00
Eric GELOEN
20f96cc9d3
[DDC-3179] Document postRemove limitation
2014-06-26 18:09:32 +02:00
Marco Pivetta
22d71de2c3
Merge pull request #1071 from VasekPurchart/fix-setup-cache
...
Setup::createConfiguration breaks Cache interface contract
2014-06-26 02:15:54 +02:00
Vasek Purchart
ee5f465a2f
set namespace in setup only on CacheProvider instances
2014-06-26 01:29:35 +02:00
Andreas Hörnicke
eef32d4372
added method to be able to reuse the console application
2014-06-24 11:02:24 +02:00
Marco Pivetta
d98b4a5124
Merge pull request #1068 from jkavalik/patch-1
...
Fix typo in documentation
2014-06-24 08:25:19 +02:00
jkavalik
d5dd21dd79
Fix typo in documentation
2014-06-24 08:00:45 +02:00
Albert Volkman
247803715b
Add fullstop and newline after property description.
2014-06-23 09:53:27 -04:00
Guilherme Blanco
38187a31d6
Merge pull request #1032 from bakura10/optimized-contains
...
Add support for optimized contains in LazyCriteria
2014-06-21 08:56:47 -04:00
Guilherme Blanco
381cf8022f
Merge pull request #1063 from FlorianLB/master
...
singularize variable name on add/remove methods for EntityGenerator
2014-06-21 08:49:53 -04:00
Marco Pivetta
84a0fddaf4
Merge branch 'hotfix/#1064-xsd-on-update-removal'
2014-06-19 16:06:03 +02:00
Marco Pivetta
19b5e87cab
on-update is not supported anymore
2014-06-19 16:05:12 +02:00
Marco Pivetta
e940ce1df6
Replacing " with ' to avoid escaping warnings
2014-06-19 15:54:43 +02:00
Marco Pivetta
59720370f9
Corrected FQCN reference in @expectedException
2014-06-19 15:53:37 +02:00
Marco Pivetta
7dfca09ff6
Minor CS fixes (use statements compliant with PSR-2)
2014-06-19 15:53:11 +02:00
Marco Pivetta
85c02e57b1
Merge pull request #1064 from stefanotorresi/update-xsd
...
remove on-update from join-column
2014-06-19 14:33:58 +02:00
Stefano Torresi
391847d627
remove on-update from join-column
2014-06-19 14:27:56 +02:00
FlorianLB
fdca5d7584
singularize variable name on add/remove methods for EntityGenerator
2014-06-19 10:00:40 +02:00
Guilherme Blanco
f7c5a0684a
Merge pull request #1060 from ureimers/master
...
[DDC-3170] SimpleObjectHydrator fails to get discriminator column from mapped SQL result
2014-06-17 10:44:16 -04:00
Ulf
a7aa634247
Fixed mapping of discriminator column
...
Added fix for [DDC-3170] (http://www.doctrine-project.org/jira/browse/DDC-3170 ).
When querying a simple entity which uses single table- or class table inheritance using simple object hydration (``AbstractQuery::HYDRATE_SIMPLEOBJECT``), the mapped discriminator column was not retrieved correctly.
If the column got an alias during result set mapping other than it's actual name (e.g. ``type34`` insteaad of ``type``) than this alias wasn't reverted when retrieving the discriminator column from the SQL result set.
2014-06-17 14:51:19 +02:00
Ulf
7aa1c0a907
Create DDC3170Test.php
...
Added test for [DDC-3170] (http://www.doctrine-project.org/jira/browse/DDC-3170 )
2014-06-17 14:45:59 +02:00
Marco Pivetta
ef43b223fd
Merge pull request #1059 from iampersistent/patch-3
...
fix spacing for yaml example
2014-06-16 20:21:30 +02:00
Richard Shank
9a5fc49690
fix spacing for yaml example
2014-06-16 08:20:14 -07:00
Marco Pivetta
ca37f87c27
Merge pull request #1058 from DavidPrevot/Unicode
...
Drop Unicode character
2014-06-15 12:19:45 +02:00
David Prévot
3ff92f587f
Drop Unicode character
...
It broke the LaTeX build.
2014-06-14 23:14:42 -04:00
Andreas Flack
a5cf6417b3
Add failing test for DDC-3160
2014-06-12 17:28:13 +02:00
Marco Pivetta
5c447cfb71
Merge branch 'hotfix/build-fix'
2014-06-07 15:12:09 +02:00
Marco Pivetta
50d7975fd6
Allowing failures on hhvm-nightly, as the build chokes on composer installation for now (unrecognized console flags)
2014-06-07 15:11:51 +02:00
Marco Pivetta
32b24ba155
Fixed mismatch in expected exception message, see doctrine/doctrine2#1048
2014-06-07 14:55:59 +02:00
Marco Pivetta
3ade0cf6a5
Merge pull request #1048 from MidnightDesign/patch-1
...
Fix typo in exception message
2014-06-06 04:34:50 +02:00
Marco Pivetta
d71159c6c5
Merge pull request #1049 from deeky666/DDC-3152
...
[DDC-3152] Fix redeclaration of methods on entity generation update
2014-06-06 03:48:24 +02:00
Steve Müller
dcf8d6a86e
ignore case when checking for existing methods to avoid redeclaration on update
2014-06-05 15:58:54 +02:00
Rudolph Gottesheim
daa90bf32d
Fix typo in exception message
2014-06-04 15:59:57 +02:00
Benjamin Eberlei
6f622ab1f7
Merge branch 'master' of github.com:doctrine/doctrine2
2014-06-03 21:42:38 +02:00
Benjamin Eberlei
46ebb57b45
Fix wrong version
2014-06-03 21:41:26 +02:00
Marco Pivetta
b3d01b6036
Merge pull request #1047 from simonharris/master
...
Minor grammatical corrections
2014-06-03 17:52:45 +02:00
Simon Harris
7dac285de6
A few minor changes for English and clarity
2014-06-03 16:46:37 +01:00
Simon Harris
8b1f5d71e1
Fix minor grammatical error
2014-06-03 16:26:54 +01:00
Benjamin Eberlei
e577e77867
Cleanup 93c276d
2014-06-03 17:05:02 +02:00
Marco Pivetta
2101a8fdc6
Merge branch 'hotfix/php-version-id-check-in-metadata-prototype-instantiation'
2014-05-31 13:37:50 +02:00
Marco Pivetta
72750b05e6
Using PHP_VERSION_ID instead of version_compare to see if we're using PHP 5.4+
2014-05-31 13:37:39 +02:00
Guilherme Blanco
a851dd68fb
Merge pull request #1045 from marmotz/master
...
Fix the "Erroneous data format for unserializing" error message
2014-05-30 09:11:34 -04:00
Renaud LITTOLFF
93c276d059
Fix the "Erroneous data format for unserializing" error message
2014-05-30 10:43:11 +02:00
Marco Pivetta
5d1275e938
Merge pull request #1044 from ronanguilloux/patch-2
...
Use of ->andWhere() whithout any ->where() before is valid
2014-05-29 22:42:09 +02:00
Ronan Guilloux
526c757901
Update query-builder.rst
2014-05-29 16:36:22 +02:00
Ronan Guilloux
495fe6002d
Update query-builder.rst
...
->andWhere() can be used directly, without any ->where() before, and we can just always use ->andWhere(). This is why ->hasWhere() is useless, cf. #1043 .
2014-05-29 16:29:49 +02:00
Marco Pivetta
5ee286e7e0
Merge pull request #1041 from c960657/entity-manager-interface
...
Allow all EntityManagerInterface implementations
2014-05-28 14:40:22 +02:00
Marco Pivetta
f941264b5e
Merge pull request #1042 from bakura10/patch-1
...
Fix second level cache doc
2014-05-28 13:57:15 +02:00
Michaël Gallego
3d32bc47a7
Fix second level cache doc
2014-05-28 13:07:01 +02:00
Christian Schmidt
a7d072f525
Allow all EntityManagerInterface implementations
...
This is necessary if Doctrine\ORM\Decorator\EntityManagerDecorator is used.
2014-05-28 12:30:40 +02:00
Marco Pivetta
466808bf48
Merge pull request #1039 from iampersistent/patch-1
...
Add yml example to single table inheritance
2014-05-27 16:56:08 +02:00
Richard Shank
edaeaf48a8
Add yml example to single table inheritance
2014-05-27 07:47:07 -07:00
Michaël Perrin
b400ad52cc
Add documentation for the HIDDEN keyword in DQL
2014-05-27 11:43:15 +02:00
Marco Pivetta
20e47ae52d
Merge pull request #1037 from spiechu/patch-1
...
I can't look at those semicolons, sorry ;-)
2014-05-27 09:55:42 +02:00
Dawid Spiechowicz
9c24e0b510
I can't look at those semicolons, sorry ;-)
2014-05-27 09:37:40 +02:00
Marco Pivetta
b421d03f69
Merge pull request #1036 from albertvolkman/entity-mapper-remove-extra-space
...
Move space addition to implementation.
2014-05-22 00:15:22 +02:00
Albert Volkman
49bca5171b
Move space addition to implementation.
2014-05-21 16:27:36 -04:00
Marco Pivetta
7debf736a6
Merge pull request #1034 from hashnz/master
...
Update caching.rst
2014-05-19 22:59:06 +02:00
hashnz
43c4c80388
Update caching.rst
...
Remove documentation referencing delete by regex/prefix.
2014-05-20 08:53:41 +12:00
Michaël Gallego
140dc92e5f
Enforce Criteria
2014-05-18 12:47:59 +02:00
Marco Pivetta
04aea73a85
Merge branch 'tests/lazy-collection-tests'
...
Tests for doctrine/doctrine2@d30e3ab43c
2014-05-17 19:08:37 +02:00
Marco Pivetta
a259138180
The count in a LazyCriteriaCollection is null on initialization
2014-05-17 19:08:25 +02:00
Marco Pivetta
c68ed4c204
Verifying that the persister is used only once when matching on a lazy criteria collection
2014-05-17 19:06:16 +02:00
Marco Pivetta
d2174a893a
Verifying that count is not called on the persister when the collection is initialized
2014-05-17 18:56:42 +02:00
Marco Pivetta
546bb53ef9
Verifying that count on the lazy criteria collection is cached even with 0 count
2014-05-17 18:51:33 +02:00
Marco Pivetta
c46b63f6b4
Verifying that count on the lazy criteria collection is cached
2014-05-17 18:51:01 +02:00
Marco Pivetta
81fbb049a5
LazyCriteriaCollection test setUp
2014-05-17 18:48:25 +02:00
Marco Pivetta
7cb40ed915
Mocking up tests for the lazy-criteria-collection
2014-05-17 18:45:33 +02:00
Michaël Gallego
9d7d731090
Remove BC notice
2014-05-17 16:59:43 +02:00
Michaël Gallego
8a8c6ea3a6
Remove extra phpdoc
2014-05-17 14:53:06 +02:00
Michaël Gallego
ddfc951a0e
Remove useless docblock
2014-05-17 14:33:15 +02:00
Michaël Gallego
239b862665
Add missing typehint
2014-05-17 13:00:47 +02:00
Michaël Gallego
f52a512c59
Add UPGRADE note
2014-05-17 12:57:39 +02:00
Michaël Gallego
a04113f410
Add support for optimized contains
2014-05-17 12:54:25 +02:00
Guilherme Blanco
d6c727dcc1
Update LazyCriteriaCollection.php
...
Fixed issue where count = 0
2014-05-16 14:03:20 -04:00
Marco Pivetta
8babb77d37
Merge pull request #1031 from mnapoli/custom-functions-callback-documentation
...
Documentation for #991
2014-05-16 14:40:17 +02:00
Matthieu Napoli
5a4c558865
Fixed #991 to support non-closure callables on PHP 5.3
2014-05-16 10:49:59 +02:00
Matthieu Napoli
b16423b26b
Documentation for #991
2014-05-16 09:32:52 +02:00
Guilherme Blanco
47ca10076b
Merge pull request #991 from mnapoli/custom-functions-callback
...
Ability to define custom functions with callback instead of class name
2014-05-16 00:27:30 -04:00
Guilherme Blanco
d30e3ab43c
Added count cache when lazy collection is not yet initialized. Some cosmetic changes (primarily, there's no ELSE).
2014-05-16 04:22:11 +00:00
Michaël Gallego
92a2b01c77
Fix tests by forcing collection initialization
2014-05-15 18:37:41 +02:00
Michaël Gallego
172df22281
Fix inconsistent mapping
2014-05-15 18:22:57 +02:00
Michaël Gallego
0a6c2027f5
Update tests
2014-05-15 18:22:57 +02:00
Michaël Gallego
45e9d6ed5a
Fix test on some RDBMS
2014-05-15 18:22:57 +02:00
Michaël Gallego
11de4c2e72
Only create lazy collection for EXTRA_LAZY
2014-05-15 18:22:57 +02:00
Michaël Gallego
50832fd3bc
Add tests for PersistentCollection
2014-05-15 18:22:57 +02:00
Michaël Gallego
876643e83e
Add test for Entity Repository
2014-05-15 18:22:57 +02:00
Michaël Gallego
6cb5097ea8
Add method visibility
2014-05-15 18:22:57 +02:00
Michaël Gallego
8514ec7320
Remove useless imports
2014-05-15 18:22:57 +02:00
Michaël Gallego
3c522f4984
Reuse Doctrine Collection Lazy Collection
2014-05-15 18:22:57 +02:00
Michaël Gallego
28afb52734
Typehint to interface to support second level cache
2014-05-15 18:22:56 +02:00
Michaël Gallego
ac15b184b6
Fix tests for inheritance support
2014-05-15 18:22:56 +02:00
Michaël Gallego
632382b069
Add missing methods to the mock
2014-05-15 18:22:56 +02:00
Michaël Gallego
7551b1ad00
Update to latest cache API
2014-05-15 18:22:56 +02:00
Michaël Gallego
9813c2d5f1
Add tests
2014-05-15 18:22:56 +02:00
Michaël Gallego
0fa7b45a0e
Also add efficient count for Persistent collection
2014-05-15 18:22:56 +02:00
Michaël Gallego
9b7dce1940
Use inner collection count if initialized
2014-05-15 18:22:56 +02:00
Michaël Gallego
b556bcb16c
Remove useless dependency
2014-05-15 18:22:56 +02:00
Michaël Gallego
f1a793f2ee
Initial work for efficient counting on criteria
2014-05-15 18:22:56 +02:00
Marco Pivetta
91df8f5649
Merge branch 'hotfix/DDC-3123-test-assertion-simplification'
2014-05-15 17:37:55 +02:00
Marco Pivetta
65e55a0c49
DDC-3123 - using assertAttributeEmpty (with message) instead of explicit reflection
2014-05-15 17:37:41 +02:00
Matthieu Napoli
c7eb42b04f
Ability to define custom functions with callback + tests
2014-05-15 12:06:21 +02:00
Guilherme Blanco
5c828fc6c8
Merge pull request #1023 from coma/DDC-3027
...
[DDC-3027] Avoid duplicated mapping using Embedded in MappedSuperclass
2014-05-14 22:37:24 -04:00
Guilherme Blanco
4874070b3f
Merge branch 'feature/default-query-hints' of https://github.com/Strate/doctrine2 into Strate-default-query-hints
2014-05-15 01:15:34 +00:00
Steve Müller
c16de21172
Merge pull request #1030 from doctrine/hotfix/DDC-3123-extra-updates-cleanup
...
DDC-3123 extra updates cleanup
2014-05-15 01:07:34 +02:00
Marco Pivetta
ccc789eadd
DDC-3123 - the UoW should clear extra updates immediately
2014-05-15 00:18:50 +02:00
Marco Pivetta
9cdcba3fbc
DDC-3123 - verifying that the UoW is not clearing extra inserts
2014-05-15 00:18:22 +02:00
Marco Pivetta
08347cf4f7
Adding PHP 5.6 and HHVM-nightly to build matrix
2014-05-11 17:51:23 +02:00
Marco Pivetta
94837a0105
Merge pull request #1026 from flack/patch-5
...
Remove some redundant clauses
2014-05-03 01:43:38 +02:00
flack
5cf906d76b
Remove some redundant clauses
2014-05-02 21:52:00 +02:00
Steve Müller
7fffba80c3
Merge pull request #1025 from josemalonsom/remove-duplicate-entry-in-toc
...
Removed duplicate entry in documentation TOC.
2014-05-01 14:23:56 +02:00
Jose M. Alonso M
204b7fe854
Removed duplicate entry in documentation TOC.
2014-05-01 13:02:29 +02:00
Eduardo García Sanz
8a3def097f
[DDC-3027] Avoid duplicated mapping using Embedded in MappedSuperclass
2014-04-30 11:46:54 +02:00
Marco Pivetta
7a305475e3
The proxy factory always expects non-null identifier values
2014-04-29 13:25:17 +02:00
Marco Pivetta
27845088e3
Merge branch 'hotfix/DDC-3103-#1020-serialize-isEmbedded-in-class-metadata'
...
Close #1020
2014-04-29 13:16:02 +02:00
Marco Pivetta
677cea4748
DDC-3103 - minor CS fixes/adjustments
2014-04-29 13:12:17 +02:00
Marco Jantke
f065a5c8b9
fixed bug
2014-04-29 09:30:37 +02:00
Marco Jantke
cf84183c18
created test case to reproduce error
2014-04-29 09:30:10 +02:00
Guilherme Blanco
48172f3a53
Readability update to hydrators.
2014-04-29 05:05:38 +00:00
Guilherme Blanco
9cd16ec56a
More optimizations around hydrators. Pretty much same performance, just better memory footprint (-0.25MB).
2014-04-28 13:47:57 +00:00
Guilherme Blanco
be94eb9d1f
Made ClassMetadata to be reused during gatherRowData() and also during hydrateRow() to share same fetches instead of recalculating all info again. Performance improvement after 100x runs comparison is around 4%.
2014-04-28 02:38:51 +00:00
Guilherme Blanco
35c8cd7f23
Added type conversion to meta column in case a type is specified (such as a foreign key or discriminator column).
2014-04-25 05:22:33 +00:00
Guilherme Blanco
21437bb276
Heavily simplified code on simple object hydrator. Code cleanup on column information cache; by reference cache variable is no longer needed and protected variable is used in a standardized way everywhere.
2014-04-25 03:41:14 +00:00
Guilherme Blanco
e8e86205f5
Merge pull request #1018 from chandon/master
...
DBAL-878 Wrong mapping type
2014-04-24 20:52:27 -04:00
Cédric Chandon
9ba31a394a
[DBAL-878] Wrong mapping type
...
the type should be the mapping type, and not the name of the type. This
does the difference for simple_array, as the result should be
simple_array and not simplearray
2014-04-25 01:59:15 +02:00
Guilherme Blanco
f7de00b401
Finalized fix for scalars and newObjects.
2014-04-24 05:21:24 +00:00
Guilherme Blanco
9692fc8c5b
Fixed issue if aliases were specific names, you would either get completely misleading results (dql alias: scalars) or a fatal error (dql alias: newObjects).
2014-04-24 04:47:13 +00:00
Guilherme Blanco
a3febd79de
Abstract cache information of field result for hydrators.
2014-04-23 18:50:29 +00:00
Guilherme Blanco
a4dac7a292
Highlighted intention of converting scalar types during single scalar or scalar hydration, but leaving it commented and added a note about the BC reason why we cannot do that for 2.X series.
2014-04-23 18:04:06 +00:00
Marco Pivetta
9ec54b8fed
Merge pull request #1015 from EvanDotPro/docs/expressionbuilder-contains
...
Add ExpressionBuilder::contains() to docs
2014-04-23 15:58:06 +02:00
Evan Coury
d2c2067aaf
Add ExpressionBuilder::contains() to docs
2014-04-23 06:54:03 -07:00
Guilherme Blanco
9ebce31a46
Made AbstractHydrator::gatherRowData() more understandable without breaking functionality.
2014-04-23 06:08:18 +00:00
Guilherme Blanco
29de3e00ff
Added support for NEW operator when using ArrayHydration if user desires to benefit from this funcionality.
2014-04-23 05:10:23 +00:00
Guilherme Blanco
63d21ca4b2
DDC-3085 Verify ResultVariable works in combination with NullComparisonExpression wihle in HAVING clause.
2014-04-21 04:01:32 +00:00
Guilherme Blanco
4185a9ce4b
Merge pull request #999 from doctrine/hotfix/DDC-3065-null-value-in-in-criteria-support
...
DDC-3065 null value in in criteria support
2014-04-20 23:30:14 -04:00
Guilherme Blanco
1e90fd1164
Merge pull request #1014 from bakura10/patch-1
...
Update second level cache doc
2014-04-20 18:24:01 -04:00
Michaël Gallego
9b847f1a04
Update second-level-cache.rst
2014-04-20 23:52:06 +02:00
Guilherme Blanco
6a8ee87268
Made DQL and EBNF in sync.
2014-04-20 20:27:57 +00:00
Guilherme Blanco
a3f95d919b
DDC-3075 Added support for subqueries in NEW operator.
2014-04-20 14:40:51 +00:00
Guilherme Blanco
38b6838386
DDC-2575 Fixed issue with associations when parent is not yet loaded, but child is being created and no link happens.
2014-04-18 05:21:27 +00:00
Guilherme Blanco
df806977c6
Updated fix for HHVM.
2014-04-18 03:05:41 +00:00
Guilherme Blanco
9441e063aa
Updated XML Exporter to deal with some HHVM weirdness.
2014-04-18 03:04:04 +00:00
Guilherme Blanco
10a0daf620
DDC-3068 DDC-3069 EntityManager::find accept array of object as id.
2014-04-18 02:03:47 +00:00
Fabio B. Silva
54d9f05e39
Merge pull request #1009 from doctrine/feature/hhvm-tests
...
HHVM compatibility
2014-04-17 16:21:06 -04:00
Marco Pivetta
e1259098f5
Fixed whitespace around imported classes
2014-04-17 15:37:24 -04:00
Marco Pivetta
9ab6ef723a
Removing too eager cache tests
2014-04-17 15:37:24 -04:00
Marco Pivetta
b4933d76c7
HHVM tests are not allowed to fail anymore
2014-04-17 15:37:24 -04:00
Marco Pivetta
abb4671bfc
Removing usage of memcache cache in tests (HHVM gets stuck on them on local setups)
2014-04-17 15:37:23 -04:00
Marco Pivetta
e263426cdf
Removing eager assertion on error suppression when generating schema via tools
2014-04-17 15:37:23 -04:00
Guilherme Blanco
6af3236ba6
Merge pull request #1012 from FabioBatSilva/DDC-3078-slc-cache-interface-ctor-removal
...
Ddc 3078 slc cache interface ctor removal
2014-04-17 15:34:36 -04:00
Guilherme Blanco
318f5032db
Missing documentation update.
2014-04-17 19:31:06 +00:00
Guilherme Blanco
be1cc14a9c
DDC-2890 Fixed pagination with association order by.
2014-04-17 19:29:18 +00:00
fabios
1dc3396ad4
DDC-3078 - Use CacheFactory instead of cache instantiator
2014-04-17 15:20:31 -04:00
Marco Pivetta
fa1cc9269c
DDC-3078 - removing unused imports
2014-04-17 15:16:59 -04:00
Marco Pivetta
d57d4b71f9
DDC-3078 - default cache instantiator class name was misstyped
2014-04-17 15:16:59 -04:00
Marco Pivetta
48e227167e
DDC-3078 - cache instantiator related exceptions are not needed anymore
2014-04-17 15:16:59 -04:00
Marco Pivetta
df6a411365
DDC-3078 - cache instantiator is used in the ORM instead of callables
2014-04-17 15:16:59 -04:00
Marco Pivetta
4b388b2ce8
DDC-3078 - coverage for the default cache instantiator
2014-04-17 15:16:58 -04:00
Marco Pivetta
a790639167
DDC-3078 - providing a default cache instantiator implementation
2014-04-17 15:16:58 -04:00
Marco Pivetta
6931cd08c4
DDC-3078 - using an explicit CacheInstantiator interface to replace callable cache instantiators
2014-04-17 15:16:58 -04:00
Marco Pivetta
d7f87cdd36
DDC-3078 - removing unused cache class name invalidity exception methods
2014-04-17 15:16:58 -04:00
Marco Pivetta
9b2ee88683
DDC-3078 - removing cache class name setter/getter from cache configuration API
2014-04-17 15:16:58 -04:00
Marco Pivetta
87a907f9dd
DDC-3078 - switching cache initialization to use cache instantiator from config
2014-04-17 15:16:57 -04:00
Marco Pivetta
cd0f94dd6c
DDC-3078 - removing tests for cache class setter/getter on cache configuration
2014-04-17 15:16:57 -04:00
Marco Pivetta
68f489ecbb
DDC-3078 - cache configuration tests for the newly introduced API for cache instantiators
2014-04-17 15:16:56 -04:00
Marco Pivetta
e5f79d1f73
DDC-3078 - adding API for cache instantiation to the configuration object
2014-04-17 15:16:56 -04:00
Marco Pivetta
1b5eb55ed9
DDC-3078 - adding exception methods for invalid cache instantiator
2014-04-17 15:16:56 -04:00
Marco Pivetta
04b52149ab
DDC-3078 - constructor should never be interfaced
2014-04-17 15:16:56 -04:00
Guilherme Blanco
841bdd5ca5
DDC-2827 Added support for AggregateExpressions in NullComparisonExpression.
2014-04-17 04:39:26 +00:00
Guilherme Blanco
ceada41b83
DDC-2934 Added support for function declarations in order by.
2014-04-17 04:15:35 +00:00
Guilherme Blanco
54898eca60
Added index by consideration when eagerly loading to-many associations.
2014-04-17 03:53:21 +00:00
Guilherme Blanco
13afde0140
Updated phpunit dependency.
2014-04-17 01:22:17 +00:00
Guilherme Blanco
f5e6044cf5
Provided more decriptive explanation when single scalar hydrator is used and it returns multiple columns.
2014-04-17 01:09:33 +00:00
Guilherme Blanco
1488a509b2
DDC-2937 More informative response when using single scalar hydrator when it returns single row but multiple columns.
2014-04-16 05:44:54 +00:00
Guilherme Blanco
6e9b15a48f
Merge pull request #951 from md2perpe/MoreInformationalEntityNotFoundException
...
More informational entity not found exception
2014-04-16 01:40:02 -04:00
Guilherme Blanco
b28fa9a05a
DDC-1632 Optimized query count for one-to-many associations with fetch eager.
2014-04-16 05:36:31 +00:00
Guilherme Blanco
4029dc2ea8
Merge pull request #988 from holtkamp/DDC-3047-Exporter-association-fetch-modes
...
Exporter support for association fetch modes
2014-04-16 00:52:51 -04:00
Guilherme Blanco
1cd0b26a40
DDC-3068 EntityManager clear() calls now follow cascade detach configuration.
2014-04-16 04:47:57 +00:00
Guilherme Blanco
5ce6dabe9b
Fixes DDC-2984. Made DDC-742 more resilient to recurring failures.
2014-04-16 04:20:18 +00:00
Marco Pivetta
68d477a4c6
Merge pull request #1011 from md2perpe/patch-2
...
Single quotes can't nest
2014-04-15 14:25:24 +02:00
Per Persson
38911076ad
Single quotes can't nest
...
I decided to use "... '...' ...", but perhaps you prefer '... \'...\' ...'?
2014-04-15 13:56:18 +02:00
Guilherme Blanco
2da74e5147
Merge pull request #1006 from Trainmaster/master
...
Handling invalid discriminator values
2014-04-15 00:07:03 -04:00
Marco Pivetta
3a1e24e680
Merge branch 'feature/#973-index-flags-in-mappings'
...
Close #973
2014-04-14 01:22:02 +02:00
Marco Pivetta
a87d3e080e
Minor CS fixes on top of #973
2014-04-14 01:21:23 +02:00
Adrian Olek
eccd8f85bc
cs fixes
2014-04-14 01:21:23 +02:00
Adrian Olek
72bb16173a
Added Comment entity mapping for StaticPHPDriver test
2014-04-14 01:21:23 +02:00
Adrian Olek
32ed32cf56
Added index flags test
2014-04-14 01:21:23 +02:00
Adrian Olek
b3a2988d2c
CS fixes
2014-04-14 01:21:23 +02:00
Adrian Olek
cc2fb1a070
Added index flags support in annotation, xml & yaml mapping drivers.
2014-04-14 01:21:23 +02:00
Benjamin Eberlei
da24133306
Merge pull request #980 from adrianolek/convert-mapping-options
...
Added options attribute export to Annotation, Xml & Yaml exporters.
2014-04-13 23:38:30 +02:00
Marco Pivetta
8b6b1c68a0
Merge pull request #1010 from BenMorel/validation-message
...
Fixed validation message
2014-04-12 01:49:16 +02:00
Benjamin Morel
1b4eafc873
Fixed validation message
2014-04-11 22:27:51 +00:00
Guilherme Blanco
ac956f2b8c
Merge pull request #1007 from umpirsky/patch-1
...
Minor dockblock change
2014-04-09 07:55:12 -04:00
Saša Stamenković
dc10bb69f6
Minor dockblock change
2014-04-09 13:53:56 +02:00
Frank Liepert
8740d54210
[DDC-3076] Add/Improve tests
2014-04-09 11:31:16 +02:00
Frank Liepert
df020e08a0
[DDC-3076] Fix ObjectHydrator
2014-04-09 11:30:11 +02:00
Frank Liepert
a054b59550
[DDC-3076] Add test
2014-04-09 10:19:48 +02:00
Frank
d1c722c1d0
Fix: handle invalid discriminator value
2014-04-09 01:55:54 +02:00
Frank
f7b95c1aa5
Add: invalidDiscriminatorValue method
2014-04-09 01:55:49 +02:00
Guilherme Blanco
73e5bbecbe
Merge pull request #1004 from giosh94mhz/removed_useless_testinit
...
Removed all useless occurrence of require_once TestInit.php
2014-04-07 08:38:39 -05:00
Giorgio Premi
6cb3fa8fb7
Removed all useless occurrence of require_once TestInit.php
2014-04-07 14:43:25 +02:00
Marco Pivetta
4d950a9e10
Merge pull request #1002 from BenMorel/propertyfix
...
Fixed wrongly initialized property.
2014-04-04 22:42:43 +02:00
Benjamin Morel
b3ec4df8ce
Fixed wrongly initialized property.
2014-04-04 20:05:16 +00:00
Guilherme Blanco
bfb66f1d85
Merge pull request #985 from doctrine/hotfix/DDC-3042-sql-alias-collisions-in-dql
...
[DDC-3042] SQL Alias collisions in DQL
2014-04-03 20:41:36 -05:00
Marco Pivetta
f80fceda0e
DDC-3042 - changing SQL generation tests to respect changes in naming strategy
2014-04-04 03:05:48 +02:00
Marco Pivetta
e6bf096583
Prefixing alias counter with _ to fix DDC-3042 and prevent collisions
2014-04-04 03:05:48 +02:00
Marco Pivetta
11b3065fd1
Verifying DDC-3042 - duplicate aliases in DQL SQL generation
2014-04-04 03:05:48 +02:00
Marco Pivetta
3680bb7ccc
Stubbing out test for DDC-3042 - DQL aliases cause collisions when selecting from tables with similar properties
2014-04-04 03:05:48 +02:00
Marco Pivetta
733102b4a1
DDC-3065 - applying hotfix that allows NULL in IN() criteria
2014-04-03 17:36:56 +02:00
Marco Pivetta
a8b96803a4
DDC-3065 - persister tests for criteria containing NULL values in IN() conditions
2014-04-03 17:36:56 +02:00
Marco Pivetta
eb6498544f
DDC-3065 - splitting tests and checking multiple values support
2014-04-03 17:36:56 +02:00
Marco Pivetta
f54d6157f4
DDC-3065 - hardening test - should support multiple values in IN(), also NULL ones
2014-04-03 17:36:56 +02:00
Marco Pivetta
f2f571e4ab
DDC-3065 - failing test - IN()-alike criteria should support NULL search values
2014-04-03 17:36:56 +02:00
Menno Holtkamp
26307a0cee
Added 'fetch="EXTRA_LAZY"' to many-to-many association
2014-03-31 11:55:04 +02:00
Menno Holtkamp
8d0a5958eb
Code-style improvement
2014-03-31 11:02:36 +02:00
Menno Holtkamp
59842e9bc6
Code-style improvement
...
Also to trigger Travis CI
2014-03-31 11:00:50 +02:00
Menno Holtkamp
3044009550
Added 'fetch="EAGER"' to one-to-one association
2014-03-30 16:01:46 +02:00
Marco Pivetta
da96f4938a
Merge pull request #994 from ThomasLomas/patch-1
...
Update EntityGenerator comment
2014-03-29 02:51:00 +01:00
Thomas Lomas
7d9630786b
Update EntityGenerator comment
...
fieldVisibility was referred to as a boolean, where it is actually a string.
2014-03-29 01:49:12 +00:00
Marco Pivetta
8f688509c8
Merge pull request #992 from BenMorel/docfix
...
Fixed typos
2014-03-28 14:05:20 +01:00
Benjamin Morel
b3ec87ab09
Fixed typos
2014-03-28 12:54:49 +00:00
Marco Pivetta
ca19db34d2
Merge pull request #990 from Remper/patch-1
...
Typo in documentation
2014-03-27 13:51:28 +01:00
Nechaev Yaroslav
46b16a5e10
Update dql-doctrine-query-language.rst
2014-03-27 15:49:04 +03:00
Nechaev Yaroslav
b145ebf955
Typo in documentation
...
This method from AbstractQuery accepts constants from ClassMetadata rather than string
2014-03-27 15:45:52 +03:00
Menno Holtkamp
798075931a
Exporter support for association fetch modes
2014-03-26 01:00:17 +01:00
Steve Müller
048c56bdb0
Merge pull request #987 from baileylo/patch-1
...
Fixes typo in dql-doctrine-query-language.rst
2014-03-25 19:11:28 +01:00
Logan Bailey
263d9f30f2
Fixes typo in dql-doctrine-query-language.rst
...
Changes "If you a query" to "If you have a query"
2014-03-25 11:10:43 -07:00
Benjamin Eberlei
927d69b61a
Merge pull request #957 from thealjey/master
...
makes doctrine less dependent upon the symfony yaml component
2014-03-23 15:41:27 +01:00
Benjamin Eberlei
8addb5ffa8
Merge pull request #960 from drealecs/fixes-EntityManagerInterface
...
allow passing EntityManagerInterface when creating a HelperSet
2014-03-23 15:36:38 +01:00
Benjamin Eberlei
5335b2a2ad
Merge pull request #955 from goatherd/patch-1
...
iteration risk note
2014-03-23 15:35:53 +01:00
Benjamin Eberlei
71fc425902
Merge pull request #963 from mdemo/master
...
SQLFilter -- allows to check if a parameter was set
2014-03-23 15:33:14 +01:00
Benjamin Eberlei
a03c8da683
Merge pull request #962 from netiul/master
...
Stop executeDeletions when there is nothing to to delete anymore
2014-03-23 15:32:28 +01:00
Benjamin Eberlei
dd8075ea95
Merge branch 'DDC-3018'
2014-03-23 15:16:15 +01:00
Benjamin Eberlei
2aea3036b6
[DDC-3018] Fix string literals in new operator.
2014-03-23 15:16:09 +01:00
Adrian Olek
0caeb4edbf
Initialize table options annotation, fixed condition in AnnotationDriver
2014-03-23 14:37:55 +01:00
Benjamin Eberlei
24d4fd17f3
Merge branch 'DDC-2996'
2014-03-23 13:19:04 +01:00
Benjamin Eberlei
d473824279
[DDC-2996] Fix bug in UnitOfWork#recomputeSingleEntityChangeSet
...
When calling UnitOfWork#recomputeSingleEntityChangeSet on an entity
that didn't have a changeset before, the computation was ignored.
This method however is suggested to be used in "onFlush" and "preFlush"
events in the documentation.
Also fix a bug where recomputeSingleEntityChangeSet was used
before calculating a real changeset for an object.
2014-03-23 13:16:33 +01:00
Benjamin Eberlei
e415da7f47
Merge branch 'DDC-3033'
2014-03-23 12:38:06 +01:00
Benjamin Eberlei
ecc2857e2d
[DDC-3033] Clarify restrictions in events.
2014-03-23 12:37:56 +01:00
Benjamin Eberlei
396337bd0d
[DDC-3033] Fix bug in UnitOfWork#recomputeSingleEntityChangeSet.
...
The fix for DDC-2624 had a side effect on recomputation of
changesets in preUpdate events. The method wasn't adjusted
to the changes in its sister method computeChangeSet() and
had wrong assumptions about the computation.
Especially:
1. Collections have to be skipped
2. Comparison was changed to strict equality only.
2014-03-23 12:35:54 +01:00
Benjamin Eberlei
fb2d2bce45
Merge pull request #984 from holtkamp/patch-1
...
Use boolean values for 'unique' attribute
2014-03-23 10:16:04 +01:00
Benjamin Eberlei
0621b5a161
Merge branch 'DDC-3045'
2014-03-23 09:58:38 +01:00
Benjamin Eberlei
c8836a008d
[DDC-3045] Check that EntityRepository APIs prevent SQL injection through field names. Improve EntityManager#find() error handling when invalid identifier fields are passed.
2014-03-23 09:58:31 +01:00
Menno Holtkamp
6e651b13c9
Added test to ensure boolean metadata is properly exported/serialized to XML
2014-03-20 21:29:52 +01:00
Guilherme Blanco
fdb9f90848
Merge pull request #983 from holtkamp/patch-new-dql-in-expression-builder
...
Added MEMBER OF and INSTANCE OF to ExpressionBuilder
2014-03-20 08:28:32 -05:00
Menno Holtkamp
ef4e73f987
Use boolean values for 'unique' attribute
...
As defined in: https://github.com/doctrine/doctrine2/blob/master/doctrine-mapping.xsd#L294
Same as 'nullable' attribute.
It was being exported as a "1" for TRUE and "0" for false
2014-03-20 11:08:29 +01:00
Menno Holtkamp
262e465e39
Processed code-review feedback
2014-03-20 09:02:39 +01:00
Menno Holtkamp
56e879b7aa
Removed double linebreaks
2014-03-19 13:03:26 +01:00
Menno Holtkamp
400f420925
Added MEMBER OF and INSTANCE OF helpers to ExpressionBuilder
2014-03-19 13:00:45 +01:00
Thomas Lallement
6bbc07ddbf
Update DDC3033Test.php
2014-03-18 22:10:15 +01:00
Thomas Lallement
7bf2bcb017
Update DDC3033Test.php
2014-03-18 15:04:48 +01:00
Thomas Lallement
263822fd19
Failing Test (since commit 53a5a48aed)
...
Hi,
It seems to be a regression since the commit 53a5a48aed
Doctrine\ORM\PersistentCollection can be populated in $changeSet if you set a PreUpdate and PostUpdate event.
Original issue: http://www.doctrine-project.org/jira/browse/DDC-3033
2014-03-18 15:00:43 +01:00
Marco Pivetta
9b4ae6d556
Removing note on m2m association filtering as of #885
2014-03-16 17:41:19 +01:00
Guilherme Blanco
383604d4b8
Merge pull request #978 from AntonStoeckl/embedded-empty-prefix
...
[DDC-2987] Enable empty prefixes for inlined embeddable
2014-03-16 11:35:25 -05:00
Guilherme Blanco
44c1dae1b9
Merge pull request #885 from bakura10/criteria-many-to-many
...
Add support for ManyToMany Criteria
2014-03-16 11:33:10 -05:00
Adrian Olek
49587776fa
Renamed _exportOptions method
2014-03-16 17:31:15 +01:00
Adrian Olek
e403bf207c
cs fix
2014-03-16 16:56:46 +01:00
Adrian Olek
553883bdd1
Added options attribute export to Annotation, Xml & Yaml
...
exporters.
2014-03-16 16:50:41 +01:00
Anton Stoeckl
83ef47c8d0
This fixes ticket DDC-3028
...
Enables columnPrefix to be "false" so no prefix is added.
Changed the structure a bit (to if/else) to be more readable with the additional condition.
2014-03-14 12:34:22 +01:00
Anton Stoeckl
871dc5d186
Test are for fix of ticket DDC-3028
...
Added 3 tests that check regression for:
- columnPrefix is empty
- columnPrefix is a string
- columnPrefix is false
Added some small entity / embeddable classes to support the test cases.
2014-03-14 12:32:49 +01:00
Anton Stoeckl
cd2043915c
columnPrefix must support string and boolean, so changing to mixed
2014-03-14 12:29:01 +01:00
Anton Stöckl
fa79de6ea4
Enable empty prefixes for inlined embeddable
...
This fixes http://www.doctrine-project.org/jira/browse/DDC-2987
This makes it possible to map a field from an embeddable to a database field with the same name, without any prefix added.
Example:
- an embeddable object "Id" with a property "id"
- per default this would map inline to id_id
- supplying null or '' as columnPrefix does not work due to the ! empty() check
- with my little change, if columnPrefix : false is supplied in the mapping config this will now map to a db column "id"
To build Ids as ValueObjects is a very common approach in DDD, so ihmo this is a must have.
2014-03-13 16:47:22 +01:00
Marco Pivetta
b30b1a5999
Merge pull request #977 from mvrhov/patch-2
...
Fix wrong annotation
2014-03-11 14:52:49 +01:00
Miha Vrhovnik
d888d7d1c0
Fix wrong annotation
...
Without above fix I'm getting
"[Semantical Error] The annotation "@array" in method Doctrine\ORM\Mapping\ClassMetadataInfo::mapEmbedded() was never imported. Did you maybe forget to add a "use" statement for this annotation?"
2014-03-11 14:44:42 +01:00
Marco Pivetta
02daf0049a
Merge branch 'docs/DDC-3020'
2014-03-11 11:30:18 +01:00
Marco Pivetta
fea200043e
Adding note about DDC-3020 - external XML entities may or may not work
2014-03-11 11:30:08 +01:00
Marco Pivetta
87505c8716
Merge pull request #975 from tkleinhakisa/doc-automatic-discriminator-map
...
Added info about automatic discriminator map
2014-03-11 10:08:58 +01:00
Klein Thomas
832127a0d6
Added info about automatic discriminator map
...
see https://github.com/doctrine/doctrine2/blob/master/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php#L257
2014-03-11 09:54:46 +01:00
Guilherme Blanco
f197a9c9f1
Merge pull request #974 from FabioBatSilva/resolve-association-entry
...
[SLC] Resolve association cache entry
2014-03-06 22:38:26 -05:00
Fabio B. Silva
e9ec0a24da
[SLC] resolve association cache entry
2014-03-06 20:44:59 -05:00
Fabio B. Silva
ecf242f6d4
Merge pull request #971 from FabioBatSilva/slc-query-assoc-proxy
...
[SLC] Fix query association proxy
2014-03-06 15:43:58 -05:00
Marco Pivetta
8d4821b4dc
Merge pull request #972 from hallabro/patch-1
...
Capitalize @GeneratedValue (annotations-reference.rst)
2014-03-05 11:03:30 +01:00
Marco Pivetta
7843eed8bc
Merge pull request #969 from aitboudad/patch-2
...
[Doc] added note about Criteria limits on PersistentCollection
2014-03-05 10:59:10 +01:00
Robin Hallabro
a395921fdc
Capitalize @GeneratedValue (annotations-reference.rst)
2014-03-05 10:57:31 +01:00
Fabio B. Silva
cbdd8bc041
[SLC] Fix query association proxy
2014-03-05 04:10:07 -05:00
Abdellatif AitBoudad
5f429a5418
[Doc] added note Criteria limits.
2014-03-04 21:36:07 +00:00
Guilherme Blanco
15432fc55f
Merge pull request #967 from FabioBatSilva/slc-query-builder
...
[SLC] Add query builder options
2014-03-03 21:10:48 -05:00
fabios
6e64cc101a
[SLC] Add query builder options
2014-03-03 15:28:35 -05:00
Benjamin Eberlei
63d849b6f0
Merge pull request #966 from FabioBatSilva/simplify-build
...
Simplify build matrix
2014-03-02 12:36:50 +01:00
Fabio B. Silva
a91e05db9e
Simplify build matrix
2014-03-01 17:13:28 -05:00
Benjamin Eberlei
a522aa0a81
Merge pull request #965 from FabioBatSilva/slc-criteria
...
[SLC] Add support for criteria
2014-03-01 12:47:57 +01:00
Benjamin Eberlei
f0a6eb8723
Merge pull request #964 from FabioBatSilva/DDC-2943
...
[SLC][DDC-2943] Disable slc for pagination queries
2014-03-01 12:46:52 +01:00
Fabio B. Silva
8c2aef3f14
[DDC-2943] Disable slc for pagination queries
2014-03-01 01:15:09 -05:00
Fabio B. Silva
f4c63f8238
[SLC] Support criteria
2014-03-01 00:59:34 -05:00
Miro Demovic
1921c2f74a
Allow if parameter exists in SQLFilter
2014-02-26 08:55:47 +01:00
Zacharias Luiten
8a168bb2ce
stop executing executeDeletions when there is nothing to to delete anymore
2014-02-25 16:02:02 +01:00
Alexandru Patranescu
1fe6dbc1f2
allow passing EntityManagerInterface when creating a HelperSet
2014-02-23 20:01:14 +02:00
Benjamin Eberlei
f5897d4b0b
Merge branch 'master' of github.com:doctrine/doctrine2
2014-02-21 16:14:57 +01:00
Benjamin Eberlei
51e5db86b7
Add SECURITY.md and a chapter on security assumptions in Doctrine ORM.
2014-02-21 16:12:32 +01:00
Eugene Kuzmenko
c06201303d
makes doctrine less dependent upon the symfony yamp component
2014-02-20 09:28:44 +00:00
Marco Pivetta
dfe7a68053
Removing notice about public properties support (included since 2.4)
...
see doctrine/doctrine2#406
2014-02-19 22:02:07 +01:00
Marco Pivetta
5a2497d482
Merge pull request #935 from da-eto-ya/remove_public_validation
...
Remove incorrect (outdated) validation for public fields in SchemaValidator
2014-02-19 21:21:59 +01:00
Marco Pivetta
0797feeb0f
Travis must use --prefer-source because of Github API limitations
2014-02-18 10:28:13 +01:00
Michaël Gallego
b550d44cb9
CS fix
2014-02-18 10:26:26 +01:00
Michaël Gallego
a45ecb5733
Fix bug with hydrators
2014-02-18 10:26:25 +01:00
Michaël Gallego
6cbd643d4b
Add test
2014-02-18 10:26:25 +01:00
Michaël Gallego
f03f991a25
Functional test
2014-02-18 10:26:25 +01:00
Michaël Gallego
0d5de64c0f
Fix CS
2014-02-18 10:26:25 +01:00
Michaël Gallego
a55f2c48ca
Fix test
2014-02-18 10:26:25 +01:00
Michaël Gallego
e5ba28676d
fallback to persister count
2014-02-18 10:26:25 +01:00
Michaël Gallego
fbbe922cb6
Fix tests
2014-02-18 10:26:25 +01:00
Michaël Gallego
c69b7562ab
Remove useless exception
2014-02-18 10:26:25 +01:00
Michaël Gallego
bb1f71f1f9
Fix docblock
2014-02-18 10:26:25 +01:00
Michaël Gallego
be39afa2f4
Add method to interface
2014-02-18 10:26:24 +01:00
Michaël Gallego
9385a600cf
Fix wrong logic
2014-02-18 10:26:24 +01:00
Michaël Gallego
738cc250f8
Revert docblock
2014-02-18 10:26:24 +01:00
Michaël Gallego
07654ddd3f
Revert tab changes
2014-02-18 10:26:24 +01:00
Michaël Gallego
160b07d1e3
Rebase to master
2014-02-18 10:26:24 +01:00
Guilherme Blanco
0dbd742588
Merge pull request #886 from Strate/bugfix/join-with-condition-placement-fix
...
[DDC-1256] Fix applying ON/WITH conditions to first join in Class Table Inheritance
2014-02-17 12:12:05 -05:00
Maik Penz
0677423d14
iteration risk note
...
> instead of loading the whole result into memory at once
is not the full truth.
There is a certain risk of processes getting killed due to memory allocation with large iteration. This is caused by result buffering of the client not being visible to PHP and thus not from 'within' the process.
It is not certain that this occurs with all database clients but seems rather likely to at this point.
This is only a proposal for discussion as I am not certain how to best add the information or if to add it at all (was it obvious before?). Personally I got confused by the existing description and didn't notice the memory implication until further investigation using `top` reported the process to run at 3+GB memory while PHP reported 400M real peak usage.
2014-02-17 10:33:10 +01:00
Marco Pivetta
4382304e77
Merge pull request #953 from goetas/patch-1
...
Update doc with latest news about extra lazy assoc
2014-02-12 23:56:00 +01:00
Asmir Mustafic
e27d963784
Update extra-lazy-associations.rst
2014-02-12 23:42:52 +01:00
Asmir Mustafic
1f0d4197a9
Update doc with latest news about extra lazy assoc
2014-02-12 23:42:13 +01:00
Fabio B. Silva
a3b4104612
Merge pull request #950 from goetas/patch-1
...
[SLC] Cache empty collections
2014-02-12 04:26:27 -05:00
Asmir Mustafic
94896ce552
Typo fix on many-to-many assocaition cascade test
2014-02-12 08:18:34 +01:00
Asmir Mustafic
8cdbcf1263
Merge remote-tracking branch 'origin/master' into patch-1
2014-02-12 05:15:00 -02:00
Per Persson
3543ccea7f
Pass class name to constructor.
2014-02-11 23:48:31 +01:00
Per Persson
7ef1063007
Pass class name to constructor.
2014-02-11 23:44:24 +01:00
Per Persson
4b061a0e4c
Add class name as argument.
2014-02-11 23:40:38 +01:00
Marco Pivetta
9b0d7dde91
Merge pull request #952 from simshaun/patch-1
...
Add DB-level onDelete CASCADE example
2014-02-11 23:24:38 +01:00
Shaun
57ac3bd4be
Add DB-level onDelete CASCADE example
...
This adds `onDelete: CASCADE` to the `address` 1-1 relationship just to show how you would map a db-level cascade.
2014-02-11 17:23:19 -05:00
Asmir Mustafic
4a6d6e34f8
Test empty collections second level cache
2014-02-11 17:39:16 +01:00
Asmir Mustafic
a5fbb20fbb
Can cache many to many empty relations
2014-02-11 15:08:49 +01:00
Asmir Mustafic
1c94c16234
Can cache empty collections
...
I should be able to cache an "empty" collection.
I have a some objects, where 90% of these have on-to-many relations with zero associated elements.
This causes doctrine to run a query each time, instead of cache it as empty relation.
2014-02-11 14:59:31 +01:00
Marco Pivetta
e8f51acdb2
Merge pull request #947 from BenMorel/unused-imports
...
Cleaned up further unused imports.
2014-02-10 05:48:56 +01:00
Strate
324f200f1b
Merge branch 'master' into bugfix/join-with-condition-placement-fix
2014-02-10 08:22:11 +04:00
Benjamin Morel
08f6291350
Cleaned up further unused imports.
2014-02-09 23:45:22 +00:00
Marco Pivetta
c4b1d4fa28
Merge pull request #946 from BenMorel/unused-imports
...
Cleaned up unused imports
2014-02-09 23:33:26 +01:00
Benjamin Morel
412e4ab9da
Cleaned up unused imports
2014-02-09 22:12:51 +00:00
Steve Müller
6cd0861fa3
Merge pull request #945 from raziel057/patch-1
...
Fix CS
2014-02-09 16:54:22 +01:00
Thomas Lallement
2a77a739dc
Fix CS
2014-02-09 16:37:32 +01:00
Benjamin Eberlei
4c4e4f6d3d
Merge pull request #939 from doctrine/DDC-1985
...
[DDC-2939] Order Preservation
2014-02-09 15:43:57 +01:00
Benjamin Eberlei
288953aa6d
Merge pull request #944 from WouterJ/patch-1
...
Fixed InputOption modes
2014-02-09 15:43:14 +01:00
Wouter J
d7b917aa49
Fixed InputOption modes
2014-02-09 15:10:00 +01:00
Benjamin Eberlei
53a5a48aed
[DDC-2624] Fix bug when persistent collection is cloned and used in a new entity.
2014-02-09 14:27:42 +01:00
Benjamin Eberlei
3c2b626102
Merge pull request #943 from jankramer/handle-embeddables-in-embeddables
...
Validate embeddables do not contain other embeddables.
2014-02-09 11:06:43 +01:00
Jan Kramer
43e37d4f2f
Throw exception on embeddables in embeddables.
2014-02-09 10:09:28 +01:00
Marco Pivetta
496fa85641
Merge pull request #940 from WouterJ/patch-1
...
Fixed typo & horizontal scrolling
2014-02-08 20:22:39 +01:00
Wouter J
24feae84cd
Fixed typo & horizontal scrolling
2014-02-08 20:19:54 +01:00
Benjamin Eberlei
d31f7ebf57
[DDC-1985] Fix ordering preservation in SQL limit subquery output walker.
2014-02-08 17:01:55 +01:00
Benjamin Eberlei
1a08b52ab4
Cleanup test output.
2014-02-08 17:00:21 +01:00
Benjamin Eberlei
35511db4da
Merge pull request #898 from USvER/patch-1
...
Added note to STI
2014-02-08 16:34:30 +01:00
Benjamin Eberlei
50ba19d91b
Merge pull request #937 from goetas/contains-key
...
Extra-lazy for containsKey on collections
2014-02-08 16:28:44 +01:00
Benjamin Eberlei
8a0901c92b
Merge pull request #835 from schmittjoh/ValueObjects
...
Value objects (Based on #634 )
2014-02-08 16:24:47 +01:00
Benjamin Eberlei
8e3f4561c0
Merge pull request #858 from schmittjoh/rsmBuilder
...
lifts an unnecessary restriction on ResultSetMappingBuilder
2014-02-08 16:23:18 +01:00
Benjamin Eberlei
058e024f0e
Merge pull request #902 from gwagner/master
...
Fix Lifecycle Callbacks
2014-02-08 16:01:13 +01:00
Benjamin Eberlei
31a2870c3f
Merge pull request #912 from BenMorel/collection-count
...
Avoid PersistentCollection::isEmpty() to fully load the collection.
2014-02-08 16:00:10 +01:00
Benjamin Eberlei
960fbfc110
Merge pull request #908 from FabioBatSilva/DDC-2862
...
[DDC-2862][SLC] Fix lazy association load
2014-02-08 15:55:20 +01:00
Benjamin Eberlei
b76e95cbb9
Merge pull request #917 from doctrine/hotfix/DDC-2931
...
DDC-2931 - one-to-one self-referencing association broken by DCOM-96
2014-02-08 15:46:07 +01:00
Benjamin Eberlei
5fc7e653fe
Update UPGRADE.md notes with BC mention.
2014-02-08 15:42:24 +01:00
Benjamin Eberlei
105d9e998b
Merge pull request #927 from timdev/timdev-fixes
...
s/EntityManager/EntityManagerInterface/ in a few places
2014-02-08 15:30:15 +01:00
Benjamin Eberlei
f07c576e5f
Merge pull request #932 from deeky666/DDC-2919
...
[DDC-2919] Make lock mode usage consistent
2014-02-08 15:27:35 +01:00
Benjamin Morel
496f9a0176
Avoid PersistentCollection::isEmpty() to fully load the collection on extra lazy fetch.
2014-02-08 13:49:48 +00:00
Benjamin Eberlei
0c2c5006f8
Merge pull request #934 from shustrik/master
...
faild test with multiple HINT_CUSTOM_TREE_WALKERS
2014-02-08 14:34:35 +01:00
Asmir Mustafic
5475d616e3
more tests
2014-02-07 14:30:17 +01:00
shustrik
b167a64544
remove doc
2014-02-06 20:08:07 +03:00
Strate
ffe5bf1fe3
Merge pull request #2 from shustrik/multiplie_tree_walker
...
Multiplie tree walker bugfix
2014-02-06 20:04:24 +03:00
shustrik
12985b7811
add iterator to tree walker chain
2014-02-06 19:39:40 +03:00
Marco Pivetta
7ceb9b0b50
Merge pull request #938 from HermanPeeren/master
...
Missing join-tables added in example
2014-02-06 16:31:17 +01:00
HermanPeeren
128e83909b
Update working-with-associations.rst
...
removed some spaces that had come into it while editing last commit
2014-02-06 16:09:27 +01:00
HermanPeeren
9c19d1e5c4
Update working-with-associations.rst
...
There are 2 many-to-many associations between the users and comments. Both use another join-table. The join-tables user_favorite_comments and user_read_comments must be specified. Otherwise the default "user_comment" is taken twice. See https://groups.google.com/forum/#!topic/doctrine-user/Kti36_n6490 and https://groups.google.com/forum/#!topic/doctrine-user/TYwafhgYiSU
2014-02-06 15:59:56 +01:00
Asmir Mustafic
1d40c85c3c
Right owning side column selection
2014-02-06 14:26:06 +01:00
shustrik
6fe40b055f
fix return walker
2014-02-06 16:18:35 +03:00
shustrik
a6b43b93ac
fix TreeWalkerChain.
...
Create walker object in foreach.
2014-02-06 16:06:00 +03:00
Asmir Mustafic
2eb428df79
code style
2014-02-06 12:55:33 +01:00
Asmir Mustafic
724e69146c
typos and removed confusing ternary
2014-02-06 12:44:13 +01:00
Asmir Mustafic
557686aa0a
Entra-lazy for containsKey on collections
2014-02-06 12:27:12 +01:00
Ilya Pleshakov
1f3290faae
Remove incorrect (outdated) validation for public fields in SchemaValidator
2014-02-06 13:02:41 +04:00
shustrik
543ab500da
rename test
2014-02-06 10:53:34 +03:00
shustrik
7107a85041
faild test with multiple HINT_CUSTOM_TREE_WALKERS
...
failed test when we have more than 1 walker HINT_CUSTOM_TREE_WALKERS ,
because walkSelectStatement in TreeWalkerChain saves the last hint _queryComponents result.
2014-02-06 01:27:17 +03:00
Steve Müller
a6c8ab8a5f
make lock mode usage consistent
2014-02-05 15:13:53 +01:00
Strate
5c44dd3823
Allow to use object as a hint value.
2014-02-04 15:51:53 +01:00
Strate
352f38a77e
Fix comment
2014-02-04 15:51:53 +01:00
Strate
e8d47fa9a3
Added a new configuration option: defaultQueryHints, which allows to populate all queries by default set of hints.
2014-02-04 15:51:53 +01:00
Benjamin Eberlei
626efdafd4
Delete old phing build leftover.
2014-02-04 08:49:08 +01:00
Benjamin Eberlei
9653213914
Add warning about non scalar use in Criteria.
2014-02-04 00:02:09 +01:00
Tim Lieberman
25d71462e3
Make SchemaTool and SchemaValidator use EntityManagerInterface instead of EntityManager
2014-02-01 05:11:20 +00:00
Marco Pivetta
e322ab4deb
DDC-2931 - Removing previous broken fix for DDC-2931 - hardened
2014-02-01 02:00:10 +01:00
Marco Pivetta
7a32eca039
DDC-2931 - Safe comparison between proxies and entities when refreshing objects
2014-02-01 01:57:51 +01:00
Tim Lieberman
bf9fbd896b
Substitute EntityManagerInterface for EntityManager in Console EntityManagerHelper
2014-02-01 00:23:23 +00:00
Marco Pivetta
8c92e0f19f
DDC-2931 - adding test that verifies that fetch-joined entities get refreshed with hints
2014-02-01 01:05:34 +01:00
Tim Lieberman
43d94e7b5e
Console EntityManagerHelper now accepts EntityManagerInterface as constructor argument, instead of insisting on an EntityManager
2014-01-31 15:32:31 -08:00
Benjamin Eberlei
310afdf5d7
Merge pull request #910 from deeky666/DDC-2310
...
[DDC-2310] [DDC-2675] Fix SQL generation on table lock hint capable platforms
2014-01-31 11:33:30 -08:00
Fabio B. Silva
7e5a1c6b0d
Fix lazy association load
2014-01-28 12:26:10 -05:00
Fabio B. Silva
9b7e949025
Merge pull request #915 from mnapoli/patch-1
...
Improved DQL's "new" operator documentation
2014-01-25 08:36:54 -08:00
Marco Pivetta
b815a4b2d3
DDC-2931 - removing old comments
2014-01-24 02:52:30 +01:00
Marco Pivetta
596d2070ed
DDC-2931 - Removing refresh hints when fetching association data in hydrators
2014-01-24 02:45:28 +01:00
Marco Pivetta
9eafb11a02
DDC-2931 - Detailed explanation
2014-01-24 02:43:14 +01:00
Marco Pivetta
22bcfef523
DDC-2931 - cleaning up code formatting/simplifying test case
2014-01-23 20:19:36 +01:00
root
fabef48ca2
[DDC-2931] testcase to reproduce Jira 2931
2014-01-23 17:31:08 +00:00
Matthieu Napoli
30c3eb0465
Improved DQL's "new" operator documentation
2014-01-21 17:34:54 +01:00
Matthieu Napoli
330c66559c
Improved DQL's "new" operator documentation
...
I had to dig through the pull requests and issues to figure that out, so I believe it's best documented explicitly.
2014-01-21 10:54:13 +01:00
Strate
04e6061584
Added an exception when invalid case.
...
Fixes after code review.
2014-01-20 20:06:53 +04:00
Benjamin Eberlei
bba5ec27fb
Remove badges
2014-01-20 09:36:15 +01:00
Marco Pivetta
a83f5df47c
Merge pull request #913 from WouterJ/patch-1
...
Added exception class names
2014-01-19 22:02:34 -08:00
Marco Pivetta
0e5146b06b
Merge pull request #914 from liuggio/patch-2
...
added license badge
2014-01-19 21:36:50 -08:00
Strate
41ec5fd56d
Fix applying ON/WITH conditions to first join in Class Table Inheritance
...
Now we build nested joins for CTI when using ON/WITH clause.
2014-01-19 20:56:24 +04:00
Strate
b69481b639
Merge branch 'master' into bugfix/join-with-condition-placement-fix
2014-01-19 15:06:01 +04:00
Giulio De Donato
65f002d62c
added license badge
2014-01-18 23:44:44 +01:00
Wouter J
996499e6fc
Added exception class names
2014-01-18 11:09:22 +01:00
Steve Müller
b9ff877f14
fix SQL generation on table lock hint capable platforms
2014-01-15 22:46:09 +01:00
Steve Müller
cf43edd6a1
Merge pull request #911 from goatherd/fix-foreach-as-style
...
fix foreach coding style
2014-01-14 14:50:33 -08:00
goatherd
a485e791bb
fix foreach coding style
2014-01-14 23:44:38 +01:00
Benjamin Eberlei
b0736b5b6c
Merge pull request #909 from deeky666/fix-sqlserver-database-driver-test
...
Fix DatabaseDriverTest on SQL Server
2014-01-13 09:52:17 -08:00
Steve Müller
3eced21a01
add missing use statement for SQL Server testsuite to work
2014-01-13 15:57:18 +01:00
Geoffrey Wagner
b863b9b957
Fix some code standard things
2014-01-12 17:14:32 -06:00
Marco Pivetta
771da768ac
Merge pull request #906 from KevinBrogan/master
...
removed erroneous tip
2014-01-12 08:10:20 -08:00
Benjamin Eberlei
12556e2dfe
Add MyISAM limitation
2014-01-12 11:33:37 +01:00
Kevin Brogan
5989c0cb54
removed erroneous tip
...
I'm working through the tutorial myself and got to this point.
Don’t forget to add a require_once call for this class to the bootstrap.php
This advice is wrong. The class is located in the src directory and so is autoloaded when required. No require statement is necessary.
2014-01-10 20:28:41 -08:00
Geoffrey Wagner
e9739f8591
Fix some code standard things
2014-01-09 10:48:38 -06:00
Geoffrey Wagner
4772cbfae6
Add a test
...
addLifecycleCallback now only allows a callback once so we do not hook them twice
2014-01-08 20:58:50 -06:00
Geoffrey Wagner
db31c58102
Fix Lifecycle Callbacks
...
Remove a bit of code that breaks lifecycle callbacks of parent MappedSuperclasses
2014-01-08 17:17:47 -06:00
Benjamin Eberlei
93c1106735
Merge pull request #901 from deeky666/disable-travis-hhvm-unsupported-drivers
...
Exclude HHVM + PostgreSQL and HHVM + Mysqli from travis build matrix
2014-01-08 11:22:29 -08:00
Steve Müller
f4c30dcd1c
exclude unsupported HHVM + PostgreSQL and HHVM + Mysqli from travis build matrix for now
2014-01-08 20:19:10 +01:00
Guilherme Blanco
4e824ac6e1
Merge pull request #900 from deeky666/fix-connection-mock
...
Fix connection mock fetchColumn signature
2014-01-06 12:27:50 -08:00
Steve Müller
5f93c83059
fix connection mock fetchColumn signature
2014-01-06 21:24:01 +01:00
USvER
b23d0bec33
Added note to STI
...
http://www.doctrine-project.org/jira/browse/DDC-2886
2014-01-06 00:44:51 +02:00
Guilherme Blanco
b65d9e6c83
Merge pull request #896 from holtkamp/patch-2
...
Ensure <cascade/> elements preceed <join-columns/>
2014-01-05 11:32:31 -08:00
Guilherme Blanco
7f30c31e98
Merge pull request #897 from holtkamp/patch-3
...
Respected 'inheritanceType' at Entity level
2014-01-05 11:31:25 -08:00
Menno Holtkamp
fc2b9980ae
Exclude exporting inheritanceType for INHERITANCE_TYPE_NONE
2014-01-05 18:53:31 +01:00
Menno Holtkamp
797fb9c34a
Respected 'inheritanceType' at Entity level
...
It was (incorrectly) fetched from Table-level.
http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/annotations-reference.html#annref-inheritancetype
2014-01-05 18:41:55 +01:00
Menno Holtkamp
85a16f9f28
Ensure <cascade/> elements preceed <join-columns/>
...
When converting annotations based metadata to XML, the position of the <cascade/> elements resulted in XSD validation errors caused by the definitions of the association ComplexTypes:
- https://github.com/doctrine/doctrine2/blob/master/doctrine-mapping.xsd#L463
- https://github.com/doctrine/doctrine2/blob/master/doctrine-mapping.xsd#L482
- https://github.com/doctrine/doctrine2/blob/master/doctrine-mapping.xsd#L495
- https://github.com/doctrine/doctrine2/blob/master/doctrine-mapping.xsd#L517
Since changing the XSD might result in validation problems in existing mappings, changing the XmlExporter seems a better approach.
Note that the '<cache/>' element is not yet generated by the XmlExporter, but according to the XML Schema, it should precede the '<cascade/>' element.
2014-01-05 15:34:59 +01:00
Johannes Schmitt
7020f4135f
skips DQL UPDATE/DELETE tests with SLC enabled
2014-01-04 18:32:06 +01:00
Johannes Schmitt
87b4155665
adds test for ResultSetMappingBuilder restriction
2014-01-04 18:06:16 +01:00
Johannes Schmitt
e879626d73
Merge branch 'master' of github.com:doctrine/doctrine2 into rsmBuilder
2014-01-04 17:57:39 +01:00
Johannes Schmitt
946419459c
fixes bad merge
2014-01-04 17:54:46 +01:00
Johannes Schmitt
4f585a3d63
Merge branch 'master' of github.com:doctrine/doctrine2 into ValueObjects
...
Conflicts:
UPGRADE.md
lib/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php
2014-01-04 17:52:32 +01:00
Benjamin Eberlei
69cad4079d
Merge pull request #820 from apancutt/master
...
Added support for field options to FieldBuilder
2014-01-03 14:03:25 -08:00
Benjamin Eberlei
8de37de4f7
Merge branch 'DDC-2792'
2014-01-03 23:01:12 +01:00
Benjamin Eberlei
2a9351b8dc
[DDC-2792] Fix fatals
2014-01-03 23:01:05 +01:00
Vyacheslav Ganzin
1edf6b65b1
joinColumn is not required in manyToMany
...
annotation behavior copied
2014-01-03 22:27:27 +01:00
Benjamin Eberlei
c8c7cf0528
Fix tests after merge of QueryBuilder#addCriteria changes.
2014-01-03 21:28:06 +01:00
Steve Müller
5828e4c67c
Merge pull request #894 from piotrantosik/patch-2
...
Fix typos - QueryBuilder
2014-01-03 09:23:48 -08:00
Piotr Antosik
eb45690e10
Fix typos - QueryBuilder
2014-01-03 17:28:42 +01:00
Adam Pancutt
352f5394e5
Removed FieldBuilder::unsigned() method as it is only supported by MySQL
2014-01-03 09:48:38 +00:00
Benjamin Eberlei
9a3cf77919
[DDC-2128] Fix PR according to comments.
2014-01-03 00:15:14 +01:00
catalin
93c018668d
checking preg result. Should I raise an error
...
throw new ORMException("Error regular expression: " . $filter);
2014-01-03 00:15:14 +01:00
catalin
0d8f572661
added space after type cast (I could not find any rule in psr1/2 standard, but I modified in PhpStorm)
2014-01-03 00:15:14 +01:00
catalin
2326033e79
added preg_quote to $filter input
2014-01-03 00:15:13 +01:00
catalin
57e7559c1b
- Applied Phpstorm PSR format
...
- Changed RegExp format
2014-01-03 00:15:13 +01:00
Catalinux
6963bf6028
Now MetaDataFilter takess also regexp. For example whern you want to
...
extract metadata if you would filter like this: --filter="Article"
would extract also for "ArticleItems" (article_items table). Now you
can use --filter="Article$" if you want only that table (articl)
2014-01-03 00:15:13 +01:00
Benjamin Eberlei
8118dddc6a
Merge pull request #674 from TorbenBr/master
...
Shortcut for force
2014-01-02 15:02:46 -08:00
Benjamin Eberlei
0a2b5b8efd
Merge pull request #734 from caponica/patch-1
...
Cleaned up documentation
2014-01-02 15:00:11 -08:00
Benjamin Eberlei
22d4d2e812
Merge branch 'DDC-2700'
2014-01-02 23:50:21 +01:00
Benjamin Eberlei
53ed898684
[DDC-2700] Add test and fix CS.
2014-01-02 23:50:15 +01:00
Benjamin Eberlei
2feffe164a
Merge branch 'DDC-2732'
2014-01-02 23:33:56 +01:00
Benjamin Eberlei
b1e031a1b4
[DDC-2732] Add tests for XML id options fix.
2014-01-02 23:33:49 +01:00
Benjamin Eberlei
96ec3c1613
Merge pull request #830 from sandermarechal/sort-alias
...
[DDC-2764] Prefix criteria orderBy with rootAlias
2014-01-02 14:15:01 -08:00
Benjamin Eberlei
41581847b2
Merge pull request #833 from ronanguilloux/patch-console-entity-generator
...
Generate-Entities-Console-Command: Adding an 'avoid backup' flag
2014-01-02 14:13:27 -08:00
Benjamin Eberlei
e91ed74b25
[DDC-2775] cleanup test.
2014-01-02 23:11:35 +01:00
Benjamin Eberlei
17809abd29
Merge pull request #837 from mnapoli/DDC2775
...
DDC-2775 Tests and fix
2014-01-02 14:07:14 -08:00
Benjamin Eberlei
05576d3e1c
Merge pull request #844 from terite/orm-validate-skip
...
Teach orm:validate-schema to --skip-mapping and --skip-sync
2014-01-02 14:00:22 -08:00
Benjamin Eberlei
ea84cfbdd1
Merge pull request #845 from flack/avoid-update-on-delete
...
Don't compute changeset for entities that are going to be deleted
2014-01-02 13:59:25 -08:00
Benjamin Eberlei
10576286b8
[DDC-2803] Fix error in documentation.
2014-01-02 22:54:46 +01:00
Benjamin Eberlei
7a4a46a95c
[GH-855] fix CS
2014-01-02 22:50:36 +01:00
ptarjan
27c9074b71
don't rely on gc_collect_cycles for HHVM
2014-01-02 22:50:36 +01:00
Benjamin Eberlei
3a8aaea14a
Merge pull request #794 from stefankleff/patch-1
...
Multiple invokation of listeners on PreFlush event
2014-01-02 13:16:21 -08:00
Benjamin Eberlei
a2cdc7a1c7
Merge pull request #893 from yktd26/master
...
autoGenerate arg from bool to int
2014-01-02 13:03:33 -08:00
yktd26
c9e06a6854
Format code
2013-12-31 12:25:14 +01:00
yktd26
bee74f898d
autoGenerate arg from bool to int
...
For using all four modes of proxies generation, change the 4th arg of
ProxyFactory's constructor to integer
2013-12-31 11:58:36 +01:00
Guilherme Blanco
a7b9140d2f
Merge pull request #890 from deeky666/DBAL-563
...
[DBAL-563] Add general IDENTITY generator type support for sequence emulating platforms
2013-12-30 21:34:20 -08:00
Benjamin Eberlei
58c57c50bf
Merge pull request #891 from spolischook/patch-2
...
Allow to not generate extra use
2013-12-30 00:33:03 -08:00
Sergey Polischook
07f67c5d1a
Allow to not generate extra use
...
For case when we not generate annotation (by default at doctrine orm:generate-entities) allow to not generate extra use for it -
```php
use Doctrine\ORM\Mapping as ORM;
```
For example if generate entities for my project that use only dbal in pord but use orm for generate entities in dev mode.
2013-12-30 04:43:35 +02:00
Steve Müller
337857dc8a
add general IDENTITY generator type support for sequence emulating platforms
2013-12-29 05:55:16 +01:00
Marco Pivetta
7360231b4b
Merge pull request #888 from entering/docs-yaml-mapping-improve-example
...
Add an example to doc of YAML mapping
2013-12-25 14:12:38 -08:00
entering
2f0b4a5d81
Add an example to doc of YAML mapping
2013-12-25 22:11:15 +00:00
Matthieu Napoli
c9791fe97f
Inlined the model for the DCC2775 test case inside the test class
2013-12-23 09:55:10 +01:00
Strate
c6810861ca
Fix applying ON/WITH conditions to first join in Class Table Inheritance
2013-12-22 21:02:14 +04:00
Guilherme Blanco
5439a613d6
Merge pull request #884 from FabioBatSilva/slc-patch1
...
[SLC] Fix cache misses using one-to-one inverse side
2013-12-20 15:23:21 -08:00
fabios
cf4c805427
Fix cache misses using one-to-one inverse side
2013-12-20 15:37:07 -05:00
Guilherme Blanco
8554b04053
Merge pull request #883 from FabioBatSilva/hotfix-slc
...
[DDC-2862] Fix non initialized association proxy
2013-12-20 10:43:56 -08:00
fabios
22e3a76327
Fix non initialized association proxy
2013-12-20 10:39:03 -05:00
Benjamin Eberlei
f0546455d5
Remove left over ElementCollection code.
2013-12-20 15:01:10 +01:00
Guilherme Blanco
423ea00539
Merge pull request #590 from michaelperrin/feature/process-collection-value
...
DQL Query: process ArrayCollection values to ease development
2013-12-17 10:39:36 -08:00
Michaël Perrin
1032a16db2
Simpler way to handle Collection parameters in DQL queries (refs #DDC-2319)
2013-12-17 11:37:17 +01:00
Benjamin Eberlei
ad9366a1fc
Merge pull request #871 from elmariachi111/patch-1
...
XCache cannot be flushed on the CLI -> for pretty much the same reason as APC
2013-12-16 15:47:09 -08:00
Benjamin Eberlei
48ea45fad0
Add note about experimental nature of SLC feature
2013-12-17 00:05:43 +01:00
Guilherme Blanco
b081e5681d
Merge pull request #808 from FabioBatSilva/slc
...
Second level cache
2013-12-16 14:59:56 -08:00
fabios
4e0e1b8061
CS/Typo Fixes
2013-12-16 15:55:54 -05:00
fabios
0a66a2bc09
CS/Doc Fixes
2013-12-16 11:05:05 -05:00
fabios
71903c28a8
Region cache clear commands
2013-12-16 11:05:05 -05:00
fabios
fb98277783
Fix docs
2013-12-16 11:05:05 -05:00
fabios
d135e402bb
handle update/delete queries
2013-12-16 11:05:05 -05:00
Fabio B. Silva
61bff7d5f6
Fix CS and update docs
2013-12-16 11:05:04 -05:00
Fabio B. Silva
1438a59c00
Fix persister query cache invalidation
2013-12-16 11:05:04 -05:00
fabios
1bfa8f0fc3
Extract cache config
2013-12-16 11:05:04 -05:00
Fabio B. Silva
3140593e9b
Second level cache
2013-12-16 11:05:04 -05:00
Benjamin Eberlei
86ae6f18ab
Merge branch 'DDC-2645'
2013-12-15 23:31:49 +01:00
Pouyan Savoli
a5b7069fd7
[DDC-2645] Apply patch to fix issue
2013-12-15 23:31:35 +01:00
Matthieu Napoli
602c3be3fc
Cleaned up tests for DDC-2775
2013-12-14 19:57:53 +01:00
Aaron Muylaert
aa5df1dbac
Create failing test for DDC-2645.
...
Merge not dealing correctly with composite primary keys.
2013-12-14 15:59:10 +01:00
Marco Pivetta
6f1642b35d
Merge pull request #877 from aaronmu/DDC-1787
...
Hotfix for DDC-1787
2013-12-14 06:22:20 -08:00
Marco Pivetta
5fa1b10506
Merge pull request #832 from mnapoli/patch-4
...
Added "readOnly: true" to YAML reference
2013-12-14 05:41:27 -08:00
Marco Pivetta
bd4d27eabf
Merge pull request #842 from TheFrozenFire/tests/query-tests
...
Added EntityManager query creation tests
2013-12-14 05:26:46 -08:00
Marco Pivetta
ce914bef3f
Merge pull request #875 from doctrine/DDC-2844
...
Adding tests that confirm that DDC-2844 is fixed
2013-12-14 05:13:24 -08:00
Aaron Muylaert
3cc630798b
Fix DDC-1787.
...
Credit goes to Jack van Galen for fixing this issue.
Fix for JoinedSubclassPersister, multiple inserts with versioning throws
an optimistic locking exception.
2013-12-14 13:50:46 +01:00
Marco Pivetta
d20b136270
Adding tests to verify that dql aliases in criteria are correctly converted
2013-12-14 13:42:18 +01:00
Marco Pivetta
72e6de9417
Adding tests that confirm that DDC-2844 is fixed
2013-12-14 13:42:18 +01:00
Aaron Muylaert
600af3e617
Add failing test for DDC-1787.
...
Using joined table inheritance, when persisting multiple new entities
that are subclasses of a baseclass that has the @Version attribute set,
only the last persisted entity will have it's version set.
2013-12-14 13:24:47 +01:00
Marco Pivetta
8a38534be4
Merge pull request #876 from doctrine/hotfix/hhvm-allow-failures
...
Fixing wrong key for allowing HHVM failures
2013-12-14 04:22:59 -08:00
Marco Pivetta
940c1f3b1c
Fixing wrong key for allowing HHVM failures
2013-12-14 12:40:59 +01:00
Benjamin Eberlei
4ed96e2ab6
Update CONTRIBUTING.md
2013-12-14 11:29:07 +01:00
Benjamin Eberlei
d820c25eda
Merge branch 'GH-873'
2013-12-13 22:13:37 +01:00
Benjamin Eberlei
40f9facfd1
Add allowed failures for HHVM.
2013-12-13 22:13:28 +01:00
Paul Tarjan
b6a0c8b1ad
Try running unit tests on HHVM
2013-12-13 11:43:53 -08:00
Benjamin Eberlei
94a3e6c42b
Add missing LICENSE of documentation
2013-12-12 00:30:15 +01:00
Marco Pivetta
b461c9cf23
Merge pull request #872 from matheo/patch-1
...
Doctrine 2.4 now supports SQLite ALTER TABLE
2013-12-10 21:08:22 -08:00
Mateo Tibaquirá Palacios
3669321161
Doctrine 2.4 now supports SQLite ALTER TABLE
2013-12-11 00:07:07 -05:00
Stefan A
eded05d415
XCache cannot be cleared on CLI (like APC)
2013-12-10 19:51:41 +01:00
Stefan A
88a56ee8f8
XCache cannot be cleared on CLI (like APC)
2013-12-10 19:51:02 +01:00
Stefan A
53fbb0b2d1
XCache cannot be cleared on CLI (like APC)
2013-12-10 19:48:30 +01:00
Marco Pivetta
2cccb3cc62
Merge pull request #870 from lcobucci/master
...
Documenting interface methods (based on entity manager)
2013-12-10 06:36:44 -08:00
Luís Otávio Cobucci Oblonczyk
6d58824ac5
Use docblox from EntityManagerInterface
2013-12-10 12:09:36 -02:00
Luís Otávio Cobucci Oblonczyk
67135e5d6f
Fixing FQCN on docblox
2013-12-10 12:08:53 -02:00
Luís Otávio Cobucci Oblonczyk
877ba9bf17
Documenting interface methods (based on entity manager)
2013-12-10 11:18:27 -02:00
Johannes
f7f7c460f2
Merge pull request #1 from jankramer/ValueObjects
...
Update xml mapping driver and schema to work with embeddables
2013-12-07 08:44:09 -08:00
Jan Kramer
fbb7b5ad8e
Fix XmlDriver to accept embeddables
2013-12-07 16:40:54 +01:00
Jan Kramer
928c32d616
Update XML schema to reflect addition of embeddables
2013-12-07 16:38:32 +01:00
Guilherme Blanco
90a0d29b2b
Merge pull request #868 from mnapoli/patch-1
...
Added documentation section for Memcached
2013-12-02 07:00:40 -08:00
Matthieu Napoli
38c59ce5a4
Added documentation section for Memcached
2013-12-02 14:59:04 +01:00
Marco Pivetta
3caf1fdfa6
Merge pull request #866 from bountin/doc_refresh
...
Mentioning the 'refresh' cascading property in the documentation list
2013-12-01 14:07:21 -08:00
Martin Prebio
2828d7b5cd
Mentioning the 'refresh' cascading property in the documentation list
2013-12-01 22:43:06 +01:00
Johannes M. Schmitt
e5cab1db2d
adds embedded classes to cache
2013-11-28 17:32:47 +01:00
Marco Pivetta
606ae2e03d
Merge pull request #862 from stof/patch-2
...
Added a note about changing the fetch mode for to-many relations
2013-11-26 05:22:39 -08:00
Christophe Coevoet
dfbf996a50
Added a note about changing the fetch mode for to-many relations
2013-11-26 14:20:51 +01:00
Guilherme Blanco
0e3c57dbd3
Merge pull request #849 from bsahlhof/master
...
Error with Same Field, Multiple Values, Criteria and QueryBuilder
2013-11-25 21:20:14 -08:00
Guilherme Blanco
d63820755d
Merge pull request #860 from deeky666/add-sql-anywhere-documentation
...
Mention SQL Anywhere in basic mapping documentation
2013-11-25 09:44:04 -08:00
Steve Müller
45118a2811
mention SQL Anywhere in basic mapping docs
2013-11-25 18:24:54 +01:00
Guilherme Blanco
c460344994
Merge pull request #850 from FabioBatSilva/attach-entity-listeners
...
Event listener to programmatically attach entity listeners.
2013-11-25 08:21:36 -08:00
Johannes M. Schmitt
8ae48ad9db
lifts an unnecessary restriction on ResultSetMappingBuilder
2013-11-23 19:47:56 +01:00
Steve Müller
75d7ac2783
Merge pull request #854 from ptarjan/master
...
fix relative path to doctrine/common
2013-11-23 05:14:44 -08:00
Marco Pivetta
642d6e3033
Merge pull request #856 from ptarjan/reference_proxy_test
...
Fix dependency for tests/Doctrine/Tests/ORM/Functional/ReferenceProxyTest.php
2013-11-22 05:34:41 -08:00
ptarjan
1fe8ff756e
Fix dependency for tests/Doctrine/Tests/ORM/Functional/ReferenceProxyTest.php
2013-11-22 01:15:13 -08:00
ptarjan
a8ad9069c9
fix relative path to doctrine/common
2013-11-21 20:38:39 -08:00
fabios
9e3ad91225
Version 2.5.0-DEV
2013-11-19 11:50:43 -05:00
Guilherme Blanco
0fe6d75211
Merge pull request #851 from naitsirch/doc/instance_of
...
Documentation about how to use INSTANCE OF in inheritance
2013-11-19 08:12:29 -08:00
Brad Sahlhoff
96fb0d7e14
Changed logic to allow joining games, and becoming friends
...
Added Spacing
2013-11-19 11:09:23 -05:00
Christian Stoller
393b3d37f5
Documentation about how to use INSANCE OF in inheritance
2013-11-19 09:18:33 +01:00
fabios
e69cd37226
Event listener to programmatically attach entity listeners.
2013-11-18 15:03:00 -05:00
Brad Sahlhoff
c2997b3961
Add ability to test same parameter name for multiple values.
2013-11-18 10:36:46 -05:00
flack
3d12920cd4
Add note about changed behaviour
2013-11-17 12:06:47 +01:00
flack
88ae5883f3
Add testcase
2013-11-17 11:51:09 +01:00
flack
ffd858b238
Merge remote-tracking branch 'upstream/master' into avoid-update-on-delete
2013-11-17 11:36:06 +01:00
flack
9807718100
Also skip entities scheduled for deletion when committing multiple entities
2013-11-17 11:31:21 +01:00
Fabio B. Silva
3529cd4282
Merge pull request #797 from peterkokot/patch-1
...
CS fixes
2013-11-16 10:52:09 -08:00
Benjamin Eberlei
2925fea7bd
Make tests forward compatible with DBAL 2.5
2013-11-14 12:36:52 +01:00
Johannes M. Schmitt
0ee7b688c3
small fix
2013-11-13 00:07:20 +01:00
Johannes M. Schmitt
2a73a6f1f7
some cs fixes
2013-11-13 00:05:55 +01:00
Johannes M. Schmitt
fb3a06b9e7
adds support for XML/Yaml drivers
2013-11-13 00:03:21 +01:00
Johannes M. Schmitt
9ad376c006
adds docs
2013-11-12 23:49:25 +01:00
Benjamin Eberlei
6cdd65762f
Add 2.4 branch [ci skip]
2013-11-12 13:37:20 +01:00
David Stensland
e6be52af3a
Teach orm:validate-schema to --skip-mapping and --skip-sync
...
Use --skip-mapping to not check if the current mapping informaiton
is valid or not.
Use --skip-sync to not check if the database schema is in line with
the current schema mapping.
2013-11-11 18:12:28 -05:00
flack
9016a5a854
don't compute changeset for entities that are going to be deleted
2013-11-12 00:11:50 +01:00
Benjamin Eberlei
0edf2bc585
Add missing link to batch processing chapter
2013-11-07 16:43:36 +01:00
Justin Martin
8b4b8e7268
Test EntityManager::createNamedQuery.
...
Test EntityManager::createNamedNativeQuery.
2013-11-06 20:07:48 -08:00
Marco Pivetta
141213915e
Merge pull request #838 from flack/patch-2
...
Spelling fix
2013-11-04 10:21:49 -08:00
Marco Pivetta
271f952c4a
Merge pull request #839 from flack/patch-3
...
Spelling fix
2013-11-04 10:20:12 -08:00
flack
8ad6853e84
Spelling fix
2013-11-04 19:17:04 +01:00
flack
dc476b62d1
Spelling fix
2013-11-04 19:16:04 +01:00
Guilherme Blanco
c7d4077219
Merge pull request #834 from carlosbuenosvinos/patch-1
...
Add example use of repositoryClass in YAML
2013-11-04 07:46:42 -08:00
Guilherme Blanco
f3b8fe5255
Merge pull request #836 from Dragonrun1/master
...
Update annotations-reference.rst
2013-11-04 07:05:16 -08:00
Matthieu Napoli
1899bcf000
Fixed tests failing in pgsql because of used of a reserved keyword
2013-11-04 16:01:05 +01:00
Matthieu Napoli
791ec3bc6e
Fixed tests for pgsql: was using reserved keyword as table name
2013-11-04 12:53:18 +01:00
Matthieu Napoli
e018bb83f0
[DDC-2775] Bugfix
2013-11-04 12:42:23 +01:00
Matthieu Napoli
8bd54be4ec
[DDC-2775] Tests reproducing DDC-2775
2013-11-04 12:40:51 +01:00
Michael Cummings
01dc0e8273
Update annotations-reference.rst
...
@JoinTable because of mapping defaults does NOT have required attributes. Updated annotations reference to show them as optional.
2013-11-03 09:20:15 -08:00
Johannes M. Schmitt
17e0a7b2f8
makes column prefix configurable
2013-11-02 14:07:14 +01:00
Johannes M. Schmitt
2b2f4894cb
fixes declaring class
2013-11-02 13:55:19 +01:00
Johannes M. Schmitt
0cd6061fc2
fixes a bad merge
2013-11-02 13:35:41 +01:00
Johannes M. Schmitt
5586ddd6b7
removes restrictions on constructors of embedded objects
2013-11-02 13:31:44 +01:00
Johannes M. Schmitt
ece62d6ad7
adds support & tests for embeddables in inheritance schemes
2013-11-02 13:23:56 +01:00
Johannes M. Schmitt
d4e6618b28
Merge remote-tracking branch 'schmittjoh/ValueObjects'
2013-11-02 11:20:44 +01:00
Johannes M. Schmitt
97836ef8c6
some consistency fixes
2013-11-01 22:37:59 +01:00
Johannes M. Schmitt
f86abd81dd
fixes annotation context
2013-11-01 22:33:59 +01:00
Johannes M. Schmitt
4f6c15099a
fixes coding style
2013-11-01 21:47:56 +01:00
Johannes M. Schmitt
20fb8270dc
make use of NamingStrategy for columns of embedded fields
2013-11-01 21:44:57 +01:00
Johannes M. Schmitt
fd8b5bd045
removes outdated todos
2013-11-01 21:16:02 +01:00
Johannes M. Schmitt
41c937b983
adds test for non-existent field
2013-11-01 20:54:45 +01:00
Johannes M. Schmitt
30897c3115
adds tests for update/delete DQL queries
2013-11-01 20:46:08 +01:00
Johannes M. Schmitt
c67ac8a11b
adds support for selecting based on embedded fields
2013-11-01 20:38:19 +01:00
Johannes M. Schmitt
38b041d909
Merge remote-tracking branch 'origin/ValueObjects'
...
Conflicts:
lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php
2013-11-01 20:17:43 +01:00
Sander Marechal
35a62e9a05
Add rootAlias to Criteria where clauses
2013-11-01 13:43:03 +01:00
Sander Marechal
202039e853
Set rootAlias outside loop
2013-11-01 13:19:33 +01:00
Carlos Buenosvinos
6eac308ca3
Add example use of repositoryClass in YAML
2013-11-01 12:11:01 +01:00
Ronan Guilloux
48d078a856
no-backup instead of nobackup
2013-10-31 12:25:43 +01:00
Ronan Guilloux
5c01e8e99e
Generate-Entities-Console-Command: Adding an 'avoid creating backup files' flag
2013-10-31 12:00:32 +01:00
Matthieu Napoli
f3f9fe9daa
Added "readOnly: true" to YAML reference
...
The readOnly configuration is documented nowhere except in the annotations reference.
I added it to the example, for a lack of a better place. But at least it will be documented somewhere.
Can you also confirm that this is correct? I'm starting to use it, and I can't find a way to have doctrine validate it is really working. Even with the metadata validation tool, it won't raise an error if I put an invalid entry (`readOnlyFOOBAR: true`) or an invalid value (`readOnly: FOOBAR`), so I'm kind of blind here.
2013-10-31 10:50:44 +01:00
Sander Marechal
b6f8d53ff1
[DDC-2764] Prefix criteria orderBy with rootAlias
2013-10-29 11:11:46 +01:00
Benjamin Eberlei
514dd4e852
[DDC-2757] Update documentation with regard to manually closing the EntityManager when an Exception occurs.
2013-10-26 12:32:53 +02:00
Benjamin Eberlei
cedcac225f
Merge branch 'DDC-2759'
2013-10-26 11:16:21 +02:00
Benjamin Eberlei
9a3298347c
[DDC-2759] Fix regression in ArrayHydrator introduced in DDC-1884 at SHA c7b4c9bf0f
2013-10-26 11:16:07 +02:00
Chris Collins
7249804e3f
Added a failing test case for DDC-2759.
2013-10-24 13:02:42 +01:00
Marco Pivetta
b7cb1e98ee
Merge pull request #825 from flack/patch-1
...
Spelling fix
2013-10-23 02:32:45 -07:00
flack
195b1169ae
Spelling fix
2013-10-23 11:32:04 +02:00
Marco Pivetta
0a31ecb283
Merge pull request #824 from brikou/patch-3
...
s/PostgreSQLPlatform/PostgreSqlPlatform/
2013-10-21 00:45:51 -07:00
Brikou CARRE
84b980227f
s/PostgreSQLPlatform/PostgreSqlPlatform/
2013-10-21 09:44:48 +02:00
Marco Pivetta
a96fe8770c
Merge pull request #815 from nicolas-bastien/patch-2
...
Remove unused use statement
2013-10-18 03:46:09 -07:00
Marco Pivetta
d2e731174c
Merge pull request #821 from mnapoli/patch-4
...
Fixed documentation rendering
2013-10-17 07:18:12 -07:00
Matthieu Napoli
a90311cb44
Fixed documentation rendering
...
The 2 lists I've fixed render as citation in the docs: http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/index.html
If I didn't make any mistake, now they should render as simple lists.
2013-10-17 15:53:45 +02:00
Marco Pivetta
1e10fca66a
Merge pull request #818 from mfdj/master
...
Clarified tutorial context in section introducing `orm:scehma-tool:*` commands
2013-10-16 17:23:09 -07:00
Adam Pancutt
553086ae3d
Removed check for instantiated options array
2013-10-15 13:17:07 +01:00
Adam Pancutt
db5274113a
Code style fix
2013-10-15 12:49:34 +01:00
Adam Pancutt
25342b706d
Added support for field options to FieldBuilder
2013-10-15 12:37:06 +01:00
Guilherme Blanco
95ad926c95
Merge pull request #819 from vbourdeix/master
...
Fixes a Fatal Error when using a subexpression in parenthesis
2013-10-14 11:01:51 -07:00
Vincent BOURDEIX
5506d7adce
Fixes a Fatal Error when using a subexpression in parenthesis
...
When some dql contains a subselect with expression in parenthesis, the
expression of the $simpleSelectExpression parameter given to
walkSimpleSelectExpression is an instance of AST\ParenthesisExpression.
Before this commit, this case defaulted to
$this->walkEntityIdentificationVariable($expr) where $expr is supposed
to be a string. A fatal error was then yielded.
2013-10-14 15:04:52 +02:00
Guilherme Blanco
0d58e82b76
Merge pull request #817 from mfdj/patch-1
...
Removed "minimum-stability" : "dev" from composer.json
2013-10-11 19:34:57 -07:00
Mark Fox
2f8b0801cc
further tweaking of last commit pt.2
2013-10-11 15:22:39 -07:00
Mark Fox
126cd0bac2
further tweaking of last commit
2013-10-11 15:20:53 -07:00
Mark Fox
c5adfca0ed
Clarified tutorial context around introduction of orm:schema-tool:* commands
...
See: http://stackoverflow.com/questions/17473225/doctrine2-no-metadata-classes-to-process for evidence of this confusion
2013-10-11 15:16:46 -07:00
Mark Fox
006dac13a9
Removed "minimum-stability" : "dev" from composer.json
2013-10-11 14:34:49 -07:00
Guilherme Blanco
bb63058410
Merge pull request #780 from terite/DDC-2655
...
[DDC-2655] Don't let getOneOrNullResult throw NoResultException
2013-10-11 13:43:27 -07:00
Guilherme Blanco
be81b46d8e
Merge pull request #791 from myclabs/CriteriaContains
...
Implemented "contains" operator for Criteria expressions
2013-10-11 06:33:40 -07:00
Eduardo
333177da00
Options not respected for ID Fields in XML Mapping Driver (XSD update)
...
XSD update.
The same bug of the yaml driver: see http://www.doctrine-project.org/jira/browse/DDC-2661
2013-10-09 23:49:39 +02:00
Eduardo
aabb34f853
Options not respected for ID Fields in XML Mapping Driver
...
Same bug of the YAML driver, see: http://www.doctrine-project.org/jira/browse/DDC-2661
2013-10-09 22:40:29 +02:00
David Stensland
089006927e
[DDC-2655] Don't let getOneOrNullResult throw NoResultException
2013-10-09 11:38:33 -04:00
Guilherme Blanco
ded3d20630
Merge pull request #787 from flip111/patch-1
...
Update DDC719Test.php to be compatible with MsSQL
2013-10-07 11:22:14 -07:00
Nicolas Bastien
33ddb9c0ca
Remove unused use statement
2013-10-07 15:58:41 +02:00
Guilherme Blanco
3f883d57a6
Merge pull request #811 from flip111/patch-6
...
Update SingleScalarHydrator error message
2013-10-02 06:07:59 -07:00
flip111
62ae8dc81e
Update SingleScalarHydrator error message
...
bummed into this one. Now more developer friendly :)
2013-10-02 14:12:35 +02:00
Benjamin Eberlei
fc53bc8909
Fix some LGPL occurances to MIT
2013-10-02 12:07:37 +02:00
Guilherme Blanco
2021d12df8
Merge pull request #809 from FabioBatSilva/DDC-1514
...
Fix DDC-1514 test
2013-10-01 22:02:22 -07:00
fabios
dd4bdd776a
Fix DDC-1514 test
2013-10-01 12:00:52 -04:00
flip111
4282fa4787
Used ternary operator to reduce LOC
2013-10-01 17:25:49 +02:00
Guilherme Blanco
2c4c26c5d6
Merge pull request #801 from flip111/patch-4
...
Update SqlWalker.php fixed wrong GROUP BY clause on SQL Server platform
2013-10-01 08:21:20 -07:00
flip111
228a501014
Made the code prettier :)
2013-10-01 16:53:53 +02:00
Guilherme Blanco
4051d0da86
Merge pull request #807 from janbster/fix-optimisticlock
...
Fix for OptimisticLockingException
2013-10-01 07:41:57 -07:00
jan brunnert
f64d6695ce
Removed unnecessary is_object() check
2013-10-01 13:00:37 +02:00
Guilherme Blanco
0e8e5c9ba5
Merge pull request #788 from flip111/patch-3
...
Update DatabaseDriverTest.php
2013-09-30 11:08:41 -07:00
Guilherme Blanco
d8335eee7b
Merge pull request #793 from flip111/patch-2
...
Improved error messages in Paginator: LimitSubqueryOutputWalker
2013-09-30 11:07:49 -07:00
Guilherme Blanco
f02d18f465
Merge pull request #804 from diego-mazzaro/master
...
[bugfix] if BIGINT or SMALLINT version field was not incremented.
2013-09-30 07:46:35 -07:00
jan brunnert
a4e3921090
When the OptimisticLockingException is generated with the static function lockFailedVersionMismatch and the passed parameters are DateTime instances, the exception could not be thrown because the DateTime object is not implicitly converted to a string.
2013-09-30 11:32:46 +02:00
flip111
72ae7f5497
Changed GroupBy alias to real column name for all platforms and adjusted failing test accordingly. Has fallback in cases where real column name is not possible (example: Doctrine\Tests\ORM\Query\SelectSqlGenerationTest::testGroupBySupportsIdentificationVariable)
2013-09-30 11:08:42 +02:00
Diego Mazzaro
bd0e0c3fcf
[bugfix] if BIGINT or SMALLINT version field was not incremented.
...
Made version field accepted type coherent between ClassMetadataInfo and BasicEntityPersister
2013-09-29 16:17:10 +02:00
Marco Pivetta
1414cc315e
Merge pull request #803 from cleentfaar/patch-1
...
Appended newline to (newly) generated files for PSR2 compatibility
2013-09-28 10:46:09 -07:00
Cas
1fda797c8f
Appended newline to (newly) generated files for PSR2 compatibility
...
Appended newline to (newly) generated files for PSR2 compatibility
Additionally, slightly improved styling of concatenating return value
2013-09-28 17:47:35 +02:00
Benjamin Eberlei
008187982d
Merge pull request #792 from FabioBatSilva/DDC-2668
...
[DDC-2668] Fix trim leading zero string
2013-09-26 14:23:07 -07:00
Benjamin Eberlei
b7cffbde37
Merge pull request #802 from fasmide/patch-1
...
Respect unsigned fields when tables get converted to entities.
2013-09-26 14:12:24 -07:00
Kristian Mide
0326731348
Respect unsigned fields when tables get converted to entities.
...
This is working on our mysql setup, however i have no idea of the consequences of this change when using other RDBMSes.
2013-09-26 14:41:06 +02:00
flip111
76fda9562c
Update SqlWalker.php fixed wrong GROUP BY clause on SQL Server platform
...
Without this patch a query would like like:
```
SELECT c0_.Country AS sclr0
FROM Continent c0_ WITH (NOLOCK)
WHERE c0_.Country = 38
GROUP BY sclr0
```
Using the column alias in the GROUP BY clause. However this is not allowed on SQL Server. References:
1. http://stackoverflow.com/a/3841804
2. http://technet.microsoft.com/en-us/library/ms189499.aspx (Logical Processing Order of the SELECT statement)
The correct query should be:
```
SELECT c0_.Country AS sclr0
FROM Continent c0_ WITH (NOLOCK)
WHERE c0_.Country = 38
GROUP BY c0_.Country
```
2013-09-26 14:11:56 +02:00
Guilherme Blanco
bd7c7ebaf3
Merge pull request #799 from FabioBatSilva/leftover-test
...
remove unused test case
2013-09-23 18:10:22 -07:00
Fabio B. Silva
614eed7f86
remove unused test case
2013-09-23 19:29:50 -04:00
Alex Pogodin
a75d73b889
Identifier can be empty for MappedSuperclasses
...
When MappedSuperclass is inspected without identifier column been assigned, always return false. Solves "Undefined offset" notice.
2013-09-22 17:19:51 +03:00
Peter Kokot
dca09148ca
CS fixes
2013-09-22 02:12:30 +02:00
Marco Pivetta
2089df36e3
Merge pull request #795 from sabzeta/patch-1
...
Update query-builder.rst
2013-09-20 11:05:38 -07:00
sabzeta
a419c7c93b
Update query-builder.rst
...
expresion substr changed to substring as of
http://www.doctrine-project.org/jira/browse/DDC-382
2013-09-20 15:27:05 +03:00
Stefan Kleff
adf2b7cce7
Listener class prefix
2013-09-20 09:20:58 +02:00
Stefan Kleff
619c6a03ce
removed unused use statements, fixed typo and group tag
2013-09-19 15:16:51 +02:00
Stefan Kleff
d4a08f7ab7
Added unit test
2013-09-19 14:16:33 +02:00
Stefan Kleff
1ec5632a18
Multiple invokation of listeners on PreFlush event
...
Only lifecycle callbacks and entity listeners should be triggered here. The preFlush listener event is already triggered at the beginning of commit()
2013-09-19 12:13:12 +02:00
flip111
a18aba1bb6
Improved error messages in Paginator: LimitSubqueryOutputWalker
...
The already existing follow-up check throwing "Not all identifier properties can be found in the ResultSetMapping: %s" is a much more technical description.
If $sqlIdentifier is empty (count 0) it can be concluded that there are no mapped results. An alternative error message could thus be "The Paginator does not support queries without mapped results." (line 153).
Possibly '!=' on line 154 could be replaced by '>' because i think this is the only situation that can occur. But since i don't know this for sure, i left it like i found it.
Didn't use elseif in this commit as per Stof his suggestion.
2013-09-17 21:01:09 +02:00
flip111
b803f06c8f
Improved error messages in Paginator: LimitSubqueryOutputWalker
...
The already existing follow-up check throwing "Not all identifier properties can be found in the ResultSetMapping: %s" is a much more technical description.
If $sqlIdentifier is empty (count 0) it can be concluded that there are no mapped results. An alternative error message could thus be "The Paginator does not support queries without mapped results." (line 153).
Possibly '!=' on line 154 could be replaced by '>' because i think this is the only situation that can occur. But since i don't know this for sure, i left it like i found it.
2013-09-17 15:07:08 +02:00
Fabio B. Silva
689da2f36b
[DDC-2668] Fix trim leading zero string
2013-09-16 21:36:19 -04:00
Matthieu Napoli
6f538c509c
Implemented "contains" operator for Criteria expressions
2013-09-16 14:56:04 +02:00
Benjamin Eberlei
fe78977973
Merge pull request #790 from javer/hhvm-func_get_args
...
HHVM compatibility: func_get_args
2013-09-15 11:05:01 -07:00
javer
64a0161935
HHVM compatibility: func_get_args
...
All func_get_args() calls have been moved to the top of the methods
because HHVM doesn't keep a copy of the original args for performance
reasons.
See facebook/hiphop-php#1027 for details.
2013-09-15 20:57:30 +03:00
flip111
67dd32d9fb
A nicer way of detecting the platform
...
Inspired by https://github.com/doctrine/doctrine2/blob/master/tests/Doctrine/Tests/ORM/Functional/DatabaseDriverTest.php#L188
2013-09-13 16:35:34 +02:00
flip111
e49a673a01
Update DatabaseDriverTest.php
...
SQL Server does not support unsigned integers
2013-09-13 16:29:31 +02:00
flip111
a190dad0b1
Update DDC719Test.php to be compatible with MsSQL
...
Apparently Doctrine adds "with (nolock)" now for the mssql platform, but the test has not been updated yet.
2013-09-13 15:11:35 +02:00
Marco Pivetta
c72698a997
Merge pull request #786 from weaverryan/patch-1
...
Minor updates while reading the basic-mapping page
2013-09-12 19:11:37 -07:00
Ryan Weaver
1fcef3321e
Changes thanks to @Ocramius
2013-09-12 20:52:12 -05:00
Ryan Weaver
36d7d60c3b
Minor updates while reading the basic-mapping page
...
The only arguable changes involve a few spots where I either removed something I thought was too technical and not valuable (e.g. talking about the metadata mapping pattern).
2013-09-12 17:08:48 -05:00
Benjamin Eberlei
067ed7b1c6
Fix master dependening on DBAL 2.5-dev
2013-09-12 08:00:08 +02:00
Benjamin Eberlei
b6e624b6bf
Delete some very old, leftover code.
2013-09-11 22:43:38 +02:00
Marco Pivetta
237c1e24e6
Merge pull request #785 from Hawkeye0203/patch-1
...
Update dql-custom-walkers.rst
2013-09-11 07:32:58 -07:00
Daniel VanMullen
ef722066e3
Update dql-custom-walkers.rst
...
Fixed typo of "customer" to "custom"
2013-09-11 09:25:52 -04:00
Marco Pivetta
bb7f18ced7
Merge pull request #784 from eventhorizonpl/fix_docs
...
fix documentation warnings p1
2013-09-10 15:54:40 -07:00
Michal Piotrowski
bc37ceb58b
fix warnings p1
...
fix warnings p2
fix warnings p3
fix warnings p4
2013-09-10 23:57:41 +02:00
Benjamin Eberlei
9983fcbac3
Fix some more details in basic-mapping.rst
2013-09-10 23:15:43 +02:00
Benjamin Eberlei
a948cb49b8
Small fixes in basic-mapping.rst
2013-09-10 22:36:03 +02:00
Benjamin Eberlei
546c817f64
Move Custom Mapping Types into cookbook, restructure the chapter more.
2013-09-10 22:09:22 +02:00
Benjamin Eberlei
caf6ba65e8
Refactor Basic Mapping chapter to focus on the actual topic more. Rearrange apperance of topics. Introduce a sane example entity as example.
2013-09-10 22:09:22 +02:00
Benjamin Eberlei
f7108b40c3
Move Annotations introduction to the reference.
2013-09-10 22:09:22 +02:00
Marco Pivetta
4d51a0290b
Merge pull request #782 from mnapoli/patch-4
...
#DDC-2664 Document new Proxy factory flags usage as of DCOM-210
2013-09-09 03:35:17 -07:00
Marco Pivetta
0d246f7e9e
Merge pull request #783 from mnapoli/DDC-2664
...
#DDC-2664 Improving and fixing documentation for new Proxy factory flags usage as of DCOM-210
2013-09-09 03:13:56 -07:00
Matthieu Napoli
8875462241
#DDC-2664 Improving and fixing documentation for new Proxy factory flags usage as of DCOM-210
2013-09-09 11:30:18 +02:00
Matthieu Napoli
26e1ac6afd
#DDC-2664 Improving and fixing documentation for new Proxy factory flags usage as of DCOM-210
2013-09-09 11:20:12 +02:00
Matthieu Napoli
4a0a4094da
#DDC-2664 Document new Proxy factory flags usage as of DCOM-210
...
[Document new Proxy factory flags usage as of DCOM-210](http://www.doctrine-project.org/jira/browse/DDC-2664 )
2013-09-09 10:49:37 +02:00
Marco Pivetta
87d2ff8665
Merge pull request #781 from shieldo/patch-2
...
fixed English grammar
2013-09-08 13:47:39 -07:00
Douglas Greenshields
85f227372d
fixed English grammar
2013-09-08 21:40:35 +01:00
Benjamin Eberlei
4a50493ab7
[DDC-2608][DDC-2662] Fix SequenceGenerator requiring "sequenceName" and now throw exception. Fix a bug in quoting the sequenceName.
2013-09-08 15:59:58 +02:00
Benjamin Eberlei
c6760e0375
Merge pull request #762 from naitsirch/yaml_reference_ext
...
YAML mapping documentation of uniqueConstraint
2013-09-08 06:22:42 -07:00
Benjamin Eberlei
3770019e0b
Merge branch 'DDC-2660'
2013-09-08 14:39:10 +02:00
Benjamin Eberlei
5c2157219d
[DDC-2660] Fix error with NativeSQL, ResultSetMappingBuilder and Associations as Primary Key.
2013-09-08 14:38:59 +02:00
Benjamin Eberlei
f2fa47dedb
Fix RST bug
2013-09-08 13:04:08 +02:00
Benjamin Eberlei
275724fb46
Add missing documentation for 2.4 features
2013-09-08 12:13:47 +02:00
Benjamin Eberlei
6fcc091f88
Merge branch 'DDC-2661'
2013-09-08 10:37:23 +02:00
Benjamin Eberlei
3719a6f2f2
[DDC-2661] Fix bug in YamlDriver not passing options from id to mapField()
2013-09-08 10:37:13 +02:00
Benjamin Eberlei
fab3f5e146
More excludes
2013-09-07 18:27:27 +02:00
Benjamin Eberlei
90c89b3881
Travis should prefer dist.
2013-09-07 13:21:02 +02:00
Benjamin Eberlei
6139a61ff0
New Build process
...
- Switch from Phing to Ant
- Remove PEAR packaging
- Add Composer archiving
2013-09-07 12:56:49 +02:00
Benjamin Eberlei
490b501679
Fix tests running against Oracle not comparing SQL case-insenstive
2013-09-07 08:52:50 +02:00
Guilherme Blanco
da7146c4d5
Merge pull request #779 from Blazinn/patch-4
...
Fixed grammar in custom data types
2013-09-05 07:31:19 -07:00
Guilherme Blanco
7ed22819b5
Merge pull request #778 from Blazinn/patch-3
...
Fixed typo in property mapping
2013-09-05 07:29:43 -07:00
Nick Hazen
e808865e6f
Fixed grammar in custom data types
...
Changed 'are apply' to 'are applied'
2013-09-05 10:09:53 -04:00
Nick Hazen
1d247fbeaa
Fixed typo in property mapping
...
Changed 'pecify' to 'specify' line # 246
2013-09-05 09:48:00 -04:00
Guilherme Blanco
0a07207f59
Merge pull request #777 from Blazinn/patch-2
...
Fixed typo in mapping documentation
2013-09-05 06:43:28 -07:00
Nick Hazen
982840ac3c
Fixed typo in mapping documentation
...
"Classthat" to "Class that" line #69
2013-09-05 09:32:36 -04:00
Marco Pivetta
0a9ff77303
Merge pull request #775 from Blazinn/patch-1
...
Update create bug script
2013-09-04 15:18:36 -07:00
Nick Hazen
528fe40839
Update create bug script
...
This script is using the first argument twice and ignoring the second argument completely.
2013-09-04 16:55:06 -04:00
Benjamin Eberlei
340ae15ba7
Merge branch 'Docs'
2013-09-01 19:04:22 +02:00
Benjamin Eberlei
c603fe7ab9
Simplify Working with Associations a little
2013-08-31 16:38:00 +02:00
Benjamin Eberlei
aa369b4212
Cleanup Association Mapping chapter
2013-08-31 16:25:53 +02:00
Benjamin Eberlei
cf2580d284
Cleanup of Configuration and Mapping reference chapters.
2013-08-31 15:46:10 +02:00
Guilherme Blanco
6f025f78ec
Merge pull request #772 from pine3ree/patch-1
...
DO NOT OVERRIDE CUSTOM TREE WALKERS IN getIterator()
2013-08-29 07:27:35 -07:00
Maks Feltrin
f98dfc4758
DO NOT OVERRIDE CUSTOM TREE WALKERS IN getIterator()
2013-08-29 08:36:39 +02:00
Guilherme Blanco
fc7719d5fa
Merge pull request #771 from caponica/cqb-indexby
...
Added indexBy option to createQueryBuilder
2013-08-28 20:15:55 -07:00
Christian Morgan
b0513a7517
Added indexBy option to createQueryBuilder
...
Added way to access the underlying QueryBuilder#from() method's 'indexBy' parameter when using EntityRepository#createQueryBuilder()
2013-08-28 22:35:29 +01:00
Guilherme Blanco
78c3016f95
Merge pull request #770 from fulopattila122/master
...
Fix for entity generator discriminator column
2013-08-28 09:15:08 -07:00
Attila Fulop
5669aaf4a3
Fix for entity generator discriminator column
2013-08-28 18:26:16 +03:00
Marco Pivetta
f634ba343c
Merge pull request #759 from mfdj/patch-1
...
Fixed out of sync code examples in getting-started.rst
2013-08-25 07:23:20 -07:00
Marco Pivetta
e2a67c2f1c
Merge pull request #742 from caponica/patch-2
...
Cleaned up events.rst
2013-08-25 07:10:26 -07:00
Guilherme Blanco
c399c77dbe
Merge pull request #767 from doctrine/DDC-2627
...
Fixing missing table aliases when using Many2Many persister.
2013-08-21 20:56:18 -07:00
Guilherme Blanco
09d51f9df5
Fixing missing table aliases when using Many2Many persister.
2013-08-21 23:39:40 -04:00
Guilherme Blanco
44f9952063
Merge pull request #763 from Padam87/entgenparenttrait
...
Entity generator - trait in parent class
2013-08-20 05:38:02 -07:00
Adam Prager
b041c22814
Entity generator - trait in parent class
2013-08-20 12:15:17 +02:00
Christian Stoller
a765f2e3b6
added yaml mapping documentation of uniqueConstraint
2013-08-20 11:17:04 +02:00
Guilherme Blanco
cc83ac6ce8
Centralize InputParameter SQL generation.
2013-08-19 00:33:45 -04:00
Guilherme Blanco
43fc8bafa7
DDC-1858 Added missing support to ResultVariable in LikeExpression.
2013-08-18 23:52:32 -04:00
Mark Fox
29366bb9c7
Updated require version and my earlier errors dissolved
...
As stated, the tutorial was written for 2.4.x, but the composer.json settings proffered would install 2.3.4, which has a different enough API that basic parts of the tutorial code would fail.
2013-08-17 21:15:03 -07:00
Mark Fox
c89258a0ea
fixed spelling mistake "bootsrapped"
2013-08-17 14:25:37 -07:00
Mark Fox
3405659eba
Update getting-started.rst
...
The inline cli-config.php, bootstrap.php examples were out of sync with Doctrine 2.4.x — I referenced https://github.com/doctrine/doctrine2-orm-tutorial/ for correct examples
2013-08-17 14:07:29 -07:00
Guilherme Blanco
605c32dbb3
Merge pull request #758 from doctrine/DDC-2235
...
Fixed DDC-2235.
2013-08-15 21:36:22 -07:00
Guilherme Blanco
f674445486
Fixed DDC-2235.
2013-08-16 00:07:06 -04:00
Marco Pivetta
b038e6b083
Merge pull request #757 from mnapoli/patch-3
...
Update resolve-target-entity-listener.rst
2013-08-14 04:22:50 -07:00
Matthieu Napoli
ad2ae4c4b4
Update resolve-target-entity-listener.rst
...
Another syntax highlighting fix
2013-08-14 12:14:02 +02:00
Guilherme Blanco
eaeeee7740
Merge pull request #756 from peterjmit/master
...
Make yaml/xml configuration for "AttributeOverride" and "AssociationOverride" more discoverable
2013-08-13 14:43:22 -07:00
Guilherme Blanco
6e265686ec
Merge pull request #755 from shieldo/patch-2
...
corrected English grammar in docblocks
2013-08-13 14:42:52 -07:00
Peter Mitchell
c933ac1a4a
Update override field mapping tut
...
* Added reference to override section of inheritance-mapping.rst
* Added link to yaml/xml examples in override-field-association-mappings-in-subclasses.rst
2013-08-13 16:08:42 -04:00
Douglas Greenshields
494ab1fc2b
corrected English grammar in docblocks
2013-08-13 20:45:04 +01:00
Marco Pivetta
6372e60086
Merge pull request #754 from mnapoli/patch-3
...
Fixed syntax highlighting in working-with-associations.rst
2013-08-13 05:40:48 -07:00
Matthieu Napoli
036547e956
Update working-with-associations.rst
...
Fixed syntax highlighting
2013-08-13 14:39:17 +02:00
Guilherme Blanco
7f1c1d2b4a
Fixed DDC-2506 by manually updating code. Closes PR #708 .
2013-08-13 01:07:34 -04:00
Guilherme Blanco
0ae8aa36d7
Merge pull request #753 from 51systems/master
...
JoinedSubclassPersister doesn't properly bind on some versions of php
2013-08-11 20:11:11 -07:00
Dustin Thomson
27bae51fa0
Modified executeInserts method in JoinedSubclassPersister to only check for the presence of columns in a composite primary key
2013-08-11 19:41:10 -06:00
Benjamin Eberlei
b6bf47a148
Merge pull request #716 from Lumbendil/append-paginator-tree-walker
...
Appending the Paginator tree walker hint
2013-08-10 13:02:16 -07:00
Benjamin Eberlei
acb7dfb320
Merge pull request #729 from dbu/not-lifecycle-callback-hint
...
add missing hint about lifecycle callback
2013-08-10 13:00:00 -07:00
Benjamin Eberlei
1c8fa12b64
Merge branch 'DDC-2542'
2013-08-10 17:01:13 +02:00
Roger Llopart Pla
5a7efa2895
Fixed name colision.
2013-08-10 16:58:07 +02:00
Roger Llopart Pla
e755fe7842
Added a test which verifies that the tree walkers are kept.
2013-08-10 16:58:07 +02:00
Roger Llopart Pla
1bc6140394
Added docblock.
2013-08-10 16:58:07 +02:00
Roger Llopart Pla
7f1becf283
Appending the Paginator tree walker hint, instead of removing all the other hints.
2013-08-10 16:58:07 +02:00
Benjamin Eberlei
95af021ed9
Merge pull request #737 from Koc/fix-schema-validator-master
...
Skip not mapped public properties in SchemaValidator
2013-08-10 07:27:45 -07:00
Benjamin Eberlei
610e18949b
Merge pull request #744 from jbruni/patch-1
...
Corrected PHP type for "decimal" mapping type
2013-08-10 07:23:50 -07:00
Guilherme Blanco
5f5c0ffc32
Fixing pgsql test.
2013-08-08 23:57:41 -04:00
Guilherme Blanco
7853fb8529
Merge pull request #752 from doctrine/PgSqlSchemaFix
...
ORM side fixes.
2013-08-08 19:43:53 -07:00
Guilherme Blanco
b314476599
ORM side fixes.
2013-08-08 22:01:26 -04:00
Guilherme Blanco
0cb89435b5
Merge pull request #751 from doctrine/PostLoadCanQuery
...
Added coverage for querying support during postLoad.
2013-08-08 18:57:42 -07:00
Guilherme Blanco
3ec267e8a6
Added coverage for querying support during postLoad.
2013-08-08 20:53:11 -04:00
Fabio B. Silva
0a42401a43
[DDC-2572] Fix ResolveTargetEntityListener subscription example
2013-08-08 19:13:13 -04:00
Konstantin.Myakshin
3c1fd9a3a9
Skip not mapped public properties in SchemaValidator
2013-08-07 01:18:15 +03:00
Guilherme Blanco
34b855e253
Merge pull request #748 from makhov/master
...
Add hour to DATE_ADD and DATE_SUB
2013-08-06 14:50:14 -07:00
J. Bruni
14bc65bae7
Updated EntityGeneratorTest::testEntityTypeAlias
2013-08-06 11:23:15 -03:00
amakhov
d8fcdc0c54
Add hour to DATE_ADD and DATE_SUB. Excepcion message fix
2013-08-06 12:40:30 +04:00
amakhov
dd975fe53d
Add hour to DATE_ADD and DATE_SUB
2013-08-06 12:20:22 +04:00
Marco Pivetta
97762d21a4
Merge pull request #747 from bronze1man/pr-file-mode
...
fix some file mode 755->644
2013-08-05 23:41:30 -07:00
bronze1man
97d9ba62bb
fix some file mode 755->644
2013-08-06 14:12:05 +08:00
Guilherme Blanco
094236d4e0
Merge
2013-08-06 01:49:00 -04:00
Guilherme Blanco
7ec59878a1
Added postLoad behavioral event coverage as a set of functional test.
2013-08-06 01:47:42 -04:00
Guilherme Blanco
354d7050dc
Merge pull request #720 from bakura10/fix-paginator
...
Allow to have non-distinct queries
2013-08-05 20:59:12 -07:00
Guilherme Blanco
ea44ee1d55
Merge pull request #745 from jbruni/patch-2
...
Update basic-mapping.rst
2013-08-05 20:57:26 -07:00
Guilherme Blanco
e0fd377828
Removed ticket that was breaking the build. DDC-2524 is a circular dependency that is impossible to be fixed with our current codebase.
2013-08-03 19:03:10 -04:00
Guilherme Blanco
36e7e3ccde
Updated documentation.
2013-08-03 17:40:48 -04:00
Guilherme Blanco
d9c1782a4f
Properly fixed DDC-1858. Added support for ResultVariable in NullComparisons while using HavingClause.
2013-08-03 17:38:55 -04:00
J Bruni
13c1efb240
Update basic-mapping.rst
...
The attribute name is "name", not "column", isn't it?
2013-08-03 11:26:37 -03:00
J. Bruni
15c2c4dd23
Updated EntityGeneratorTest::testEntityTypeAlias
2013-08-03 10:44:02 -03:00
J Bruni
3c613b9c02
Corrected PHP type for "decimal" mapping type
...
"Basic Mapping" documentation says:
"decimal: Type that maps a SQL DECIMAL to a PHP string."
2013-08-03 05:44:15 -03:00
Christian Morgan
c715d91dc7
Updates based on feedback from Ocramius
...
Addresses all comments made so far, except the one about persists/updates
2013-08-01 17:56:45 +01:00
Guilherme Blanco
a19106b03d
Merge pull request #731 from austinsmorris/PersistentCollection-initialize-coll
...
[DDC-2564] - PersistentCollection - initialize coll
2013-07-30 22:36:15 -07:00
Guilherme Blanco
b070676797
Merge pull request #743 from doctrine/DDC-2524
...
Added coverage to DDC-2524. Updated DDC-1719 to fix related DBAL bug.
2013-07-30 22:29:44 -07:00
Guilherme Blanco
b3d0ad7a87
Added coverage to DDC-2524. Updated DDC-1719 to fix related DBAL bug.
2013-07-31 01:24:02 -04:00
Guilherme Blanco
08e38858ed
Merge pull request #741 from doctrine/DDC-1884
...
Fixed DDC-1884.
2013-07-30 10:48:37 -07:00
Guilherme Blanco
157588f6dc
CS fixes.
2013-07-30 12:11:08 -04:00
Christian Morgan
d5bc48623a
Cleaned up events.rst
...
Was a mix-up between TestEventSubscriber and EventTest (e.g. the definition of TestEventSubscriber referenced TestEvent::preFoo, which did not exist). To clarify this I've renamed EventTest to TestEvent.
Tried to clarify the text in the Naming Convention section.
Added note that onClear is not a lifecycle callback.
Tried to clarify the definition of Lifecycle Callbacks.
Separated key/value descriptions into XML and YAML parts since the details are different
Added note in Implementing Event Listeners section that since 2.4 you do have access to EntityManager and UnitOfWork from lifecycle callbacks.
Added example about how to use the computed changeset to modify a primitive value in preUpdate section
Added naming convention example to Entity listeners class section
The other changes are typos and small fixes.
2013-07-30 14:00:17 +01:00
Guilherme Blanco
c7b4c9bf0f
Fixed DDC-1884.
2013-07-30 01:29:34 -04:00
Guilherme Blanco
0e010994a7
Merge pull request #740 from doctrine/FilterCollectionEnhancement
...
Synchronized support of FilterCollection with ODM by adding missing method
2013-07-29 18:44:10 -07:00
Guilherme Blanco
d4814dec42
Synchronized support of FilterCollection with ODM by adding missing method.
2013-07-29 21:24:08 -04:00
Guilherme Blanco
7055ccbf9b
Merge pull request #739 from FabioBatSilva/DDC-2579
...
Fix DDC-2579
2013-07-29 16:54:30 -07:00
Fabio B. Silva
1fbe1ffc5a
fix DDC-2579
2013-07-29 19:31:44 -04:00
Guilherme Blanco
a53fe14fa2
Merge pull request #717 from hackedd/patch-1
...
Allow query parameters starting with an underscore
2013-07-29 13:37:51 -07:00
Guilherme Blanco
8d13601e39
Merge pull request #738 from doctrine/VolatileQueryHydrators
...
Modified Hydrators to be per-query instances instead of a singleton-like approach
2013-07-29 08:31:38 -07:00
Guilherme Blanco
2dd73d4def
Kept BC.
2013-07-29 10:46:47 -04:00
Christian Morgan
7535e9664e
Update getting-started.rst
...
Replaced ``class::$field`` with ``class#field`` to match Doctrine style
Cleaned up three paragraphs mentioned in https://github.com/doctrine/doctrine2/pull/734
2013-07-29 10:42:10 +01:00
Guilherme Blanco
c28b457221
Modified Hydrators to be per-query instances instead of a singleton-like approach.
2013-07-28 20:30:42 -04:00
Guilherme Blanco
eea8572238
Merge pull request #735 from FabioBatSilva/fix-proxy-performance-test
...
Fix proxy performance test
2013-07-27 07:53:18 -07:00
fabios
69d4fdda1b
Fix proxy performance test
2013-07-26 17:59:50 -04:00
Christian Morgan
bc7d06fe59
Updated method documentation to use # for instance methods instead of ::
2013-07-26 22:21:27 +01:00
Christian Morgan
7bc18d7888
Cleaned up documentation
...
Cleaned up documentation, tweaked some of the grammar, changed class#method() references to class::method(), added warning about performance impact of lazy loading
2013-07-26 16:16:24 +01:00
Marco Pivetta
d7881a1ec2
Merge pull request #733 from Lumbendil/master
...
Update Parser.php
2013-07-24 04:13:12 -07:00
Roger Llopart Pla
9b574ad53b
Update Parser.php
...
Fix the docummentation for Parser::Literal()
2013-07-24 13:07:06 +02:00
Austin Morris
5fc1184a49
convert PersistentCollection functional tests to unit tests
2013-07-23 09:40:46 -04:00
Austin Morris
0083cb8ca6
remove redundant require_once for TestInit.php
2013-07-23 09:01:01 -04:00
Guilherme Blanco
6f39a426a7
Merge pull request #732 from trsteel88/patch-1
...
Update working-with-associations.rst
2013-07-22 20:22:37 -07:00
trsteel88
23cc3ea4bc
Update working-with-associations.rst
...
Always use the constant for sorting. If you use 'asc' it will not work.
2013-07-23 12:30:33 +10:00
Austin Morris
1c8ae50557
do not initialize coll on add()
2013-07-22 18:54:02 -04:00
Austin Morris
6bae2eac29
Initialize coll when using Collection methods inside PersistentCollection
2013-07-22 14:42:03 -04:00
Austin Morris
5fd844d73e
PersistentCollection - initialize coll - create failing tests
2013-07-22 14:39:00 -04:00
Marco Pivetta
4bc8f7be16
Merge pull request #728 from armetiz/patch-1
...
Color message like the update tools
2013-07-22 08:19:50 -07:00
Thomas Tourlourat
4882ff1ef5
Add info tag around ATTENTION
2013-07-22 17:11:53 +02:00
Marco Pivetta
8d2826c633
Merge pull request #730 from NicolasN/patch-1
...
To avoid "SpacingAfterParams" error with PHPCS Symfony2 coding standard
2013-07-22 02:17:53 -07:00
Nicolas Nutten
eba933bb47
To avoid "SpacingAfterParams" error with PHPCS Symfony2 coding standard
...
Hello,
I added two blank lines in comments two avoid the following error with PHPCS Symfony2 coding standard :
Error Code: SpacingAfterParams
Error Description: Last parameter comment requires a blank new line after it.
2013-07-22 10:56:18 +02:00
David Buchmann
b4e9dafd10
add missing hint about lifecycle callback
2013-07-22 10:23:47 +02:00
Thomas Tourlourat
0c3581a1f8
Color message like the update tools
2013-07-19 11:33:35 +02:00
Guilherme Blanco
fbbb161987
Merge pull request #719 from tristanlins/fix/entity-generator-extensibility
...
Access properties via static:: instead of self::.
2013-07-17 17:18:01 -07:00
Guilherme Blanco
2a5652c807
Merge pull request #723 from morganprecision/patch-1
...
Remove extra semicolon before ->setParameter() calls
2013-07-15 16:38:05 -07:00
Eugene Morgan
0a151f2474
Remove extra semicolon before ->setParameter() calls
2013-07-15 15:01:33 -05:00
Marco Pivetta
0aed9595c3
Merge pull request #721 from alex88/patch-1
...
Updated batch-processing link extension
2013-07-11 04:56:13 -07:00
Alessandro Tagliapietra
d249a22f74
Updated batch-processing link extension
...
I've changed the batch processing link adding .html else the link is broken
2013-07-11 11:52:26 +02:00
Michaël Gallego
3f112db725
Allow to have non-distinct queries
2013-07-09 17:31:30 +02:00
Guilherme Blanco
78fc129614
Merge pull request #632 from Padam87/entgentrait
...
entity generator - ignore trait properties and methods
2013-07-07 12:37:55 -07:00
Tristan Lins
641774630b
Access properties via static:: instead of self::.
...
The properties of EntityGenerator are now protected instead of private.
But this does not make sense until they are accessed with static::.
Otherwise the templates cannot be overwritten within a sub class.
2013-07-05 13:40:57 +02:00
Paul Hooijenga
b5394fc5a0
Add test for query paremeters starting with underscore
2013-07-05 09:21:50 +02:00
Roger Llopart Pla
9f2994f462
Fixed name colision.
2013-07-04 08:29:46 +00:00
Paul
6aa58d9939
Allow query parameters starting with an underscore
2013-07-04 10:12:36 +02:00
Roger Llopart Pla
91638aadcf
Added a test which verifies that the tree walkers are kept.
2013-07-03 11:18:19 +00:00
Roger Llopart Pla
981fcb2c21
Added docblock.
2013-07-03 12:24:57 +02:00
Roger Llopart Pla
90a41fba8b
Appending the Paginator tree walker hint, instead of removing all the other hints.
2013-07-03 12:14:16 +02:00
Marco Pivetta
dc2be816a8
Merge pull request #713 from dave1010/grammar-fix
...
Quick grammar fix
2013-07-02 10:20:28 -07:00
Dave Hulbert
5e700db6d3
Fix grammar in CreateCommand
2013-07-02 16:29:36 +01:00
Dave Hulbert
c57f2c39f6
Fix grammar in DropCommand
2013-07-02 16:28:58 +01:00
Benjamin Eberlei
29d6da0fa0
Merge pull request #703 from shulcsm/patch-1
...
Clear visitedCollections
2013-06-30 01:38:02 -07:00
Benjamin Eberlei
69fe5c48f4
Merge pull request #710 from sandermarechal/extra-lazy-get-fix
...
Fix extra lazy get
2013-06-30 01:37:26 -07:00
Benjamin Eberlei
8e1111c8d3
Merge pull request #711 from FabioBatSilva/coveralls
...
Coveralls code coverage
2013-06-27 23:52:15 -07:00
Fabio B. Silva
e4bccdc7b3
coveralls code coverage
2013-06-27 20:18:21 -04:00
Sander Marechal
06ed21e883
Remove extra-lazy-get for ManyToMany relation
2013-06-27 14:19:39 +02:00
Sander Marechal
5635fa60a4
Check owning entitiy on extra lazy get with OneToMany relation
2013-06-27 14:17:41 +02:00
Benjamin Eberlei
4d93a4950b
Merge branch 'DDC-2530'
2013-06-25 19:34:22 +02:00
Benjamin Eberlei
a91050e7f4
[DDC-2350] Eager Collections are not marked as initialized, leading to multiple queries being executed.
2013-06-25 19:34:12 +02:00
Guilherme Blanco
20e5d98b7b
Merge pull request #640 from denkiryokuhatsuden/patch-1
...
[Paginator]Add hidden field ordering for postgresql
2013-06-24 19:23:36 -07:00
Benjamin Eberlei
2f6e914d64
Dont allow failures in 5.5 anymore
2013-06-24 08:42:17 +02:00
Guilherme Blanco
457036aacb
Merge pull request #702 from FabioBatSilva/DDC-2459
...
[DDC-2459]ANSI compliant quote strategy
2013-06-23 14:26:49 -07:00
Guilherme Blanco
2ce72f38a2
Merge pull request #705 from FabioBatSilva/DDC-2519
...
[DDC-2519] Partial association identifier
2013-06-23 14:25:58 -07:00
Fabio B. Silva
1cff8b4d98
Fix DDC-2519
2013-06-21 16:07:09 -04:00
Fabio B. Silva
a165f63c8c
ANSI compliant quote strategy
2013-06-21 16:05:59 -04:00
Benjamin Eberlei
eaf8fd3c34
Merge pull request #706 from sandermarechal/extra-lazy-get
...
[DDC-1398] Extra-lazy get for indexed associations
2013-06-20 05:26:52 -07:00
Sander Marechal
70427871ce
Extra test for indexBy identifier versus indexBy other fields
2013-06-20 14:20:00 +02:00
Sander Marechal
2879162015
No need to lookup metadata
2013-06-20 14:00:58 +02:00
Sander Marechal
3b92cfac5a
Use find() if the indexBy field is the identifier
2013-06-20 13:45:38 +02:00
Sander Marechal
53c9ffda30
Get rid of variable
2013-06-20 10:20:16 +02:00
Sander Marechal
647c5e2cad
Test actual data returned by get()
2013-06-20 10:18:08 +02:00
Sander Marechal
3555007f08
Return NULL for non-existent keys
...
The load() function already returns just one entity or NULL, so
the current() is not needed and the result can be returned directly.
2013-06-20 10:09:52 +02:00
Sander Marechal
523697d0b6
[DDC-1398] Extra-lazy get for indexed associations
...
If an association is EXTRA_LAZY and has an indexBy, then
you can call get() without loading the entire collection.
2013-06-20 09:29:56 +02:00
Benjamin Eberlei
1382d766b0
Merge pull request #704 from liuggio/patch-1
...
added badges stable release and total downloads
2013-06-19 09:02:33 -07:00
Giulio De Donato
c743bb938b
added badges
2013-06-19 16:40:57 +02:00
shulcsm
3340234785
Clear visitedCollections
...
Visited collections are cleared only in commit(). Commit clears up only if it actually has something to do. Processing large amounts of records without changing them cause visitedCollections to grow without any way of clearing.
2013-06-19 16:34:44 +03:00
Marco Pivetta
a39ceb3159
Merge pull request #701 from rbroen/patch-2
...
list_bugs.php needs to call to getters for protected vars
2013-06-17 02:41:29 -07:00
Robert Broen
6ff5043ce8
list_bugs.php needs to call to getters for protected vars
...
list_bugs.php needs to call to getters for protected vars. This was changed in the "getting-started" code repository, but not in the "getting-started" tutorial.
2013-06-17 11:36:09 +02:00
Marco Pivetta
1a958f70fd
Merge pull request #700 from rbroen/patch-2
...
Update getting-started.rst
2013-06-17 01:39:43 -07:00
Robert Broen
184e8eb26c
Update getting-started.rst
...
The tutorial assumes Doctrine 2.4
2013-06-17 10:31:06 +02:00
Guilherme Blanco
7903a2b513
Merge pull request #695 from doctrine/RepositoryFactory
...
Implemented support for RepositoryFactory.
2013-06-14 09:19:43 -07:00
Guilherme Blanco
52b3fc1fc3
Updated since php doc tag.
2013-06-14 12:07:28 -04:00
Guilherme Blanco
09d67b10b0
Merge pull request #697 from michaelperrin/patch-1
...
Fix phpDoc syntax in ClassMetadataInfo.php
2013-06-14 06:57:14 -07:00
Adam Prager
73e2aa54ef
moved php version check
2013-06-14 10:07:05 +02:00
Michaël Perrin
37d7df6ac4
Fix phpDoc syntax in ClassMetadataInfo.php
2013-06-14 11:00:17 +03:00
Guilherme Blanco
3488049c18
Reduced granularity of DefaultRepositoryFactory reference to ObjectRepository instances, in cases where consumers are completely rewrote EntityRepository.
2013-06-13 23:59:08 -04:00
Guilherme Blanco
a66fc03441
Reducing dependency on RepositoryFactory by providing EntityManager as a getRepository argument.
2013-06-13 23:53:53 -04:00
Guilherme Blanco
37e7e841c3
Fixed wrong interface.
2013-06-13 23:31:18 -04:00
Guilherme Blanco
f2f1d8986c
Merge pull request #694 from FabioBatSilva/DDC-2478
...
[DDC-2478] Support null association comparison
2013-06-13 20:12:48 -07:00
Guilherme Blanco
7eb744126b
Implemented support for RepositoryFactory.
2013-06-13 21:47:40 -04:00
Fabio B. Silva
f16c8e3efe
Fix DDC-2478
2013-06-13 16:44:02 -04:00
Guilherme Blanco
6ef48561ba
Merge pull request #688 from sellingsource/master
...
Implement QuoteStrategy on SqlWalker walkRangeVariableDeclaration
2013-06-12 12:03:24 -07:00
Guilherme Blanco
0a90279a99
Merge pull request #693 from doctrine/hotfix/DDC-2214
...
Adding failing test for DDC-2214
2013-06-12 12:00:31 -07:00
Marco Pivetta
a1355d0bb9
Adding failing test for DDC-2214
...
Parameters being bound to an SQL query should have the same type as
the identifier of the objects being bound to the placeholders of a
DQL query - this is currently broken with proxies, as this test
demonstrates.
2013-06-12 20:51:45 +02:00
Guilherme Blanco
6937061b23
Merge pull request #690 from FabioBatSilva/DDC-2494
...
[DDC-2494] Apply type conversion to meta columns
2013-06-12 11:47:26 -07:00
Fabio B. Silva
c1e688fc81
drop useless support for associations
2013-06-12 10:30:51 -04:00
Fabio B. Silva
d961028b14
small optimization
2013-06-12 10:30:51 -04:00
Fabio B. Silva
d685f592fe
Fix DDC-2494
2013-06-12 10:30:51 -04:00
Guilherme Blanco
b15758bb42
DDC-2476 Commented check under PostgreSQL.
2013-06-12 02:29:08 -04:00
Guilherme Blanco
3d86c82a7f
DDC-2476 Better approach for reverse engineer. Some refactoring done to driver.
2013-06-12 02:00:36 -04:00
Guilherme Blanco
0d834d0bd4
DDC-2489 Added missing semicolon when dump-sql on schema update.
2013-06-12 00:31:25 -04:00
Guilherme Blanco
0248f743ba
Merge pull request #691 from 51systems/master
...
IDENTITY function fix for Joined Inheritance
2013-06-11 21:04:27 -07:00
Dustin Thomson
ed7a4bdcf3
Fix typo in test name
2013-06-11 18:38:05 -06:00
Dustin Thomson
529064aff2
Modified identity function to work with joined inheritance tables.
...
Added regression tests
2013-06-11 18:09:49 -06:00
Guilherme Blanco
4e99c5c127
DDC-1858 Added coverage to ticket. Functionality already implemented.
2013-06-11 01:21:47 -04:00
Guilherme Blanco
462173ad71
Merge pull request #689 from FabioBatSilva/DDC-1995
...
[WIP][DDC-1995 ] Support metadata class as parameter for instance of expression
2013-06-07 14:42:59 -07:00
Fabio B. Silva
710d0d1109
Fix DDC-1995
2013-06-07 17:24:05 -04:00
John Brown
4ef043fc3b
updating sql walker to use quote strategy in joins
2013-06-07 08:56:58 -07:00
John Brown
afb9c829e2
updating sql walker to use quote strategy in joins
2013-06-07 08:49:49 -07:00
John Brown
9bea612d74
Adding simple test to ensure quoting of table names still functions. Note: the funtionality of this change won't be noticiable unless a custom quote strategy is implemented
2013-06-06 15:51:23 -07:00
John Brown
77b905eaa8
Implement QuoteStrategy on SqlWalker walkRangeVariableDeclaration
...
Based on:
http://www.doctrine-project.org/jira/browse/DDC-1845
cb72219b11
2013-06-06 15:08:22 -07:00
Marco Pivetta
5c7b98b2a9
Merge pull request #687 from mnapoli/patch-3
...
Fixed rendering
2013-06-06 01:51:49 -07:00
Matthieu Napoli
424793c263
Fixed rendering
...
Fixed some broken rendering on http://docs.doctrine-project.org/en/latest/reference/yaml-mapping.html
2013-06-06 11:36:02 +03:00
Guilherme Blanco
753d63c2d4
Merge pull request #686 from FabioBatSilva/DDC-2475
...
[DDC-2475] Replace OrderBy mapping when OrderByClause is given
2013-06-04 22:03:53 -07:00
Fabio B. Silva
27511374ec
Fix DDC-2475
2013-06-04 23:50:43 -04:00
Marco Pivetta
3d6436c2f3
Merge pull request #683 from greg0ire/error_message_improvement
...
Explicitely state what the problem is
2013-06-03 03:37:38 -07:00
Grégoire Paris
a986fe013e
Explicitely state what the problem is
...
People like me think the problem is that there is no association
mapping, when the problem in fact could be that there also is a field
mapping on the property.
This message makes it clearer why we are getting an error message.
2013-06-03 12:07:08 +02:00
Marco Pivetta
4e8b787d07
Merge pull request #679 from ajgarlag/getting-started
...
Fix getting started doc to work with current version
2013-05-28 00:36:17 -07:00
Antonio J. García Lagar
c64c149ebf
Fix getting started doc to work with current version
2013-05-28 08:57:17 +02:00
Benjamin Eberlei
f269ecc3ac
Bump dev version to 2.4.0
2013-05-27 21:47:16 +02:00
Benjamin Eberlei
6bc18402e2
Release 2.4.0-RC1
2013-05-27 21:47:16 +02:00
Marco Pivetta
3d0ac62059
Merge pull request #678 from jbafford/duplicate-words-fix
...
Fix an instance of doubled words in the docs
2013-05-27 08:51:38 -07:00
John Bafford
0e29fe871a
Fix an instance of doubled words
2013-05-27 11:20:26 -04:00
Alexander
e5de0dad7e
Merge remote-tracking branch 'asm89/ddc-2417'
...
* asm89/ddc-2417:
[DDC-2471] Fix EQ/NEQ null handling of criteria
2013-05-26 09:10:18 +02:00
Alexander
66a842c143
[DDC-2471] Fix EQ/NEQ null handling of criteria
2013-05-26 09:04:19 +02:00
Benjamin Eberlei
6548947df5
Merge pull request #666 from FabioBatSilva/DDC-2429
...
[DDC-2429] Fix xsd definition
2013-05-25 23:01:13 -07:00
Benjamin Eberlei
20b5ab26e7
Merge pull request #669 from hason/many_to_many
...
Fixed generating column names for self referencing entity.
2013-05-25 22:16:48 -07:00
Benjamin Eberlei
a36f84eeb5
Merge pull request #672 from hell0w0rd/simplification_example
...
Simplification example
2013-05-25 22:00:59 -07:00
Benjamin Eberlei
e8b3598751
Merge pull request #673 from hell0w0rd/namespace_base_commands_names
...
Namespace based command names
2013-05-25 21:59:32 -07:00
Gusakov Nikita
1f4a65f3e0
add debug variable and check for loader
2013-05-20 17:08:20 +04:00
Torben
997f22fbb9
add shortcut for force
2013-05-20 10:06:11 +02:00
Gusakov Nikita
384dfa87ab
add docs
2013-05-18 04:00:28 +04:00
Gusakov Nikita
6bb3184dbf
fix bc
2013-05-18 02:40:18 +04:00
Gusakov Nikita
4c1869dca0
ready
2013-05-18 02:09:07 +04:00
Gusakov Nikita
ec57306efe
remove comment about cli-config
2013-05-18 01:44:47 +04:00
Gusakov Nikita
dca0881d94
forget add changes
2013-05-18 01:42:55 +04:00
Gusakov Nikita
7430320bac
ready
2013-05-18 01:40:05 +04:00
Benjamin Eberlei
c9d9b68fa9
Merge pull request #671 from FabioBatSilva/DDC-2435
...
[DDC-2435] Fix column name with numbers and non alphanumeric characters.
2013-05-17 09:34:00 -07:00
Fabio B. Silva
f92214997f
[DDC-2435] Fix column name with numbers and non alphanumeric characters.
2013-05-17 13:02:46 -03:00
Benjamin Eberlei
65886fdfea
Merge pull request #670 from FabioBatSilva/DDC-2451
...
[DDC-2451] Fix entity listeners serialization
2013-05-17 08:09:28 -07:00
Fabio B. Silva
1e95110b08
Add missing mapping files
2013-05-17 11:59:28 -03:00
Fabio B. Silva
1d7c72cc06
[DDC-2451] Fix test assert
2013-05-17 11:55:36 -03:00
Fabio B. Silva
4d6cef1ff6
[DDC-2451] Fix entity listeners serialization
2013-05-17 11:42:11 -03:00
Martin Hasoň
bef5b585cb
Fixed generating join column names for self referencing entity.
2013-05-17 16:28:45 +02:00
Fabio B. Silva
b147c472be
[DDC-2429] Fix xsd definition
2013-05-13 11:04:36 -03:00
Benjamin Eberlei
eb1a162cbc
Fix regression in DDC-2430.
2013-05-10 23:31:27 +02:00
Benjamin Eberlei
bf9673203c
Merge pull request #639 from goetas/indexby-metadata
...
Added abillity to use metacolumn as indexBy
2013-05-09 23:53:26 -07:00
Benjamin Eberlei
fa75856d5f
Merge pull request #663 from doctrine/hotfix/DDC-2432
...
Hotfix for DDC-2432
2013-05-09 14:37:55 -07:00
Marco Pivetta
22c9f6ebec
applying required fixes for DDC-2432
2013-05-09 21:14:58 +02:00
Marco Pivetta
07c207081e
Adding failing test to demonstrate DDC-2432
...
Loading proxies with invalid identifiers will currently mark them as initialized regardless of the failure
2013-05-09 21:11:10 +02:00
Benjamin Eberlei
762f43c3dc
Merge branch 'DDC-2280'
2013-05-09 18:15:48 +02:00
Benjamin Eberlei
b53f4fd4cc
[DDC-2280] length attribute in <id> was not converted.
2013-05-09 18:15:41 +02:00
Benjamin Eberlei
665efad039
Merge branch 'master' of github.com:doctrine/doctrine2
2013-05-09 16:55:38 +02:00
Benjamin Eberlei
540af2fd2a
Merge pull request #662 from jakzal/code-block-fix
...
Fixed a code block.
2013-05-09 07:27:35 -07:00
Benjamin Eberlei
1a0adecf29
[DDC-2335] Add note about filtering schema by regexp expression to relevant commands help output.
2013-05-09 16:24:19 +02:00
Jakub Zalas
97622b57bd
Fixed a code block.
...
Sphinx does not like the way code was indented. Building the documentation raises the following error:
en/cookbook/resolve-target-entity-listener.rst:121: ERROR: Unexpected indentation.
2013-05-09 15:19:58 +01:00
Benjamin Eberlei
b9a0a19607
Merge pull request #661 from HarmenM/patch-1
...
Update annotations-reference.rst
2013-05-09 05:10:26 -07:00
HarmenM
f8efd85ae6
Update annotations-reference.rst
...
Added missing @JoinColumns in the index
2013-05-09 14:49:38 +03:00
Benjamin Eberlei
dc674f809f
Mention BC BREAK in PersistentCollection#matching() more prominently.
2013-05-09 13:40:14 +02:00
Benjamin Eberlei
30f90a6f49
Merge branch 'DDC-2430'
2013-05-09 13:24:45 +02:00
Benjamin Eberlei
6d5afb18bc
[DDC-2430] Prevent Criteria queries using the ID of an assocation on PersistentCollections, as the in-memory ArrayCollection does not work with this kind of query. Attention this is a BC-BREAK, that is necessary to fix potentially very hard to debug bugs. Therefore it is not merged back into 2.3
2013-05-09 13:24:36 +02:00
Benjamin Eberlei
d3cd10d926
Merge branch 'DDC-2387'
2013-05-09 12:10:45 +02:00
Benjamin Eberlei
7220c3c125
[DDC-2387] Fix DatabaseDriver not working with combinations of composite/association keys.
2013-05-09 12:10:37 +02:00
Benjamin Eberlei
86277def7e
Merge branch 'DDC-2437'
2013-05-09 11:03:21 +02:00
Benjamin Eberlei
abe8ef6778
Merge branch 'DDC-2423'
2013-05-09 10:55:20 +02:00
Benjamin Eberlei
e3b8ce7737
[DDC-2423] Fixed bug with EntityGenerator not generating fetch="" attribute in association annotations.
2013-05-09 10:55:12 +02:00
Benjamin Eberlei
acbafd081b
Add documentation to EntityManager about instantiation, decoration over inheritance, and some generic introduction.
2013-05-09 10:23:12 +02:00
Vladislav Vlastovskiy
3997d0df87
Added test complex inner join with indexBy
2013-05-09 03:32:28 +04:00
Vladislav Vlastovskiy
33888f1b08
Swapped places indexBy and condition in accordance with EBNF
2013-05-09 03:30:48 +04:00
Benjamin Eberlei
c8bcdb4b61
Merge pull request #524 from lstrojny/feature/entity-manager-decorator
...
EntityManagerDecorator base class as an extension point for EntityManager
2013-05-04 06:02:39 -07:00
Benjamin Eberlei
8e8560b276
Merge pull request #537 from Powerhamster/joined-composite-keys
...
fixed problems with joined inheritance and composite keys
2013-05-04 05:59:02 -07:00
Benjamin Eberlei
937473329f
Merge branch 'DDC-2267'
2013-05-04 13:38:42 +02:00
Benjamin Eberlei
5e19e1bed3
[DDC-2267] Allow EntityManager#flush($entity) to be called on entities scheduled for removal.
2013-05-04 13:38:30 +02:00
Benjamin Eberlei
3c74491720
Merge branch 'DDC-2426'
2013-05-04 12:58:25 +02:00
Benjamin Eberlei
9adc45767d
[DDC-2426] Missing length attribute in doctrine-mapping.xsd for <id> tag.
2013-05-04 12:58:06 +02:00
Benjamin Eberlei
59fff4ddef
Fix Docs build
2013-05-03 13:32:42 +02:00
Benjamin Eberlei
6d02c7e1a5
[DDC-2136] Fix exporting to YAML and XML with assocation keys.
2013-05-01 23:10:13 +02:00
Benjamin Eberlei
d33e0a3488
Merge branch 'DDC-1998'
2013-05-01 20:33:49 +02:00
Benjamin Eberlei
0864ab8ada
[DDC-1998] Pass types to Connection#delete() to allow custom conversions to happen.
2013-05-01 20:30:45 +02:00
Benjamin Eberlei
7d53cb2aeb
Merge branch 'DDC-1984'
2013-05-01 19:39:30 +02:00
Benjamin Eberlei
131164b7f6
[DDC-1984] Throw exception if passing null into UnitOfWork#lock() - which can happen when EntityManager#find() tries to lock entity that was just deleted by another process.
2013-05-01 19:39:21 +02:00
Benjamin Eberlei
6c889eee64
Merge branch 'DDC-2106'
2013-05-01 18:46:54 +02:00
Benjamin Eberlei
640a8e58c7
[DDC-2106] Fix entity as parameter value when its managed but not yet with identifier.
2013-05-01 18:46:41 +02:00
Benjamin Eberlei
6505c96ec4
Simplify condition of previous commit ( 5cdc73e)
2013-05-01 10:58:44 +02:00
Benjamin Eberlei
760aaa67c4
Merge pull request #655 from FabioBatSilva/DDC-2409
...
[DDC-2409] Fix merge association STATE_NEW
2013-05-01 01:49:25 -07:00
Benjamin Eberlei
325387a6f2
Merge branch 'DBAL-483'
2013-05-01 10:42:35 +02:00
Benjamin Eberlei
1f08acb576
[DBAL-483] Pass default values to DBAL mapping layer correctly to fix default comparision bug.
2013-05-01 10:42:28 +02:00
Asmir Mustafic
7abf46af70
cascade remove persist on links
2013-04-29 11:03:55 +02:00
Asmir Mustafic
2ca24375e4
no lang
2013-04-29 10:32:40 +02:00
Asmir Mustafic
34adb16ee8
indexby ddc117 tests
2013-04-29 10:29:58 +02:00
Fabio B. Silva
5cdc73e13b
Fix DDC-2409
2013-04-28 16:54:44 -03:00
Benjamin Eberlei
d513e0f084
Merge pull request #653 from FabioBatSilva/DDC-2415
...
[DDC-2415] Fix CustomIdGenerator inheritance
2013-04-27 00:40:57 -07:00
Fabio B. Silva
7c2da2d5b8
Fix DDC-2415
2013-04-26 16:11:04 -03:00
Marco Pivetta
cc24ac496d
Merge pull request #652 from dannykopping/patch-1
...
Fixed entities path
2013-04-26 02:11:52 -07:00
Danny Kopping
408eef1356
Fixed entities path
...
In the tutorial, the user is told to create a new file in the '/src' folder, and the 'entities' folder is never referenced. Updating the SQLite schema according to the tutorial fails with the 'No Metadata Classes to process.' message. Changing the folder to '/src' fixes this, ostensibly.
2013-04-26 12:05:50 +03:00
Marco Pivetta
9791b2eb00
Merge pull request #651 from EuKov/patch-1
...
Fixed typo in SQLFilter (use statement ClassMetadata)
2013-04-23 10:50:01 -07:00
EuKov
99ec4dc72c
Fixed typo in SQLFilter (use statement ClassMetadata)
2013-04-23 20:46:19 +03:00
Marco Pivetta
3aae50cb59
Merge pull request #649 from calumbrodie/patch-1
...
Update coding standards in change tracking cookbook entry
2013-04-21 12:07:31 -07:00
Calum Brodie
a0a133b02c
Removed unneeded escape character
...
Removed backslash
2013-04-21 20:55:54 +02:00
Calum Brodie
c2967b35ff
Update coding standards
...
Removing underscores from property/method names and change use statements to PSR-2
2013-04-21 20:43:48 +02:00
Benjamin Eberlei
92b41e017a
[DDC-2407] Fix missing support for UUID and CUSTOM id generators in Exporter
2013-04-20 10:25:36 +02:00
Adam Prager
bf92a40171
skip test if php 5.3
2013-04-19 14:49:32 +02:00
Benjamin Eberlei
52b2e066c5
Merge pull request #611 from stefankleff/fix-eagerloading
...
Fixed typo in hints. Caused slow loading of eager entities.
2013-04-14 00:43:42 -07:00
Guilherme Blanco
e835175865
Merge pull request #646 from raykolbe/master
...
Oracle Pagination bug when ordering is present
2013-04-10 10:49:26 -07:00
Raymond Kolbe
27e23faa5a
Accompanying tests for PR #646
2013-04-10 13:07:09 -03:00
Raymond Kolbe
4bafcc5b31
Fix Oracle subquery ordering
...
See http://www.doctrine-project.org/jira/browse/DDC-1800 and http://www.doctrine-project.org/jira/browse/DDC-1958#comment-19969
2013-04-09 17:30:54 -03:00
Raymond Kolbe
b8b7afe576
Fix Oracle subquery ordering lost bug
...
See http://www.doctrine-project.org/jira/browse/DDC-1800 for a full description.
2013-04-09 17:00:06 -03:00
Benjamin Eberlei
142c20aad1
Work on the Tutorial
2013-04-09 00:00:16 +02:00
Stefan Kleff
e561f47cb2
Added constant
2013-04-08 11:27:22 +02:00
Adam Prager
b7b107b08a
moved test entities from sandbox
2013-04-07 16:26:05 +02:00
Benjamin Eberlei
d1f8e18d02
Enhance documentation on NEW() keyword. (ref DDC-1574)
2013-04-07 14:05:42 +02:00
Benjamin Eberlei
34374db56e
Enhance documentation on IDENTITY() for composite keys (ref DDC-2202)
2013-04-07 14:02:47 +02:00
Benjamin Eberlei
b2e29eaf97
Rework NativeSQL doc chapter and document SELECT clause generation (ref DDC-2055).
2013-04-07 14:01:27 +02:00
Fabio B. Silva
2ad6565632
Fix parenthesis example
2013-04-06 14:53:36 -03:00
Benjamin Eberlei
cef20890dc
Merge pull request #616 from FabioBatSilva/DDC-2252
...
[DDC-2252] Fix delete many-to-many composite key
2013-04-06 10:37:16 -07:00
Fabio B. Silva
8109db02b5
Document Parenthesis BC break.
2013-04-06 13:02:43 -03:00
Benjamin Eberlei
3fef8d7285
Merge pull request #621 from dbu/event-subscribers
...
[doc] adding some more doc and examples for lifecycle event listeners and subscribers
2013-04-06 08:04:24 -07:00
Benjamin Eberlei
fe238d03c8
Merge pull request #618 from FabioBatSilva/DDC-2188
...
[DDC-2188] Fix arithmetic priority
2013-04-06 07:56:36 -07:00
Benjamin Eberlei
3c4a9c8efa
Merge pull request #644 from pborreli/typos
...
Fixed typos
2013-04-06 07:49:04 -07:00
Pascal Borreli
30b050b44c
Fixed typos
2013-04-06 14:31:27 +00:00
Benjamin Eberlei
64b2ecfefc
[DDC-2224] Rewrite instanceof feature with parameter needle ClassMetadata breaks caching of queries.
2013-04-04 20:22:48 +02:00
Adam Prager
3b7b457d35
minor fixes
2013-04-04 20:07:21 +02:00
Marco Pivetta
edca8c88ea
Merge pull request #641 from bksunday/patch-1
...
Added yml example in ordered-associations.rst
2013-04-03 09:36:19 -07:00
Anthony
1278b79c79
Added yml example in ordered-associations.rst
...
And modified it to be in a configuration-block instead of separate code-block
2013-04-03 13:31:07 -03:00
denkiryokuhatsuden
7af84e79e5
Fixed postgresql hidden scalar sort
2013-04-03 17:22:31 +09:00
denkiryokuhatsuden
e54c11e3bb
Add test for postgresql hidden scalar sorting
2013-04-03 17:21:51 +09:00
denkiryokuhatsuden
786d904328
Revert "Add hidden field ordering for postgresql"
...
This reverts commit 3e8796f781 .
2013-04-03 17:14:31 +09:00
denkiryokuhatsuden
3e8796f781
Add hidden field ordering for postgresql
...
In postgresql environment, when some hidden fields are used in orderBy clause,
they're not property added because $rsm->scalarMappings don't have information about them.
2013-04-02 18:54:55 +09:00
Asmir Mustafic
3196b0c05a
missing new line
2013-04-02 10:14:24 +02:00
Asmir Mustafic
6fc18e330d
indexby metadata column
2013-04-02 10:04:15 +02:00
Adam Prager
b3414e3c1a
added unit test
2013-03-31 00:47:45 +01:00
Adam Prager
937ba6385e
fixed code duplication issue
2013-03-31 00:47:24 +01:00
Guilherme Blanco
9b0f252aff
Merge pull request #637 from choomz/patch-1
...
Update association-mapping.rst
2013-03-30 06:48:06 -07:00
Valentin Ferriere
2e8272e18f
Update association-mapping.rst
2013-03-29 16:39:55 +01:00
Guilherme Blanco
484d03a5bc
Merge pull request #636 from dustinmoorman/rst-file-documentation-fixes
...
Fixed typos in documentation.
2013-03-27 21:26:24 -07:00
Dustin Moorman
51bcda51c5
Fixed typos in documentation.
2013-03-27 22:43:58 -05:00
Benjamin Eberlei
9613f1d8cb
[DDC-93] Rename ReflectionProxy to ReflectionEmbeddedProperty, Add DQL test with Object and Array Hydration.
2013-03-27 21:45:16 +01:00
Benjamin Eberlei
879ab6e52b
[DDC-93] Show CRUD with value objects with current change tracking assumptions.
2013-03-27 07:44:47 +01:00
Adam Prager
9797177193
check if ReflectionClass::getTraits() method exists
2013-03-27 02:48:35 +01:00
Benjamin Eberlei
011776f02f
[DDC-93] Add some TODOs in code.
2013-03-27 00:18:21 +01:00
Benjamin Eberlei
0204a8b69a
[DDC-93] Implement first working version of value objects using a ReflectionProxy object, bypassing changes to UnitOfWork, Persisters and Hydrators.
2013-03-27 00:10:30 +01:00
Benjamin Eberlei
32988b3cdf
[DDC-93] Parse @Embedded and @Embeddable during SchemaTool processing to make parsing work.
2013-03-26 21:45:15 +01:00
Adam Prager
8898c91dfc
only check for traits when class exists
2013-03-26 21:28:09 +01:00
Adam Prager
8e3e2e770a
Revert "only use already existing reflections"
...
This reverts commit bb5bdcf0f4 .
2013-03-26 21:17:59 +01:00
Adam Prager
bb5bdcf0f4
only use already existing reflections
2013-03-26 21:14:52 +01:00
Benjamin Eberlei
02d34bbba6
[DDC-93] Started ValueObjectsTest
2013-03-26 20:55:55 +01:00
Adam Prager
521276f1ed
entity generator - ignore trait properties and methods
2013-03-26 20:52:57 +01:00
Guilherme Blanco
a4db7c8b42
Merge pull request #631 from aaronmu/master
...
Fix typo in one of the orderBy examples.
2013-03-26 09:18:01 -07:00
Aaron Muylaert
3e8dd1e45c
Update query-builder.rst
...
Fix typo in one of the orderBy examples.
2013-03-26 16:47:41 +01:00
Benjamin Eberlei
5ea9cf418a
Merge pull request #627 from chuanma/master
...
update document on Doctrine cache provider
2013-03-24 13:22:20 -07:00
Benjamin Eberlei
b7e09ecf98
Merge pull request #630 from Ocramius/hotfix/DDC-2359
...
Hotfix for DDC-2359
2013-03-24 12:23:34 -07:00
Benjamin Eberlei
7f26e9ac27
Bump dev version to 2.4.0
2013-03-24 19:58:19 +01:00
Benjamin Eberlei
827f1f84cb
Release 2.4.0-BETA1
2013-03-24 19:58:19 +01:00
Marco Pivetta
7afe5af73a
Fix for DDC-2359
2013-03-24 19:42:50 +01:00
Marco Pivetta
57020322cb
Adding failing test for DDC-2359
...
Doctrine\ORM\Mapping\ClassMetadataFactory#wakeupReflection is called twice
2013-03-24 19:40:53 +01:00
Guilherme Blanco
1f89d8ce2f
Merge pull request #629 from dustinmoorman/typo-fixes-in-basic-mapping-rst
...
Fixed typos in Doctrine Mapping Types section.
2013-03-24 09:28:16 -07:00
Guilherme Blanco
99a15377be
Merge pull request #628 from franmomu/patch-2
...
[Docs] Fix field name in inversedby parameter
2013-03-24 09:27:48 -07:00
Dustin Moorman
d4061ff41b
Fixed typos in Doctrine Mapping Types section.
2013-03-24 03:16:00 -05:00
Fran Moreno
10c48bad7b
[Docs] Fix field name in inversedby parameter
2013-03-24 02:07:05 +01:00
Chuan Ma
94ceb0e410
Document: delete the doc for a number of cache provider methods that don't exist
2013-03-22 17:53:47 -04:00
Guilherme Blanco
24c1b00963
Merge pull request #622 from hrubi/master
...
Import EntityManager from proper namespace
2013-03-21 09:31:17 -07:00
Jan Hruban
3866472459
Import EntityManager in ConsoleRunner
2013-03-21 15:49:00 +01:00
David Buchmann
204c1afe9a
cleanup event subscriber note
2013-03-21 10:43:01 +01:00
David Buchmann
220f367658
adding some more doc and examples for lifecycle event listeners and subscribers
2013-03-20 00:46:11 +01:00
Benjamin Eberlei
60b8bc63a1
Merge pull request #619 from FabioBatSilva/DDC-2090
...
[DDC-2090] Fix MultiTableUpdateExecutor with query cache
2013-03-17 13:35:34 -07:00
Fabio B. Silva
39ea24675d
Fix DDC-2090
2013-03-17 16:59:33 -03:00
Benjamin Eberlei
acae1aeaaa
Fix link in docs
2013-03-17 19:43:09 +01:00
Benjamin Eberlei
c399dcfe58
Add simpler section for 2.4 CLI integration
2013-03-17 19:18:49 +01:00
Benjamin Eberlei
ea19a0063f
Huge refactoring of the Getting Started Tutorial to allow for an earlier success with the simple Product entity.
2013-03-17 13:43:16 +01:00
Benjamin Eberlei
4ef8e8c7aa
Move all classes to src/ in tutorial rather than in entities/
2013-03-17 12:45:49 +01:00
Benjamin Eberlei
bd964411e8
Remove models/database first tutorials for now
2013-03-17 12:39:04 +01:00
Benjamin Eberlei
5941d0267d
Worked on the Getting Started Guide
2013-03-17 12:26:34 +01:00
Benjamin Eberlei
a7d764f6c0
Moved tools to Advanced topic, included simple setting up tools in Installation. Reworked CLI tool to print a template when no cli-config.php is defined.
2013-03-17 12:16:42 +01:00
Benjamin Eberlei
bdfe6098a4
Reworked parts of the tutorial
2013-03-16 23:36:36 +01:00
Benjamin Eberlei
e0d706219b
Start reorganizing documentation with focus on simplicity.
2013-03-16 20:36:09 +01:00
Fabio B. Silva
685c96a1b9
Fix arithmetic priority
2013-03-16 14:33:19 -03:00
Fabio B. Silva
1effd38043
Fix DDC-2252
2013-03-16 01:15:54 -03:00
Benjamin Eberlei
6ee9e2284a
Merge branch 'DDC-1666'
2013-03-14 23:41:40 +01:00
Benjamin Eberlei
559303430a
[DDC-1666] Fix bug where orphan removal on one-to-one associations lead to unique constraint errors when replacing an entity with a new one.
2013-03-14 23:41:31 +01:00
Benjamin Eberlei
d0419782bd
[DDC-2300] Fix version xml mapping and serialization of ClassMetadata.
2013-03-14 23:20:23 +01:00
Benjamin Eberlei
4982e2b6b0
Merge pull request #593 from norzechowicz/hydrator-fix
...
Fix SimpleObjectHydrator behavior when column not exists in fieldMappings, relationMappings and metaMappings
2013-03-14 14:58:52 -07:00
Benjamin Eberlei
b53fffe252
Fix YAML EntityListener definition in tests
2013-03-14 21:18:54 +01:00
Benjamin Eberlei
622ddd8d05
Refix test
2013-03-14 20:12:20 +01:00
Benjamin Eberlei
e128728105
Fix bugs in tests
2013-03-14 20:09:41 +01:00
Benjamin Eberlei
cf2cd549c8
Fix change in signature for hydrator statement mock.
2013-03-14 19:33:21 +01:00
Stefan Kleff
057e86eb27
Added test based on e468ced00b
2013-03-13 12:29:17 +01:00
Benjamin Eberlei
eca468b9d1
[DDC-2340] Fix bug with dirty collection matching + ordering.
2013-03-12 22:49:30 +01:00
Benjamin Eberlei
dba63c5a61
Merge pull request #579 from BenMorel/cleanup
...
Unit tests: cleanup of outdated / unused / commented out code
2013-03-12 12:00:47 -07:00
Rajesh Sharma
4841a068be
[DDC-2304] accept more than 2 parameters in CONCAT function
...
- Tested and parser validates at least 2 parameters given
- test added for CONCAT function and indentation fixed
- calling getConcatExpression using call_user_func_array as number of arguments is not known removing dependency to patch DBAL
- maintaining backward compatibility
2013-03-12 19:59:45 +01:00
Benjamin Eberlei
fc86a31c10
Merge pull request #591 from Aitboudad/master
...
Remove dead code
2013-03-12 11:52:23 -07:00
Benjamin Eberlei
ba4705176e
Merge pull request #601 from jankramer/add-contains-comparison
...
Add 'contains' comparison
2013-03-12 11:38:18 -07:00
Benjamin Eberlei
610e1a96f0
Merge pull request #595 from mnapoli/patch-1
...
Fixed broken code block in documentation
2013-03-12 11:31:52 -07:00
Benjamin Eberlei
0c4f48766a
Merge pull request #602 from alex88/patch-1
...
Added $isIdentifierColumn documentation
2013-03-12 11:30:36 -07:00
Jean-Guilhem Rouel
8b8d1a5aaa
Don't add empty expression to another one
2013-03-12 19:17:11 +01:00
Benjamin Eberlei
ce0dd1c4f4
Merge pull request #610 from afoeder/patch-1
...
[BUGFIX] Correct link to Functions, Operators, Aggregates
2013-03-12 11:13:11 -07:00
Benjamin Eberlei
3ba0562006
Merge branch 'GH-572'
2013-03-12 19:04:27 +01:00
Norbert Orzechowicz
6a69b4700c
[DDC-2282] Fix pagination problem with SQL Server.
...
ORDER BY removed from all count queries when on SQL Server
Fixed SQLServer ORDER BY problem in paginator CountOutputWalker
Added test to check query with ORDER BY and SQLServerPlatform
2013-03-12 19:03:27 +01:00
Benjamin Eberlei
b6c3fc5b1a
Mention flush cannot be called inside postFlush
2013-03-12 18:50:45 +01:00
Stefan Kleff
d937d1fc82
Fixed typo in hints. Caused slow loading of eager entities.
2013-03-12 16:17:14 +01:00
Adrian Föder
ca268c9da6
[BUGFIX] Correct link to Functions, Operators, Aggregates
...
This fixes the in-page link to the Functions, Operators, Aggregates
section.
2013-03-12 15:56:54 +01:00
Guilherme Blanco
905c0b9d91
Merge pull request #609 from haroldb/patch-1
...
Fixed typo.
2013-03-11 15:42:09 -07:00
Harold Barker
363df46006
Fixed typo.
2013-03-11 22:11:50 +00:00
Guilherme Blanco
d808c5d895
Merge pull request #608 from pborreli/patch-1
...
Fixed typo
2013-03-10 17:55:41 -07:00
Pascal Borreli
87e06993d6
Fixed typo
2013-03-11 00:31:50 +00:00
Guilherme Blanco
6d85779f4d
Merge pull request #607 from pborreli/typos
...
Fixed typos
2013-03-10 17:25:31 -07:00
Pascal Borreli
a2cd0f5804
Fixed typos
2013-03-11 00:08:58 +00:00
Jan Kramer
9d5e7eb6e9
Added composer.lock to .gitignore
2013-03-07 14:12:10 +01:00
Jan Kramer
760623346c
Added 'contains' comparison
2013-03-07 13:32:56 +01:00
Lars Strojny
acc8b61cd1
Adding EntityManagerDecorator base class as an extension point for EntityManager
2013-03-06 23:30:47 +01:00
Alessandro Tagliapietra
9ce4f9806e
Added $isIdentifierColumn documentation
...
I've added the documentation of the argument $isIdentifierColumn since in case of foreign composite keys it doesn't
2013-03-06 10:48:47 +01:00
Benjamin Eberlei
399584db4c
Merge pull request #599 from alexcarol/fix/docs
...
Removed unnecessary "<?php" from the docs
2013-03-04 14:39:01 -08:00
Benjamin Eberlei
a07c9dfbbd
Merge pull request #596 from mnapoli/patch-2
...
Missing link to a cookbook in the docs
2013-03-04 14:18:33 -08:00
Alex Carol
e809f9c266
Removed unnecessary <?php from the docs
2013-03-03 23:14:58 +01:00
Guilherme Blanco
b30d6dfd8e
Merge pull request #597 from MDrollette/fix-proxy-interface
...
use the extended proxy interface in the same namespace
2013-03-03 09:14:30 -08:00
Johannes M. Schmitt
b4b9709090
adds a new output format
2013-03-03 11:01:43 +01:00
Matthieu Napoli
2eff096ddd
Typo
2013-03-02 18:42:38 +01:00
Matthieu Napoli
159daa9985
Reverted incorrect typo fix -_-
2013-03-02 18:40:58 +01:00
MDrollette
1846f5845c
alias the proxy class on import to avoid "already exists" error
2013-03-01 11:58:51 -06:00
Matthieu Napoli
32dd7f1a0e
Missing link to a cookbook in the docs
...
The cookbook existed in the docs but there was no link to it in the docs.
2013-03-01 15:16:59 +01:00
Matthieu Napoli
20b46fe17f
Fixed broken code block in documentation
2013-03-01 15:11:21 +01:00
Guilherme Blanco
2372a85d9f
Merge pull request #594 from v3labs/master
...
Use inflector in EntityGenerator
2013-02-28 16:02:20 -08:00
Vladislav Veselinov
30fd22a260
Use inflector for add/remove methods
2013-02-28 21:05:41 +02:00
Norbert Orzechowicz
f9519479fc
Fix SimpleObjectHydrator behavior when column not exists in fieldMappings, relationMappings and metaMappings
2013-02-28 10:10:28 +01:00
Benjamin Eberlei
e5779a0756
Fix versionadded for IDENTITY()
2013-02-27 12:47:02 +01:00
Benjamin Eberlei
61e4413541
Update theme
2013-02-27 12:40:39 +01:00
Benjamin Eberlei
4f46a08d65
Dont mention 2.2 version in headers anymore.
2013-02-27 12:37:26 +01:00
Benjamin Eberlei
f001c31342
Add versionadded tags to many ffeatures in the docs.
2013-02-27 12:34:10 +01:00
Benjamin Eberlei
6b85d5b5ac
Clarified versionadded on EntityListeners feature.
2013-02-27 12:19:08 +01:00
Guilherme Blanco
d5dd7d6f8a
Merge pull request #589 from Ocramius/hotfix/DDC-2230
...
Hotfix for DDC-2230
2013-02-25 21:59:04 -08:00
Guilherme Blanco
32c220497c
Merge pull request #585 from Ocramius/hotfix/DDC-2306
...
Hotfix/DDC-2306
2013-02-25 21:55:44 -08:00
Abdellatif Ait boudad
5206566707
Remove dead code
2013-02-26 00:02:34 +00:00
Marco Pivetta
350fa4f15b
Applying fix for failing test for DDC-2230
2013-02-23 01:45:40 +01:00
Marco Pivetta
be24439e2f
Adding failing test for DDC-2230
...
Proxies that implement the Doctrine\Common\PropertyChangedListener are getting eagerly
initialized because the UnitOfWork injects itself into them after they are created.
The test currently fails for what described above, and also verifies if the UoW
is correctly injected in the proxy during lazy loading.
2013-02-23 01:44:58 +01:00
Guilherme Blanco
97ff197198
Merge pull request #587 from stof/patch-1
...
Fixed the license and the added version for NewObjectExpression
2013-02-22 09:10:36 -08:00
Christophe Coevoet
16b407f535
Fixed the license and the added version
2013-02-22 17:57:50 +01:00
Benjamin Eberlei
8cfbe0c032
Merge pull request #586 from jsjohns/patch-1
...
Fix EntityManager doc
2013-02-21 14:56:59 -08:00
Joshua Johnson
b55d78e119
Fix EntityManager doc
2013-02-21 17:27:55 -05:00
Benjamin Eberlei
04b216426a
Merge branch 'DDC-2310'
2013-02-21 19:02:37 +01:00
Benjamin Eberlei
8fce78fbfb
[DDC-2310] Fix regression introduced in SQL Server lock handling.
2013-02-21 19:02:21 +01:00
Marco Pivetta
a5ece5063a
Fixing DDC-2306
2013-02-21 02:24:48 +01:00
Marco Pivetta
d8dd5129e7
Failing test for DDC-2306
...
As of DDC-1734, proxies should have null identifier when the UnitOFWork
refreshes entities and replaces them (marking them as un-managed).
The problem here is that refreshes on entities with same identifier
but different type are still considered same, and the UnitOfWork discards
the proxy instance instead of ignoring it.
2013-02-21 02:21:06 +01:00
Benjamin Eberlei
2980d76adb
Merge pull request #581 from Ocramius/hotfix/submodules-removal
...
Removing submodules
2013-02-15 09:41:38 -08:00
Marco Pivetta
3f16ec0d22
Removing submodules as of doctrine/doctrine2#570
2013-02-15 18:33:29 +01:00
Benjamin Eberlei
805bb5ff9f
Remove mentions of PEAR installation method, remove code.
2013-02-15 01:04:29 +01:00
Benjamin Eberlei
6b928600ba
Add vendor to .gitignore, add composer.lock and some weird submodule change
2013-02-15 00:49:48 +01:00
Benjamin Eberlei
19da1933a6
Fix dropping the theme folder.
2013-02-15 00:34:48 +01:00
Benjamin Eberlei
afee16e56b
Merge pull request #406 from Ocramius/DCOM-96
...
[DCOM-96] Moving proxy generation and autoloading to common
2013-02-14 02:04:32 -08:00
Marco Pivetta
a58d4ae462
Cleaning up logic of the proxy factory by moving closure generation to own private methods
2013-02-14 10:52:13 +01:00
Marco Pivetta
271f5cf033
Adding fix and tests for DDC-1734
2013-02-14 09:57:12 +01:00
Marco Pivetta
8272ffd23f
Proxy generation as of doctrine/common#168 - DCOM-96
2013-02-14 09:57:12 +01:00
Benjamin Eberlei
35fda90473
Merge pull request #570 from Ocramius/cleanup/submodules-removal
...
Deprecation of PEAR/GIT/TAR autoloading
2013-02-14 00:55:08 -08:00
Benjamin Eberlei
ce594fb152
[DDC-2256] Cleanup patch, move dependency on EntityManager out of ResultSetMapping and let AbstractQuery perform the translation.
2013-02-13 09:05:35 +01:00
Benjamin Eberlei
3d9cb9460a
Fix test failing when memcache extension is installed, but memcache server isnt.
2013-02-13 08:46:37 +01:00
Fabio B. Silva
719031f2ef
Merge pull request #569 from Ocramius/hotfix/pre-flush-event-args-params
...
Hotfix/pre flush event args params
2013-02-12 15:39:40 -08:00
Guilherme Blanco
39374b7235
Merge pull request #578 from BenMorel/docfix
...
Fix for wrong return types in documentation.
2013-02-12 09:05:13 -08:00
Benjamin Morel
35562d3a4d
Unit tests: cleaned up outdated / unused / commented out code.
2013-02-12 15:51:24 +00:00
Benjamin Morel
cba1c8295c
Fixed wrong return types in documentation.
2013-02-12 11:49:44 +00:00
Benjamin Eberlei
d08c010ae1
Merge pull request #576 from acasademont/patch-1
...
Update docs/en/reference/batch-processing.rst
2013-02-11 07:50:57 -08:00
Benjamin Eberlei
e86419cfa5
Merge pull request #575 from naitsirch/master
...
Added YAML configuration example for "Simple Derived Identity" in Docs
2013-02-11 07:50:08 -08:00
Alexander
14bc7f75be
Add php 5.5 to the build matrix (travis)
2013-02-09 22:44:14 +01:00
Alexander
1a163cd48d
[DDC-2019] Add support for expression in QueryBuilder#addOrderBy()
2013-02-09 22:40:34 +01:00
Alexander
9bf501dd25
Revert "allowed to pass filter objects to the configurator"
...
This reverts commit a9b4debe37 . See the
discussion on the original PR:
https://github.com/doctrine/doctrine2/pull/434
Conflicts:
lib/Doctrine/ORM/Configuration.php
2013-02-09 20:28:52 +01:00
Albert Casademont
4c90d0cedc
Update docs/en/reference/batch-processing.rst
...
If you have only $batchSize - 1 rows (amongst other cases), the entities are never flushed, you need a final flush outside the loop.
In the bulk insert you should also need a final flush if the number of entities inserted is not a multiple of the $batchSize.
2013-02-08 16:32:03 +01:00
Christian Stoller
07616094d2
Added YAML configuration example for "Simple Derived Identity" in "Composite and Foreign Keys as Primary Key" Tutorial
2013-02-08 11:21:21 +01:00
Guilherme Blanco
3b0a242ab3
Merge pull request #573 from EvanK/patch-1
...
[Documentation] Noted prePersist event only triggers on first persist
2013-02-07 18:27:05 -08:00
Evan Kaufman
e2ac064914
Noted prePersist event only triggers on first persist
...
While probably obvious to a core doctrine developer, a user of doctrine would not necessarily know this without doing some digging
2013-02-07 12:59:14 -06:00
Marco Pivetta
673323fc67
Adding warnings about deprecation of GIT, TAR and PEAR autoloading
2013-02-04 23:30:02 +01:00
Marco Pivetta
a928ce48da
Using composer autoloader for the test suite
2013-02-04 21:30:02 +01:00
Marco Pivetta
f281dbbf54
Fixing incorrect constructor params for PreFlushEventArgs
2013-02-04 20:46:51 +01:00
Marco Pivetta
3ebed101fd
Strong typehinting to avoid incorrect constructor params
2013-02-04 20:45:58 +01:00
Guilherme Blanco
f0674ea034
Merge pull request #564 from BenMorel/f834c37f8a465ca3e23ee9ae62ef0bc4a525454c
...
Fix a wrong return type
2013-02-02 20:06:44 -08:00
Guilherme Blanco
114827a4b3
Merge pull request #565 from BenMorel/unusedvar
...
Removed an unused local variable.
2013-02-02 20:05:42 -08:00
Guilherme Blanco
d3cbdfcafa
Merge pull request #566 from BenMorel/toolreturntype
...
Added missing return statement to AbstractCommand.
2013-02-02 20:04:30 -08:00
Guilherme Blanco
ef1ed588b5
Merge pull request #567 from BenMorel/uselessmethods
...
Removed outdated methods in DatabasePlatformMock
2013-02-02 20:03:26 -08:00
Benjamin Morel
ec1b47a3e8
Removed outdated methods in DatabasePlatformMock.
2013-02-03 01:51:05 +00:00
Benjamin Morel
2bfbe03e37
Fixed return statements in SchemaTool.
2013-02-03 01:42:27 +00:00
Benjamin Morel
4b58c6fc41
Removed an unused local variable.
2013-02-03 01:05:43 +00:00
Benjamin Morel
f834c37f8a
Fixed a wrong return type.
2013-02-03 00:48:05 +00:00
Benjamin Eberlei
71a68a5c6f
Merge pull request #423 from FabioBatSilva/DDC-1955
...
DDC-1955 - @EntityListeners
2013-02-02 11:47:46 -08:00
Guilherme Blanco
dea37ed9e8
Merge pull request #554 from beregond/hydrator-fix
...
Fixed ObjectHydrator when namespace alias is given.
2013-02-02 11:18:00 -08:00
Guilherme Blanco
abc3ba0c7e
Merge pull request #561 from ftdebugger/master
...
fix typo in the documentation
2013-02-02 11:15:47 -08:00
Guilherme Blanco
4651d92d63
Merge pull request #562 from vrana/master
...
Fix error in QueryBuilder example
2013-02-02 11:15:30 -08:00
Guilherme Blanco
1627fc9596
Merge pull request #563 from FabioBatSilva/DDC-2268
...
DDC-2268 - Regression test
2013-02-02 11:15:14 -08:00
Fabio B. Silva
452e6912b1
DDC-2268 - regression test
2013-02-02 16:57:17 -02:00
Fabio B. Silva
c5aecd43c8
Fix yaml example
2013-02-02 16:19:35 -02:00
Fabio B. Silva
7764ed9a8b
Docs for Entity Listener and Entity Listener Resolver
2013-02-02 15:48:40 -02:00
Jakub Vrana
819e5896bf
Fix error in QueryBuilder example
2013-01-30 11:11:09 -08:00
Evgeny Shpilevsky
d65ba04c5c
Fix typo in docs
2013-01-30 17:59:38 +03:00
Fabio B. Silva
76c4be1b74
Update docs/en/reference/events.rst
...
Docs for lifecycle-callback event arg
2013-01-29 12:19:47 -02:00
Fabio B. Silva
7177306536
remove extra comma
2013-01-29 12:14:53 -02:00
Fabio B. Silva
ec2d5af2c7
added missing file
2013-01-29 12:14:53 -02:00
Fabio B. Silva
e6d9d1de47
support naming convention for listeners without mapping.
2013-01-29 12:14:53 -02:00
Fabio B. Silva
46fea51622
use '!==' instead of '!='
2013-01-29 12:14:53 -02:00
Fabio B. Silva
e9c89cafb9
Fix DocBlock
2013-01-29 12:14:53 -02:00
Fabio B. Silva
3f9a4c82b0
Fix typo
2013-01-29 12:14:53 -02:00
Fabio B. Silva
6d7b3863b5
Use bitmask of subscribed event systems.
2013-01-29 12:14:53 -02:00
Fabio B. Silva
7b0f59ed7c
split override test
2013-01-29 12:14:53 -02:00
Fabio B. Silva
0d0fc320b4
Fix DocBlock
2013-01-29 12:14:53 -02:00
Fabio B. Silva
0d0f91a807
move listeners invocation from ClassMetadataInfo to ListenerInvoker
2013-01-29 12:14:53 -02:00
Fabio B. Silva
c60e3e4ba4
remove @LifecycleCallback
2013-01-29 12:14:52 -02:00
Fabio B. Silva
ffc8d032c7
Fix typo
2013-01-29 12:14:52 -02:00
Fabio B. Silva
195b639344
change xml driver to use <lifecycle-callback\>
2013-01-29 12:14:52 -02:00
Fabio B. Silva
6b7e588da5
fix CS
2013-01-29 12:14:52 -02:00
Fabio B. Silva
4be25cb330
small refactoring
2013-01-29 12:14:52 -02:00
Fabio B. Silva
8495eca1a4
rename test
2013-01-29 12:14:52 -02:00
Fabio B. Silva
a01d6583d3
implements a entity listener resolver
2013-01-29 12:14:52 -02:00
Fabio B. Silva
27745bb87b
Fix some CS
2013-01-29 12:14:52 -02:00
Fabio B. Silva
a265511368
rename subscribers to listeners
2013-01-29 12:14:52 -02:00
Fabio B. Silva
46474bf457
added doctrine-mapping.xsd
2013-01-29 12:14:52 -02:00
Fabio B. Silva
69bfc71b6a
test event listeners lifecycle callback
2013-01-29 12:14:52 -02:00
Fabio B. Silva
256cecbefa
evaluate as lifecycle callback if the listener class is not given.
2013-01-29 12:14:52 -02:00
Fabio B. Silva
fd6f592430
support @LifecycleCallback in @EntityListeners
2013-01-29 12:14:52 -02:00
Fabio B. Silva
7021f002f2
php driver
2013-01-29 12:14:52 -02:00
Fabio B. Silva
415c2a95f2
php static driver
2013-01-29 12:14:52 -02:00
Fabio B. Silva
f0b04375de
yaml driver
2013-01-29 12:14:52 -02:00
Fabio B. Silva
917aa70c97
test invalid class/method
2013-01-29 12:14:52 -02:00
Fabio B. Silva
7e54ae3702
xml driver
2013-01-29 12:14:52 -02:00
Fabio B. Silva
6be7a03b72
fix previous test
2013-01-29 12:14:52 -02:00
Fabio B. Silva
4cfe2294e3
test lifecycle callbacks event args
2013-01-29 12:14:52 -02:00
Fabio B. Silva
c6adcda567
give event to lifecycle callbacks
2013-01-29 12:14:52 -02:00
Fabio B. Silva
dbd0697c2c
test @PostLoad
2013-01-29 12:14:51 -02:00
Fabio B. Silva
315f7ba43b
call listeners in UoW
2013-01-29 12:14:51 -02:00
Fabio B. Silva
ccc0a2a94f
test entity listener calls
2013-01-29 12:14:51 -02:00
Fabio B. Silva
c5d59ab4c7
test entity listener metadata
2013-01-29 12:14:51 -02:00
Fabio B. Silva
3c223a59c4
move call listeners tests to AbstractMappingDriverTest
2013-01-29 12:14:51 -02:00
Fabio B. Silva
0f081d7c45
support short class name
2013-01-29 12:14:51 -02:00
Fabio B. Silva
368cf73f89
entity listeners mapping
2013-01-29 12:14:51 -02:00
Guilherme Blanco
3d1956d260
Merge pull request #559 from Stroitel/fix-paginator
...
[Paginator] Added support for order by scalar
2013-01-27 08:58:14 -08:00
aleks
206c251090
Add test with mixed sort
2013-01-27 11:40:40 +02:00
aleks
dc190a297d
Fix typo
2013-01-27 11:09:26 +02:00
Guilherme Blanco
8eee325db4
Merge pull request #558 from pkruithof/master
...
Added missing mapping types
2013-01-26 15:32:22 -08:00
aleks
6662096ed3
Fix typo
2013-01-26 23:27:38 +02:00
aleks
5e6bc0847f
Added support for order by scalar
2013-01-26 21:31:45 +02:00
aleks
61634950f3
Add test for order by scalar
2013-01-26 21:21:09 +02:00
Peter Kruithof
46f4b00f8d
Added missing mapping types
2013-01-26 16:18:45 +01:00
Szczepan Cieślik
92ada246b5
[DDC-2256] Code improvements.
2013-01-26 09:09:21 +01:00
Szczepan Cieślik
935594578a
[DDC-2256] Code refactorization.
2013-01-25 13:15:14 +01:00
Szczepan Cieślik
d7f82221d1
[DDC-2256] Moved aliases translation to ResultSetMapping, fixed tests.
2013-01-25 12:06:13 +01:00
Szczepan Cieślik
1949ff8602
[DDC-2256] Added test for hydrator.
2013-01-24 23:10:50 +01:00
Szczepan Cieślik
23e0bb7345
Fixed ObjectHydrator when namespace alias is given.
2013-01-24 15:50:05 +01:00
Benjamin Eberlei
f5f583d1cc
Fix .gitmodules
2013-01-24 00:17:32 +01:00
Benjamin Eberlei
cbcc693e36
Add 'docs/' from commit '8fcf2d45019bf38a1df728353a1e417343c69cfb'
...
git-subtree-dir: docs
git-subtree-mainline: 271bd37ad3
git-subtree-split: 8fcf2d4501
2013-01-24 00:02:03 +01:00
Benjamin Eberlei
8fcf2d4501
Merge pull request #143 from relo-san/patch-1
...
Update en/reference/query-builder.rst
2013-01-23 14:51:49 -08:00
Benjamin Eberlei
94526ab602
Merge pull request #145 from HoffmannP/master
...
key for yaml-files was changed, know Idea what it might affect as well
2013-01-23 14:51:12 -08:00
Benjamin Eberlei
a512c7f89a
Merge pull request #152 from pkruithof/patch-1
...
Documented `guid` mapping type
2013-01-23 14:49:27 -08:00
Peter Kruithof
f5ba83cae5
Documented guid mapping type
...
refs #456a756febb258b52092fa2640c77bb8400114fa
2013-01-21 15:03:46 +01:00
Benjamin Eberlei
271bd37ad3
Merge branch 'DDC-2243'
2013-01-20 20:32:54 +01:00
Benjamin Eberlei
eedf85cbdb
[DDC-2243] Fix bug where a bigint identifier would be casted to an integer, causing inconsistency with the string handling.
2013-01-20 20:31:22 +01:00
Benjamin Eberlei
3c157eafd5
Merge branch 'DDC-2246'
2013-01-20 20:11:20 +01:00
Benjamin Eberlei
5298c03fce
[DDC-2246] Fix bug with UnitOfWork#getEntityState() and entities with foreign identifier.
2013-01-20 20:11:08 +01:00
Benjamin Eberlei
916424af49
Merge pull request #551 from FabioBatSilva/DDC-2234
...
[DDC-2234] FUNCTION() IS NULL comparison
2013-01-20 03:30:01 -08:00
Benjamin Eberlei
d0810c7c19
Remove README.markdown from .gitattributes
2013-01-19 20:04:43 +01:00
Benjamin Eberlei
3a4331db89
Merge pull request #543 from carlosbuenosvinos/master
...
Make doctrine a Light-weight distribution package in Composer
2013-01-19 11:04:16 -08:00
Fabio B. Silva
93fba518a6
keep braces
2013-01-19 13:38:44 -02:00
Fabio B. Silva
1d42a5385b
test NOT EXISTS expression
2013-01-18 23:47:31 -02:00
Fabio B. Silva
4dcd5a1286
Fix DDC-2234
2013-01-18 23:18:50 -02:00
Jonathan H. Wage
c4b0bc5adc
Merge pull request #150 from shiroyuki/patch-1
...
Correct the usage for "nullable"
2013-01-16 13:00:42 -08:00
Juti Noppornpitak
ec23961c7d
Update en/cookbook/decorator-pattern.rst
2013-01-16 15:48:15 -05:00
Jonathan H. Wage
27ac88fe28
Update theme again.
2013-01-14 20:12:20 -06:00
Jonathan H. Wage
b369158dc6
Upgrade theme.
2013-01-14 20:08:25 -06:00
Jonathan H. Wage
16533299b0
Update en/reference/installation.rst
...
Remove reference to download page as it does not exist anymore. We are no longer maintaining packages for download in any proprietary Doctrine repository.
2013-01-14 18:47:18 -06:00
Guilherme Blanco
b30b06852b
Merge pull request #549 from FabioBatSilva/DDC-1376
...
[DDC-1376] Support for order by association when using findBy
2013-01-13 17:16:50 -08:00
Fabio B. Silva
6074755b91
Fix DDC-1376
2013-01-13 22:39:59 -02:00
Jonathan H. Wage
8230b270e3
Merge pull request #148 from FabioBatSilva/composite-identity
...
Docs for IDENTITY() composite primary key
2013-01-13 10:14:43 -08:00
Jonathan H. Wage
66774f8fe0
Merge pull request #149 from FabioBatSilva/new-operator
...
Docs for “NEW” Operator Syntax
2013-01-13 10:14:32 -08:00
Fabio B. Silva
6a23e6be96
Docs for “NEW” Operator Syntax
2013-01-13 15:56:11 -02:00
Fabio B. Silva
939ca1b85f
Docs for IDENTITY() composite primary key
2013-01-13 15:08:25 -02:00
Benjamin Eberlei
47043a54a5
Update en/reference/filters.rst
2013-01-13 09:37:45 +01:00
Benjamin Eberlei
6f572a61c7
Merge branch 'DDC-2231'
2013-01-12 10:29:20 +01:00
Benjamin Eberlei
3ccbbcb0b5
DDC-2231 - Simplify test
2013-01-12 10:29:11 +01:00
Guilherme Blanco
71efe2109a
Merge pull request #548 from nemekzg/DDC-2203
...
Fix for DDC-2203
2013-01-10 11:13:18 -08:00
nemekzg
cfd1b07ffe
Fix for DDC-2203
2013-01-10 16:52:19 +01:00
Stefan Kleff
6032e3efd8
Added test
2013-01-10 16:10:29 +01:00
Stefan Kleff
dc925cc9c5
fixed indentation
...
Restored old way of injection to just inject it during a refresh
Added injection for initialized proxies
2013-01-10 15:19:44 +01:00
Stefan Kleff
151192ae37
The EntityManager was not injected in uninitialized proxys which are ObjectManagerAware.
...
I ran into that problem while I had two objects in the identitymap while hydrating a collection: one was new a "real" entity and the other one was an uninitialized proxy. For "real" entities the em is injected in line 2427, for new entities it is injected in 2436->2364, but for proxies this is missing. According to the comment "inject ObjectManager into just loaded proxies." the code in line 2427 should do this, but in fact it is just used if it is a "real" entity or an already initialized proxy. Moving the injection to outside of the condition in line 2411 (if the entity is an unitialized proxy) solves this.
2013-01-10 14:54:52 +01:00
Benjamin Eberlei
0b2d3d4f5d
DDC-2173 - Correct issue is about "postFlush" not "preFlush" and add test
2013-01-06 19:16:12 +01:00
Benjamin Eberlei
c20cfed6ae
Merge branch 'DDC-2173'
2013-01-06 19:12:02 +01:00
Benjamin Eberlei
512a001e8c
DDC-2173 - Add Test for new OnFlush or PreFlush behavior and update UPGRADE.md
2013-01-06 19:11:52 +01:00
Francesc Rosàs
1e669132c2
No huge if clause
2013-01-06 19:05:46 +01:00
Francesc Rosàs
9322ca7052
Ensure onFlush and postFlush events are always raised
2013-01-06 19:05:46 +01:00
Benjamin Eberlei
ce290bc99b
DDC-1698 - Allow autoload registration from a Configuration instance
2013-01-06 11:07:19 +01:00
Benjamin Eberlei
7dfe0cae08
DDC-1698 - Prepend autoloader to stack and fix CS
2013-01-06 11:03:58 +01:00
Benjamin Eberlei
4210969087
DDC-2192 - Prevent using append flag in case of where and having to avoid user confusion, because this is not allowed.
2013-01-06 10:33:57 +01:00
Benjamin Eberlei
32f4be83b1
Fix composer to only allow DBAL 2.4 DEV and larger
2013-01-06 10:06:03 +01:00
Guilherme Blanco
fbd1e7bc45
Merge pull request #147 from aaronmu/master
...
Fix syntax error in one of the orderBy examples.
2013-01-04 06:22:22 -08:00
Aaron Muylaert
b0a24c8baa
Update en/reference/query-builder.rst
...
Fix syntax error in one of the orderBy examples.
2013-01-04 11:29:34 +01:00
Carlos Buenosvinos
1b5d4316fe
Update .gitattributes
...
Fix TYPO
2012-12-29 21:08:21 +01:00
Carlos Buenosvinos
2eb4849a69
XSD, license and upgrade should be distributed
2012-12-28 16:55:49 +01:00
Carlos Buenosvinos
9354e70fd3
Make doctrine a light-weight package based in http://getcomposer.org/doc/02-libraries.md#light-weight-distribution-packages
2012-12-28 16:46:41 +01:00
Carlos Buenosvinos
0577f73ef5
Make doctrine light-weight for composer
2012-12-28 16:41:38 +01:00
Benjamin Eberlei
90b6d5e293
Merge branch 'master' of github.com:doctrine/doctrine2
2012-12-24 10:40:52 +01:00
Benjamin Eberlei
59ffbd5f8d
Merge branch 'DDC-2175'
2012-12-24 10:40:10 +01:00
Benjamin Eberlei
e2c1ff1a48
[DDC-2175] Fix bug in JoinedSubclassPersister
2012-12-24 10:39:23 +01:00
Benjamin Eberlei
904effcf4e
Merge pull request #538 from FabioBatSilva/identity-composite-key
...
IDENTITY() Support composite primary key
2012-12-24 01:19:05 -08:00
Benjamin Eberlei
7cf26950cc
Merge branch 'DDC-2187'
2012-12-24 10:15:47 +01:00
Klein Florian
8443eee628
use base events
2012-12-24 10:15:25 +01:00
Benjamin Eberlei
e319e34783
Merge pull request #528 from BenMorel/master
...
Documentation fixes
2012-12-23 12:22:09 -08:00
Benjamin Eberlei
d8b94b0527
Some text refactorings in tutorial
2012-12-23 13:05:54 +01:00
Fabio B. Silva
3d99711ac8
fix PHPDoc
2012-12-22 10:36:23 -02:00
Fabio B. Silva
99ab58febd
Fix CS
2012-12-22 10:36:23 -02:00
Fabio B. Silva
2e90cd9924
Identity function support composite primary key
2012-12-22 10:36:23 -02:00
Benjamin Eberlei
6f5948746e
Merge pull request #540 from FabioBatSilva/DDC-2208
...
[DDC-2208] Fix DDC-2208
2012-12-22 03:53:14 -08:00
Benjamin Eberlei
015771f10b
Merge pull request #541 from PSchwisow/master
...
Fix DDC-1690
2012-12-22 03:38:03 -08:00
Patrick Schwisow
0b21046fce
[DDC-1690] Added an empty line as requested.
2012-12-21 15:35:32 -06:00
Patrick Schwisow
bc6921504a
[DDC-1690] Created unit test
2012-12-21 14:32:10 -06:00
Fabio B. Silva
b6b493f450
test parentheses
2012-12-21 10:00:40 -02:00
Fabio B. Silva
eda43c77bb
Fix DDC-2208
2012-12-21 10:00:40 -02:00
Guilherme Blanco
a8340cc980
Merge pull request #146 from noginn/patch-1
...
Added missing "new" keyword for event listener
2012-12-21 03:46:51 -08:00
Guilherme Blanco
8b5e4a9a52
Merge pull request #542 from FabioBatSilva/DDC-2205
...
[DDC-2205] Fix DDC-2205
2012-12-21 03:45:07 -08:00
Fabio B. Silva
2104ae9935
fix DDC-2205
2012-12-20 23:06:30 -02:00
Patrick Schwisow
5627993827
Fix DDC-1690
...
Added the lines suggested by the original reporter.
2012-12-20 15:31:46 -06:00
Tom Graham
e17fc6c474
Added missing "new" keyword for event listener
2012-12-20 20:00:50 +00:00
Thomas Rothe
86c33d78d0
inheritance with composite keys
...
added tests for single table inheritance
2012-12-17 11:01:20 +01:00
Thomas Rothe
fb055ca75d
fixed problems with joined inheritance and composite keys
...
SchemaTool now creates all Id columns not just only the first one.
Insert statement for child entity now contains parameter for additional key columns only once.
2012-12-16 18:20:10 +01:00
Benjamin Eberlei
4bbfe0ce8a
Merge pull request #536 from KonstantinKuklin/master
...
add missed branch
2012-12-16 04:05:57 -08:00
Benjamin Eberlei
b6fd203355
Merge branch 'DDC-2199'
2012-12-16 12:58:01 +01:00
Benjamin Eberlei
7c337748b6
DDC-2199 / DDC-2192 - Versioned fields didnt work in XML/YAML mapping
2012-12-16 12:57:53 +01:00
Benjamin Morel
774bb3fec4
Fixed missed documentation issues in Doctrine\ORM
2012-12-14 20:12:56 +00:00
Benjamin Morel
aadce3c747
Fixed documentation for Doctrine\Tests
2012-12-14 18:55:49 +00:00
Benjamin Morel
c405f6d3f6
Fixed documentation for Doctrine\Tests\Mocks
2012-12-14 18:55:28 +00:00
Benjamin Morel
76f2ba50eb
Fixed documentation for Doctrine\Tests\DbalTypes
2012-12-14 18:55:16 +00:00
Konstantin Kuklin
8e2c060fc7
add missed branch
2012-12-14 18:04:19 +04:00
Benjamin Morel
ad967e8e22
Fixed documentation for Doctrine\ORM\Tools\Pagination
2012-12-14 13:13:22 +00:00
Benjamin Morel
2524c878b6
Fixed documentation for Doctrine\ORM\Tools\Export
2012-12-14 13:02:12 +00:00
Benjamin Morel
0122d8d36c
Fixed documentation for Doctrine\ORM\Tools\Event
2012-12-14 12:49:59 +00:00
Benjamin Morel
71e78014e5
Fixed documentation for Doctrine\ORM\Tools\Console
2012-12-14 12:49:05 +00:00
Benjamin Morel
e72445b836
Fixed documentation for Doctrine\ORM\Tools
2012-12-13 18:55:44 +00:00
Benjamin Morel
7869ec714d
Fixed unused 'use' statements.
...
Fixed missed documentation issues in Doctrine\ORM
2012-12-13 18:19:21 +00:00
Peter Hoffmann
4c1759eecb
Keyname was obviously changed in (latest) 2.3.1, cost me some hours to figure out, NOT cool!
2012-12-13 17:53:44 +01:00
Benjamin Morel
ba16789843
Fixed documentation for Doctrine\ORM\Query
2012-12-13 16:36:14 +00:00
Benjamin Morel
28966e2087
Fixed documentation for Doctrine\ORM\Query\Expr and Doctrine\ORM\Query\Filter
2012-12-13 12:05:34 +00:00
Benjamin Morel
d4357801a2
Fixed documentation for Doctrine\ORM\Query\Exec
2012-12-13 11:57:46 +00:00
Benjamin Morel
98ac6b5fec
Fixed documentation for Doctrine\ORM\Query\AST
2012-12-13 11:52:19 +00:00
Benjamin Morel
f743da0e02
Fixed documentation for Doctrine\ORM\Query\AST\Functions
2012-12-13 10:42:25 +00:00
Benjamin Morel
42e83a2716
Fixed documentation for ORM\Proxy
2012-12-13 10:28:55 +00:00
Mykola Zyk
ca1c6498ec
Update en/reference/query-builder.rst
...
Adding note for $append parameter of QueryBuilder::add() method.
2012-12-07 19:44:47 +02:00
Benjamin Eberlei
df1336dd26
Merge pull request #529 from francisbesset/options_join_columns
...
[DDC-2182] Options join columns
2012-12-04 04:29:01 -08:00
Francis Besset
657a54da84
Passed column options to the join column
2012-12-04 12:26:40 +01:00
Francis Besset
df2bfbb636
Fixed trailing spaces on SchemaTool
2012-12-04 12:23:55 +01:00
Benjamin Morel
43b301f22b
Fixed English mistakes
2012-12-03 11:02:29 +00:00
Benjamin Morel
159ece8943
Fixed documentation for ORM\Persisters
2012-12-03 10:15:43 +00:00
Benjamin Morel
46e6ada4f9
Fixed documentation for ORM\Mapping
2012-12-03 09:36:08 +00:00
Guilherme Blanco
4b4126dfa6
Merge pull request #142 from pborreli/typos
...
Fixed typos
2012-12-02 12:41:07 -08:00
Benjamin Morel
4714a53c32
Fixed documentation for ORM\Internal
2012-12-02 19:46:34 +00:00
Pascal Borreli
8717088ed1
Fixed typos
2012-12-02 17:58:15 +00:00
Benjamin Morel
fad22d1e60
Fixed documentation for ORM\Event and ORM\Id
2012-12-02 12:37:56 +00:00
Francis Besset
56b230a1f0
Fixed typo
2012-12-01 19:41:51 +01:00
Benjamin Morel
dacdd6cd89
Documentation (docblock) fixes.
2012-12-01 16:28:06 +00:00
Guilherme Blanco
4bb6ff637c
Merge pull request #527 from BenMorel/master
...
Fix documentation for Doctrine\ORM\Query\AST\Node::dispatch()
2012-11-30 12:43:49 -08:00
Benjamin Morel
26d6f5ce4e
Fixed coding standard issue, as per @stof's request.
2012-11-30 19:10:53 +00:00
Benjamin Morel
5edc287848
Fixed documentation for Doctrine\ORM\Query\AST\Node::dispatch().
2012-11-30 11:41:03 +00:00
Benjamin Eberlei
95334e9764
Clarify BC break in DDC-2156
2012-11-27 22:25:58 +01:00
Guilherme Blanco
29f0b678cf
Merge pull request #526 from FabioBatSilva/DDC-2172
...
[DDC-2172] Fix EntityGenerator get literal type
2012-11-27 12:14:12 -08:00
Guilherme Blanco
f4c0fd1744
Added support to subselects in update item.
2012-11-27 14:36:56 -05:00
Fabio B. Silva
bac92f4d3e
Fix CS
2012-11-27 16:58:48 -02:00
Fabio B. Silva
d1dc72b65a
refactoring tests
2012-11-27 14:38:18 -02:00
Fabio B. Silva
41b907606f
Fix DDC-2172
2012-11-27 14:29:02 -02:00
Benjamin Eberlei
46e6753649
Merge pull request #523 from jankramer/DDC-2074
...
[DDC-2074] Bugfix regarding clearing cloned PersistentCollections
2012-11-25 11:13:28 -08:00
Jan Kramer
5b3f54429a
[DDC-2074] Fixed bug regarding clearing PC's without owner
...
When calling clear on a PC that has no owner (e.g. because it was
cloned), it can't be deleted as there is no metadata available.
In these cases, it shouldn't be scheduled for deletion.
2012-11-25 19:27:39 +01:00
Jan Kramer
9b78100378
[DDC-2074] Added test for PersistentCollection#clear.
2012-11-25 19:27:24 +01:00
Benjamin Eberlei
05e5ae8bfa
Merge pull request #413 from FabioBatSilva/refactory-persisters
...
code refactorings on persister
2012-11-25 03:50:52 -08:00
Benjamin Eberlei
173333c861
Merge pull request #517 from nemekzg/DDC-1765
...
Fix for DDC-1765
2012-11-25 03:38:39 -08:00
Benjamin Eberlei
072d8a8a13
Merge pull request #515 from tranver/master
...
Fixes sandbox cli: The helper "em" is not defined.
2012-11-25 03:38:03 -08:00
Benjamin Eberlei
8457a9e77e
Merge pull request #518 from Fran6co/fix-double-on
...
regression fix for left joins (double ON)
2012-11-25 03:27:17 -08:00
Benjamin Eberlei
390fbd8493
Merge pull request #87 from FabioBatSilva/patch-6
...
docs for association/attribute override
2012-11-24 02:34:56 -08:00
Benjamin Eberlei
1f2050f20d
Merge pull request #101 from merk/rtel
...
Initial ResolveTargetEntityListener cookbook entry
2012-11-24 02:34:36 -08:00
Benjamin Eberlei
7f0ff6a079
Merge pull request #104 from shieldo/missing_joincolumn_in_yaml
...
added missing JoinColumn node for xml and yaml for many-to-one unidirect...
2012-11-24 02:34:17 -08:00
Benjamin Eberlei
bc9c7d1c07
Merge pull request #117 from cordoval/feature/addTutorialOverrideMappingAnnotations
...
[DDC-1872] add tutorial for override annotations mappings
2012-11-24 02:33:58 -08:00
Benjamin Eberlei
9f86cda681
Merge pull request #119 from Spabby/master
...
Cleaner to remove the note, and modify the code to put the doctrine_bootstrap.php include first?
2012-11-24 02:25:17 -08:00
Benjamin Eberlei
52bc9a82ef
Merge pull request #121 from frosas/document-pre-and-post-flush-events
...
Remove "before the lists of scheduled changes are cleared"
2012-11-24 02:24:57 -08:00
Benjamin Eberlei
d84462923c
Merge pull request #122 from kdambekalns/patch-1
...
Update en/reference/working-with-associations.rst
2012-11-24 02:24:10 -08:00
Benjamin Eberlei
106620e6dd
Merge pull request #123 from bamarni/patch-4
...
simplified interface check
2012-11-24 02:23:55 -08:00
Benjamin Eberlei
0cfc7dd402
Merge pull request #124 from bamarni/patch-5
...
fixed typo
2012-11-24 02:23:41 -08:00
Benjamin Eberlei
ced44e1916
Merge pull request #125 from Ocramius/patch-4
...
Update en/reference/tools.rst
2012-11-24 02:22:30 -08:00
Benjamin Eberlei
9873c9fc04
Merge pull request #127 from lennerd/fix-typo-1
...
Fixed typo for array mapping type
2012-11-24 02:22:12 -08:00
Benjamin Eberlei
07e6a3ec68
Merge pull request #129 from md2perpe/patch-1
...
Update en/tutorials/getting-started.rst
2012-11-24 02:22:01 -08:00
Benjamin Eberlei
24228711fd
Merge pull request #133 from Ocramius/patch-5
...
Removing removed API description from docs
2012-11-24 02:21:53 -08:00
Benjamin Eberlei
4a01d2904c
Merge pull request #138 from fulopattila122/master
...
The yaml mapping part probably shows the path/Namespace key-value pair in the wrong order
2012-11-24 02:21:43 -08:00
Guilherme Blanco
697e7b1ca5
Merge pull request #471 from chives/DDC-2052
...
Extended TreeWalker interface with getQueryComponents() and setQueryComponent() which are used by the Parser class
2012-11-22 07:39:59 -08:00
Francisco Facioni
c84099508f
added outer left join
2012-11-22 09:59:44 -03:00
Francisco Facioni
9c59ed5891
regression fix for left joins (double ON)
2012-11-20 12:30:52 -03:00
Guilherme Blanco
f7e9a91b5c
Merge pull request #141 from hifi7/patch-1
...
Fix wrong date format in example PrePersist method
2012-11-20 07:01:03 -08:00
Lukasz Cybula
afdb92ff9b
Added note about new methods in UPGRADE.md
2012-11-20 12:42:05 +01:00
Lukasz Cybula
08a3423ce2
CS fixes
2012-11-20 12:42:05 +01:00
Lukasz Cybula
7b1d84cbdb
Moved CustomTreeWalkersJoinTest to proper namespace and fixed licence
2012-11-20 12:42:05 +01:00
Lukasz Cybula
2c99ecf586
Extended TreeWalker interface with getQueryComponenets() and setQueryComponent() which are used by the Parser class
2012-11-20 12:42:05 +01:00
hifi7
f221faff28
Fix wrong date format in example PrePersist method
2012-11-20 05:37:43 +01:00
Benjamin Eberlei
f25b098029
[DDC-2055] Add Test for EntityRepository#createResultSetMappingBuilder
2012-11-19 17:45:14 +01:00
Benjamin Eberlei
941670aa9d
[DDC-2055] Add EntityRepository#createResultSetMappingBuilder()
2012-11-19 17:09:18 +01:00
Benjamin Eberlei
17bb564534
[DDC-2055] Some adjustments to ResultSetMappingBuildder patch
2012-11-19 16:54:56 +01:00
nemekzg
727647902c
Fix for DDC-1765
2012-11-17 16:18:18 +01:00
Benjamin Eberlei
9ea40edb48
Discuss branching strategy
2012-11-17 10:48:46 +01:00
Benjamin Eberlei
3666d1485a
Merge pull request #516 from lstrojny/bug/phpunit-composer
...
Allow running tests with composer
2012-11-17 01:25:16 -08:00
Benjamin Eberlei
2a69d2d1f9
Update Common dependency
2012-11-17 09:52:11 +01:00
Lars Strojny
bb3eeffe78
Allow running tests with composer
2012-11-17 03:41:32 +01:00
Chris Schuhmann
1d04902326
Fix sandbox cli
...
In afd8ea9 $helpers became an instance of HelperSet and caused an "The helper "em" is not defined." exception.
2012-11-17 00:12:29 +01:00
Guilherme Blanco
30bddbd254
Merge pull request #139 from jorns/master
...
Update the i in index to uppercase
2012-11-16 11:26:02 -08:00
jorns
072a65bd26
Updated @Index lower i to Upper i
...
This fixes the error:
[Semantical Error] The annotation "@Doctrine\ORM\Mapping\index"
2012-11-16 11:21:06 +01:00
Benjamin Eberlei
0782b8a682
Expanded first paragraphs
2012-11-16 00:08:25 +01:00
Benjamin Eberlei
da6236f830
More on testing
2012-11-16 00:01:37 +01:00
Benjamin Eberlei
6821e633fd
Add CONTRIBUTING.md
2012-11-15 23:57:34 +01:00
Benjamin Eberlei
d0428df9bd
Merge pull request #513 from FabioBatSilva/annot-enum
...
Enumeration support
2012-11-15 10:52:14 -08:00
Fabio B. Silva
77827303d2
Fix CS
2012-11-13 14:54:37 -02:00
Fabio B. Silva
c1de4c5fda
update doctrine-common
2012-11-13 14:13:49 -02:00
Fabio B. Silva
a07c63dde6
added support for @Enum
2012-11-13 14:13:48 -02:00
Benjamin Eberlei
0d58e6627a
Merge branch 'DDC-2109'
2012-11-12 15:48:19 +01:00
Benjamin Eberlei
f453d6c85b
[DDC-2109] Fix bug with ResolveTargetEntityListener and ManyToMany associations.
2012-11-12 15:48:10 +01:00
Benjamin Eberlei
918ea1cdd8
Merge pull request #449 from mvrhov/DDC-1958
...
Pager fix for DDC-1958
2012-11-12 06:02:32 -08:00
Benjamin Eberlei
935842845b
Merge branch 'DDC-2138'
2012-11-12 15:01:30 +01:00
Benjamin Eberlei
624ef309f0
Remove unnecssary code
2012-11-12 15:01:20 +01:00
Benjamin Eberlei
5e2a433828
Inlined Test and Entities into DDC2138Test
2012-11-12 14:59:48 +01:00
Stefano Rodriguez
482da95352
The schema tool now doesn't add a foreign constraint when subclassess of a STI use the same field to map relations with entities of different classes
2012-11-12 14:59:48 +01:00
Stefano Rodriguez
b1c69ebab9
adedd failing test for PR #440
2012-11-12 14:19:31 +01:00
Miha Vrhovnik
8fe9fa0dc7
extracted pgsql sql generation into a helper method
2012-11-12 13:48:55 +01:00
Miha Vrhovnik
c7a75f477f
The distinct query should replicate the fields in order by clause and the order by clause itself from inner query
...
This fixes DDC-1958
2012-11-12 13:18:46 +01:00
Benjamin Eberlei
4e04daaed4
Merge pull request #466 from ethanresnick/patch-1
...
Use `protected` so EntityGenerator can be extended
2012-11-12 04:05:23 -08:00
HarmenM
b6b75d3a27
Modified the WhereInWalkerTest to be compatible with a single InputParameter.
2012-11-12 12:30:03 +01:00
HarmenM
8a29d91d15
Update lib/Doctrine/ORM/Tools/Pagination/Paginator.php
...
Replaced the foreach loop adding all IDs as single parameters with a single parameter which injects the IDs as an array.
2012-11-12 12:30:03 +01:00
HarmenM
88d0933a6e
Update lib/Doctrine/ORM/Tools/Pagination/WhereInWalker.php
...
replaced the for-loop which adds the InputParameters for a single InputParameter for use with an array instead of a set of scalars.
2012-11-12 12:30:03 +01:00
Benjamin Eberlei
a0e8ca128c
Merge pull request #482 from Halleck45/cli-customizable
...
user can set its own commands in the cli-config.php file
2012-11-12 03:13:34 -08:00
Benjamin Eberlei
79315cb7de
Merge pull request #510 from ruian/patch-2
...
CS on QueryBuilder
2012-11-12 02:52:54 -08:00
Benjamin Eberlei
ccfd2adf5b
Merge pull request #511 from Ocramius/hotfix/console-runner-version
...
Fixing reference to Doctrine\ORM\Version
2012-11-12 02:42:30 -08:00
Marco Pivetta
7520a745c2
Fixing reference to Doctrine\ORM\Version
2012-11-12 11:31:19 +01:00
Julien 'ruian' Galenski
055d7f261c
CS on queryBuilder
2012-11-12 10:23:50 +01:00
Attila Fulop
3cee83be2b
Swapped order of path/Entities at Simplified YAML Driver
...
According to my experience, the path has to be the key, and Namespace prefix the value in the array.
2012-11-11 21:19:18 +02:00
Benjamin Eberlei
fa3f1e088d
Add test for boolean parameter type infering
2012-11-09 22:03:40 +01:00
Guilherme Blanco
2edccbfbc8
Merge pull request #137 from Squazic/patch-1
...
Grammar fix
2012-11-09 09:48:59 -08:00
Squazic
56eec8979b
Grammar fix
2012-11-09 11:55:34 -05:00
Guilherme Blanco
182ed07a41
Merge pull request #509 from smottt/master
...
SchemaTool ignoring 'fixed' option
2012-11-07 13:58:56 -08:00
Guilherme Blanco
af39687f45
Merge pull request #135 from nanocom/patch-1
...
Fixed typo
2012-11-07 13:58:05 -08:00
Arnaud Kleinpeter
9f898b0b90
Update en/tutorials/getting-started.rst
2012-11-07 22:31:40 +01:00
Metod
cfee331006
SchemaTool ignoring 'fixed' option fixed
2012-11-07 16:31:31 +01:00
Guilherme Blanco
09d53f0e58
Merge pull request #508 from mnapoli/DDC-2073
...
Fix and test for DDC-2073
2012-11-06 14:52:34 -08:00
Matthieu Napoli
c2d9197900
Fix and test for DDC-2073
2012-11-06 15:12:19 +01:00
Matthieu Napoli
e15cf324c3
Fix and test for DDC-2073
2012-11-06 15:05:53 +01:00
Fabio B. Silva
122569eee0
Fix CS
2012-11-05 22:52:43 -02:00
Fabio B. Silva
0fa89647d2
Fix DocBlock
2012-11-05 22:52:42 -02:00
Fabio B. Silva
ecaa3fd03e
Third round of refactorings on BasicEntityPersister
2012-11-05 22:52:42 -02:00
Fabio B. Silva
c8899c2b3b
second round of CS fixes
2012-11-05 22:52:42 -02:00
Fabio B. Silva
a295525501
Fix some CS
2012-11-05 22:52:41 -02:00
Fabio B. Silva
827153624c
Second round of refactorings on BasicEntityPersister
2012-11-05 22:52:41 -02:00
Fabio B. Silva
04e1838c92
change 'use' statements
2012-11-05 22:52:41 -02:00
Fabio B. Silva
14a2b61671
code refactoring on SingleTablePersister
2012-11-05 22:52:40 -02:00
Fabio B. Silva
9a041c8fdb
code refactoring on OneToManyPersister
2012-11-05 22:52:40 -02:00
Fabio B. Silva
2b1aaebe18
code refactoring on ManyToManyPersister
2012-11-05 22:52:40 -02:00
Fabio B. Silva
07492bda9d
fix JoinedSubclassPersister#delete when supports foreign key
2012-11-05 22:52:39 -02:00
Fabio B. Silva
3156c1549d
code refactoring on JoinedSubclassPersister
2012-11-05 22:52:39 -02:00
Fabio B. Silva
308b54a8f3
code refactoring on BasicEntityPersister
2012-11-05 22:52:39 -02:00
Fabio B. Silva
7e348b7815
small refacory on AbstractEntityInheritancePersister
2012-11-05 22:50:24 -02:00
Fabio B. Silva
e6f08f0b92
remove '_' prefix at AbstractCollectionPersister
2012-11-05 22:50:23 -02:00
Fabio B. Silva
b998a522b0
remove '_' prefix at BasicEntityPersister
2012-11-05 22:50:23 -02:00
Guilherme Blanco
d6d5c341e2
Merge pull request #486 from FabioBatSilva/DDC-2084
...
Fix DDC-2084
2012-11-05 16:38:35 -08:00
Guilherme Blanco
262c3eea6b
Merge pull request #506 from FabioBatSilva/DDC-2121
...
Fix DDC-2121
2012-11-05 16:27:34 -08:00
Fabio B. Silva
62f43e6ea2
remove require_once
2012-11-05 22:23:44 -02:00
Fabio B. Silva
c4e6a04676
remove duplicate return statement
2012-11-05 22:23:44 -02:00
Fabio B. Silva
a09a5b9b7b
Fix DDC-2084
2012-11-05 22:23:44 -02:00
Guilherme Blanco
57e5fa9873
Merge pull request #496 from arse/master
...
Testing for key existance in basicEntityPersister / getIndividualValue
2012-11-05 16:20:26 -08:00
Guilherme Blanco
a44579303c
Merge pull request #493 from nmpolo/codegenerationfixes
...
Do not add trailing whitespace to blank lines
2012-11-05 16:19:39 -08:00
Guilherme Blanco
863d14a61a
Merge pull request #503 from sebastianbauer/master
...
added unsigned mapping to SchemaTool options
2012-11-05 16:16:25 -08:00
Guilherme Blanco
7a895209e3
Merge pull request #502 from gwis/master
...
Fix for invalid 'double-ON' SQL generation with entity inheritance type JOINED.
2012-11-05 16:15:45 -08:00
Guilherme Blanco
283ed55824
Merge pull request #504 from nemekzg/DDC-1241
...
Proposed fix for DDC-1241
2012-11-05 16:14:48 -08:00
Guilherme Blanco
6949a95782
Merge pull request #505 from BenMorel/fix-errors
...
Fix errors in JoinClassPathExpression and SqlWalker
2012-11-05 16:12:31 -08:00
Fabio B. Silva
2f7e970c5f
Fix DDC-2121
2012-11-05 21:53:07 -02:00
Benjamin Morel
88b29a4e59
Fixed errors:
...
- Typo in variable name in JoinClassPathExpression;
- Undefined class AST\ArithmeticPrimary (x2);
- QueryException::invalidPathExpression() expects a PathExpression, not a string.
2012-11-05 14:45:57 -08:00
nemekzg
9705ee89d9
Proposed fix for DDC-1241
2012-11-05 19:55:54 +01:00
Sebastian Bauer
a27be2fab6
added unsigned mapping to SchemaTool options
2012-11-05 19:49:16 +01:00
Gordon Stratton
9e916a2893
Fix for invalid 'double-ON' SQL generation with entity inheritance type JOINED.
...
In SqlWalker::walkJoin(), SqlWalker::walkRangeVariableDeclaration() can be
called which may produce an 'ON' clause if the entity inheritance type is
JOINED. As walkJoin() may then produce another ON clause, this results in
invalid SQL (e.g. '... ON foo = bar ON (baz = quux) ...' when the inheritance
type is JOINED.
This adds a test and a fix for the problem, by checking for an inheritance type
of JOINED in walkJoin() and using AND instead of ON in the appropriate place.
It seems like this part of the code is begging to be refactored. This is my
first foray into Doctrine internals and can't see a way to do this without
stomping all over the rest of the code, but this section seems ripe for cleanup
by somebody who is familiar.
2012-11-05 01:19:25 -08:00
Guilherme Blanco
ff80e99cc9
Merge pull request #501 from jeremymarc/patch-1
...
Allow 0 id for Entity
2012-11-04 19:22:57 -08:00
Jeremy Marc
26dd533662
Compare to null instead of using isset
2012-11-04 19:04:13 -08:00
Jeremy Marc
84477440b6
Allow 0 id for Entity
...
When using a 0 id, it's throwing InvalidArgumentException (Binding entities to query parameters only allowed for entities that have an identifier.)
2012-11-04 17:41:08 -08:00
Nick Masters
e402a0c078
Spaces around ! sign
2012-11-04 15:22:32 +00:00
Nick Masters
3a8ea7260c
Merge remote-tracking branch 'origin/master' into codegenerationfixes
2012-11-04 15:14:54 +00:00
Guilherme Blanco
fc40c437cb
Merge pull request #489 from stof/cs_fixes
...
Fixed coding standards in the Tools namespace
2012-11-03 10:04:10 -07:00
Christophe Coevoet
1b01a074dc
Fixed the testsuite
2012-11-03 17:07:56 +01:00
Christophe Coevoet
1d3fe87215
Removed an unused private method in the SchemaValidator
2012-11-03 16:37:34 +01:00
Christophe Coevoet
5a6c398ea0
Fixed coding standards in the Tools namespace
2012-11-03 16:37:31 +01:00
TR
73e6164096
Update lib/Doctrine/ORM/Persisters/BasicEntityPersister.php
...
coding standards change
2012-11-03 09:47:08 +00:00
Guilherme Blanco
7d7287a1ba
Merge pull request #434 from bamarni/filter-objects
...
allowed to pass filter objects to the configurator
2012-11-02 17:52:23 -07:00
Guilherme Blanco
ec1950d3ca
Merge pull request #448 from stefanklug/master-parserFix
...
Fixed Parser problem for SELECT (((3))) as ....
2012-11-02 17:46:43 -07:00
Guilherme Blanco
515847bece
Merge pull request #498 from lanthaler/improve-generated-entity-doc
...
Improve DocBlock annotations of generated entities
2012-11-02 17:27:11 -07:00
Guilherme Blanco
409516e86c
Merge pull request #499 from md2perpe/master
...
Speling: "invidiual" -> "individual"
2012-11-02 11:13:19 -07:00
Per Persson
b5ac85d19a
Update lib/Doctrine/ORM/Persisters/BasicEntityPersister.php
...
Speling
2012-11-02 18:37:46 +01:00
Markus Lanthaler
1b7ca67fdb
Improve DocBlock annotations of generated entities
...
Currently, the DocBlock annotations for member variables contain the variable name as description which is redundant and should be removed. Furthermore the class is annotated with the FQN instead of just the name. This makes automatically generated documentation quite ugly.
2012-11-02 17:15:44 +01:00
Guilherme Blanco
129d6efd85
Merge pull request #497 from vclayton/DDC-2113
...
[DDC-2113] Surround WHERE clause with parens if using SQLFilter
2012-11-02 07:27:28 -07:00
Vaughn Clayton
ae30ce4596
[DDC-2113] Surround WHERE clause with parens if using SQLFilter
2012-11-02 08:48:57 -04:00
TR
185a0fb19c
refactoring getIndividualValue for valid key value
...
refactoring getIndividualValue
2012-11-02 00:33:55 +00:00
TR
a65996f74c
notice is thrown up if no identifier values found
...
wrapping the setting of value with an array_key_exists to prevent a notice from being thrown
2012-11-01 23:59:57 +00:00
Nick Masters
0a2ba38e58
Add new line to end of file
2012-10-30 22:42:01 +00:00
Nick Masters
0f92944edd
Do not add trailing whitespace to blank lines
2012-10-30 22:22:04 +00:00
Guilherme Blanco
98c5b34f2b
Merge pull request #492 from hason/notlike
...
Added NOT LIKE expression
2012-10-27 11:01:17 -07:00
Martin Hasoň
7f33143502
Added NOT LIKE expression
2012-10-25 12:58:19 +02:00
Guilherme Blanco
f5c1b38e2d
Merge pull request #491 from eventhorizonpl/optimise_use
...
remove unused use statements
2012-10-23 17:13:44 -07:00
Michal Piotrowski
a55b46b4bf
remove unused classes
2012-10-23 18:19:28 +02:00
Marco Pivetta
95b8e27bc5
Removing removed API description from docs
2012-10-23 15:21:55 +03:00
Guilherme Blanco
e9c7deae4f
Merge pull request #490 from eventhorizonpl/fix_test
...
fix StatementMock bindParam parameters
2012-10-22 18:56:35 -07:00
Michal Piotrowski
f6cf8f2f0c
fix StatementMock bindParam parameters
2012-10-23 00:09:38 +02:00
Guilherme Blanco
9d0b254407
Merge pull request #481 from beejeebus/master
...
check for false as a return value from get_parent_class(), not null
2012-10-21 20:54:22 -07:00
Guilherme Blanco
38d8c7f0d9
Merge pull request #467 from docteurklein/fix-bool-type-binding
...
add bool detection when inferring type
2012-10-21 18:39:29 -07:00
Guilherme Blanco
a16a935bff
Merge pull request #472 from twinh/master
...
Fixed empty namespace in generated code when repository class do not have namespace
2012-10-21 18:38:53 -07:00
Guilherme Blanco
cd7ef6e7a7
Merge pull request #484 from jappie/master
...
Prevented "Undefined index" notice when updating
2012-10-21 18:35:38 -07:00
Guilherme Blanco
814f2f9e03
Merge pull request #487 from FabioBatSilva/DDC-2069
...
Fix DDC-2069
2012-10-20 20:00:54 -07:00
Guilherme Blanco
2c0feb2a46
Merge pull request #488 from FabioBatSilva/DDC-2079
...
Fix DDC-2079
2012-10-20 19:59:58 -07:00
Fabio B. Silva
b03388293f
Fix typo
2012-10-20 15:44:09 -03:00
Fabio B. Silva
fb467a1196
Fix DDC-2079
2012-10-20 15:37:13 -03:00
Fabio B. Silva
86fddfed9a
Fix DDC-2069
2012-10-20 00:28:38 -03:00
Jasper N. Brouwer
1a17b1670b
Added testcase for DDC-2086
2012-10-19 09:15:07 +02:00
Johannes
f4cdded06c
Merge pull request #131 from adrienbrault/patch-2
...
Add UUID,CUSTOM generatedValue values to annot ref
2012-10-18 09:24:14 -07:00
Adrien Brault
e3bbd058f2
Add UUID,CUSTOM generatedValue values to annot ref
2012-10-18 18:34:22 +03:00
Jasper N. Brouwer
0cfc37d757
Prevented "Undefined index" notice when updating
...
While executing updates on an entity scheduled for update without
a change-set, an "Undefined index" notice is raised.
2012-10-17 21:50:09 +02:00
Johannes
54941d1f09
Merge pull request #130 from drak/patch-1
...
Add example for index definition
2012-10-17 12:06:44 -07:00
Drak
05b170fe99
Add example for index definition
2012-10-17 20:41:15 +02:00
Halleck45
d3c58d83a5
user can set its own commands in the cli-config.php file
2012-10-16 17:03:18 +02:00
justin.randell
ca82a4720b
check for false as a return value from get_parent_class(), not null
2012-10-16 15:04:25 +11:00
Per Persson
5657e199bd
Update en/tutorials/getting-started.rst
...
Spelling: UDPATE -> UPDATE
2012-10-15 17:28:12 +03:00
Benjamin Eberlei
56e96793c0
Merge branch 'DDC-2067'
2012-10-12 21:47:39 +02:00
Benjamin Eberlei
deb6327b56
[DDC-2067] Refactor and fix bug in boolean evaluation inside XML Driver.
2012-10-12 21:47:09 +02:00
Benjamin Eberlei
b7b49203aa
Merge pull request #477 from jakoch/master
...
fixed typo/bug and CS on use statements
2012-10-12 11:29:00 -07:00
jakoch
d4a6c488ca
fixed use statements
2012-10-12 13:53:20 +02:00
jakoch
ec5ad7136f
fix typo
2012-10-12 13:37:17 +02:00
Guilherme Blanco
a4b85c49c9
Merge pull request #474 from okovalov/master
...
Fixed bug with comment option not being added to column.
2012-10-11 22:22:59 -07:00
Oleksandr Kovalov
90bbb35655
Fixed bug with comment option not being added to column.
2012-10-11 15:57:51 +00:00
twinh
8cc24f4cf2
removed blanks
2012-10-11 06:04:03 -07:00
twinh
66efd65e64
fixed empty namespace in generated code when repository class do not have namespace
2012-10-11 06:01:55 -07:00
Klein Florian
7f8af83b5b
add bool detection when inferring type
2012-10-10 11:20:41 +02:00
Ethan
c604adc804
Use protected so generator can be extended
...
This is definitely something I'd like to be able to extend, and I imagine others might too.
2012-10-09 08:00:51 -03:00
Guilherme Blanco
65fabc20c9
Merge pull request #465 from yohang/master
...
Fixed a typo in ConcatFunction
2012-10-08 06:43:53 -07:00
Stefan Klug
bf54c22cd9
removed unneded variable
2012-10-08 14:01:04 +02:00
Stefan Klug
1e1f34f9cb
cleanup ScalarExpression
...
_isFunction doesn't exclude subselects anymore
2012-10-08 13:59:54 +02:00
Stefan Klug
6ccf7a7ac7
fixed Parser which incorrectly treated ((( as function
2012-10-08 13:57:34 +02:00
Stefan Klug
d344407636
added test case
2012-10-08 13:49:31 +02:00
yohang
adc3d21385
Fixed typo on ConcatFunction
2012-10-08 12:44:36 +02:00
Benjamin Eberlei
235ad8e553
[DDC-2052] Add SqlWalker::setQueryComponent() to allow modification of the query component in a custom output walker
2012-10-06 11:16:16 +02:00
Benjamin Eberlei
a67a6aa685
Merge pull request #414 from cordoval/DDC-1872
...
[DDC-1872] Overriding Mapping Annotations
2012-10-06 01:35:47 -07:00
Benjamin Eberlei
a5e043e6e6
Merge pull request #444 from goetas/xmlfix
...
Fixed some typo error in XML Exporter
2012-10-05 14:16:59 -07:00
Benjamin Eberlei
f7220ae416
Merge pull request #455 from radmar/master
...
Fixed unique-constraint name in XML Exporter
2012-10-05 11:23:55 -07:00
Benjamin Eberlei
44c0ca4d3c
[DDC-2059] Fix column and foreign key interfering with each other during reverse engineering.
2012-10-05 20:03:51 +02:00
Benjamin Eberlei
fd28624120
Merge pull request #456 from Slamdunk/patch-1
...
Optimize autoload prefix in composer.json
2012-10-05 10:05:14 -07:00
Benjamin Eberlei
a0440b63bb
Merge pull request #462 from doctrine/DDC-2055
...
[DDC-2055] Generate SELECT clause from ResultSetMappingBuilder
2012-10-05 09:46:37 -07:00
Benjamin Eberlei
0c8be37ca9
Merge pull request #458 from barelon/master
...
Use cascade=all if all cascade options set
2012-10-05 09:45:44 -07:00
Benjamin Eberlei
13762f20c9
Merge pull request #422 from FabioBatSilva/DDC-1574
...
DDC-1574 - "new" operator
2012-10-05 07:31:18 -07:00
Benjamin Eberlei
a47359e3f5
[DDC-2055] Fix CS
2012-10-04 20:18:10 +02:00
Benjamin Eberlei
91caff1d89
Merge pull request #459 from FabioBatSilva/DDC-2012
...
Fix DDC-2012
2012-10-03 03:46:04 -07:00
Benjamin Eberlei
913377e31b
[DDC-2055] Add support to generate entity result parts of the SELECT clause from a ResultSetMappingBuilder instance. Add support for column incrementing.
2012-10-03 12:35:14 +02:00
Benjamin Eberlei
079beb957e
Merge pull request #461 from franmomu/patch-1
...
[SchemaValidator] Fix typo
2012-10-03 01:46:44 -07:00
Fran Moreno
45eef4a03c
[SchemaValidator] Fix typo
2012-10-03 10:51:14 +03:00
Guilherme Blanco
3ecce5251b
Merge pull request #128 from egulias/master
...
[Association-Mapping] - Missing many-to-many xml target-entity tag
2012-10-02 07:30:44 -07:00
Eduardo Gulias Davis
742590d1d7
[Association-Mapping] - Mising target-entity tag in xml format
...
In the many to many bidirectional xml format the "target-entity" tag is missing and generates a MappingException when not included.
2012-10-02 12:15:03 +03:00
barelon
919cf8558b
Remove trailing whitespace
2012-10-02 00:16:29 +03:00
barelon
3b27216c51
add empty lines around if block
2012-10-02 00:14:24 +03:00
Fabio B. Silva
5cb4466f7c
Fix test case
2012-09-30 15:47:00 -03:00
Fabio B. Silva
4510f5a5b8
Fix DDC-2012
2012-09-30 15:40:19 -03:00
barelon
cd37ec47d5
Set 'cascade' => 'all' if all cascade options set
2012-09-30 01:16:21 +03:00
barelon
c97eff94f5
Output cascade={"all"} if all cascade options set
2012-09-30 01:12:06 +03:00
Fabio B. Silva
dd984c7319
remove extra line
2012-09-29 16:19:03 -03:00
Fabio B. Silva
5f89fa4190
fix CS
2012-09-29 16:19:03 -03:00
Fabio B. Silva
7c754e495e
support namespace alias
2012-09-29 16:19:03 -03:00
Fabio B. Silva
1bd6e841bf
Fix some CS
2012-09-29 16:19:02 -03:00
Fabio B. Silva
de93983dff
assume entity namespace when not given
2012-09-29 16:19:02 -03:00
Fabio B. Silva
3aa8d3fdac
test constructor exceptions
2012-09-29 16:19:01 -03:00
Fabio B. Silva
91efe10855
fix some cs on ObjectHydrator
2012-09-29 16:19:01 -03:00
Fabio B. Silva
4dca27962e
support multiple operators
2012-09-29 16:19:01 -03:00
Fabio B. Silva
6844116b94
test case expression
2012-09-29 16:19:00 -03:00
Fabio B. Silva
f0403a5394
test literal values
2012-09-29 16:19:00 -03:00
Fabio B. Silva
e5e45a3a5c
test sql generation
2012-09-29 16:18:59 -03:00
Fabio B. Silva
ddb2651691
fix tests on postgres
2012-09-29 16:18:59 -03:00
Fabio B. Silva
af2f556fd3
small refactory
2012-09-29 16:18:59 -03:00
Fabio B. Silva
b19e4a6440
support arithmetic expression and aggregate functions
2012-09-29 16:18:58 -03:00
Fabio B. Silva
88f04b5ebd
parse nested new operators
2012-09-29 16:18:58 -03:00
Fabio B. Silva
2b403b7dad
basic support refactory
2012-09-29 16:18:58 -03:00
Fabio B. Silva
b29d47a682
cache new object mappings
2012-09-29 16:18:58 -03:00
Fabio B. Silva
0fbb78e61a
basic support, need some code refactory and improvements
2012-09-29 16:18:57 -03:00
Fabio B. Silva
ed89695a8c
collect new object parameters
2012-09-29 16:18:57 -03:00
Fabio B. Silva
0e60c50c5e
small code refactoring
2012-09-29 16:18:56 -03:00
Fabio B. Silva
0c1a8cd43f
sql generation
2012-09-29 16:18:56 -03:00
Fabio B. Silva
ee7b5da64a
start work
2012-09-29 16:18:56 -03:00
Filippo Tessarotto
95971a6180
Optimize autoload prefix in composer.json
...
By having more specific autoload prefixes it is possible to reduce the number of stat calls made.
2012-09-28 09:58:38 +03:00
Marcin Radziwoński
380f4fbac7
Fixed unique-constraint name in XML Exporter
2012-09-26 14:27:16 +02:00
Guilherme Blanco
831f0acdc5
Merge pull request #450 from KonstantinKuklin/master
...
fix some phpdoc
2012-09-20 18:10:22 -07:00
Konstantin Kuklin
34d8843fd6
improve phpdoc
2012-09-21 03:20:06 +04:00
Lennart Hildebrandt
a61afedcf9
Fixed typo for mapping type "array"
2012-09-20 13:11:36 +02:00
Lennart Hildebrandt
06ad3389e0
Added .idea for PhpStorm contributers
2012-09-20 13:11:09 +02:00
Guilherme Blanco
fa29d36d09
Merge pull request #126 from barelon/patch-1
...
Fix some typos in annotations reference
2012-09-18 08:56:50 -07:00
barelon
c463121da8
Fix some typos in annotations reference
...
- Changed capitalization of the `@GeneratedValue` and `@Version` examples which incorrectly used lower case
- Fixed parameter names in `@NamedNativeQuery` and `@SqlResultSetMapping`
- Changed the Docblock style for the @MappedSuperclass example to the style used by all examples
2012-09-18 11:28:24 +03:00
Benjamin Eberlei
a9517b1b17
Merge pull request #436 from Powerhamster/comment-fixes
...
Comment fixes
2012-09-17 03:45:34 -07:00
Benjamin Eberlei
a256c43871
Merge pull request #442 from FabioBatSilva/fix-overrides-annot
...
Remove unused code
2012-09-17 03:33:19 -07:00
Asmir Mustafic
bc277c6e28
spaces
2012-09-13 11:04:23 +02:00
Asmir Mustafic
f86dcfc288
typo fix
2012-09-13 09:40:14 +02:00
Guilherme Blanco
68f543b8bb
Merge pull request #443 from cas87/patch-1
...
Allow 'nullable' attribute to be used during XML export
2012-09-12 20:12:33 -07:00
Cas
de5b20d0bf
Update lib/Doctrine/ORM/Tools/Export/Driver/XmlExporter.php
...
Allow 'nullable' attribute to be exported for fields, something which already worked in YamlExport. This addition saved me a lot of time during development, not having to manually re-factor after each export.
Don't know why this was missing, maybe it's me who is missing something, so let me know ;)
2012-09-13 03:43:27 +03:00
Fabio B. Silva
8193397d4f
remove duplicate code
2012-09-12 21:31:02 -03:00
Guilherme Blanco
dacb51fba2
Merge pull request #437 from sroddy/persistent_collection_matching_fix
...
Fixes PersistentCollection::matching() when collection is not initialize...
2012-09-07 13:18:45 -07:00
Stefano Rodriguez
9a14b40495
use of assertCount
2012-09-07 14:44:18 +02:00
Stefano Rodriguez
bb8dd6cb11
Fixes PersistentCollection::matching() when collection is not initialized and there are NEW entities in the collection
2012-09-07 10:46:34 +02:00
Stefano Rodriguez
4b3ecfe674
Added a failing test case on PersistentCollection::matching() when collection is not initialized and there are NEW entities in the collection
2012-09-07 10:46:33 +02:00
Thomas Rothe
7acdcd6952
added missing use statement
2012-09-06 21:03:40 +02:00
Thomas Rothe
7beffb5a5f
Several fixes for comments
...
updated @param and @throws annotations
2012-09-06 21:03:26 +02:00
Marco Pivetta
0ff1f418bd
Update en/reference/tools.rst
...
Fixed import as reported by manoelcampos@gmail.com
2012-09-05 22:31:07 +03:00
Benjamin Eberlei
ab990cfba6
Merge branch 'DDC-2003'
2012-09-05 19:28:42 +02:00
Benjamin Eberlei
2c99f97c8b
[DDC-2003] Remove unused variable
2012-09-05 19:28:32 +02:00
Bilal Amarni
a9b4debe37
allowed to pass filter objects to the configurator
2012-09-03 10:52:46 +02:00
Josiah Truasheim
959c4f026f
Refactored the SqlValueVisitor to move all type processing to the entity persister.
2012-08-31 20:58:16 +07:00
Josiah Truasheim
e0d16331a4
Fixed formatting issues identified by Stof
2012-08-31 19:51:22 +07:00
Josiah Truasheim
a6b6b25267
Removed the closure keyword as it isn't supported in PHP 5.3
2012-08-31 18:16:02 +07:00
Josiah Truasheim
c7f5d9d77d
Fixed DDC-2003 using closures to reference the functionality of the calling entity persister from the SQL value visitor.
2012-08-31 18:12:44 +07:00
Josiah Truasheim
783c53d57c
Added a failing test for DDC-2003
2012-08-31 17:52:46 +07:00
Bilal Amarni
d47b872292
fixed typo
2012-08-30 16:35:46 +03:00
Bilal Amarni
7c7118d883
simplified interface check
2012-08-30 16:25:50 +03:00
Karsten Dambekalns
4e4cf33342
Update en/reference/working-with-associations.rst
...
Clarifiy that orphanRemoval works with one-to-one, one-to-many and many-to-many associations.
2012-08-30 11:56:06 +03:00
Benjamin Eberlei
bc2476f342
[DDC-1918] Fix weird results at the end of paginator when using fetch joins
2012-08-29 15:16:07 +02:00
Benjamin Eberlei
9c682efb2f
Merge pull request #431 from pitiflautico/patch-1
...
[ORM] Fix double semicolon
2012-08-29 05:33:12 -07:00
Benjamin Eberlei
267daa5fc1
Merge pull request #428 from chEbba/query-builder-common-criteria
...
Add QueryBuilder::addCriteria() for Criteria - QueryBuilder bridge
2012-08-29 05:06:50 -07:00
Kirill chEbba Chebunin
ac98f15cfa
Fix ORMInvalidArgumentException factory methods with return instead of throw
2012-08-29 14:02:51 +02:00
Kirill chEbba Chebunin
e68807ad4f
Change version for QueryExpressionVisitor
2012-08-29 16:00:02 +04:00
Kirill chEbba Chebunin
a162f00ecc
Remove builders from QueryExpressionVisitorTest constructor
2012-08-29 15:48:04 +04:00
Daniel Perez Pinazo
5b8ead9db8
[ORM] Fix double semicolon
2012-08-29 13:40:36 +03:00
Francesc Rosàs
e873351624
Remove "before the lists of scheduled changes are cleared"
...
It is not true.
2012-08-23 21:51:33 +03:00
Benjamin Eberlei
9ae1f804e1
Merge pull request #120 from saltybeagle/master
...
Minor spelling correction & grammatical formatting
2012-08-23 06:55:26 -07:00
Brett Bieber
46be81115a
Minor spelling correction & grammatical formatting
2012-08-23 08:41:19 -05:00
Kirill chEbba Chebunin
2aba7fb374
Add test for QueryBuilderTest::addCriteria with undefined limits
2012-08-20 20:31:57 +04:00
Kirill chEbba Chebunin
1c2f2b5c13
Store QueryExpressionVisitor parameters as array
2012-08-20 20:28:22 +04:00
Kirill chEbba Chebunin
433d208572
Remove extra space from QueryBuilder::addCriteria()
2012-08-20 20:27:55 +04:00
Kirill chEbba Chebunin
d3ab948d88
Overwrite query limits only if set in QueryBuilder::addCriteria()
2012-08-20 20:27:30 +04:00
Kirill chEbba Chebunin
148789600a
Remove unnecessary else statements after if with return in QueryExpressionVisitor
2012-08-20 20:27:14 +04:00
Kirill chEbba Chebunin
c6b3899c2d
Add QueryBuilder::addCriteria() for Criteria - QueryBuilder bridge
2012-08-20 20:27:03 +04:00
Guilherme Blanco
ece6a005bc
Merge pull request #425 from FabioBatSilva/DDC-1977
...
Fix DDC-1977
2012-08-15 15:29:26 -07:00
FabioBatSilva
641af15280
Fix DDC-1977
2012-08-15 22:57:21 +02:00
Alexander
185b4e0c41
Fix setCustomHydrationModes + added test
2012-08-14 22:43:32 +02:00
Alexander
5c585b4c02
Merge branch 'config'
2012-08-14 22:33:36 +02:00
Martin Meredith
787a208708
Create the setCustomHydrationMode function
...
This allows multiple hydrators to be set at once, and also allows for
the customHydrationMode options to be set via DoctrineORMModule
2012-08-14 22:33:25 +02:00
Guilherme Blanco
f8a582d454
Merge pull request #391 from FabioBatSilva/ns-class
...
Give FQCN to NamingStrategy#propertyToColumnName
2012-08-12 15:50:20 -07:00
Gary Hockin
b6ddb58634
Update en/tutorials/getting-started.rst
...
Cleaner to remove the note, and modify the code to put the doctrine_bootstrap.php include first?
2012-08-07 13:26:51 +02:00
Benjamin Eberlei
a9dfe1e10e
Merge pull request #118 from Spabby/master
...
Added a note to explain something that confused me for a while in this tutorial
2012-08-07 04:15:59 -07:00
Gary Hockin
711844296d
Update en/tutorials/getting-started.rst
...
Fixed failed markdown
2012-08-07 13:12:09 +02:00
Gary Hockin
f3dea276e7
Update en/tutorials/getting-started.rst
...
Added note that tripped me up.
2012-08-07 13:10:25 +02:00
Guilherme Blanco
72ce9a7f37
Merge pull request #417 from jonathaningram/patch-1
...
Remove unused use statement
2012-08-01 23:38:56 -07:00
Jonathan Ingram
04de52d4c9
Remove unused use statement
2012-08-02 15:33:09 +10:00
Benjamin Eberlei
2f72219d6e
Finish first version of filtering api documentation
2012-08-01 22:15:44 +02:00
Benjamin Eberlei
104a76a6b1
Update EntityRepository and PersistentCollection to new Criteria#expr() method instead of having to implement themselves.
2012-08-01 21:37:22 +02:00
Luis Cordova
221ab3b695
[DDC-1872] adjust as per @stof comments on test skipped message
2012-08-01 02:27:23 -05:00
Benjamin Eberlei
eaeda36bdb
Add filtering collections
2012-07-31 23:58:37 +02:00
Benjamin Eberlei
83b509e033
Move again into tools
2012-07-31 23:26:40 +02:00
Benjamin Eberlei
71d3f5852d
Move Mapping Validation into Configuration section
2012-07-31 23:25:33 +02:00
Benjamin Eberlei
5e9255dda8
Reorganize query builder docs to put the useful stuf fon top.
2012-07-31 23:20:25 +02:00
Michael Moravec
79a04b295f
[DDC-1961] Fixed parameter type support in Parameter
2012-07-31 21:01:21 +02:00
Luis Cordova
6c932af0a0
[DDC-1872] address comments from beberlei
2012-07-29 23:33:18 -05:00
Luis Cordova
5d0082471f
[DDC-1872] skip 5.4 versions for php 5.3 uncompatible tests
2012-07-29 22:55:26 -05:00
Benjamin Eberlei
00a5f18544
[DDC-1937] Fix bug with apc and annotation caching using a workaround.
2012-07-29 11:56:41 +02:00
Benjamin Eberlei
e8d3fc73ff
Merge branch 'DDC-1964'
2012-07-29 11:25:54 +02:00
Benjamin Eberlei
7c1235dedb
[DDC-1964] Fix issue with refresh and and object hydrator not setting field to null explicitly to override possible previous values.
2012-07-29 11:25:45 +02:00
Benjamin Eberlei
bcbef5670c
Merge branch 'DDC-1939'
2012-07-29 09:27:20 +02:00
Benjamin Eberlei
354fa14df4
[DDC-1939] Add test for persistent collection delete with composite key
2012-07-29 09:27:08 +02:00
Igor Wiedler
afd8ea91e3
[2.3] Use HelperSet in cli-config.php
2012-07-29 09:09:17 +02:00
Benjamin Eberlei
14bd794960
Merge pull request #411 from stof/new_types
...
Added the new DBAL 2.3 types in the EntityGenerator typehint map
2012-07-29 00:04:03 -07:00
Luis Cordova
26608fed5a
[DDC-1872] add tutorial for override annotations mappings
2012-07-29 00:39:24 -05:00
Luis Cordova
8742377c3b
[DDC-1872] add tests to evaluate annotations overrides with traits
2012-07-29 00:03:25 -05:00
Christophe Coevoet
cebb820030
Added the new DBAL 2.3 types in the EntityGenerator typehint map
2012-07-27 10:34:59 +02:00
Guilherme Blanco
04e6cc78cd
Fixed is_subclass_of comparing an interface which brought our requirement to 5.3.9. Changed to reflection approach which still keep us at the same dependency as before.
2012-07-26 15:50:51 -04:00
Johannes M. Schmitt
fc4a07c2b3
added failing test for refresh with eager fetching
2012-07-26 12:54:58 +02:00
Guilherme Blanco
8a86242a5d
Merge pull request #116 from benlumley/patch-2
...
Fix missing :
2012-07-25 16:34:54 -07:00
Ben Lumley
7c79985460
Fix missing :
2012-07-25 23:31:30 +02:00
Guilherme Blanco
1eaa822d2a
Merge branch 'master' of github.com:doctrine/doctrine2
2012-07-25 01:24:33 -04:00
Guilherme Blanco
9dd3b66fe6
Fixed DefaultRepositoryClassName which should follow the Persistence interface, not ORM class.
2012-07-25 01:23:52 -04:00
Fabio B. Silva
1369e3d133
change ticket/group
2012-07-24 14:34:27 +02:00
Fabio B. Silva
50dac4096a
give FQCN to NamingStrategy#propertyToColumnName
2012-07-24 14:34:27 +02:00
Marco Pivetta
aa0cb0b6d7
DDC-1939 - Removing references to non-existing AssociationMapping class
2012-07-24 11:37:57 +02:00
Guilherme Blanco
619d29adb2
Merge pull request #400 from stof/command_help
...
Changed commands to use command.name in the help
2012-07-22 22:04:15 -07:00
Guilherme Blanco
68adc7fed3
Merge pull request #403 from Ocramius/DDC-1925
...
DDC-1925 tests
2012-07-22 22:02:13 -07:00
Guilherme Blanco
98c4833afc
Merge pull request #404 from Ocramius/DDC-1933
...
DDC-1933 - Fixing cloning of QueryBuilder and adding related tests
2012-07-22 22:01:35 -07:00
Guilherme Blanco
e5979b5ef2
Moved implementation from EntityRepository to EntityManager. This decouples ER implementation from EM, as it should be.
2012-07-23 00:52:41 -04:00
Marco Pivetta
fb3c6f0e8f
DDC-1933 - Fixing cloning of QueryBuilder and adding related tests
2012-07-21 20:34:20 +02:00
Marco Pivetta
5b3eee8071
DDC-1925 - squashing ticket tests into a single file
2012-07-20 00:03:39 +02:00
Marco Pivetta
81f97e92d3
Adding tests for DDC-1925
2012-07-19 22:00:56 +02:00
Guilherme Blanco
1502d9b552
Merge pull request #111 from Adel-E/patch-1
...
Fix typo
2012-07-19 08:53:04 -07:00
Adel
f0cc192d7b
Fix typo
2012-07-19 16:46:56 +02:00
Benjamin Eberlei
93cef61270
Fix DBAL dependency range evaluated as AND, not as OR
2012-07-18 11:23:20 +02:00
Christophe Coevoet
a723b73929
Changed commands to use command.name in the help
2012-07-17 00:55:09 +02:00
Benjamin Eberlei
34ac207b3c
Bump Version to 2.4.0-DEV
2012-07-16 15:25:20 +02:00
Benjamin Eberlei
c8fcd3f8a5
Bump dependencies
2012-07-16 15:24:04 +02:00
Benjamin Eberlei
a0ba420969
Bump dev version to 2.3.0
2012-07-16 15:23:33 +02:00
Benjamin Eberlei
816f709950
Release 2.3.0-BETA1
2012-07-16 15:23:33 +02:00
Benjamin Eberlei
e0455b5550
Merge pull request #397 from Ocramius/cleanup/removing-deprecated-metadata-drivers
...
Cleanup/removing deprecated metadata drivers
2012-07-12 00:29:41 -07:00
Guilherme Blanco
fcff39571f
Merge pull request #399 from Adel-E/patch-1
...
Fix phpdocs
2012-07-11 15:50:35 -07:00
Adel
51cd553de8
Fix phpdocs
2012-07-11 22:44:07 +00:00
Guilherme Blanco
a673018508
Merge pull request #109 from michaelperrin/typo_fixes
...
[Index] Small typo fix
2012-07-11 06:54:24 -07:00
Michaël Perrin
9b2f8dca64
[Index] Small typo fix
2012-07-11 11:51:29 +02:00
Marco Pivetta
75276e453e
Restoring class names extending the Doctrine\Common implementation for BC compatibility
2012-07-10 13:57:33 +02:00
Marco Pivetta
a2e00a96cc
Reverting change on referenced DBAL commit
2012-07-10 02:59:33 +02:00
Marco Pivetta
915da58fb7
Adding upgrade notes about the BC Break
2012-07-10 02:51:55 +02:00
Marco Pivetta
f3aae5de0e
Removing tests moved to Doctrine\Common
2012-07-10 02:48:28 +02:00
Marco Pivetta
01f058953b
Removing DriverChain and using Doctrine\Common implementation instead
2012-07-10 02:47:08 +02:00
Marco Pivetta
e2c1d7c38a
Removing deprecated StaticPHPDriver and PHPDriver
...
modifying tests so that the new implementation in Doctrine\Common is referenced
2012-07-10 02:31:30 +02:00
Benjamin Eberlei
113c6f51c2
Merge pull request #381 from doctrine/DDC-1637
...
[DDC-1637] Collection Filtering API
2012-07-09 08:16:31 -07:00
Benjamin Eberlei
b62ef939bf
Merge pull request #108 from stephpy/fix_typo
...
fix typo on namespace
2012-07-09 02:12:14 -07:00
Stéphane PY
366bc21ab8
fix typo on namespace
2012-07-09 10:09:28 +02:00
Benjamin Eberlei
b2385e0afa
[DDC-1637] Implementation of Criteria Collections API for
...
PersistentCollection (OneToMany only) and EntityRepository.
2012-07-09 09:59:48 +02:00
Benjamin Eberlei
4aafeaf7a6
Fix test on PostgreSQL
2012-07-09 09:55:41 +02:00
Benjamin Eberlei
b3119c0a5f
Merge pull request #107 from frosas/document-pre-and-post-flush-events
...
Document preFlush and postFlush events
2012-07-08 13:21:54 -07:00
Francesc Rosàs
610295f875
Document preFlush and postFlush events
2012-07-08 21:30:00 +02:00
Benjamin Eberlei
fe292cc503
Merge pull request #392 from widop/patch-1
...
Invalid paginator query cloning
2012-07-08 09:34:09 -07:00
Benjamin Eberlei
3b04cf5b2f
Merge pull request #396 from Ocramius/DDC-1893
...
DDC-1893 - Updating configuration to reflect latest Doctrine Common changes
2012-07-08 09:26:15 -07:00
Benjamin Eberlei
f3f1091b44
Merge branch 'DDC-1657'
2012-07-08 18:22:59 +02:00
Benjamin Eberlei
6e924f2a2c
[DDC-1657] Prove that DBAL changes also work in ORM, not leading to drop sequence statements on postgresql with SERIAL pks.
2012-07-08 18:22:38 +02:00
Marco Pivetta
346e34adf6
Reverting to default annotation driver with - delayed to 3.0
2012-07-08 17:33:50 +02:00
Marco Pivetta
245d906ebf
Adding parameter to allow switching annotation reader implementation
2012-07-08 17:17:32 +02:00
Benjamin Eberlei
eaae1f222f
Fix PostgreSQL test-failure. UnitOfWork#getEntityState() produced exists() queries because of unmanaged entity passed as parameter to AbstractQuery#setParameter(), thereby skewing the sql count
2012-07-08 16:57:40 +02:00
Marco Pivetta
b67140f73c
Cleaning up description of the BC Break
2012-07-08 16:49:54 +02:00
Marco Pivetta
7c2e5ae5b2
Adding tests for configuration object (also to ensure defaults for BC break early discovery)
2012-07-08 16:32:27 +02:00
Marco Pivetta
fc00d5f39f
Updating upgrade docs and fixes suggested by @beberlei
2012-07-08 16:32:27 +02:00
Marco Pivetta
86dbddd596
Updating to reflect latest Doctrine Common changes
...
Also, changing logic so that the SimpleAnnotationReader is no more the
default one. An additional parameter for the method will allow using it.
The CS fixes that were additionally implemented (along with other minor changes
that do not affect BC compatibility are caused by a CS sniff via IDE.
2012-07-08 16:30:35 +02:00
Benjamin Eberlei
5adc8bec58
Cleanup UPDATE.md chapter mess a bit
2012-07-08 14:52:16 +02:00
Benjamin Eberlei
baae40c5f4
Concatenate UPGRADE files into new UPGRADE.md
2012-07-08 14:48:32 +02:00
Benjamin Eberlei
7b758eee57
[DDC-1816] Verify XML <discriminator-column /> element works as expected/documented in tests.
2012-07-08 09:06:52 +02:00
Benjamin Eberlei
15c9f10bc1
Make composer subtitle to clarify this section applies to Composer only
2012-07-07 18:25:45 +02:00
Benjamin Eberlei
18d4a2f970
[DDC-1775] Fix NotifyPropertyChanged Listener being attached in addIdentityMap(), which is too late for certain use-cases in the persist lifecycle.
2012-07-07 17:47:29 +02:00
Eric GELOEN
3bdf86922c
Add clone query test
2012-07-07 17:35:05 +02:00
Benjamin Eberlei
3783ca6b43
[DDC-1707] Working testcase
2012-07-07 17:15:32 +02:00
Benjamin Eberlei
ff2c5f85c3
[DDC-1846] Fix EntityRepository#find() with pessimistic locking.
2012-07-07 16:49:26 +02:00
Benjamin Eberlei
58a2cba6da
Merge pull request #393 from stof/root_entity_found
...
Updated the classmetadata factory for Common 2.3
2012-07-07 07:21:42 -07:00
Alexander
45df16cdc6
Update DBAL vendor
2012-07-07 15:15:56 +02:00
Alexander
2dd2d694ca
Introduce StatementMock to make testsuite ready for upcoming DBAL change
2012-07-07 15:14:51 +02:00
Eric GELOEN
8c24e528ad
Clone directly the ArrayCollection instead of looping
2012-07-07 11:38:53 +02:00
Christophe Coevoet
8d0f49f227
Updated the classmetadata factory for Common 2.3
...
This adds the new method introduced in doctrine/common#162
2012-07-06 22:18:06 +02:00
Eric GELOEN
996e47bf61
Replaced a shallow-copy with a deep-copy to avoid side effects.
2012-07-06 17:49:03 +02:00
Benjamin Eberlei
0a95e42ea8
Merge branch 'DDC-1735'
2012-07-05 22:20:28 +02:00
Benjamin Eberlei
82e1d7fa80
[DDC-1735] Change file_put_contents with LOCK_EX usage to temporary filename + rename, which works on Windows NFS drives.
2012-07-05 22:20:16 +02:00
Benjamin Eberlei
12cddf20e3
[DDC-1900] Throw exception when overwriting internal function.
2012-07-05 21:52:40 +02:00
Benjamin Eberlei
cc4613533b
Fix tests after DBAL adjustments
2012-07-04 23:58:41 +02:00
Benjamin Eberlei
4bfdcd32f7
Merge pull request #384 from FabioBatSilva/DDC1885
...
[DDC-1885] Fix quotes in many to many persisters
2012-07-04 14:43:48 -07:00
Guilherme Blanco
6ba205f561
Merge pull request #314 from Ocramius/dcom-metadata-drivers-reuse
...
Doctrine\Common metadata drivers reuse
2012-07-04 13:30:54 -07:00
Guilherme Blanco
6093017bc6
Merge pull request #389 from SamsonIT/fix_fetch_relation_by_id_of_association_field_2_3
...
fixed DDC-1895
2012-07-04 13:27:44 -07:00
Benjamin Eberlei
6943244107
Fix docs
2012-07-04 22:15:36 +02:00
Bart van den Burg
64904c77c1
fixed DDC-1895
2012-07-04 22:11:50 +02:00
Fabio B. Silva
632d13ba0c
fix extra lazy count
2012-07-04 17:11:43 -03:00
Fabio B. Silva
fe11831bd7
test remove item and clear collection
2012-07-04 17:11:43 -03:00
Fabio B. Silva
63580dfe26
Fix CS
2012-07-04 17:11:43 -03:00
Fabio B. Silva
076663fe3a
fix DDC-1885 in persisters
2012-07-04 17:11:42 -03:00
Benjamin Eberlei
1023af6a1f
[DDC-1861] Fix UnitOfWork#doMerge()
2012-07-04 21:55:59 +02:00
Benjamin Eberlei
da331cd277
Merge pull request #376 from lstrojny/de-deprecate-transaction-methods
...
De-deprecate transaction handling methods
2012-07-04 12:42:55 -07:00
Benjamin Eberlei
30e86f442f
[DDC-1907] Fix template variable placeholder
2012-07-04 21:30:25 +02:00
Benjamin Eberlei
5cdb0ae8be
[DDC-1907] Add generation of remove method for collections
2012-07-04 21:04:47 +02:00
Marco Pivetta
379e69865e
Reusing chained driver now available in common, fixing cs/code smells and removing duplicate docs.
2012-07-04 20:59:22 +02:00
Marco Pivetta
97d7cae012
Stoffing and including changes of doctrine/common#138
2012-07-04 20:59:22 +02:00
Marco Pivetta
f6381d7b76
Updating ClassMetadataFactory to comply with new abstract CMF interface as of doctrine/common#150
2012-07-04 20:59:21 +02:00
Marco Pivetta
94714db132
Fixing code sniff issues before continuing refactoring of
2012-07-04 20:59:21 +02:00
Marco Pivetta
e522391ee9
Reusing Doctrine\Common's AbstractClassMetadataFactory
2012-07-04 20:59:21 +02:00
Marco Pivetta
943cff673a
Fixing test expecting a ORM\Mapping exception
...
Those exceptions are now in the Common\Persistence\Mapping namespace
2012-07-04 20:59:21 +02:00
Marco Pivetta
63fbf7c2e5
Fixing broken tests because of wrong method signature and reference to the old Driver interface
2012-07-04 20:59:21 +02:00
Marco Pivetta
737b74e5d5
Rebasing on master
2012-07-04 20:59:21 +02:00
Marco Pivetta
01b1b0b5fb
Removing code from the simplified drivers, use SymfonyFileLocator instead
2012-07-04 20:59:21 +02:00
Marco Pivetta
5c05a4356a
Adding notes about upgrading to 2.3 (metadata drivers changes)
2012-07-04 20:59:21 +02:00
Marco Pivetta
245718c9eb
Removing AbstractFileDriver, using Doctrine\Common\Persistence\Mapping\Driver\FileDriver instead
2012-07-04 20:59:21 +02:00
Marco Pivetta
e9e36dcf32
Removing Doctrine\ORM\Mapping\Driver\Driver interface
...
Interface has been moved to Doctrine\Common\Persistence\Mapping\Driver\MappingDriver
2012-07-04 20:59:21 +02:00
Marco Pivetta
905acf9176
Removing Doctrine\ORM\Mapping\Driver\Driver interface
...
Interface has been moved to Doctrine\Common\Persistence\Mapping\Driver\MappingDriver
2012-07-04 20:59:21 +02:00
Marco Pivetta
5b97357402
Removing unused imports
2012-07-04 20:59:21 +02:00
Marco Pivetta
abd3ddc1b1
Removing code duplication, reusing Doctrine\Common\Persistenc\Mapping\Driver\AnnotationDriver
2012-07-04 20:59:20 +02:00
Marco Pivetta
ccace8cb8b
Moving exception throwing for invalid file mappings to Doctrine\Common\Persistence\Mapping\Driver\FileDriver
2012-07-04 20:59:20 +02:00
Marco Pivetta
03fb734de8
Removing API that should be moved to common
2012-07-04 20:59:20 +02:00
Marco Pivetta
82cfda3dec
Fixing reflection exceptions caused by changes in the AbstractFileDriver interface
2012-07-04 20:59:20 +02:00
Marco Pivetta
bb998d1738
Emulating feature that has to be moved to Doctrine\Common
2012-07-04 20:59:20 +02:00
Marco Pivetta
e9f23d51e0
Removing unused code
2012-07-04 20:59:20 +02:00
Marco Pivetta
34bb0c4943
Reducing code duplication
...
SimplifiedXmlDriver and SimplifiedYamlDriver are still not valid after this commit
2012-07-04 20:59:20 +02:00
Marco Pivetta
e6a2bae5d7
Updating mapping driver interface to comply with Doctrine\Common\Persistence\Mapping\Driver\MappingDriver
2012-07-04 20:59:20 +02:00
Guilherme Blanco
f20a95fdc0
Merge pull request #388 from fixe/patch-3
...
Added an empty line feed preceding the return statement
2012-07-03 06:44:51 -07:00
Tiago Ribeiro
bda7310b46
Added an empty line feed preceding the return statement
2012-07-03 12:57:14 +02:00
Guilherme Blanco
dd60cb6645
Merge pull request #387 from shieldo/fix_helptext
...
fixed typo in command help text
2012-07-02 10:15:35 -07:00
Douglas Greenshields
53e735ffdd
fixed typo in command help text
2012-07-02 18:01:57 +01:00
Guilherme Blanco
d75569abab
Merge pull request #106 from michaelperrin/typo_fixes
...
Fix typo in the "Getting started database" tutorial
2012-06-28 06:52:04 -07:00
Michaël Perrin
b5e11259e1
Fix typo in the "Getting started database" tutorial
2012-06-28 15:34:58 +02:00
Guilherme Blanco
cc29f85862
Resynced DBAL.
2012-06-24 23:53:05 -04:00
Guilherme Blanco
cb72219b11
Merge pull request #372 from FabioBatSilva/DDC-1845
...
[DDC-1845] QuoteStrategy
2012-06-24 20:36:54 -07:00
Guilherme Blanco
3dd3ecaff8
Updated dependency libraries with latest versions of related tools.
2012-06-24 23:29:14 -04:00
Fabio B. Silva
ca4862aabc
Fix CS
2012-06-23 14:19:47 -03:00
Guilherme Blanco
86884a33f5
Merge pull request #105 from iampersistent/patch-1
...
Add xml code block for OrderBy
2012-06-20 07:03:41 -07:00
Richard Shank
de9f053cfb
Add xml code block for OrderBy
2012-06-20 03:41:20 -07:00
Benjamin Eberlei
9aabdba753
Merge pull request #380 from FabioBatSilva/svn-markers
...
remove svn markers
2012-06-19 11:45:42 -07:00
Fabio B. Silva
d3d97e7ef8
remove svn markers
2012-06-19 15:27:41 -03:00
Fabio B. Silva
e25987df3a
remove svn markers from AST
2012-06-19 15:17:08 -03:00
Guilherme Blanco
921f5c7680
Fixed license.
2012-06-19 11:04:00 -03:00
Guilherme Blanco
2703a2b27c
Fixed issue with merge.
2012-06-18 15:23:12 -04:00
Fabio B. Silva
7800a7ef3f
wrong indentation
2012-06-18 15:31:20 -03:00
Fabio B. Silva
65efda425f
Fix CS
2012-06-18 15:24:52 -03:00
Douglas Greenshields
bc76f33092
added missing JoinColumn node for xml and yaml for many-to-one unidirectional mapping
2012-06-18 19:21:44 +01:00
Fabio B. Silva
b9d94e7bf0
add DefaultQuoteStrategy use statement
2012-06-18 14:43:01 -03:00
Fabio B. Silva
49f9d185de
Fix CS and test configuration
2012-06-18 14:43:01 -03:00
Fabio B. Silva
ab9ff813fc
revert submodule change
2012-06-18 14:43:01 -03:00
Fabio B. Silva
ea690489d7
revert wrong change
2012-06-18 14:43:00 -03:00
Fabio B. Silva
85b6f8dc2f
change quote strategy to interface
2012-06-18 14:43:00 -03:00
Fabio B. Silva
b6b35d9482
test quote join variable
2012-06-18 14:43:00 -03:00
Fabio B. Silva
e0a236a9af
fix DDC-142 load OneToOne EAGER
2012-06-18 14:43:00 -03:00
Fabio B. Silva
cd806b83db
fix DDC-142 persist OneToOne
2012-06-18 14:42:59 -03:00
Fabio B. Silva
51f29cddb9
fix delete join table
2012-06-18 14:42:59 -03:00
Fabio B. Silva
7807d6806c
fix delete join table not owning side
2012-06-18 14:42:59 -03:00
Fabio B. Silva
ad380e3ac6
test join column and referenced join columns quote
2012-06-18 14:42:58 -03:00
Fabio B. Silva
debc6e4993
change QuoteStrategy#getJoinColumnName to use join column
2012-06-18 14:42:58 -03:00
Fabio B. Silva
46ec26e745
revert wrong commit
2012-06-18 14:42:58 -03:00
Fabio B. Silva
2afe24f51c
start to work in xxToOne quote
2012-06-18 14:42:58 -03:00
Fabio B. Silva
a75c672ee7
fix sequence and join columns
2012-06-18 14:42:57 -03:00
Fabio B. Silva
7215c1a3b1
test join table quote
2012-06-18 14:42:57 -03:00
Fabio B. Silva
2b8e24fb09
revert wrong commit
2012-06-18 14:42:57 -03:00
Fabio B. Silva
0e9c76abf8
revert wrong commit
2012-06-18 14:42:57 -03:00
Fabio B. Silva
f335f23145
tests for quoted columns metadata
2012-06-18 14:42:56 -03:00
Fabio B. Silva
8fec73673d
fix DDC-1719 in persiter and query level
2012-06-18 14:42:56 -03:00
Fabio B. Silva
fabfb66293
deprecated metadata quote methods
2012-06-18 14:42:56 -03:00
Fabio B. Silva
4ef3d99770
use quote strategy in SizeFunction, MultiTableDeleteExecutor, MultiTableUpdateExecutor, and SchemaTool
2012-06-18 14:42:56 -03:00
Fabio B. Silva
851d17f940
use quote strategy in SingleTablePersister
2012-06-18 14:42:55 -03:00
Fabio B. Silva
dcd19bba22
use quote strategy in OneToManyPersister
2012-06-18 14:42:55 -03:00
Fabio B. Silva
36296a3906
use quote strategy in JoinedSubclassPersister
2012-06-18 14:42:55 -03:00
Fabio B. Silva
7f64474f3e
use quote strategy in persister
2012-06-18 14:42:54 -03:00
Fabio B. Silva
2af7b3fd38
use quote strategy in BasicEntityPersister
2012-06-18 14:42:54 -03:00
Fabio B. Silva
5d665b59a1
remove getQuotedIdentifierColumnNames
2012-06-18 14:42:54 -03:00
Fabio B. Silva
505bdb9c03
missing files
2012-06-18 14:42:54 -03:00
Fabio B. Silva
db53b8651c
apply quote strategy at sqlwalker
2012-06-18 14:42:53 -03:00
Fabio B. Silva
d49a968d55
tests for DDC-1719
2012-06-18 14:42:53 -03:00
Fabio B. Silva
1bcda5147a
inject quote strategy into sql walker
2012-06-18 14:42:53 -03:00
Fabio B. Silva
2b4c29e4f2
tests for default strategy
2012-06-18 14:42:53 -03:00
Fabio B. Silva
9f297c3140
first tests for DefaultQuoteStrategy
2012-06-18 14:42:52 -03:00
Guilherme Blanco
b4a9b1550c
Merge pull request #103 from Dinduks/add_missing_section_in_configuration
...
Add a link to the connection configuration
2012-06-18 10:07:47 -07:00
Guilherme Blanco
41d9f612c7
Merge pull request #378 from web-dev/DDC-1880
...
Fixed DDC-1880 Named Queries not registered in xml mapping
2012-06-18 10:06:15 -07:00
Dinduks
458b0df39e
Add a link to the connection configuration
2012-06-18 18:43:10 +02:00
Josiah Truasheim
ff8cc6f4c0
Fixed DDC-1880 Named Queries not registered in xml mapping
2012-06-18 23:41:20 +07:00
Guilherme Blanco
b292adceb0
Merge pull request #102 from Dinduks/add_missing_section_in_configuration
...
Add a missing section in the Configuration manual
2012-06-18 09:05:29 -07:00
Dinduks
6e78973eec
Add a missing section in the Configuration manual
2012-06-18 17:45:20 +02:00
Benjamin Eberlei
a3210e78aa
Merge pull request #368 from doctrine/join-poc
...
Join poc
2012-06-18 08:18:13 -07:00
Benjamin Eberlei
e183cc62d9
Merge pull request #377 from Dinduks/fix_doc_link
...
Fix the documentation link in the README
2012-06-18 08:12:35 -07:00
Dinduks
77edb23291
Fix the documentation link in the README
2012-06-18 17:11:03 +02:00
Benjamin Eberlei
6f13e9543b
Fix QueryTest
2012-06-18 17:03:08 +02:00
Guilherme Blanco
cba4e55ac4
Added more coverage tests. Required result confirmation.
2012-06-18 17:02:14 +02:00
Guilherme Blanco
41a650b699
Updated PoC for multiple components DQL support.
2012-06-18 17:01:52 +02:00
Alexander
e7dfa08756
[PoC] Arbitrary join support
2012-06-18 17:00:37 +02:00
Benjamin Eberlei
0c4952447b
Merge pull request #369 from greg0ire/master
...
Show the advice only when relevant.
2012-06-18 07:26:04 -07:00
Benjamin Eberlei
3aee619fc0
Merge pull request #375 from lstrojny/transactional-callable
...
Allow passing any callable instead of only closures
2012-06-18 07:25:16 -07:00
Benjamin Eberlei
edb7950be8
Getting STarted: Code, Model, Database first
2012-06-16 13:34:23 +02:00
Lars Strojny
3881e12a2d
De-deprecate transaction handling methods
2012-06-16 13:22:53 +02:00
Lars Strojny
164269bff1
Allow passing any callable instead of only closures
2012-06-16 13:20:34 +02:00
Benjamin Eberlei
1a9443b55a
Let docs point to github for XSDs, much better to maintain for us.
2012-06-16 12:44:00 +02:00
Benjamin Eberlei
f854a99e0a
Dum
2012-06-16 12:39:58 +02:00
Benjamin Eberlei
50879db001
Fixes
2012-06-16 12:39:01 +02:00
Benjamin Eberlei
63ebaea25a
Some more work on index
2012-06-16 12:34:26 +02:00
Benjamin Eberlei
a3883eb306
Reworked docs towards composer, simplified chapters
2012-06-16 12:12:04 +02:00
Benjamin Eberlei
65e2f60b40
Rework configuration and tools section to include Composer
2012-06-16 11:57:56 +02:00
Tim Nagel
e5bac27fcc
Initial ResolveTargetEntityListener cookbook entry
2012-06-16 17:36:40 +10:00
Guilherme Blanco
27b4f58b66
Merge pull request #362 from odolbeau/cs
...
Correct some mistakes (tabs & trailing spaces)
2012-06-14 22:43:18 -07:00
Guilherme Blanco
e8ad82c80f
Merge pull request #363 from gajdaw/entities_generator_cs_fix
...
Entities generator: constructor's template docblock
2012-06-14 22:42:17 -07:00
Guilherme Blanco
8bb4f53447
Merge pull request #370 from Ph3nol/ph3-phpcs-fixes
...
Some PHP-CS fixes
2012-06-14 22:40:50 -07:00
Guilherme Blanco
1e6508d2dc
Merge pull request #371 from instaclick/bin-permissions
...
set permissions as expected by composer.phar update
2012-06-14 22:40:33 -07:00
Guilherme Blanco
91ffd30f52
Merge pull request #373 from bschaeffer/patch-1
...
Grammar fix for composer.json file
2012-06-13 07:23:53 -07:00
Guilherme Blanco
feeef689f3
Merge pull request #100 from adrienbrault/patch-1
...
Fix typo/Add missing words
2012-06-13 06:07:09 -07:00
Adrien Brault
47febcd7f4
Fix typo/Add missing words
2012-06-13 01:36:40 +03:00
Braden Schaeffer
05c612f337
Grammar fix for composer.json file
2012-06-12 09:43:38 -05:00
Anthon Pang
c1c046f2dd
set permissions as expected by composer.phar update
2012-06-11 11:40:23 -04:00
Ph3nol
2abb459770
Some PHP-CS fixes
2012-06-11 12:39:18 +02:00
Grégoire Paris
111bb52add
delimit ternary
2012-06-11 08:23:37 +02:00
Grégoire Paris
190e63a6bb
Show the advice only when necessary.
...
This is indeed a good advice, but people who
already have implemented __toString() might
get confused about it.
2012-06-10 23:59:07 +03:00
Guilherme Blanco
7b758493a3
Merge pull request #365 from Ocramius/DDC-1860
...
DDC-1860 - Composer arbitrary for CLI and composer/autoload.php in different paths
2012-06-09 05:45:26 -07:00
Marco Pivetta
2f83cf0dbd
Cleaning up, removing iteration over parent directories as location of autoload.php can be determined eagerly
2012-06-09 14:41:39 +02:00
Marco Pivetta
8231fb2c68
Adding support for various composer autoload file locations, making composer optional
2012-06-09 10:48:58 +02:00
Guilherme Blanco
138ec8411c
Merge pull request #99 from ErikDubbelboer/spelling-fixes
...
Fixed spelling error and missing php open tag
2012-06-07 05:37:01 -07:00
Erik Dubbelboer
24d488b5f1
fixed minor errors
2012-06-07 13:53:58 +02:00
Włodzimierz Gajda
b263a00eac
Entities generator: constructor's template docblock
2012-06-06 08:44:25 +02:00
Guilherme Blanco
672b39fb84
Merge pull request #97 from patrick-mcdougle/patch-2
...
Fixed wording on the Alice and Bob Optimistic locking example.
2012-06-05 14:47:37 -07:00
patrick-mcdougle
9f575aad5b
Fixed wording on the Alice and Bob Optimistic locking example.
2012-06-05 16:35:37 -05:00
Olivier Dolbeau
79a9ce5000
Add some corrections
2012-06-05 21:32:53 +02:00
Olivier Dolbeau
7ca0ac289e
Remove tabs & trailing spaces
2012-06-05 15:46:10 +02:00
Olivier Dolbeau
c98f9117c2
Remove unused use
2012-06-05 15:39:52 +02:00
Guilherme Blanco
988d0001d3
Merge pull request #96 from calumbrodie/patch-1
...
Fixed inline example of concat method
2012-05-31 06:52:44 -07:00
Guilherme Blanco
2205045ca9
Merge pull request #95 from adanlobato/patch-1
...
Fixed some typos on Inheritance docs
2012-05-31 06:51:28 -07:00
Calum Brodie
e41704b211
Fixed inline example of concat method
2012-05-31 14:08:56 +02:00
Adán Lobato
b25548414b
Fixed some typos on Inheritance docs
2012-05-31 10:51:38 +02:00
Benjamin Eberlei
34f7ccb5fa
Merge pull request #94 from shieldo/patch-1
...
Improved grammar/ punctuation in pagination tutorial, and brought parame...
2012-05-30 07:09:49 -07:00
Douglas Greenshields
671177e162
Improved grammar/ punctuation in pagination tutorial, and brought parameter name in code example into line with actual parameter
2012-05-30 15:59:58 +02:00
Guilherme Blanco
9445502885
Removed un-necessary getIterator().
2012-05-29 15:14:08 -04:00
Guilherme Blanco
6521e51170
Added missing BC compatibility in QueryBuilder.
2012-05-29 14:52:30 -04:00
Guilherme Blanco
e4935e58f2
Merge pull request #360 from doctrine/DDC-1840
...
[DDC-1840] Implemented parameters as a collection.
2012-05-29 11:41:00 -07:00
Guilherme Blanco
15f76c62bb
Update UPGRADE_TO_2_3
2012-05-29 15:40:27 -03:00
Guilherme Blanco
161ae31a7e
Adde more BC compatibility in setParameters.
2012-05-29 14:41:32 -04:00
Guilherme Blanco
b3e7493278
Made setParameters()/excute()/iterate() BC compatible.
2012-05-29 14:25:54 -04:00
Guilherme Blanco
8b4e08d694
Updated docs (trying to fix one-to-many with unidirectional join table example).
2012-05-28 12:39:31 -04:00
Guilherme Blanco
d8e165da8d
Added 2.3 BC break information.
2012-05-28 12:28:54 -04:00
Guilherme Blanco
79ff1f10d2
Optimized getParameter.
2012-05-28 12:20:35 -04:00
Guilherme Blanco
1635e0af4b
[DDC-1840] Implemented parameters as a collection.
2012-05-28 12:16:42 -04:00
Benjamin Eberlei
1f2ce21b56
[DDC-1497] Change EntityGenerator add method generation for collections.
2012-05-27 20:31:01 +02:00
Benjamin Eberlei
8e644e1303
[DDC-1685] Fix DDC-117 Dataset cleanup
2012-05-27 18:54:35 +02:00
Benjamin Eberlei
958d35a3f3
Merge branch 'DDC-1798'
2012-05-27 18:44:38 +02:00
Benjamin Eberlei
04b23dbf10
[DDC-1798] Exporter generate error when composite primary key is generated. Fixes GH-342
2012-05-27 18:44:31 +02:00
Benjamin Eberlei
47ac61b3e0
Merge branch 'DDC-1685'
2012-05-27 18:33:46 +02:00
Benjamin Eberlei
3398d1e287
[DDC-1685] Fix bug in OutputWalker when used on entities with Foreign Key as Primary Key.
2012-05-27 18:33:35 +02:00
Benjamin Eberlei
2e79637be8
Merge branch 'DDC-1713'
2012-05-27 17:22:25 +02:00
Benjamin Eberlei
03d5922996
[DDC-1713] Verify EntityRepository#findBy() works with fetching array of values.
2012-05-27 17:22:16 +02:00
Benjamin Eberlei
48aba0a3f0
Merge branch 'DDC-1777'
2012-05-27 17:11:29 +02:00
Benjamin Eberlei
6523f7f59e
[DDC-1777] Fix bug in BasicEntityPersister#exists() when no primary key is set.
2012-05-27 17:11:21 +02:00
Benjamin Eberlei
c1fd0c479a
Merge branch 'DDC-1791'
2012-05-27 13:22:56 +02:00
Benjamin Eberlei
f55b5411c8
[DDC-1791] Fix OutputWalker Pagination on Oracle
2012-05-27 13:22:48 +02:00
Benjamin Eberlei
eb8f524f81
Merge branch 'DDC-1783'
2012-05-27 12:00:54 +02:00
Benjamin Eberlei
44c867827c
[DDC-1783] Fix memory leak in ObjectHydrator when using AbstractQuery#iterate() and EntityManager#clear()
2012-05-27 12:00:43 +02:00
Karsten Dambekalns
bcddc47356
[DDC-1835] Fix cloning persistent collections.
2012-05-27 10:17:12 +02:00
Benjamin Eberlei
9ae5b8f442
Merge branch 'DDC-1799'
2012-05-27 09:58:01 +02:00
Benjamin Eberlei
548c997f7b
[DDC-1799] Fix bug in YamlExporter using OneToOne instead of ManyToOne
2012-05-27 09:57:46 +02:00
Benjamin Eberlei
0868ec1c19
Update Common and fix cache tests with different assumptions about keys.
2012-05-26 19:29:51 +02:00
Benjamin Eberlei
a5b90fd3c6
Merge pull request #358 from jalliot/patch-1
...
Update license for Composer
2012-05-26 09:51:19 -07:00
Jordan Alliot
dfae961913
Update license for Composer
2012-05-26 19:15:48 +03:00
Benjamin Eberlei
70458b2f48
LGPL => MIT
2012-05-26 14:37:00 +02:00
Guilherme Blanco
b32bb26a84
Re-added coverage for DDC-369 and DDC-954.
2012-05-23 01:07:29 -04:00
Guilherme Blanco
f54f8f8a95
Fixed anomalous bug of temporary existance table collision in case of any update/delete issue by dropping temp table, no matter what's the result of other executes.
2012-05-23 00:55:05 -04:00
Guilherme Blanco
738bfd8082
Reverted coverage for DDC-369 and DDC-954.
2012-05-23 00:14:50 -04:00
Guilherme Blanco
3e601c3a53
Added coverage for DDC-369 and DDC-954. All passing.
2012-05-23 00:10:25 -04:00
Benjamin Eberlei
a9398e7a74
Autoloaders not needed, composer provides them
2012-05-22 21:54:43 +02:00
Benjamin Eberlei
be6fb617df
[DDC-1807] Fix composer bin support and keep BC with PEAR installer.
2012-05-22 20:26:03 +02:00
Benjamin Eberlei
e2d15c3a04
Merge pull request #353 from pscheit/patch-1
...
prevent the validator to stop with an "undefined array index"-error
2012-05-22 10:09:01 -07:00
Benjamin Eberlei
f686a3ac1b
Merge pull request #354 from pscheit/master
...
ValidateSchemaCommand dont't call exit() in execute()
2012-05-22 10:03:44 -07:00
Philipp Scheit
e9f936c0ba
don't call exit() in execute()
2012-05-22 14:25:54 +03:00
Guilherme Blanco
d05ad996c4
Implemented support for internal exception showing DQL that contains syntax or semantical error.
2012-05-21 16:34:27 -04:00
Guilherme Blanco
4627c8b3ee
Re-synchronized DQL EBNF with current DQL support.
2012-05-21 16:13:15 -04:00
Philipp Scheit
f1571aeac3
prevent the validator to stop with an "undefined array index"-error while validating a wrong inversedBy Attribute
2012-05-21 19:23:22 +03:00
Benjamin Eberlei
93fcb74f9a
Merge pull request #350 from stof/branch_alias
...
Added the branch-alias in the composer.json
2012-05-20 14:21:52 -07:00
Christophe Coevoet
1594831d8a
Added the branch-alias in the composer.json
2012-05-20 21:33:56 +02:00
Guilherme Blanco
3d8e46447a
Merge pull request #349 from FabioBatSilva/DDC-1822
...
Fix DDC-1822
2012-05-19 22:10:09 -07:00
Fabio B. Silva
0af5da77f1
fix DDC-1822
2012-05-19 13:40:01 -03:00
Benjamin Eberlei
4ef552e07a
Merge pull request #317 from FabioBatSilva/DDC-1694
...
Fix DDC-1694
2012-05-05 04:39:28 -07:00
Benjamin Eberlei
a038f5edea
Merge branch 'DDC-1786'
2012-05-05 09:28:53 +02:00
Benjamin Eberlei
758ffe06d2
[DDC-1786] Add note about BC in EntityManager#find(null)
2012-05-05 09:28:42 +02:00
Fabio B. Silva
e9974911fe
fix tests
2012-05-04 21:13:20 -03:00
Fabio B. Silva
67f0722211
change test to uses data provider
2012-05-04 21:13:19 -03:00
Fabio B. Silva
790d98133c
fix DDC-1694
2012-05-04 21:11:51 -03:00
Benjamin Eberlei
bd41e69a1f
Merge DDC-1542 into master
2012-05-04 23:20:57 +02:00
Benjamin Eberlei
99e303e211
[DDC-1542] Refactored automatic discriminator map detection.
2012-05-04 23:15:12 +02:00
Guilherme Blanco
6103db0d04
Merge pull request #345 from hason/DDC-1802
...
Fixed DDC-1802
2012-05-04 13:04:08 -07:00
comfortablynumb
f0db9a842d
[DDC-1542] - Inheritance: Added default discriminator map (only annotations yet)
2012-05-04 20:36:24 +02:00
Benjamin Eberlei
f566b79c87
Fix coding standards
2012-05-04 19:16:07 +02:00
Benjamin Eberlei
63b2c03a02
Merge pull request #331 from gedrox/DDC-1757
...
DDC-1757 test and patched query builder
2012-05-04 10:08:59 -07:00
Benjamin Eberlei
e09a9c7deb
Merge pull request #315 from Ocramius/getclass-on-proxies-refactoring
...
Allowing proxies to be passed to ORM public API
2012-05-04 10:04:14 -07:00
Alexander
37ce0f15d6
Update test case for MappingException::invalidCascadeOption()
2012-05-04 18:26:17 +02:00
Alexander
3403305b3d
Merge remote-tracking branch 'schmittjoh/betterExMessage'
2012-05-04 18:20:56 +02:00
Guilherme Blanco
5fddd1bee5
Merge pull request #324 from brikou/call_simplified
...
simplified Doctrine/ORM/EntityRepository::__call
2012-05-03 23:20:13 -07:00
Martin Hasoň
3d852397db
DDC-1802 removed unnecessary tokens T_SIZE and T_MOD
2012-05-02 19:10:21 +02:00
Martin Hasoň
3ab6ad23ad
DDC-1802 fixed parsing: FunctionDeclaration "NOT" ("LIKE" | "IN" | "BETWEEN")
2012-05-02 19:08:27 +02:00
Guilherme Blanco
0a09a28ec9
Merge pull request #335 from FabioBatSilva/DDC-964
...
association/attribute override
2012-04-28 20:24:18 -07:00
Guilherme Blanco
b5b569afd4
Merge pull request #93 from patrick-mcdougle/patch-1
...
Updated the decimal type mapping have a string on the php side. (current behavior)
2012-04-26 18:09:22 -07:00
patrick-mcdougle
b184772349
Updated the decimal type mapping have a string on the php side. (current behavior)
2012-04-26 14:21:51 -05:00
Fabio B. Silva
fa140d8f59
remove wrong conflit mark
2012-04-21 01:59:25 -03:00
Fabio B. Silva
5c7d7c6f05
remove duplicated 'require_once'
2012-04-21 01:53:34 -03:00
Fabio B. Silva
56fb1035de
update docblock
2012-04-21 01:43:18 -03:00
Fabio B. Silva
f63cb95ef3
add annotations
2012-04-21 01:43:18 -03:00
Fabio B. Silva
85790f0752
support for attribute override
2012-04-21 01:43:18 -03:00
Fabio B. Silva
4df3c75321
added missing '\'
2012-04-21 01:41:05 -03:00
Fabio B. Silva
2f67750165
added tags on doctrine-mapping.xsd
2012-04-21 01:41:05 -03:00
Fabio B. Silva
3085c52f95
fix docblock and remove white spaces
2012-04-21 01:41:04 -03:00
Fabio B. Silva
9e010cbd34
added xml/yml drivers
2012-04-21 01:41:04 -03:00
Fabio B. Silva
30fdf8dd1b
added support for @AssociationOverride
2012-04-21 01:38:34 -03:00
Guilherme Blanco
f61bd43621
Merge pull request #86 from FabioBatSilva/patch-5
...
Docs for NamingStrategy
2012-04-20 21:08:53 -07:00
Guilherme Blanco
da21917dad
Merge pull request #85 from Tobion/patch-1
...
fix confusing typo in ordered collections
2012-04-20 21:07:14 -07:00
Aigars Gedroics
c827a98196
Merge branch 'DDC-1757' of github.com:gedrox/doctrine2 into DDC-1757
2012-04-20 16:07:42 +03:00
Aigars Gedroics
5392133beb
[DDC-1757] test checks DQL only now, doesn't create schema anymore
2012-04-20 16:06:21 +03:00
Aigars Gedroics
3ddc461d30
[DDC-1757] Fix moved to private method, test improved.
2012-04-20 16:06:21 +03:00
gedrox
29a94f4f52
Parameter PHP documentation for the QueryBuilder::getRootAlias() method
2012-04-20 16:06:21 +03:00
Aigars Gedroics
a1ab3e8cf4
DDC-1757 test and patched query builder
2012-04-20 16:06:21 +03:00
Fabio B. Silva
e65dbcf2b5
Fix typo
2012-04-19 20:58:31 -03:00
Fabio B. Silva
a1e7389e71
docs for association/attribute override
2012-04-19 20:56:18 -03:00
Guilherme Blanco
ecd6e1d510
Merge pull request #92 from import/feature/new-cache-driver
...
New cache driver documentation
2012-04-19 07:02:26 -07:00
Osman Üngür
0222981161
Added notes about configuration
2012-04-19 11:34:12 +03:00
Osman Üngür
488914a4ac
Added section about cache driver
2012-04-19 11:33:26 +03:00
Guilherme Blanco
d5d47222c1
Merge pull request #339 from FabioBatSilva/DDC-1784
...
Fix DDC-1784
2012-04-18 20:37:09 -07:00
Fabio B. Silva
9b02745cd8
Fix DDC-1784
2012-04-18 20:39:21 -03:00
Guilherme Blanco
7d9738e8c0
Merge pull request #91 from import/fix/sample-code-error
...
Fix for collection handling code sample
2012-04-18 08:40:57 -07:00
Osman Üngür
05a188da38
Fix for collection handling code sample
2012-04-18 17:13:14 +03:00
Benjamin Eberlei
d95e96bd3b
Merge pull request #337 from richardmiller/composer_changes
...
Removed dependency on common as required by dbal anyway
2012-04-17 05:03:40 -07:00
Richard Miller
c008958950
Removed dependency on common as required by dbal anyway
2012-04-17 12:07:22 +01:00
Aigars Gedroics
59e598acc5
[DDC-1757] test checks DQL only now, doesn't create schema anymore
2012-04-17 10:57:31 +03:00
Guilherme Blanco
bad811df6a
Merge pull request #293 from FabioBatSilva/DDC-1663
...
[DDC-1663]Native SQL Query Result Set Mappings
2012-04-16 12:06:26 -07:00
Benjamin Eberlei
4b09712761
Merge pull request #322 from rande/patch-1
...
In some weird situation the SimpleXmlIterator used to iterate on the ``$...
2012-04-16 09:55:05 -07:00
Benjamin Eberlei
193ac077d6
Merge pull request #316 from fixe/patch-1
...
Fixes autoloading of generated Annotations
2012-04-16 09:48:50 -07:00
Guilherme Blanco
03a74a250a
Merge pull request #89 from krevindiou/fix-1
...
Fix typo
2012-04-16 08:33:40 -07:00
Arnaud BUCHOUX
6a80ebf985
Fix typo
2012-04-16 17:15:18 +02:00
Guilherme Blanco
c02ac6516e
Merge pull request #336 from merk/DDC1778
...
Fixed DDC1778
2012-04-16 07:59:24 -07:00
Guilherme Blanco
4debe46d1f
Merge pull request #88 from FabioBatSilva/patch-7
...
Docs for Named Native Query
2012-04-16 07:57:11 -07:00
Tim Nagel
6cbdf53975
Fixed DDC1778
2012-04-16 13:03:19 +10:00
Fabio B. Silva
58d4b2a617
docs for Named Native Query
2012-04-15 19:49:42 -03:00
Fabio B. Silva
2007f1ab95
annotations reference for named native query
2012-04-15 16:57:44 -03:00
Fabio B. Silva
ad9d590a15
added tags on doctrine-mapping.xsd
2012-04-15 15:40:43 -03:00
Fabio B. Silva
f8b1915efd
named native query inheritance
2012-04-15 15:40:43 -03:00
Fabio B. Silva
52c49b444e
test multiple entity results
2012-04-15 15:40:43 -03:00
Fabio B. Silva
9c87b5c689
php driver
2012-04-15 15:40:42 -03:00
Fabio B. Silva
4aa67a7598
static driver
2012-04-15 15:40:42 -03:00
Fabio B. Silva
b49180875c
yml driver
2012-04-15 15:40:42 -03:00
Fabio B. Silva
531eb68d56
xml driver
2012-04-15 15:40:41 -03:00
Fabio B. Silva
6e93186db4
mapping driver tests
2012-04-15 15:40:41 -03:00
Fabio B. Silva
fdc9fdae3e
refactory ResultSetMappingBuilder#addNamedNativeQueryMapping into small submethods
2012-04-15 15:40:41 -03:00
Fabio B. Silva
8c407af1fc
fix postgres test
2012-04-15 15:40:41 -03:00
Fabio B. Silva
68665af6e8
test discriminator column
2012-04-15 15:40:41 -03:00
Fabio B. Silva
0cc2583a02
test scalar result
2012-04-15 15:40:40 -03:00
Fabio B. Silva
f813223036
test joined one-to-many and one-to-one
2012-04-15 15:40:40 -03:00
Fabio B. Silva
f018a56d6d
test native query with result class
2012-04-15 15:40:40 -03:00
Fabio B. Silva
3b79951824
mapping driver tests
2012-04-15 15:40:40 -03:00
Fabio B. Silva
015ea809b0
added support for resultClass and empty fields
2012-04-15 15:39:22 -03:00
Fabio B. Silva
bfc7986b20
annotation driver and basic support
2012-04-15 15:39:22 -03:00
Fabio B. Silva
2b996128af
sql result set mapping metadata
2012-04-15 15:39:22 -03:00
Fabio B. Silva
91e4702772
named native query metadata
2012-04-15 15:39:22 -03:00
Fabio B. Silva
530e4840dd
native query annotations
2012-04-15 15:39:21 -03:00
Fabio B. Silva
987834a2dd
wrap lines
2012-04-15 11:34:10 -03:00
Fabio B. Silva
3076e2a1f7
docs for NamingStrategy
2012-04-15 11:34:10 -03:00
Benjamin Eberlei
543a3ddb03
Merge pull request #84 from gedrox/patch-1
...
[#DWEB-103] Fixed UTC timezone creation
2012-04-13 02:17:43 -07:00
Tobias Schultze
301f4d0346
fix confusing typo in ordered collections
2012-04-12 23:22:06 +03:00
gedrox
429ac54a34
[#DWEB-103] Fixed UTC timezone creation. Constant DateTimeZone::UTC is 1024, string name is required for the DateTimeZone constructor.
2012-04-11 10:02:42 +03:00
Benjamin Eberlei
e168b4e543
More prominent note about ResultSetMappingBuilder in native-sql chapter
2012-04-10 23:16:51 +02:00
Aigars Gedroics
aa381951cd
[DDC-1757] Fix moved to private method, test improved.
2012-04-10 11:47:05 +03:00
Marco Pivetta
cb7a77cc03
Removing usage of ClassUtil where not strictly needed
...
Optimizing the ClassMetadataFactory API instead and using ClassMetadata to check actual class names as da962f2e and c27b4de0 introduced too much overhead
2012-04-07 18:53:34 +02:00
Marco Pivetta
85ea27dba2
Adding tests for additional usages of the proxy classname in ORM public API
...
Like Proxy classnames in DQL, EM#getRepository, EM#getReference
2012-04-07 18:53:34 +02:00
Marco Pivetta
d1e868a32a
Removing registration of proxy ClassMetadata by the proxyFactory
...
Ensuring that functionality is kept by checking for the real class name in the ClassMetadataFactory
2012-04-07 18:53:34 +02:00
Marco Pivetta
37279d0753
Adding test to verify validity of changes (fails without them)
2012-04-07 18:53:34 +02:00
Marco Pivetta
c4a2eaea49
Adding additional missing calls to classutils instead of get_class
2012-04-07 18:53:34 +02:00
Marco Pivetta
cbe4987e18
Using Doctrine\Common\Util\ClassUtil for class_name resolutionThis avoids exceptions when passing a Proxy instance to the public API of the EntityManager, ClassMetadataFactory or UnitOfWork when the Proxy itself isn't generated by the EntityManager itself, while discovering the correct ClassMetadata instance for the proxy
2012-04-07 18:53:33 +02:00
Benjamin Eberlei
022d27e4e9
Merge branch 'DDC-1534'
2012-04-07 10:43:05 +02:00
Benjamin Eberlei
de26952e29
[DDC-1534] YamlDriver wrongly used "inversedBy" inside join table condition although its independent.
2012-04-07 10:42:54 +02:00
Benjamin Eberlei
c92393026d
Merge branch 'DDC-1771'
2012-04-07 10:30:17 +02:00
Benjamin Eberlei
d54fdf43d0
[DDC-1771] Abstract classes cannot be proxies and should be skipped in complete generation.
2012-04-07 10:30:09 +02:00
Benjamin Eberlei
a1a9f85fda
Merge pull request #328 from Netpositive/master
...
addDiscriminatorMapClass fix
2012-04-07 00:44:29 -07:00
Benjamin Eberlei
d6ccd82cf6
Merge pull request #321 from import/feature/newCacheDriver
...
Addition for new cache driver
2012-04-07 00:20:55 -07:00
Guilherme Blanco
a5c13a5ef1
Merge pull request #329 from doctrine/DDC-1766
...
[DDC-1766] Initial implementation of hydration cache.
2012-04-06 06:50:11 -07:00
Benjamin Eberlei
0b3577f2d2
[DDC-1766] Rewrite getHydrationCacheId() to use existing processParameterValue() method. Other code style changes.
2012-04-05 22:40:40 +02:00
gedrox
49016bc156
Parameter PHP documentation for the QueryBuilder::getRootAlias() method
2012-04-05 13:56:08 +03:00
Aigars Gedroics
efebf26cc5
DDC-1757 test and patched query builder
2012-04-05 11:30:00 +03:00
Johannes M. Schmitt
84ec6dc9f5
improved exception message
2012-04-04 21:47:23 -05:00
Benjamin Eberlei
1095fb39cb
[DDC-1766] More cleanups
2012-04-05 00:27:23 +02:00
Benjamin Eberlei
f7496b1482
[DDC-1766] Cleaned up code.
2012-04-05 00:26:09 +02:00
Benjamin Eberlei
d31c7f5e2b
[DDC-1766] Explain details of Hydration cache, introduce AbstractQuery#setResultCacheProfile method
2012-04-04 23:55:14 +02:00
Benjamin Eberlei
c32a77e6be
[DDC-1766] Add usage of default result cache driver, add more docs.
2012-04-04 23:47:32 +02:00
Benjamin Eberlei
fd2a22bd56
[DDC-1766] Add test with explicit cache key.
2012-04-04 23:42:17 +02:00
Benjamin Eberlei
864fbbdaaf
[DDC-1766] Remove some testcode
2012-04-04 23:24:51 +02:00
Benjamin Eberlei
306f9e0ca2
[DDC-1766] Rename closure
2012-04-04 23:21:06 +02:00
Benjamin Eberlei
3047c4b955
[DDC-1766] Initial implementation of hydration cache.
2012-04-04 23:10:30 +02:00
Alexander
cc06508bd4
Added test coverage for repository functions when using filters
2012-04-04 22:00:01 +02:00
Somfai Mátyás
a2fd4eca37
Fixing a bug when calling setDiscriminatorMap from multiple sources (ie: from Events::loadClassMetadata and annotation).
2012-04-04 14:49:34 +02:00
Brikou CARRE
029071a144
simplified __call method
2012-04-03 17:33:00 +02:00
Thomas
5005bbe62b
In some weird situation the SimpleXmlIterator used to iterate on the `$xmlRoot->field property just get resetted. This solution avoid this situation. This problem occurs when Symfony2 warms up cache with autogenerate proxy to true`
2012-04-02 14:55:35 +03:00
Osman Üngür
e69b022472
Fixed CS
2012-04-02 12:11:38 +03:00
Osman Üngür
4fc7389b1d
New cache driver definition for Doctrine running in non-dev mode and cache driver is not set.
...
This cache driver was added with doctrine/common#109
2012-04-02 11:57:09 +03:00
Benjamin Eberlei
5b18718b92
[DDC-1746] Throw exception on invalid cascade option.
2012-04-01 11:01:58 +02:00
Tiago Ribeiro
975f3c4600
Fixes autoloading of generated Annotations
2012-04-01 02:59:03 +02:00
Benjamin Eberlei
c5c3719e79
Revert GH-311
2012-03-30 22:00:45 +02:00
Benjamin Eberlei
04a4f2fc24
Merge pull request #310 from FabioBatSilva/DDC-889
...
[DDC-889] Mention parent class for debugging purposes.
2012-03-30 12:55:49 -07:00
Benjamin Eberlei
dd263ce00d
Merge pull request #313 from hason/tests
...
Fixed tests on Windows
2012-03-29 04:41:27 -07:00
Martin Hasoň
f3a9b1efc0
Fixed tests on Windows
2012-03-29 13:26:06 +02:00
Guilherme Blanco
290f8a79e4
Merge pull request #311 from benlumley/patch-1
...
Proposal: Support for default attribute in yaml mappings.
2012-03-28 18:09:50 -07:00
Ben Lumley
7a5ae3a1a2
Support for default attribute in yaml mappings.
2012-03-28 22:01:57 +02:00
Guilherme Blanco
2811d161bb
Merge pull request #309 from FabioBatSilva/DDC-1686
...
Fix DDC-1686
2012-03-25 21:33:43 -07:00
Fabio B. Silva
6d1209c06d
fix typo
2012-03-26 01:03:32 -03:00
Fabio B. Silva
67af9f1853
change comparison
2012-03-26 00:55:57 -03:00
Fabio B. Silva
d6809773db
mention parent classes for identifier required exception.
2012-03-25 13:34:52 -03:00
Fabio B. Silva
449d8a66ad
changed modifiers
2012-03-25 13:00:50 -03:00
Fabio B. Silva
f591e428c3
mention parent classes when not is a entity or mapped super class.
2012-03-25 12:54:09 -03:00
Fabio B. Silva
0f9afbdf0a
Fix DDC-1686
2012-03-25 00:30:58 -03:00
Guilherme Blanco
8a52e3033b
Merge pull request #308 from FabioBatSilva/DDC-1697
...
Fix DDC-1697
2012-03-24 20:29:52 -07:00
Fabio B. Silva
df8626b949
Fix DDC-1697
2012-03-24 22:50:54 -03:00
Benjamin Eberlei
ab15528fde
Fix CS: AS => as in foreach loops.
2012-03-24 11:16:32 +01:00
Benjamin Eberlei
08b455b029
Merge branch 'dead_code_cleanup'
2012-03-24 11:08:20 +01:00
Hugo Hamon
16da74d1da
[Query] removed unused private _peekBeyond() method from Parser class.
2012-03-24 11:07:44 +01:00
Hugo Hamon
c0620bf857
[Tools] removed unused local variable $assocName in ResolveTargetEntityListener class.
2012-03-24 11:07:41 +01:00
Hugo Hamon
ffa372a76c
[Tools] removed unused local variable in YamlExporter class.
2012-03-24 11:07:41 +01:00
Hugo Hamon
505537d4ce
[Tools] renamed AS to as in EntityGenerator class.
2012-03-24 11:07:41 +01:00
Hugo Hamon
68806aa8c6
[Tools] removed unused local variable $idHash in DebugUnitOfWorkListener class and renamed AS keywords to as.
2012-03-24 11:07:41 +01:00
Hugo Hamon
aca1470e6b
[Tools] removed unused local variable $cm in InfoCommand class.
2012-03-24 11:07:40 +01:00
Hugo Hamon
5a1c1e55ef
[Query] removed unused local variables in Parser class.
2012-03-24 11:07:39 +01:00
Hugo Hamon
43eebe1a8b
[Query] removed unused local variable $lexer in SizeFunction class.
2012-03-24 11:07:39 +01:00
Hugo Hamon
19602d0a26
[Query] removed unused local variable $platform in IdentityFunction class.
2012-03-24 11:07:39 +01:00
Hugo Hamon
c4dcd39666
[Proxy] renamed AS to as.
2012-03-24 11:07:39 +01:00
Hugo Hamon
d09b733cc3
[Persisters] removed unused local variable in ManyToManyPersister class.
2012-03-24 11:07:39 +01:00
Hugo Hamon
d4bcbd4741
[Persisters] removed unused local variables in BasicEntityPersister class.
2012-03-24 11:07:39 +01:00
Hugo Hamon
74f52a055e
[Mapping] removed unused local variable $fileName in StaticPHPDriver class.
2012-03-24 11:07:39 +01:00
Hugo Hamon
155c24772a
[Mapping] removed unused local variables $versionAnnot and $tblGeneratorAnnot in AnnotationDriver class.
2012-03-24 11:07:39 +01:00
Hugo Hamon
a3d8207578
[Mapping] removed unused local variable $field in ClassMetadataInfo class.
2012-03-24 11:07:35 +01:00
Hugo Hamon
beae0865db
[Mapping] removed unused local variable $fieldName in ClassMetadataFactory class.
2012-03-24 11:07:35 +01:00
Benjamin Eberlei
29318e183c
[DDC-1723] Fix missing serialitation for custom generator definition.
2012-03-22 23:07:00 +01:00
Benjamin Eberlei
18e63f9cea
Merge branch 'DDC-1723'
2012-03-22 22:30:35 +01:00
Benjamin Eberlei
bc4cf21c9d
Merge velovint/SupportCustomIdGenerators
2012-03-22 22:29:15 +01:00
Benjamin Eberlei
7d7edbbd4a
Merge pull request #288 from FabioBatSilva/DDC-775
...
DDC 775
2012-03-22 14:00:48 -07:00
Benjamin Eberlei
3aba23ea35
Merge pull request #304 from doctrine/feature/flush-many-documents
...
Allow flushing of many entities by passing an array of entities.
2012-03-22 12:34:01 -07:00
Alexander
1b2b831feb
Merge pull request #306 from r1pp3rj4ck/patch-1
...
Fixed fetch mapping in xsd
2012-03-16 09:02:56 -07:00
Attila Bukor
7f3e90e291
Fixed fetch mapping in xsd
...
It was 'EXTRALAZY' and the constant name in ClassMetadata is 'EXTRA_LAZY'
2012-03-16 17:00:12 +01:00
Guilherme Blanco
6f3ef148a9
Merge pull request #305 from FabioBatSilva/DDC-1470
...
[DDC-1470] Error messages
2012-03-15 19:36:56 -07:00
Fabio B. Silva
9cee329407
Fix CS
2012-03-15 22:38:54 -03:00
Fabio B. Silva
36dc560533
Fix DDC-1470
2012-03-15 21:29:52 -03:00
Jonathan H. Wage
24e808844b
Allow flushing of many entities by passing an array of entities.
2012-03-15 17:45:25 -05:00
Guilherme Blanco
44d7d23e8d
Coding style fixes.
2012-03-15 01:26:06 -04:00
Guilherme Blanco
a16ca32981
Coding style fixes.
2012-03-15 01:15:47 -04:00
Guilherme Blanco
c3291f8f24
Coding style fixes.
2012-03-15 01:13:14 -04:00
Guilherme Blanco
c65b22eadf
Coding style fixes.
2012-03-15 01:08:28 -04:00
Guilherme Blanco
2a399312f7
Coding style fixes.
2012-03-15 01:03:01 -04:00
Guilherme Blanco
666ae8f1b7
Coding style fixes.
2012-03-15 01:00:29 -04:00
Benjamin Eberlei
e1704402a6
Merge branch 'DDC-1648'
2012-03-14 21:39:29 +01:00
rivaros
9c4e52c136
Convention fix
2012-03-14 21:38:56 +01:00
Rivaros
b346f1901a
convention fixes #2
2012-03-14 21:38:50 +01:00
Rivaros
df82b6060b
Convention fixes
2012-03-14 21:38:43 +01:00
Rivaros
06eed4cfda
Primary Keys as Foreign Keys - reverse engineering
2012-03-14 21:38:33 +01:00
Benjamin Eberlei
de5e4b0fdc
[DBAL-1692] Throw exception if table has no primary key instead of fatal error.
2012-03-14 21:09:48 +01:00
Benjamin Eberlei
0e1eff14bc
Merge branch 'DDC-1683'
2012-03-14 20:49:34 +01:00
Benjamin Eberlei
18f1d56b60
[DDC-1683] Fix bug with booleans not handled by Expr#literal() in query builder.
2012-03-14 20:49:25 +01:00
Benjamin Eberlei
01381fae1f
[DDC-1698] Autoloading proxies
2012-03-14 20:11:17 +01:00
Benjamin Eberlei
9b4d60897d
[DDC-1698] Add autoloader especially for the non PSR-0 Proxy class names. This is necessary when you want to deserialize your proxy classes from the session.
2012-03-14 20:03:17 +01:00
Alexander
c6ef7a7c03
Merge pull request #303 from sandermarechal/paginate-sql-walkers
...
Fix GROUP BY clauses for PostgreSQL
2012-03-14 00:16:29 -07:00
Sander Marechal
cb892736eb
Fix GROUP BY clauses for PostgreSQL
2012-03-14 07:58:58 +01:00
Benjamin Eberlei
694d0911c9
Merge pull request #301 from sandermarechal/paginate-sql-walkers
...
Fix HAVING queries for PostgreSQL
2012-03-13 01:15:55 -07:00
Sander Marechal
b2fa2cb195
Fix HAVING queries for PostgreSQL
2012-03-13 07:59:14 +01:00
Fabio B. Silva
84b31714a6
fix indentation
2012-03-12 22:07:43 -03:00
Fabio B. Silva
e46275e80d
remove case expressions and functions support
2012-03-12 20:26:40 -03:00
Fabio B. Silva
797c9cf70e
supports simple math operator
2012-03-12 20:26:39 -03:00
Fabio B. Silva
df0632258a
Order by clause support case expressions
2012-03-12 20:26:38 -03:00
Fabio B. Silva
ce9643bce1
Order by clause support functions
2012-03-12 20:26:38 -03:00
Alexander
73db4e19d2
Merge branch 'merge_non_mapped_properties'
2012-03-12 23:19:16 +01:00
Alexander
e3933e265e
Add upgrade file + note about merging entities
2012-03-12 23:18:56 +01:00
Klein Florian
ac1ffaf7e9
make merge copy non persited properties too
2012-03-12 23:18:56 +01:00
Benjamin Eberlei
775936399e
Merge branch 'DDC-451'
2012-03-12 12:56:44 +01:00
Benjamin Eberlei
23d004844a
[DDC-451] Adjust doctrine-mapping.xsd for new UUID generator
2012-03-12 12:52:36 +01:00
Benjamin Eberlei
d57159ad54
[DDC-451] Add test for UUIDGenerator
2012-03-12 12:48:14 +01:00
Maarten de Keizer
33c5f4f678
Fix comments
2012-03-12 12:32:33 +01:00
Maarten de Keizer
0a835609fa
UUID id generator
2012-03-12 12:32:33 +01:00
Benjamin Eberlei
3788d0e815
Merge pull request #298 from sandermarechal/paginate-sql-walkers
...
Pagination using SQL walkers
2012-03-12 01:04:34 -07:00
Sander Marechal
43f97a9abc
CountOutputWalker does not need CountWalker::HINT_DISTINCT
2012-03-12 08:39:28 +01:00
Sander Marechal
53ff312936
Renamed *SqlWalker to *OutputWalker
2012-03-12 08:33:35 +01:00
Guilherme Blanco
7954386705
DDC-1696 Allowed Strings to be used inside of Case expressions. It seems this fixes other misterious use cases not yet identified by us.
2012-03-11 21:14:08 -04:00
Benjamin Eberlei
0a78f7bc11
[DDC-1695] Fix bug in SQL Walker array hydration with escaped fields.
2012-03-11 23:27:51 +01:00
Benjamin Eberlei
4dd296f9ca
Merge pull request #299 from patrick-mcdougle/patch-1
...
Fixed comment for createQuery to include the variable name.
2012-03-11 14:49:43 -07:00
Alexander
3faa1a78c2
[DDC-1426] sizeof() -> count() + added tests
2012-03-11 22:32:30 +01:00
Martin Pöhlmann
39ad87650e
findByXXX/findOneByXXX does now also accept orderBy, limit and offset args
...
Conflicts:
lib/Doctrine/ORM/EntityRepository.php
2012-03-11 22:32:30 +01:00
Benjamin Eberlei
79d9c07652
[DDC-1693] Fix fatal errors in DQL when using Optimistic or None lock modes. Added tests.
2012-03-11 22:29:20 +01:00
Sander Marechal
47964a1605
Use assertCount for simpler tests
2012-03-08 09:48:41 +01:00
Sander Marechal
ad871e8b26
Cleaned up use statements
2012-03-08 09:41:35 +01:00
Sander Marechal
c9d962b12a
Fix indentation
2012-03-07 08:57:51 +01:00
Sander Marechal
2f817b30c3
Use a dataProvider to test both TreeWalker and SqlWalker pagination
2012-03-07 08:52:00 +01:00
Sander Marechal
d2501a9e4a
Throw exception when using the CountWalker with a HAVING query
2012-03-07 08:42:09 +01:00
patrick-mcdougle
7798c94a40
Fixed comment for createQuery to include the variable name.
2012-03-06 14:18:18 -06:00
Sander Marechal
edd5d14b06
Pagination using SQL walkers
...
A CountSqlWalker and LimitSubquerySqlWalker have been implemented. By
default the Paginator will use these SQL walkers. When a query already
uses custom SQL walkers, the Paginator will fall back to the existing
TreeWalker implementations. Improvements:
* Support for more complex DQL queries using named mixed results with
GROUP BY and HAVING. For example:
SELECT g, u, COUNT(u.id) AS userCount
FROM Entity\Group g LEFT JOIN g.users u
GROUP BY g.id
HAVING userCount > 0
* Support for entities with composite primary keys in the CountSqlWalker
and LimitSubquerySqlWalker. Only the WhereInWalker still needs to be
updated for full composite primary key support. But someone smarter
than me needs to look at that and figure out how to build a WHERE IN
query that can select rows based on multiple columns.
2012-03-06 16:24:44 +01:00
Guilherme Blanco
f6a61b133e
Fixed roken MySQL test.
2012-03-05 01:54:43 -05:00
Guilherme Blanco
f1fe360788
Merge pull request #296 from brikou/patch-2
...
According to "Doctrine's implicit CS" and "Symfony's implicit CS" an emp...
2012-03-04 07:36:25 -08:00
Brikou CARRE
e130df4f42
According to "Doctrine's implicit CS" and "Symfony's implicit CS" an empty line added to the end of the file (...same tweaks like the one pushed for the entity generator)
2012-03-04 09:43:52 +01:00
Guilherme Blanco
1a192b6530
Moved SQRT function to Platform.
2012-03-03 23:10:56 -05:00
Benjamin Eberlei
6195d42778
Merge branch 'DDC-1668'
2012-03-03 22:25:00 +01:00
Benjamin Eberlei
794b4ef09c
[DDC-1668] Fix problem with the is_int fowards compatibility check. Its not really necesssary anymore, we should remove this code in the future.
2012-03-03 22:24:51 +01:00
Benjamin Eberlei
9cddaf3075
Merge pull request #256 from F5/many_to_many_listeners
...
When using a ManyToMany relationship no listener is notified about any change to the owning entity
2012-03-03 13:13:09 -08:00
Guilherme Blanco
bf80ee6a30
[DDC-1673] Fixed unused in ProxyFactory.
2012-03-03 13:16:26 -05:00
Guilherme Blanco
a47e566382
[DDC-1667] Removed implicit obligation to define an Index and UniqueConstraint name. It is optional, but Annotations Driver was broken if not defined.
2012-03-03 13:05:11 -05:00
Benjamin Eberlei
1447884fde
Merge pull request #295 from brikou/patch-1
...
According to "Doctrine's implicit CS" and "Symfony's implicit CS" an emp...
2012-03-03 04:23:50 -08:00
Benjamin Eberlei
4a68b90f6f
Merge pull request #294 from jmikola/patch-1
...
Fix typo in LifecycleEventArgs::getEntity() docs
2012-03-03 04:23:18 -08:00
Brikou CARRE
cb2c71b16a
According to "Doctrine's implicit CS" and "Symfony's implicit CS" an empty line added to the end of the file
2012-03-02 09:57:24 +01:00
Jeremy Mikola
3d0e87bca9
Fix typo in LifecycleEventArgs::getEntity() docs
2012-03-01 17:03:46 -05:00
Guilherme Blanco
7782f91131
Merge pull request #82 from augustohp/patch-1
...
Fixed typo "Assocations" in doc index
2012-02-27 10:00:24 -08:00
Augusto Pascutti
579774f505
Fixed typo "Assocations"
2012-02-27 14:55:52 -03:00
Guilherme Blanco
e8fbafd154
Fixed OneToMany bidirectional association mapping in Annotations and also included the YAML missing one.
2012-02-26 11:40:13 -05:00
Guilherme Blanco
48dcee9d60
[DDC-1616] Removed non-SQL message and improve exportability of SchemaTool CreateCommand.
2012-02-22 01:19:01 -05:00
Vitali Yakavenka
78d3f647ff
Merge branch 'master' of git://github.com/doctrine/doctrine2 into SupportCustomIdGenerators
2012-02-21 09:45:16 +03:00
Guilherme Blanco
55a9e1e90c
Merge pull request #290 from doctrine/DDC-1652
...
[DDC-1652] Fix SqlWalker to include foreign key identifiers in SQL SELEC...
2012-02-20 14:34:52 -08:00
Benjamin Eberlei
1bbd52b8ee
[DDC-1652] Fix SqlWalker to include foreign key identifiers in SQL SELECT statement no matter what the meta column setting is suggesting.
2012-02-20 17:48:34 +01:00
Benjamin Eberlei
9b9acd6e9e
Fix composer.json with regards to latest changes.
2012-02-20 16:03:42 +01:00
Benjamin Eberlei
dbd646b2de
[DDC-1649] Fix notice by last commit.
2012-02-20 15:55:19 +01:00
Benjamin Eberlei
502585bf40
[DDC-1649] Add additional check for not allowed mapping of dependent association keys.
2012-02-20 15:55:18 +01:00
Benjamin Eberlei
af07bd7818
Merge pull request #273 from smoya/master
...
No unique join column fields for Single Table inheritance type.
2012-02-20 06:55:00 -08:00
Benjamin Eberlei
35ded56fdd
Add note about debugging DQL queries.
2012-02-20 10:48:57 +01:00
Benjamin Eberlei
a32948b20f
Merge branch 'DDC-1654'
2012-02-20 10:33:26 +01:00
Benjamin Eberlei
68436fee75
[DDC-1654] Add support for orphanRemoval on ManyToMany associations. This only makes sense when ManyToMany is used as uni-directional OneToMany association with join table. The join column has a unique constraint on it to enforce this on the DB level, but we dont validate that this actually happens. Foreign Key constraints help prevent issues and notify developers early if they use it wrong.
2012-02-20 10:33:16 +01:00
Benjamin Eberlei
85d1707a2b
Merge branch 'DDC-1659'
2012-02-20 09:36:51 +01:00
Benjamin Eberlei
35764c2402
[DDC-1659] Remove read only marker when clearing entities.
2012-02-20 09:36:35 +01:00
Benjamin Eberlei
5d352389b7
Merge pull request #270 from bmichotte/master
...
Fluent interface and relations
2012-02-20 00:24:07 -08:00
Benjamin Eberlei
f040ed0cf0
Merge pull request #287 from goetas/nullable
...
Nullable assocations for entity generator
2012-02-19 15:30:17 -08:00
Benjamin Eberlei
361c88d6ea
Merge pull request #55 from michal-pipa/fix-indentation
...
Fixed indentation.
2012-02-18 15:56:26 -08:00
Benjamin Eberlei
9b484192c4
Merge pull request #81 from meze/patch-1
...
Fix a typo in a code example (getResults instead of getResult)
2012-02-18 15:55:38 -08:00
meze
86010bdb0d
Fix a typo in a code example (getResults instead of getResult)
2012-02-19 03:01:29 +04:00
Benjamin Eberlei
6cd82d77f5
Merge branch 'DDC-1651'
2012-02-18 16:08:09 +01:00
Benjamin Eberlei
bd1bc07270
[DDC-1651] Convert entities as parameters early in setParameter() to avoid them being part of result cache strings, which causes non-uniqueness.
2012-02-18 16:07:55 +01:00
Benjamin Eberlei
93f79d0810
Merge branch 'DDC-1643'
2012-02-18 00:43:04 +01:00
Benjamin Eberlei
9fc1d85e8d
[DDC-1643] Fix bugs when cloning PersistentCollection and re-using it.
2012-02-18 00:42:21 +01:00
Benjamin Eberlei
d995c6dbdc
[DDC-1655][DDC-1650][DDC-1556] Fix issues with @postLoad Callback being not fired, or fired multiple times.
2012-02-17 23:27:16 +01:00
Asmir Mustafic
d1b2dabc0f
nullable assoc
2012-02-15 12:43:55 +01:00
Guilherme Blanco
e6b99c2059
Merge pull request #283 from FabioBatSilva/DDC-807
...
Fix DDC-807
2012-02-14 10:27:49 -08:00
Guilherme Blanco
2c3c5b34cf
Merge pull request #282 from FabioBatSilva/discriminatorColumnName
...
Mandatory discriminator column name
2012-02-14 10:26:01 -08:00
Guilherme Blanco
e5d1f9e724
Merge pull request #284 from meandmymonkey/docblock-fix
...
docblock/typehint fix
2012-02-14 10:24:04 -08:00
Andreas Hucks
1d927541e2
added type hint
2012-02-14 19:12:20 +01:00
Andreas Hucks
3419c65efe
fixed docblock
2012-02-14 19:08:44 +01:00
Andreas Hucks
2e81fbfd64
added type hint
2012-02-14 19:08:17 +01:00
Fabio B. Silva
da9b2e805e
remove unused parameter
2012-02-13 23:43:19 -02:00
Fabio B. Silva
cdde6e8a5c
fix required discriminator column name
2012-02-13 23:38:36 -02:00
Fabio B. Silva
5d01123413
Fix DDC-807, DDC-553
2012-02-13 23:22:49 -02:00
Benjamin Eberlei
138b67db86
Fix wrong use of private in mapped superclasses, only protected is supported here.
2012-02-13 11:18:35 +01:00
Guilherme Blanco
38d725ce32
Merge pull request #279 from FabioBatSilva/DDC-1642
...
Fix DDC-1642
2012-02-12 16:46:41 -08:00
Fabio B. Silva
86054eb659
fix DDC-1642
2012-02-12 22:24:03 -02:00
Benjamin Eberlei
600d0ba2a2
Merge branch 'DDC-1641'
2012-02-10 21:39:27 +01:00
Benjamin Eberlei
299def4712
DDC-1641 - Fix test producing failure when skipped.
2012-02-10 21:39:17 +01:00
Benjamin Eberlei
ea95bd57ef
Rework a bit
2012-02-05 22:54:28 +01:00
Benjamin Eberlei
3def848422
Fix enumeration
2012-02-05 22:51:42 +01:00
Benjamin Eberlei
6fa7580d10
Add tutorial about Pagination
2012-02-05 22:46:43 +01:00
Benjamin Eberlei
984c8f7db1
Fix versions
2012-02-05 22:28:30 +01:00
Benjamin Eberlei
53947bf2e9
Merge pull request #79 from asm89/filters
...
Fix code blocks
2012-01-31 13:24:41 -08:00
Alexander
bd30a04d0d
Fix code blocks
2012-01-31 22:24:36 +01:00
Guilherme Blanco
18bdc53907
Merge pull request #78 from asm89/filters
...
Documentation for the new filter functionality
2012-01-31 13:20:55 -08:00
Alexander
6f56dbe395
Added filters to the index
2012-01-31 15:58:31 +01:00
Alexander
ff9e7ef64b
Processed comments of @Ocramius
2012-01-31 15:56:24 +01:00
Alexander
cfbfac6a51
General information on how the filter work etc + warning on the enabling/disabling part
2012-01-31 15:56:24 +01:00
Alexander
7c8a9c0f9a
Initial draft for filter documentation
2012-01-31 15:56:24 +01:00
Alexander
19a4d05035
Merge pull request #274 from mvrhov/DDC-1625
...
Proxy not initialized when parent has get<IDENTIFIER> function.
2012-01-30 07:23:19 -08:00
Miha Vrhovnik
bea78f42e3
Proxy not initialized when parent has get<IDENTIFIER> function. Fixes DDC-1625
2012-01-30 11:44:08 +01:00
Benjamin Eberlei
d378b5aec8
Update theme
2012-01-30 00:56:14 +01:00
Benjamin Eberlei
c613351f39
Added 10 quick steps section
2012-01-29 22:40:38 +01:00
Benjamin Eberlei
9bd51f2062
Update theme
2012-01-29 20:56:48 +01:00
Benjamin Eberlei
cfd5eefa7a
Update theme
2012-01-29 20:54:51 +01:00
Benjamin Eberlei
781f83f648
Update unitofwork section
2012-01-29 20:45:17 +01:00
Benjamin Eberlei
02e7dcdc87
Fix conf.py for 2.2 release
2012-01-29 20:06:07 +01:00
Benjamin Eberlei
8a39a66057
Some fixes in the docs
2012-01-29 20:03:40 +01:00
Benjamin Eberlei
5e3e48c8dd
Rename getting-started tutorial page.
2012-01-29 19:48:09 +01:00
Benjamin Eberlei
0b7d5f2813
Merge pull request #50 from cordoval/patch-3
...
corrected rst for bash like code blocks
2012-01-29 10:36:41 -08:00
Benjamin Eberlei
ccabbf328f
Merge pull request #56 from michal-pipa/fix-underline
...
Fixed title underline.
2012-01-29 10:36:25 -08:00
Guilherme Blanco
022c08d947
Merge pull request #77 from Ocramius/patch-3
...
Making the correct usage of LIKE expressions and placeholders explicit
2012-01-29 07:40:52 -08:00
Marco Pivetta
f9523aa419
Making the correct usage of LIKE expressions and placeholders explicit
2012-01-29 15:59:45 +01:00
Benjamin Eberlei
e774b1d8c0
Fix test for non-mysql like datetimes.
2012-01-29 15:02:40 +01:00
Benjamin Eberlei
3c4d2cd890
Merge pull request #253 from mrmkrs/protectedfields
...
enable set visibilty of class fields in EntityGenerator
2012-01-28 13:13:37 -08:00
Benjamin Eberlei
120bad8a2c
Merge pull request #262 from wrightlabs/patch-1
...
added optional Command array as parameter for run method
2012-01-28 13:12:50 -08:00
Benjamin Eberlei
6b1ef08a46
Merge pull request #162 from ericclemmons/patch-1
...
ProxyFactory creates proxy's parent structure if it doesn't exist
2012-01-28 13:12:26 -08:00
Benjamin Eberlei
359a9c015b
Merge pull request #196 from goetas/manyidx
...
Added some improvments for generated XML
2012-01-28 13:11:22 -08:00
Benjamin Eberlei
2ce705ceb3
Merge pull request #272 from jsor/table_options
...
Implement custom options on table level and complete column options implementation
2012-01-28 12:56:19 -08:00
Benjamin Eberlei
16b22f0f31
Merge pull request #266 from FabioBatSilva/DDC-1412
...
[DriverChain] Fix DDC-1412 Default Driver
2012-01-28 12:54:47 -08:00
Benjamin Eberlei
585ba534a6
Merge branch 'DDC-1526'
2012-01-28 12:28:23 +01:00
Benjamin Eberlei
3407620bf8
[DDC-1526] Collections are not marked as initialized when they are fetch joined but dont contain any results. This only occurs when using LEFT JOINs on the assocations and causes another query to be fired when the empty collection is accessed again.
2012-01-28 12:28:16 +01:00
Benjamin Eberlei
f9e943fefb
Merge branch 'DDC-1617'
2012-01-28 11:16:48 +01:00
Benjamin Eberlei
551df4af52
[DDC-1617] Implement support for Generating Unique Constraints/Indexes in @Table annotation of EntityGenerator.
2012-01-28 11:16:36 +01:00
Benjamin Eberlei
b0ec3dfb47
Started refactoring of the documentation towards smaller chapters, grouped into logical units with better explanations (hopefully).
2012-01-28 00:49:37 +01:00
Benjamin Eberlei
19b7d4d0d4
Simplify section names even more
2012-01-27 21:43:04 +01:00
Benjamin Eberlei
d5a97c0c59
Add fancy new index page, moving toc to toc.rst
2012-01-27 21:36:36 +01:00
jsor
fac820f0e2
Complete custom column option implementation
...
- Support for xml driver
- Tests
2012-01-27 11:05:47 +01:00
Guilherme Blanco
3b9aac21c4
Merge pull request #76 from shiroyuki/patch-1
...
Changed from "@var string" to "@var int" for the complete version of ent...
2012-01-26 08:57:28 -08:00
Sergio Moya
88bbee127c
No unique join column fields for Single Table inheritance type.
2012-01-26 17:37:50 +01:00
Juti Noppornpitak
3880ec6839
Changed from "@var string" to "@var int" for the complete version of entities/User.php.
2012-01-26 11:29:32 -05:00
Jan Sorgalla
d68fcd8bd2
Implement custom options on table level
2012-01-26 15:05:26 +01:00
Benjamin Eberlei
35fc3c0671
Merge branch 'DDC-1619'
2012-01-25 10:19:18 +01:00
Benjamin Eberlei
7dae89bb02
[DDC-1619] Add QueryBuilder#distinct
2012-01-25 10:19:01 +01:00
Benjamin Eberlei
f0a09a2d52
Merge branch 'DDC-1618'
2012-01-25 00:03:56 +01:00
Thomas Rabaix
8027fca378
Add SqlWalker::HINT_DISTINCT constant
2012-01-25 00:03:40 +01:00
Thomas Rabaix
d9bb861b1f
Fix DDC-1618 - add more check before throwing an iterateWithFetchJoinNotAllowed exception
2012-01-25 00:03:40 +01:00
Benjamin Michotte
1d2f46bda7
Add fluent code for relations
2012-01-24 19:08:25 +01:00
Benjamin Eberlei
aca20fc615
Merge pull request #268 from sandermarechal/paginate-where-not
...
Add support for paginating WHERE NOT ... queries
2012-01-23 11:50:50 -08:00
Sander Marechal
c6c82efe07
Fixed indentation
2012-01-23 16:11:30 +01:00
Sander Marechal
5dc0081f56
Add support for paginating WHERE NOT ... queries
...
The Pagination tool throws an exception on a DQL query like:
SELECT u FROM User u WHERE NOT (u INSTANCE OF Person)
This is because Paginate does not know about the
Doctrine\ORM\Query\AST\ConditionalFactor which implements the NOT
operator. This patch adds support for that.
2012-01-23 15:42:41 +01:00
Benjamin Eberlei
9602e6785e
Updated theme
2012-01-23 00:44:19 +01:00
Benjamin Eberlei
7918a42a0e
Theme submodule
2012-01-22 23:25:48 +01:00
Benjamin Eberlei
81ba71e8d5
Remove _theme
2012-01-22 23:24:01 +01:00
Benjamin Eberlei
23529e839d
Adjust css
2012-01-22 23:15:52 +01:00
Benjamin Eberlei
34a696c3d6
Add all static dependencies instead of loading them from doctrine project site.
2012-01-22 23:09:21 +01:00
Benjamin Eberlei
cad694e469
Explicit Javascripts
2012-01-22 22:49:14 +01:00
Benjamin Eberlei
17d91d173b
Change _templates override into a theme "doctrine".
2012-01-22 22:23:19 +01:00
Benjamin Eberlei
8bf1c96ae1
Merge branch 'DDC-1613'
2012-01-22 13:35:26 +01:00
Benjamin Eberlei
775071e1ff
[DDC-1613] Merge KnpLabs/Pagerfanta Pagination into a Doctrine\ORM\Tools\Pagination namespace. Thanks to @hobodave, pablo and the knplabs team for developing and maintaining this code.
2012-01-22 13:35:06 +01:00
Benjamin Eberlei
358bb2ec33
Merge pull request #267 from webtor/master
...
Bugfix for crushing when git clone --recursive doctrine2
2012-01-22 01:40:14 -08:00
Alexandr Torosh
9f831f4c98
changed submodule doctrine-build-common url
...
https://github.com/doctrine/doctrine-build-common.git
to
git://github.com/doctrine/doctrine-build-common.git
with read-only access
2012-01-21 23:38:55 +02:00
Fabio B. Silva
0fce3c8f97
Fix DDC-1412
2012-01-21 12:42:46 -02:00
Benjamin Eberlei
1d46d2b9af
Merge branch 'DDC-1610'
2012-01-21 13:58:33 +01:00
Benjamin Eberlei
faf92883b6
[DDC-1610] Add test and fix wakeup reflection in combination with event listener
2012-01-21 13:58:25 +01:00
Benjamin Eberlei
44831f21c1
Merge branch 'DDC-1612'
2012-01-21 13:06:38 +01:00
Benjamin Eberlei
6c24251452
[DDC-1612] Fix bug with EntityManager#flush($entity) on new entities.
2012-01-21 13:06:30 +01:00
Benjamin Eberlei
1d6a21f7fa
Merge branch 'DBAL-204'
2012-01-21 11:32:07 +01:00
Benjamin Eberlei
0f3abde413
[DBAL-204] Filter namespaced assets if Schemas/Emulation is not supported.
2012-01-21 11:31:54 +01:00
Guilherme Blanco
febfe35c23
Added coverage for DDC-1529.
2012-01-18 23:51:11 -05:00
Guilherme Blanco
74f3ed7e29
Fixing CS.
2012-01-18 23:27:28 -05:00
Guilherme Blanco
b98280a504
Quick optimizations are always good.
2012-01-18 23:09:23 -05:00
Benjamin Eberlei
e0fc09994c
DDC-742 - Flush Memcache, otherwise fail.
2012-01-18 21:32:56 +01:00
Guilherme Blanco
d39760ba49
Fixed DDC-1608. Non-initialized PersistentCollection methods removeElement and contains now deal correctly with managed entities.
2012-01-18 01:04:25 -05:00
John Wright
543c73bc05
added optional command array as parameter for run method
2012-01-16 21:01:44 -08:00
Guilherme Blanco
c1012f7970
Merge pull request #259 from danielholmes/m2m_extra_lazy_contains
...
Added fix for collection->contains with many-to-many extra lazy fetchMode
2012-01-16 19:51:11 -08:00
Guilherme Blanco
2bb511584e
Merge pull request #261 from armetiz/patch-7
...
Unique key name isn't correctly set - DDC-1603
2012-01-16 19:44:22 -08:00
Guilherme Blanco
0f07044836
Added coverage to DDC-1587.
2012-01-16 22:31:14 -05:00
Guilherme Blanco
1b23b4bc47
Merge pull request #75 from hype-/patch-1
...
Added missing docblock endings.
2012-01-16 13:20:53 -08:00
Mikko Hirvonen
d44d82b694
Added missing docblock endings.
2012-01-16 22:08:49 +02:00
Guilherme Blanco
fdb2b9c655
Optimized scalar type mapping support.
2012-01-16 14:26:13 -05:00
armetiz
21c9be74c9
Update lib/Doctrine/ORM/Tools/SchemaTool.php
2012-01-16 13:54:04 +01:00
Benjamin Eberlei
28403abe78
Merge branch 'DDC-1604'
2012-01-16 12:51:20 +01:00
Benjamin Eberlei
a029b28423
[DDC-1604] Have ORM Proxy implement new \Doctrine\Common\Persistence\Proxy
...
* Adjust ProxyFactory to generate proxies according to new naming schema.
* Change proxy naming and file-name generation to be a bit more consistent than previous approach.
[DDC-1598] Additional regexp to check for simple ID methods to make it even more safe.
2012-01-16 12:50:36 +01:00
armetiz
56c49fedd2
Unique key name isn't correctly set - DDC-1603
2012-01-16 10:30:15 +01:00
Daniel Holmes
a12e5ac8a7
Updated some comparisons to strict equality
2012-01-16 08:12:11 +11:00
Benjamin Eberlei
27451a59d4
Merge pull request #254 from jsor/custom_options
...
Pass options attribute in @Column annotation to Schema\Column's customSchemaOptions
2012-01-15 09:06:46 -08:00
Benjamin Eberlei
47e56de443
Merge branch 'DDC-1594'
2012-01-15 17:42:37 +01:00
Benjamin Eberlei
56ea4872ca
DDC-1594 - Fix problem with merge and an existing managed proxy instance.
2012-01-15 15:48:44 +01:00
Benjamin Eberlei
36ce26691d
DDC-1585 - Throw exception if setting target entity of the wrong type to an assocation.
2012-01-15 14:59:20 +01:00
Daniel Holmes
5deebc8738
Added fix for collection->contains when many-to-many extra lazy fetchMode
2012-01-15 23:25:57 +11:00
Benjamin Eberlei
3c391f8f37
Merge pull request #258 from danielholmes/patch-1
...
Fix namespace of BasicEntityPersisterTypeValueSqlTest
2012-01-15 03:33:30 -08:00
Daniel Holmes
cd6b584722
Fix namespace of BasicEntityPersisterTypeValueSqlTest
2012-01-15 22:31:01 +11:00
Benjamin Eberlei
e8e830f10a
Merge branch 'DDC-1601'
2012-01-15 12:12:15 +01:00
Benjamin Eberlei
9950af2f58
[DDC-1601] Fix failing test and remove unused code
2012-01-15 12:12:08 +01:00
Benjamin Eberlei
106f10513f
[DDC-1601] Fix bugs in SchemaValidator, using all modelsets as testdata for a large test
2012-01-15 11:27:52 +01:00
Benjamin Eberlei
6ffe4d3dda
[DDC-1601] Fix bugs in SchemaValidator, using all modelsets as testdata for a large test
2012-01-15 11:27:28 +01:00
Guilherme Blanco
ea14bcff4a
Fixed DDC-657. Added type conversion to scalar result.
2012-01-13 20:46:59 -05:00
Marcel
f76d327413
use self:: instead of EntityGenerator::
2012-01-13 14:43:13 +01:00
Marcel
72d5d0281a
use !== to check field visibility
...
use class constants
2012-01-13 14:34:34 +01:00
Marcel
69f0d70a98
fix if coding standard
...
fix typo
2012-01-13 14:14:28 +01:00
Francisco Facioni
bab14bfd24
UnitTest for ManyToMany update notification
2012-01-13 09:35:27 -03:00
Marcel
f26d43b3ea
remove whitespace
...
tabs -> spaces
added class constants
updated phpdoc
2012-01-13 11:24:35 +01:00
Guilherme Blanco
649d29414f
Fixed one-to-many unidirectional with join table chapter.
2012-01-13 01:09:28 -05:00
Guilherme Blanco
52ee848bcb
Added coverage to DDC-1595 and DDC-1596.
2012-01-13 00:37:59 -05:00
Guilherme Blanco
bb10211983
Fixes DDC-1596. Added table alias to discriminator column when using STI.
2012-01-12 23:58:08 -05:00
Guilherme Blanco
da7fd2ece7
Merge pull request #250 from FabioBatSilva/DDC-1575
...
[DDC-1575] Give the FQCN to the naming strategy
2012-01-12 20:45:22 -08:00
Francisco Facioni
e7a6d87990
When using a ManyToMany relationship no listener is notified about any change to the owning entity.
...
What I'm doing with this patch is marking the entity for update when there is a modification in the ManyToMany relationship so the listeners are notified about it.
The main reason for this is for hooking up services like Solr or other indexers to update the entities even for ManyToMany relationships.
2012-01-12 14:38:07 -03:00
Benjamin Eberlei
c1dae35a24
Fix notice when using regenerate if exists and file is not new.
2012-01-12 11:20:49 +01:00
jsor
615e22073f
Pass options attribute in @Column annotation to Schema\Column's customSchemaOptions
2012-01-11 15:58:57 +01:00
Benjamin Eberlei
7b4349a9ce
Rewrite installation and configuration of Tools chapter.
2012-01-09 10:36:56 +01:00
Benjamin Eberlei
1d5597917b
Fix TIP and show new cache instropection API (2.2)
2012-01-09 08:37:12 +01:00
Benjamin Eberlei
adec530c13
Merge branch '2.2'
2012-01-09 08:26:33 +01:00
Benjamin Eberlei
d0b0b0ce59
Merge 2.2
2012-01-09 08:05:15 +01:00
Benjamin Eberlei
773fbd9edb
Merge branch '2.2'
2012-01-09 08:04:44 +01:00
Vitali Yakavenka
53ecedf70a
Remove support to pass arguments to custom ID generator's constructor
2012-01-08 15:20:35 +03:00
Vitali Yakavenka
b09201ae88
Recover changes in ClassMetadataFactoryTest::_createValidClassMetadata() lost during last merge
2012-01-08 14:55:08 +03:00
Vitali Yakavenka
59e9d55077
Merge doctrine/master
2012-01-06 22:06:59 +03:00
Marcel Raaijmakers
facd64ef2f
enable set visibilty of class fields in EntityGenerator
2012-01-06 16:58:27 +01:00
Benjamin Eberlei
ce0873d589
Merge pull request #73 from AmirBehzad/TutorialFixes
...
Update en/tutorials/getting-started-xml-edition.rst
2012-01-05 13:40:57 -08:00
AmirBehzad Eslami
bc91e5c0fd
Separated listings of User.php, Bug.php, and Product.php. Added missed statement to use ArrayCollection in User.php .
2012-01-06 01:03:15 +03:30
Benjamin Eberlei
6d1f716f8b
Update en/tutorials/getting-started-xml-edition.rst
2012-01-05 21:40:15 +01:00
Benjamin Eberlei
442227fc89
Update en/reference/architecture.rst
2012-01-05 10:28:46 +01:00
Fabio B. Silva
781a661704
change naming position
2012-01-03 17:58:20 -02:00
Fabio B. Silva
d8227fcd06
give the FQCN to the naming strategy
2012-01-03 16:59:43 -02:00
Benjamin Eberlei
3fff83cd13
Merge 2.2 into master
2012-01-03 19:20:11 +01:00
Benjamin Eberlei
9a0d36ae86
Fix Version
2012-01-02 15:13:48 +01:00
Benjamin Eberlei
c6730de3d1
Merge remote-tracking branch 'origin/2.2'
2012-01-02 15:13:26 +01:00
Benjamin Eberlei
b558ffd694
Merge pull request #244 from kimhemsoe/fix_ddc224_test
...
Fixed DDC214 test.
2011-12-31 02:27:28 -08:00
Guilherme Blanco
ae1c171392
Merge pull request #70 from maastermedia/master
...
Typos fixed
2011-12-30 20:18:50 -08:00
Guilherme Blanco
9f3967d65d
Merge pull request #245 from milokmet/DDC-1572
...
[DDC-1572] Allow LIKE pattern to be a function or path expression
2011-12-30 20:17:38 -08:00
Peter Kokot
65c64f52c8
typo in reference/tools
2011-12-31 04:37:25 +01:00
Peter Kokot
1c31603e17
type varchar replaced with type string
2011-12-31 04:33:46 +01:00
Guilherme Blanco
4ae7851a04
Merge pull request #247 from juzna/fix-phpdoc
...
fixed phpDoc and typos
2011-12-30 13:05:37 -08:00
Jan Dolecek
12c3a42d8c
fixed phpDoc and typos
2011-12-30 20:06:20 +01:00
Guilherme Blanco
e43897916a
Merge pull request #246 from FabioBatSilva/DDC-1557
...
[DDC 1557] Support for DQL function on subselect
2011-12-29 11:22:23 -08:00
Fabio B. Silva
ab4482b617
update docblock
2011-12-29 17:05:44 -02:00
Miloslav Kmet
ae4321b4e3
[DDC-1572] Allow LIKE pattern to be a function or path expression
2011-12-29 19:51:48 +01:00
Fabio B. Silva
bf8924df14
some tests
2011-12-29 14:47:23 -02:00
Fabio B. Silva
4cc61bf2ee
fix DDC-1557
2011-12-29 14:30:29 -02:00
Kim Hemsø Rasmussen
82bea24426
Fixed DDC214 test.
2011-12-29 02:05:54 +01:00
Benjamin Eberlei
959a68694e
Merge branch 'DDC-1360'
2011-12-28 20:28:45 +01:00
Benjamin Eberlei
9d398afa56
DDC-1360 - Bugfix in quoting mechanism inside ClassMetadataInfo
2011-12-28 20:28:17 +01:00
Benjamin Eberlei
e5cf1da4ee
Merge pull request #235 from holtkamp/patch-1
...
Allow ExporterDrivers that implement the exportClassMetadata() function to return false
2011-12-27 23:54:09 -08:00
Benjamin Eberlei
3cbb3eab18
Merge pull request #242 from FabioBatSilva/patch-1
...
[UnderscoreNamingStrategy] fix docblock
2011-12-27 23:46:36 -08:00
Fabio B. Silva
ff4ed93707
fix typo
2011-12-27 09:53:09 -02:00
Guilherme Blanco
abb258c951
Merge pull request #241 from FabioBatSilva/DDC-559
...
[DDC 559, DDC 852] Naming Strategy
2011-12-24 08:45:38 -08:00
Fabio B. Silva
603f7a1664
fix indentation
2011-12-24 12:34:49 -02:00
Fabio B. Silva
e3acf43dbc
move naming classes to Doctrine\ORM\Mapping
2011-12-24 12:01:25 -02:00
Fabio B. Silva
1eddb53d6c
fix CS and use php constants
2011-12-24 11:45:51 -02:00
Guilherme Blanco
93df588d87
Merge pull request #240 from FabioBatSilva/testFunctionSubstring
...
fix QueryDqlFunctionTest#testFunctionSubstring order
2011-12-23 09:17:42 -08:00
Guilherme Blanco
9b1092726d
Merge pull request #239 from adrienbrault/master
...
Fix $qb->expr() PHPDoc @return type.
2011-12-23 09:16:50 -08:00
Fabio B. Silva
223577d8b5
fix QueryDqlFunctionTest#testFunctionSubstring order
2011-12-23 14:57:43 -02:00
Fabio B. Silva
8bdb713073
add support for NamingStrategy
2011-12-23 14:41:03 -02:00
comfortablynumb
6d5f15e708
Merge remote branch 'upstream/master'
2011-12-23 13:30:36 -03:00
Fabio B. Silva
eac34b6d6a
test ClassMetadata whit UnderscoreNamingStrategy
2011-12-23 14:13:21 -02:00
Adrien BRAULT
da0a6fc619
Fix some PHPDoc @return type.
2011-12-23 17:05:08 +01:00
Fabio B. Silva
83a9458653
apply naming strategy on ClassMetadata
2011-12-23 12:28:09 -02:00
Fabio B. Silva
8b1f60c9f8
add UnderscoreNamingStrategy
2011-12-23 12:16:36 -02:00
Fabio B. Silva
537821418e
apply naming strategy on ClassMetadataInfo
2011-12-23 11:29:50 -02:00
Fabio B. Silva
8368f0e4b9
change default namming strategy
2011-12-23 11:03:28 -02:00
Benjamin Eberlei
894dfd1a6b
Update en/reference/yaml-mapping.rst
2011-12-22 23:06:59 +01:00
Fabio B. Silva
a038e6cbad
test case
2011-12-22 14:07:58 -02:00
Guilherme Blanco
ec58285b3f
Merge pull request #236 from FabioBatSilva/DDC-1065
...
[DDC-1065] Error messages
2011-12-22 07:31:37 -08:00
Fabio B. Silva
909dbdf29d
default NamingStrategy
2011-12-22 12:07:18 -02:00
Fabio B. Silva
c2cee0d6eb
error messages
2011-12-22 11:05:11 -02:00
holtkamp
177adbdfc7
Allow ExporterDrivers that implement the exportClassMetadata() function to return FALSE when no content is available/needs to be written to a file by the AbstractExporter, preventing empty files to be generated foreach processed ClassMetadataInfo instance.
2011-12-22 09:38:55 -02:00
Benjamin Eberlei
06de4e62a5
Add 2.2 to travis status icon list
2011-12-22 00:08:53 +01:00
Guilherme Blanco
d23b3bb056
Merge pull request #69 from keymaster/patch-1
...
Clarify the performance warning.
2011-12-21 06:56:17 -08:00
keymaster
0b819ca3b0
Clarify the performance warning.
2011-12-21 12:24:37 +02:00
Guilherme Blanco
041a4e0b43
Merge pull request #66 from FabioBatSilva/patch-2
...
add doc for default repository class
2011-12-20 08:34:27 -08:00
Fabio B. Silva
ca87ddd540
add doc for default repository class
2011-12-20 09:15:37 -02:00
Vitali Yakavenka
4879c50c5d
Merge remote-tracking branch 'doctrine/master' into SupportCustomIdGenerators
2011-12-19 16:47:47 -08:00
Guilherme Blanco
e29dfabb74
Merge pull request #65 from FabioBatSilva/patch-1
...
[Annotations] add doc for @MappedSuperclass#repositoryClass
2011-12-19 12:41:15 -08:00
Fabio B. Silva
43e4e1c389
add doc for MappedSuperclass repositoryClass
2011-12-19 18:35:01 -02:00
comfortablynumb
bf9024b622
Merge remote branch 'upstream/master'
2011-12-19 11:09:09 -03:00
Benjamin Eberlei
e42d70a2b0
Clarify how the CLI is setup
2011-12-17 23:56:10 +01:00
Benjamin Eberlei
48acbf75cd
Reference new cookbook entry
2011-12-17 16:28:46 +01:00
Benjamin Eberlei
22ac3a3099
Add cookbook entry on saving entities in the session.
2011-12-17 16:28:31 +01:00
comfortablynumb
d7042ab828
Merge branch 'master', remote branch 'upstream/master'
2011-12-16 20:01:10 -03:00
Asmir Mustafic
289c186de5
orphanRemoval default is false
2011-12-16 16:16:52 +01:00
Guilherme Blanco
373090f223
Merge pull request #64 from ebernhardson/master
...
Replace non-existant constant T_ABS
2011-12-13 20:04:23 -08:00
ebernhardson
5ea8861bf3
replace non-existant constant Lexer::T_ABS
2011-12-13 10:36:14 -08:00
Guilherme Blanco
e85ce5c02f
Merge pull request #63 from Ocramius/patch-2
...
Fixing minor issues reported by BostjanWrk on IRC about the RSM Builder ...
2011-12-13 06:31:30 -08:00
Marco Pivetta
220c6c4e0e
Fixing minor issues reported by BostjanWrk on IRC about the RSM Builder example
2011-12-13 11:30:09 +01:00
Benjamin Eberlei
f057587457
Merge pull request #62 from jsor/cookbook_types_fix
...
Add missing canRequireSQLConversion() in example type code
2011-12-02 12:58:54 -08:00
Jan Sorgalla
69295ba076
Add missing canRequireSQLConversion() in example type code
2011-12-02 20:59:17 +01:00
Vitali Yakavenka
353ba4dfd1
Remove trailing whitespaces and fix brace locations
2011-11-30 00:20:00 +03:00
Vitali Yakavenka
f13f44a2fc
Merge branch 'master' of git://github.com/doctrine/doctrine2 into SupportCustomIdGenerators
2011-11-29 23:42:01 +03:00
Benjamin Eberlei
76254d693d
Merge pull request #61 from jsor/cookbook_types
...
Cookbook article: Advanced field value conversion using custom mapping types
2011-11-29 03:13:26 -08:00
jsor
cbefb7c543
Finalize first version
2011-11-29 10:31:07 +01:00
Vitali Yakavenka
c92b78bc06
Cleanup formatting just a little
2011-11-29 00:48:08 +03:00
Vitali Yakavenka
b72d150d33
Rename custom-generator to custom-id-generator in XML mappint to match name in other mapping types
2011-11-28 23:36:23 +03:00
Vitali Yakavenka
a8787be0bf
Add missing files from last comming and newly required one after rebase
2011-11-28 23:31:06 +03:00
Vitali Yakavenka
9d1402e4a5
Fix PHPMappingDriver tests
2011-11-28 23:30:32 +03:00
Vitali Yakavenka
84086915e4
Add support for custom ID generator in Yaml driver
2011-11-28 23:30:32 +03:00
Vitali Yakavenka
0a4fbc9770
Remove test for custom ID generator from AnnotationDriverTest as it duplicates one in AbstractMappingDriverTest
2011-11-28 23:30:32 +03:00
Vitali Yakavenka
2b97f79bd3
Add support for custom ID generator in XML
2011-11-28 23:30:32 +03:00
Vitali Yakavenka
6bcfaed640
Remove explicit annotation registration after it was merged into OrmTestCase
2011-11-28 23:30:32 +03:00
Vitali Yakavenka
e2953c8cd4
Rename test accoring to what it tests
2011-11-28 23:29:42 +03:00
Vitali Yakavenka
48b6356e53
Add support for GenerateValue(strategy='CUSTOM') in AnnotationDriver
2011-11-28 23:29:42 +03:00
Vitali Yakavenka
955497e3d5
Remove unnecessary mock
2011-11-28 23:24:19 +03:00
Vitali
82daf651fb
Pass specified arguments to generator's constructor
2011-11-28 23:24:19 +03:00
Vitali
cd0915deb5
Introcude ClassMetadataInfo::GENERATOR_TYPE_CUSTOM for custom generators to follow current implementation
2011-11-28 23:24:18 +03:00
Vitali
ffc722a334
Allow loading of custom ID generator class by FQN in @GeneratedValue(type=)
2011-11-28 23:24:18 +03:00
Vitali
3f942e05f3
Register annotations to make ClassMetadataFactoryTest pass alone
2011-11-28 23:22:08 +03:00
Jan Sorgalla
228d8517c7
Add type
2011-11-28 21:06:01 +01:00
jsor
bece5f0f91
Change ref name
2011-11-28 15:22:55 +01:00
jsor
1300758499
Rename article and add more text
2011-11-28 15:19:49 +01:00
jsor
129b9d0945
Setup article
2011-11-28 11:52:17 +01:00
Benjamin Eberlei
b9b05fc3eb
Fix for DDC-1293
2011-11-18 23:10:40 +01:00
Asmir Mustafic
24432bd0ab
tabs
2011-11-18 11:00:20 +01:00
Asmir Mustafic
82a1626e82
Better generation of exported xml (valid with xsd)
2011-11-18 10:57:27 +01:00
Guilherme Blanco
4c8ab82f9c
Merge pull request #60 from Ocramius/patch-1
...
Fixing invalid XML mapping samples
2011-11-16 11:42:05 -08:00
Marco Pivetta
2200c1f7e1
Fixing invalid XML mapping samples
2011-11-16 20:00:21 +01:00
Guilherme Blanco
59849f73bd
Merge pull request #59 from romainneutron/master
...
Fix some YAML syntax errors
2011-11-15 15:48:30 -08:00
Benjamin Eberlei
51211980a4
Remove ON in docs
2011-11-15 22:21:15 +01:00
Romain Neutron
c53e2772a0
Fix YAML syntax errors in examples
2011-11-15 22:10:56 +01:00
Guilherme Blanco
650a80a61a
Merge pull request #57 from volftomas/master
...
Minor changes
2011-11-08 05:57:38 -08:00
Tomas Paladin Volf
cfe5424cf9
Fixed pear command for install, "boostrap" => "bootstrap"
2011-11-08 14:44:48 +01:00
Guilherme Blanco
59b4641d29
Merge pull request #54 from michal-pipa/fix-link
...
Changed external link to internal link.
2011-11-07 04:50:09 -08:00
Michał Pipa
64200c405e
Fixed title underline.
2011-11-07 08:19:20 +01:00
Michał Pipa
0eed56fae9
Fixed indentation.
2011-11-07 08:18:22 +01:00
Michał Pipa
c0f86e796d
Changed external link to internal link.
2011-11-07 07:53:05 +01:00
Guilherme Blanco
0f11b0c61d
Merge pull request #53 from michal-pipa/doc
...
Fixed broken link.
2011-10-31 09:43:13 -07:00
Guilherme Blanco
981a2d4341
Merge pull request #52 from michal-pipa/c21aaebbc4159f27d6db1194d585ba8895057f6a
...
Changed 'Symfony 2' to 'Symfony2'.
2011-10-31 09:16:11 -07:00
Michał Pipa
299642083b
Fixed broken link.
2011-10-31 17:10:30 +01:00
Michał Pipa
c21aaebbc4
Changed 'Symfony 2' to 'Symfony2'.
...
http://symfony.com/blog/talk-about-symfony2-not-symfony-2
2011-10-31 17:09:15 +01:00
Guilherme Blanco
0317f43987
Merge pull request #51 from asm89/patch-1
...
Fix typos in 'Working with objects' php examples
2011-10-26 07:48:36 -07:00
Alexander
78ef07f630
Update en/reference/working-with-objects.rst
2011-10-26 14:12:32 +03:00
Benjamin Eberlei
e98cb4f145
Document AbstractQuery#getOneOrNullResult()
2011-10-26 00:54:06 +03:00
Luis Cordova
cf44745d08
corrected rst for bash like code blocks
2011-10-25 15:50:29 -05:00
Benjamin Eberlei
196fd79d5f
Merge pull request #27 from chriswoodford/persisting-the-decorator
...
Persisting the decorator
2011-10-25 13:47:24 -07:00
Benjamin Eberlei
8dc77a7083
Merge pull request #43 from marcw/patch-1
...
Fixed namespace in code-block
2011-10-25 13:45:58 -07:00
Benjamin Eberlei
a5688f60d3
Merge pull request #44 from mweimerskirch/patch-1
...
Documented the onClear event
2011-10-25 13:45:41 -07:00
Benjamin Eberlei
288ec8aa5c
Merge pull request #45 from oyerli/patch-1
...
Fixed typo in the orderBy method.
2011-10-25 13:45:24 -07:00
Benjamin Eberlei
c7658d6285
Merge pull request #49 from cordoval/patch-2
...
typo change from contains to consists of
2011-10-25 13:45:08 -07:00
Luis Cordova
1bc0efba43
typo change from contains to consists of
2011-10-25 15:33:30 -05:00
Guilherme Blanco
de75ea88b6
Merge pull request #48 from cordoval/patch-1
...
two typos fixed
2011-10-25 13:11:20 -07:00
Luis Cordova
0a989e63d2
two typos fixed
2011-10-25 15:08:52 -05:00
Eric Clemmons
5b64dbe195
Added error suppression to mkdir in ProxyFactory
...
See: Symfony\Component\HttpKernel\Kernel#buildContainre
2011-10-25 11:51:09 -07:00
Eric Clemmons
48bf5022e4
ProxyFactory always checks if directory is writable first
2011-10-24 19:45:23 -07:00
Eric Clemmons
99c1383ef5
If proxy directory doesn't exist & cannot be created via mkdir, a ProxyException is thrown
2011-10-24 19:32:38 -07:00
Eric Clemmons
fde9d122cc
ProxyFactory checks presence of directory with is_dir instead of file_exists
2011-10-20 13:33:20 -07:00
Eric Clemmons
92acd32410
ProxyFactory creates proxy's parent structure if it doesn't exist
2011-10-20 09:35:41 -07:00
Benjamin Eberlei
237c20c9b6
Enhanced docs on UnitOfWork#computeChangeSets
2011-10-15 18:09:27 +02:00
Benjamin Eberlei
6d4337fc71
More details on partial objects
2011-10-15 16:14:36 +02:00
Benjamin Eberlei
b88ef8b1a5
Add docs on SimplifiedXmlDriver and SimplifiedYamlDriver
2011-10-15 09:47:56 +02:00
Guilherme Blanco
9c389a49c7
Fixes DDC-509
2011-10-11 01:27:30 -03:00
Guilherme Blanco
da4948944d
Merge pull request #47 from mdpatrick/interveawed_association_mapping
...
Corrected a typo (interveawed)
2011-10-04 10:33:48 -07:00
Dan Patrick
1a1d36c73f
Corrected a typo (interveawed)
2011-10-04 12:19:10 -05:00
Chris Woodford
d3f6ffb09e
Added cookbook/decorator-pattern to index file
2011-09-18 18:39:36 -04:00
Guilherme Blanco
f32a780459
Merge pull request #46 from havvg/master
...
fix example php code on sequence generator
2011-09-13 20:00:45 -07:00
Toni Uebernickel
3ec55d0cdd
fix sequence generator php code on sequenceName
2011-09-13 20:32:04 +02:00
Ozan Yerli
a61c7e59d6
Fixed typo in the orderBy method.
2011-09-04 23:43:43 +03:00
Benjamin Eberlei
8084b6cbf0
Add docs on DDC-659 feature (ClassMetadataBuilder)
2011-09-04 14:25:03 +02:00
Michel Weimerskirch
79c113b532
Documented the onClear event. (using text from the docblock comment)
2011-09-02 22:38:47 +03:00
Benjamin Eberlei
e6e1243852
Merge branch 'master' of github.com:doctrine/orm-documentation
2011-08-27 12:36:56 +02:00
Benjamin Eberlei
5fc0ede5bf
Fixed the tutorial, it was a mess! Now its explaining everything step by step and all bugs are removed. Changed introduction and configuration to use the simpler Setup helper class
2011-08-27 12:36:37 +02:00
Marc Weistroff
c90f3cf275
Fixed namespace in code-block
2011-08-26 02:07:56 +03:00
Joseph Rouff
ffa2a545fa
Fix typo
2011-08-25 01:36:21 +03:00
Guilherme Blanco
35cb7b97db
Merge pull request #42 from rouffj/patch-1
...
Fix typo
2011-08-24 09:32:11 -07:00
Guilherme Blanco
a5ac76b192
Added new support to DQL: ORDER BY now supports SingleValuedPathExpression and INSTANCE OF now supports multi-value checking.
2011-08-15 01:57:02 -03:00
Benjamin Eberlei
26c56dd0d2
Merge pull request #40 from hhamon/query_builder_fix
...
[QueryBuilder] added missing $
2011-08-14 09:24:21 -07:00
Hugo Hamon
31f34e95cc
[QueryBuilder] added missing $
2011-08-14 18:21:31 +02:00
Guilherme Blanco
189c729f15
Added support to CaseExpression.
2011-08-08 02:08:19 -03:00
Benjamin Eberlei
60ed7769cd
Merge branch 'master' of github.com:doctrine/orm-documentation
2011-08-06 19:13:01 +02:00
Benjamin Eberlei
5ee8861350
Add note about comparing datetime and object by reference
2011-08-06 19:12:42 +02:00
Guilherme Blanco
01caa0d06e
Merge pull request #39 from craue/patch-1
...
completed the sentence in section "postUpdate, postRemove, postPersist"
2011-08-04 16:16:20 -07:00
Christian Raue
1de9b906fd
completed the sentence in section "postUpdate, postRemove, postPersist"
2011-08-05 02:10:40 +03:00
Guilherme Blanco
255cf347ec
Merge pull request #38 from mdpatrick/grammar_on_getting_started_xml_edition
...
Small grammar changes in section explaining lazyload/ArrayCollection.
2011-08-01 20:33:08 -07:00
Dan Patrick
6cd7d21db1
Small grammar changes in section explaining lazyload/ArrayCollection.
2011-08-01 18:04:14 -05:00
Guilherme Blanco
67818ea2cc
Merge pull request #37 from mdpatrick/associations_grammar_errors
...
Fixed minor grammatical errors in working-with-associations.rst
2011-07-30 15:40:12 -07:00
Dan Patrick
bfe5bea68d
Fixed grammatical errors in working-with-associations.rst
2011-07-30 17:15:44 -05:00
Benjamin Eberlei
3a70ee6662
Merge pull request #25 from wilmoore/master
...
use 'string' instead of 'varchar'
2011-07-26 14:25:53 -07:00
Benjamin Eberlei
c0860a6018
Merge pull request #35 from mridgway/DDC-1270
...
[DDC-1270] Fixed invalid expr()->*() function calls; Added isNull and isN
2011-07-26 14:23:38 -07:00
Benjamin Eberlei
da60e86993
Merge pull request #34 from mridgway/DDC-725
...
[DDC-725] Removed onUpdate property
2011-07-26 14:22:59 -07:00
Benjamin Eberlei
ecb13a87dc
Bugfix
2011-07-13 21:31:31 +02:00
Benjamin Eberlei
d8125768a3
Copy new build process for docs into orm docs from DBAL
2011-07-13 21:19:09 +02:00
Benjamin Eberlei
91b2c82c58
Brought most of the documentation up to date on 2.1
2011-07-13 20:31:01 +02:00
Benjamin Eberlei
660ead4b0e
FAQ and Composite Key renaming
2011-07-13 19:04:21 +02:00
Benjamin Eberlei
c876f9edb2
Add warning to Association Mapping chapter that referencedColumnName have to primary key columns
2011-07-12 23:01:42 +02:00
Benjamin Eberlei
f4074dbe1d
Removed solved limitations and added missing ones
2011-07-12 22:58:24 +02:00
Michael Ridgway
175faeb5f2
[DDC-1270] Fixed invalid expr()->*() function calls; Added isNull and isNotNull functions; Fixed casing on orX and andX
2011-07-11 13:25:15 -04:00
Benjamin Eberlei
82419813df
Another inheritance question
2011-07-10 20:34:34 +02:00
Benjamin Eberlei
609e3b8c92
Write something about all FAQ entries that were empty
2011-07-10 20:31:16 +02:00
Benjamin Eberlei
fac1a517df
Finish chapter on composite primary keys (still missing XML and YAML example though)
2011-07-10 20:03:59 +02:00
Benjamin Eberlei
653add64f9
Fix bug in mappings of Aggregate Column cookbook entry
2011-07-09 21:26:13 +02:00
Benjamin Eberlei
89b807177e
Merge branch 'master' of github.com:doctrine/orm-documentation
2011-06-28 23:29:06 +02:00
Benjamin Eberlei
09d5169a8b
Remove methods that not exist anymore from Expr object documentation
2011-06-28 23:28:55 +02:00
Michael Ridgway
8af162711e
Removed onUpdate property
2011-06-28 16:34:12 -04:00
Benjamin Eberlei
503b6c1716
Merge pull request #33 from nicodmf/master
...
Little typo
2011-06-28 08:53:57 -07:00
Nicolas de Marqué Fromentin
ad012a63cb
Little typo
2011-06-28 16:22:14 +02:00
Benjamin Eberlei
36e500682a
Started FAQ
2011-06-20 21:20:23 +02:00
Benjamin Eberlei
de5952f597
Fix association mappings
2011-06-16 21:52:51 +02:00
Benjamin Eberlei
f6aa387e6f
Fix missing chars in xml comment
2011-06-16 21:27:20 +02:00
Benjamin Eberlei
e750b27edb
Fix another bug, yet another :)
2011-06-16 21:23:39 +02:00
Benjamin Eberlei
3417f3716e
Fix another bug2
2011-06-16 21:20:56 +02:00
Benjamin Eberlei
5c5feab38e
Fix another bug
2011-06-16 21:19:25 +02:00
Benjamin Eberlei
97c305452e
Fix bug in docs
2011-06-16 21:18:17 +02:00
Benjamin Eberlei
41600667c2
More association mapping yml+xml code blocks
2011-06-12 23:43:29 +02:00
Benjamin Eberlei
c187862e4f
Reorder paragraph and fix note.
2011-06-12 23:26:54 +02:00
Benjamin Eberlei
d8f9c5380a
More xml+yml configuration blocks
2011-06-12 23:22:28 +02:00
Benjamin Eberlei
b5827ea83f
Add tons of xml and yaml configuration blocks to basic- and association-mapping chapters
2011-06-12 23:07:21 +02:00
Benjamin Eberlei
6816816101
Fix bug in previous commit
2011-06-11 10:07:18 +02:00
Benjamin Eberlei
06e45f7587
Fix bug in previous commit
2011-06-11 09:59:17 +02:00
Benjamin Eberlei
71c47f69ec
Mention 5.3 dependency in getting started tutorial, and link to entity restrictions aswell. Add the func_get_args() restriction to the list in architecture.
2011-06-11 09:52:17 +02:00
Benjamin Eberlei
6f909b6e69
Clarifications and additions in DQL and Working with objects chapter
2011-06-11 08:59:33 +02:00
Benjamin Eberlei
a5cfd2321f
Document Mssql Datetim2 behavior
2011-06-05 17:21:11 +02:00
Guilherme Blanco
26c2690536
Merge pull request #31 from Infranology/typos
...
fixed constants typos in "Entity State"
2011-06-01 20:19:12 -07:00
Eriksen Costa
729ad9e5c9
fixed constants typos in "Entity State"
2011-06-02 00:14:46 -03:00
Guilherme Blanco
48cf91a3d0
Merge pull request #30 from renansaddam/patch-1
...
Version 2.0.5 no longer needs $cli call and the namespace for Components
2011-05-19 10:16:40 -07:00
Renan Gonçalves aka renan.saddam
457abbacef
Version 2.0.5 no longer needs $cli call and the namespace for Components has changed.
2011-05-19 06:20:50 -07:00
Guilherme Blanco
7adbf5698a
Merge pull request #29 from HoffmannP/ORMDOC
...
Ormdoc
2011-05-18 11:31:42 -07:00
Berengar W. Lehr
f58dcbaa8a
1. Replaced "fi"-ligature to actually "fi"-letters as pdflatex inputenc package does not support that unicode character
...
2. Replaced external link to internal document with internal link (now actuall link in documentation should work)
2011-05-18 20:08:49 +02:00
Berengar W. Lehr
6d457d9927
1. Changed external links syntax in internal link syntax to repair link (dql-… file)
...
2. Replaced unicode "fi"-ligatur with "fi" to enable pdflatex-ing b/c utf8-inputenc-package does - for unknown reasons - not support unicode "fi"-ligatur
2011-05-18 19:49:48 +02:00
Guilherme Blanco
e665d9f6df
Merge pull request #28 from brikou/patch-1
...
fixed setQueryHint > setHint
2011-05-18 05:47:33 -07:00
Brikou CARRE
d436ea19df
fixed setQueryHint > setHint
2011-05-18 02:51:22 -07:00
Chris Woodford
6cd778f940
wrote a quick introduction
2011-05-05 21:36:18 -04:00
Chris Woodford
e9d096e411
cleaning up some sentences. better flow
2011-05-05 21:23:10 -04:00
Chris Woodford
894b2614ed
fixed some typos
2011-05-05 21:16:40 -04:00
Chris Woodford
c242ab4371
some tweaks to class descriptions
2011-05-03 23:04:41 -04:00
Chris Woodford
a51f182cc0
first draft of cookbook article
2011-05-03 22:48:40 -04:00
Guilherme Blanco
302199938f
Merged pull request #24 from gimler/master.
...
tutorial
2011-04-29 20:47:31 -07:00
Guilherme Blanco
8d66809d0b
Merged pull request #26 from asartalo/master.
...
Getting Started tutorial corrections
2011-04-29 20:25:40 -07:00
asartalo
16f132bff0
Corrected annotation for sample code: moved repositoryClass attribute from @Table to @Entity.
2011-04-24 13:24:54 +08:00
asartalo
3cac853dd4
Changed instances of entity manager variable '' to '' for consistency.
2011-04-24 13:21:34 +08:00
asartalo
511268ddd7
Removed another instance of '--force' Option for the orrm:schema-tool:create command as this is not available for this command.
2011-04-24 10:52:18 +08:00
asartalo
01bfc4f2f1
Removed '--force' Option for the orrm:schema-tool:create command as this is not available for this command.
2011-04-24 10:38:35 +08:00
Wil Moore III
3a80896173
Changed registerDoctrineTypeMapping('enum', 'varchar'); to registerDoctrineTypeMapping('enum', 'string'); as 'string' is the correct type to map to whereas varchar is only an alias.
2011-04-08 10:44:55 -07:00
Benjamin Eberlei
f76728818b
Add note box on cascade operations being performed in memory and reference to foreign key /database-level onDelete option for deleting associtions
2011-04-06 23:36:50 +02:00
Benjamin Eberlei
a0b41feb72
Update section on mixed query and add notes on multiple entities in FROM clause. (update paragraph)
2011-04-03 20:13:34 +02:00
Benjamin Eberlei
2e777f99b9
Update section on mixed query and add notes on multiple entities in FROM clause.
2011-04-03 20:00:43 +02:00
Benjamin Eberlei
a259ac9bcf
Merge branch 'master' of github.com:doctrine/orm-documentation
2011-03-31 21:49:51 +02:00
Benjamin Eberlei
04527a8bcb
Add cookbook entry on MySQL Enums.
2011-03-31 21:49:32 +02:00
Gordon Franke
63c431f01d
fix entity manager reference in repository code sample
2011-03-31 19:55:57 +08:00
Gordon Franke
7639f1e99b
fix entity manager reference in repository code sample
2011-03-31 08:57:27 +02:00
Benjamin Eberlei
abc8f29800
[DDC-692] Add docs on 2.1 read only entities feature
2011-03-29 20:30:10 +02:00
Benjamin Eberlei
22ab3d1256
Fixed several issues and merged pull requests into docs.
2011-03-28 20:40:39 +02:00
Benjamin Eberlei
126e592758
Fix YAML docs on cascade
2011-03-27 22:23:37 +02:00
Benjamin Eberlei
cca642b094
Remove CASE, COALESCSE, NULLIF EBNF rules for the time being, they are not yet supported.
2011-03-20 12:05:28 +01:00
Benjamin Eberlei
c551192b6b
DBAL-86 - Fix reference to nonexisting Configuration#setCustomTypes()
2011-02-27 09:03:59 +01:00
Benjamin Eberlei
d0ae95604f
Add warnining about date types assuming default timezone.
2011-02-26 16:29:11 +01:00
Benjamin Eberlei
e94d15ec11
Fix DDC-1039
2011-02-26 11:53:43 +01:00
Benjamin Eberlei
0252368af2
Fix some Sphinx/ReST warnings
2011-02-26 11:51:43 +01:00
Benjamin Eberlei
e1c2084eeb
Add section on EntityRepository into Getting Started Tutorial.
2011-02-26 11:51:30 +01:00
Benjamin Eberlei
aab2303c37
Fix Getting Started.
2011-02-26 11:12:58 +01:00
Jonathan H. Wage
c8c4c4ed46
Updating css.
2011-02-20 11:12:51 -06:00
Benjamin Eberlei
654dbb1b10
Fix <pre> tag styling having a very small line-height.
2011-02-20 11:34:59 +01:00
Benjamin Eberlei
9a289e2982
Adopt new Sphinx layout
2011-02-20 11:00:39 +01:00
Benjamin Eberlei
51fe83b7be
Merge branch 'master' of github.com:doctrine/orm-documentation
2011-02-15 21:33:29 +01:00
Benjamin Eberlei
755f0b3dbb
Add section about columnDefinition into basic mapping.
2011-02-15 21:33:24 +01:00
Benjamin Eberlei
35dae4e1f4
Add note about columnDefinition SchemaTool.
2011-02-15 21:31:20 +01:00
Jonathan H. Wage
1d24cb4828
Removing indices and tables as they are just broken links and don't do anything.
2011-02-13 16:24:52 -06:00
Benjamin Eberlei
24defe7100
Add notes to Tools about EntityGenerator, ConvertMapping and Reverse Engineering
2011-02-13 12:57:04 +01:00
Benjamin Eberlei
6309710ccc
Fix some glitches in the docs:
2011-02-13 12:47:51 +01:00
Benjamin Eberlei
b794643735
Updated Limitations and Known Issues Chapter
2011-02-05 18:08:39 +01:00
Benjamin Eberlei
a592dc116d
First part of a tutorial on composite primary keys and identity through foreign entities.
2011-02-05 18:01:10 +01:00
Benjamin Eberlei
eea5b71da5
Add tutorial on extra lazy associations
2011-02-05 16:14:51 +01:00
Benjamin Eberlei
93207c081e
Add another paragraph with functionalities not described yet.
2011-02-05 15:26:58 +01:00
Benjamin Eberlei
94244683b0
Fix typo in new indexed assocations tutorial, thanks @gordonslondon
2011-02-05 15:23:39 +01:00
Benjamin Eberlei
609176a18f
Merge branch 'master' of github.com:doctrine/orm-documentation
2011-02-05 13:48:41 +01:00
Benjamin Eberlei
c0cefa8749
Fixed TOCTree for tutorial on indexed associations.
2011-02-05 13:48:12 +01:00
Benjamin Eberlei
0f974c562c
Add Working with Indexed Associations Tutorial
2011-02-05 13:43:45 +01:00
Ivar Nesje
af60471b62
fixed indentation on previous commit
2011-02-02 06:37:13 +08:00
Ivar Nesje
8fc7eb295b
Fixed lifecycleCallbacks documentation bug when using YAML mapping
2011-02-02 06:37:03 +08:00
Ray Rehbein
2a38e5f408
Syntex and code correction in example
2011-02-02 05:48:49 +08:00
Ray Rehbein
be8d34dc21
Whitespace correction
2011-02-02 05:48:19 +08:00
Ray Rehbein
fc6cec9074
Added setParamater calls to examples
...
Whitespace changes to break up the long SQL lines into a readable format
2011-02-02 05:48:18 +08:00
Ray Rehbein
0411b1e75d
Attempt at correction for a formatting glitch.
...
It appears Sphinx doesn't use the `` mark in the middle of a word correctly
2011-02-02 05:48:18 +08:00
Ray Rehbein
d81dca3e90
Corrected example calling wrong method name
2011-02-02 05:48:18 +08:00
Ray Rehbein
c89290e507
Corrected mismatch between example and comment entities.
2011-02-02 05:48:17 +08:00
Joel Clermont
754ebc052e
DDC-823 - Fix minor grammar and punctuation mistakes
2011-02-02 05:46:25 +08:00
Benjamin Eberlei
7d42497e09
Fix typo with SQLLogger in configuration.rst
2011-01-31 22:56:09 +01:00
Benjamin Eberlei
7093e37b45
Merge branch 'master' of github.com:doctrine/orm-documentation
2011-01-31 22:47:13 +01:00
Benjamin Eberlei
51bdd6499a
Fix typo in codeigniter coobkok entry
2011-01-31 22:46:41 +01:00
Benjamin Eberlei
0e5b30902c
Enhanced QueryBuilder docs with paragraph on limit and executing queries.
2011-01-23 11:16:25 +01:00
Benjamin Eberlei
721915d61b
Fix bug in configurationblock.css destroying simple bullet lists.
2011-01-02 11:53:12 +01:00
Benjamin Eberlei
f4e93e7550
Add section on orphan removal to Working with Associations chapter.
2011-01-02 11:18:22 +01:00
Benjamin Eberlei
4a231a34f2
Clarify MappedSuperclass and Unidirectional associations (with info on one-to-many and many-to-many associations).
2010-12-31 14:44:14 +01:00
Benjamin Eberlei
72081ff7ba
Note that Native SQL Query is not to be used for DELETE, UPDATE and INSERT statements.
2010-12-30 22:13:57 +01:00
Benjamin Eberlei
ef8689c400
Incorporate DDC-879 into Cookbook.
2010-12-28 00:23:06 +01:00
Benjamin Eberlei
6bf2f22315
Add another note about how Query#setParameter() accepts named or positional parameters.
2010-12-20 22:19:02 +01:00
Benjamin Eberlei
34057c5e4b
Add note about how Query#setParameter() accepts named or positional parameters.
2010-12-20 22:12:24 +01:00
Benjamin Eberlei
53ebc683c9
Update limitations and known issues section in manual.
2010-12-20 21:51:05 +01:00
Benjamin Eberlei
2eab525077
Fix some small problems in the docs.
2010-12-18 17:14:20 +01:00
Benjamin Eberlei
6a0f3f2d7b
Add code-configuration directive, thank you Fabien!
2010-12-16 21:59:27 +01:00
Benjamin Eberlei
65fe9b86c5
Fix another code block
2010-12-14 23:35:17 +01:00
Benjamin Eberlei
76743431a4
Fix wrong code in Mini tutorial
2010-12-14 23:34:41 +01:00
Benjamin Eberlei
2e00e9d715
Fix another mess in Mini Tutorial.
2010-12-14 23:33:31 +01:00
Benjamin Eberlei
c8e7ff51c4
Merge branch 'master' of github.com:doctrine/orm-documentation
2010-12-14 23:32:57 +01:00
Benjamin Eberlei
6e7f47bf9e
Fix mess in Mini-Tutorial of Introduction chapter.
2010-12-14 23:29:05 +01:00
ajessu
34dc2e6506
Delete duplicate item on menu
2010-12-15 00:41:09 +08:00
Benjamin Eberlei
29b47d3d44
Fix @Table not supporting schema as attribute anymore.
2010-12-12 13:18:18 +01:00
Benjamin Eberlei
0618944f8a
DDC-901 - Fix documentation bug in Cookbook SQL Walker entry.
2010-12-12 13:12:44 +01:00
Albert Jessurum
d37120bb15
Fixed links
2010-12-12 18:04:13 +08:00
beberlei
5d58d9171e
Merge ReST branch into master, ByeBye Markdown.
2010-12-11 12:31:31 +01:00
beberlei
9c6d3dbecd
Add link to Doctrine homepage to docs layout template.
2010-12-11 11:29:37 +01:00
Benjamin Eberlei
eb0fd4d066
Add section about database and unit of work being out of sync and how this effects your code.
2010-12-11 01:01:44 +01:00
Benjamin Eberlei
01c2a09991
Add Working with DateTime chapter.
2010-12-03 22:47:33 +01:00
Benjamin Eberlei
46983465fd
Finialized ReST doc changes, merged changes from latest Markdown docs.
2010-12-03 20:13:10 +01:00
Benjamin Eberlei
6789f2c8d1
Several changes and fixes to the docs.
2010-12-03 17:58:01 +01:00
Benjamin Eberlei
1b9e9c019d
DDC-862 - Fix Codeigniter Cookbook entry
2010-11-16 22:03:27 +01:00
Benjamin Eberlei
49ecdff016
DDC-763 - Add note about handling merges of multiple entities which share subgraphs of objects
2010-11-10 23:49:07 +01:00
Benjamin Eberlei
f2b20e5949
DDC-736 - Add note about order of the identfication variables during fetch joins requirements.
2010-11-10 23:43:24 +01:00
goran
54a61bbbc2
Changed method name in an example for fetching class metadata
2010-11-11 03:24:14 +08:00
Timo A. Hummel
69d4e185d8
Added documentation notice regarding @version in combination with @id (DDC-873)
2010-11-11 03:23:52 +08:00
Timo A. Hummel
87c1c50bfa
Fixed documentation issue for cascade="ALL" (DDC-850)
2010-11-11 03:23:11 +08:00
Benjamin Eberlei
de1d72f348
DDC-866 - Fix EBNF grammer rule
2010-11-09 22:19:07 +01:00
Benjamin Eberlei
ee042bc642
Some changes left
2010-11-09 22:18:25 +01:00
Benjamin Eberlei
c22bddc9a7
DDC-866 Fix deprecated EBNF rule
2010-11-09 22:17:31 +01:00
Benjamin Eberlei
a5a0dfa96e
Converted ORM Docs into ReST
2010-11-01 22:03:50 +01:00
Benjamin Eberlei
e7e1f62f72
Add Sphinx Configs
2010-11-01 21:21:07 +01:00
Benjamin Eberlei
aa25b7cc0a
Add Sphinx Configs
2010-11-01 21:21:01 +01:00
Benjamin Eberlei
1bfeaf3eaf
Initial conversion from Markdown to ReST - Finalized Cookbook
2010-11-01 21:16:12 +01:00
Benjamin Eberlei
6985b671d8
Add note about float type
2010-10-31 15:13:51 +01:00
Benjamin Eberlei
468c878c92
Add hint about multiple directories in Metadata drivers to configuration section
2010-10-31 07:34:43 +01:00
Benjamin Eberlei
05f5ae1519
DDC-732 - Document sql schema requirements for inheritance strategies
2010-10-30 18:16:13 +02:00
Benjamin Eberlei
61640ef7ce
Add Note that this is not a holy-grail but may need adjustments for other versions
2010-10-30 12:08:28 +02:00
Benjamin Eberlei
833a4a9319
Clarify not to use prefix blacklash in targetEntity
2010-10-29 14:12:29 +02:00
Benjamin Eberlei
3182f150c1
Fix a little render glitch
2010-10-29 13:30:02 +02:00
Jonathan H. Wage
62aef84205
Merge remote branch 'ralfas/master'
2010-10-18 17:15:38 -05:00
Benjamin Eberlei
9c63363ccc
Add details on the negative performance impact of STI and CTI in many-to-one or one-to-one scenarios
2010-10-11 20:36:52 +02:00
Ralfas
e4b1357a22
fixed typos and grammar
2010-10-07 22:39:52 +01:00
Ralfas
f8ba66bb0c
fixed typos
2010-10-05 22:43:56 +01:00
Ralfas
61c1f0e1ed
fixed typos
2010-10-05 13:11:34 +01:00
Ralfas
8ac6d29c74
fixed typos
2010-10-05 13:09:10 +01:00
Ralfas
6b01986c48
fixed typos
2010-10-05 12:58:43 +01:00
Ralfas
efe2a18189
2010-10-04 11:29:40 -07:00
Benjamin Eberlei
e9617f1e50
DDC-798 - Clarify parameters for MEMBER OF expression
2010-09-30 22:09:49 +02:00
Benjamin Eberlei
4f18aaaf6e
DDC-797 - Fix dql example bug
2010-09-30 22:05:39 +02:00
Benjamin Eberlei
d2efb5bbc8
Add NOT INSTANCE OF use-case to DQL manual
2010-09-27 22:59:50 +02:00
Benjamin Eberlei
e8eed2ebae
Add legacy identifier quoting to the list of Known Issues
2010-09-23 22:48:39 +02:00
Benjamin Eberlei
7a8b69edbb
Extend restriction and caution notes on identifier quoting
2010-09-23 22:40:12 +02:00
Benjamin Eberlei
bebc8cf871
Add section about deferred schema validation into association mapping chapter, add note about private/protected property in entities for lazy-laoding purposes, added subchapters on identity map internals and object graph traversal to the Working with Objects section
2010-09-21 21:55:35 +02:00
Christian Heinrich
453341c754
Updated strategy cookbook introduction
...
- Removed annoying tabs
- Removed some comments
- Hopefully, it will display now correctly
2010-09-20 10:53:29 -05:00
Michael Ridgway
13a99c30ea
Fixed example in Establishing Associations
2010-09-09 12:39:02 -05:00
Christian Heinrich
e342b4536a
Added a caution sign for case-sensitivity of mapping types.
...
This might help to prevent beginners from being confused when an error is raised due to
wrong spelling. (Like DateTime (wrong) <-> datetime (right))
2010-09-06 11:09:54 -05:00
Benjamin Eberlei
3d7eb3bac8
Enhanced Native SQL documentation
2010-09-04 09:19:05 +02:00
Christian Heinrich
d8dd44aa16
Added a naming convention for events
2010-09-03 10:50:56 -05:00
Benjamin Eberlei
d4489d1bdc
Added large Note/Warning on SchemaTool usage and assumptions
2010-08-31 23:23:05 +02:00
Benjamin Eberlei
a6cdafe85c
Merge branch 'master' of github.com:doctrine/orm-documentation
2010-08-31 23:10:45 +02:00
beberlei
088ccf58fc
Updated XML Cookbook Getting Started and Tools Chapter
2010-08-29 10:50:07 +02:00
beberlei
d2d32e5439
Fix Cookbook XML Getting Started still refering to old Doctrine Console
2010-08-29 10:38:57 +02:00
Christian Heinrich
4232509427
Renamed a variable
2010-08-17 14:01:43 -05:00
Benjamin Eberlei
82874181b0
Add section on INSTANCE OF Dql Operator
2010-08-08 21:20:58 +02:00
Benjamin Eberlei
9fa64adbda
Added another fact to Limitations section
2010-08-08 21:14:56 +02:00
Jonathan H. Wage
70d12fc57a
[DDC-663] Making example for installing via pear more generic.
2010-08-08 12:21:03 -05:00
Your Name
732dee92ad
I guess you meant "Now you can test" or "Now test the ..."
2010-08-02 08:41:31 -05:00
Your Name
fa5768b14d
Fixed typos
2010-08-02 08:41:31 -05:00
Your Name
1fe35e518c
Fixed typo
2010-08-02 08:41:31 -05:00
Benjamin Eberlei
d859a77b52
Fix a typo, reworked main paragraph and moved behavior section to bottom
2010-08-01 17:09:02 +02:00
Benjamin Eberlei
f89646eabe
Added note about NestedSet to limitations section
2010-08-01 17:02:27 +02:00
Benjamin Eberlei
ec307a6046
Added small block on not supporting behaviors to limitations section
2010-08-01 16:56:36 +02:00
Benjamin Eberlei
437f14aa4e
Fix bug in ticket link
2010-08-01 16:44:01 +02:00
Benjamin Eberlei
c5512b933e
Add Limitations and Known Issues Appendix to the manual
2010-08-01 16:41:22 +02:00
Benjamin Eberlei
a6b5ee3cd3
Add Limitations and Known Issues Appendix to the manual
2010-08-01 16:37:53 +02:00
Benjamin Eberlei
93c061b7a5
Fixed some escaping issue with xml reference
2010-08-01 15:47:34 +02:00
Benjamin Eberlei
a34bab7f1e
Merge branch 'master' of github.com:doctrine/orm-documentation
2010-08-01 15:44:13 +02:00
Benjamin Eberlei
96538ae2fe
Seperated Change Tracking Policies and Partial Objects from Configuration Chapter, Finished XML Mapping Chapter with a reference on all tags and attributes
2010-08-01 15:41:40 +02:00
Roman S. Borschel
fcea78a6cb
Updated merging docs.
2010-07-31 12:00:42 +02:00
Your Name
bf23503000
Missing field name?
2010-07-30 01:46:52 +08:00
Benjamin Eberlei
84c1cc8865
Fix bug in the documentation leading to an error
2010-07-24 15:16:13 +02:00
Benjamin Eberlei
c6e423024e
Reference Configuration section for bootstrapping after each Install section
2010-07-24 14:23:35 +02:00
Benjamin Eberlei
9c28cc5b19
Rephrased some sentences in Working with Assocations
2010-07-24 10:53:35 +02:00
Benjamin Eberlei
23efc790c1
Split Working with Objects into two chapters, adding Working with Associations
2010-07-24 10:46:54 +02:00
Benjamin Eberlei
99533afd11
Added EntityManager interaction into examples
2010-07-23 23:51:25 +02:00
Benjamin Eberlei
f309190486
Clarified up and downsides of $collection->toArray()
2010-07-23 23:46:47 +02:00
Benjamin Eberlei
3b76ea9ffe
Fix code box in Note
2010-07-23 23:43:44 +02:00
Benjamin Eberlei
e0c702d068
Fix little bug in Note box
2010-07-23 23:42:03 +02:00
Benjamin Eberlei
b5e5cb1c65
Removed examples of Nested Path Expressions from DQL docs
2010-07-23 23:39:36 +02:00
Benjamin Eberlei
31b8141fee
Reworked Introduction a bit
2010-07-23 23:31:27 +02:00
Benjamin Eberlei
62c4f3e6fb
Updated documentation on chosing inverse-owning side for many-to-many associations and came up with a significantly enhanced example for the working with associations chapter
2010-07-23 23:21:17 +02:00
Benjamin Eberlei
298773b2f8
Added section on collection field initialization and added constructors with initialization to all examples of toMany collections
2010-07-23 21:36:25 +02:00
Benjamin Eberlei
0a066533de
Rephrased Obtaining Entity Manager and moved some sentences around
2010-07-22 23:38:09 +02:00
Benjamin Eberlei
f8c22abaa6
Use $applicationMode flag in obtaining entity manager example to make sure people understand that different settings for production and development are necessary
2010-07-22 23:30:17 +02:00
Benjamin Eberlei
974e31a307
Use $applicationMode flag in obtaining entity manager example to make sure people understand that different settings for production and development are necessary
2010-07-22 23:29:21 +02:00
Benjamin Eberlei
d5afa35cb8
Added dev vs production configuration section
2010-07-22 23:25:29 +02:00
Benjamin Eberlei
439cccbc0d
Enhanced Bootstrap Section for more information on Autoloading in different setups (PEAR vs Git)
2010-07-22 22:55:00 +02:00
Benjamin Eberlei
b1f6fe2528
Updated Introduction to be more consistent with current Github development model
2010-07-18 22:57:20 +02:00
Benjamin Eberlei
a851e08109
Updated Introduction to be more consistent with current Github development model
2010-07-18 22:55:36 +02:00
Benjamin Eberlei
e7066d6f36
Updated Introduction to be more consistent with current Github development model
2010-07-18 22:45:17 +02:00
Benjamin Eberlei
29cb77b964
Merge branch 'master' of github.com:doctrine/orm-documentation
2010-07-18 21:13:07 +02:00
Benjamin Eberlei
4c813f60f9
Updated Aggregate Fields, Added generated SQL for all Association Mappings
2010-07-18 21:12:51 +02:00
beberlei
0c8e0450de
Merge branch 'master' of github.com:doctrine/orm-documentation
2010-07-10 08:33:17 +02:00
beberlei
1017e2c6c7
Extended details on how to remove entities and their associations
2010-07-10 08:33:12 +02:00
Roman S. Borschel
0428774ec8
Added more information about flushing semantics.
2010-07-08 00:26:57 +02:00
Benjamin Eberlei
59aafe100b
Added Aggregate Fields documentation
2010-07-07 22:34:51 +02:00
eXtreme
400be2a3e6
fixing codeblocks
2010-07-07 22:19:36 +08:00
Benjamin Eberlei
8d2da96480
Fixed error in Sandbox Tutorial
2010-07-04 18:57:51 +02:00
Benjamin Eberlei
80fd691880
Update docs on using own types, aswell as on using Collection::clear()
2010-07-03 16:57:02 +02:00
Lars Olesen
8e7385ccc2
Added the name space in front of Xmldriver, as it is not stated anywhere on this page which namespace is used.
2010-06-21 05:35:07 +08:00
Lars Olesen
16740b9695
Fixes typo.
2010-06-21 05:35:07 +08:00
Jonathan H. Wage
823db6071b
Changing case.
2010-06-17 13:32:11 -04:00
Jonathan H. Wage
27233af0d2
Removing reference to Query object before it is introduced
2010-06-17 12:09:11 -04:00
Jonathan H. Wage
e71f00296e
Fixing php code
2010-06-17 12:07:43 -04:00
Jonathan H. Wage
c7a5a695d3
[DDC-246] Added section showing DQL examples when dealing with SINGLE_TABLE and JOINED inheritance since it affects the generated SQL of a DQL query.
2010-06-17 12:03:01 -04:00
Jonathan H. Wage
cc2d84c992
Adding php syntax highlighting
2010-06-17 10:07:18 -04:00
Jonathan H. Wage
53ec0700bb
Merge branch 'master' of github.com:doctrine/orm-documentation
2010-06-17 10:02:14 -04:00
Jonathan H. Wage
88e5babb56
[DDC-572] Updating documentation for inversedBy and mappedBy
2010-06-17 10:01:49 -04:00
beberlei
50e35e6bdc
Merge branch 'master' of github.com:doctrine/orm-documentation
2010-06-10 23:27:28 +02:00
beberlei
d872d7f0b1
Updated Cookbook Getting Started XML Edition Tutorial with Array and Scalar Hydration examples, tweaked several passages a little bit
2010-06-10 21:38:22 +02:00
beberlei
51729cbaa7
Enhanced Description of how the different events work and what restrictions apply to them.
2010-06-10 21:06:23 +02:00
Thibault Duplessis
854a966a22
Fix Query::HYDRATE_SINGLE_SCALAR in single scalar result example
2010-06-07 16:54:22 -07:00
Jonathan H. Wage
9d2f7f0686
Updating documentation for custom hydrators.
2010-06-03 14:13:39 -04:00
Jonathan H. Wage
37124c4e0a
Adding section for custom hydrators.
2010-06-02 23:41:41 -04:00
Jonathan H. Wage
30b9cfce3d
[DDC-540] Doc improvement
2010-05-25 13:38:16 -04:00
Rich Bowen
e127274aa5
Fixes missing quote.
2010-05-24 15:34:58 -04:00
Roman S. Borschel
c34b5ad1a7
Added strategy cookbook entry to the index.
2010-05-22 13:52:20 +02:00
Jonathan H. Wage
10b676aa2b
Merge commit '5c79ca25aabaf574d71d6bc622c13fd6045626d2'
2010-05-20 08:35:02 -04:00
Jonathan H. Wage
0698a8c455
Fixing php code
2010-05-18 11:51:49 -04:00
Jonathan H. Wage
1193c530c9
Merge branch 'master' of github.com:doctrine/orm-documentation
2010-05-18 11:50:18 -04:00
Jonathan H. Wage
18b9c6cd69
Updating documentation for converting mapping information and reverse engineering databases to entities.
2010-05-18 11:49:44 -04:00
Benjamin Eberlei
9231f54313
DDC-153 - Added cookbook entry contributed by merk (thanks!)
2010-05-16 09:50:07 +02:00
Benjamin Eberlei
72c2432586
DDC-590 - Added docs on Locking Support
2010-05-15 11:27:49 +02:00
Christian Heinrich
5c79ca25aa
Updated formatting and fixed mistakes
2010-05-15 00:40:18 +02:00
Jonathan H. Wage
a59b62e3ba
Merge remote branch 'mridgway/master'
2010-05-14 15:26:28 -04:00
Jonathan H. Wage
f99a096d01
Adding a little more information to the dql chapter.
2010-05-14 15:23:51 -04:00
Michael Ridgway
a3b42392b4
Fixed broken reference to DBAL section
2010-05-14 11:32:12 -07:00
Jonathan H. Wage
5a79963bd2
Removing dbal documentation from orm docs
2010-05-14 11:12:54 -04:00
Roman S. Borschel
184a402f39
Fixed typo
2010-05-13 13:14:37 +02:00
Roman S. Borschel
7d79777bfb
Merge commit 'origin/master'
2010-05-13 13:06:20 +02:00
Roman S. Borschel
84c1d34028
Added documentation about control abstractions for transaction handling.
2010-05-13 13:06:16 +02:00
Christian Heinrich
21bbbb1f1f
Updated query builder docs
2010-05-13 00:58:17 +02:00
Benjamin Eberlei
177a9ce4d2
Update Getting Started XML Edition to work with inversed-by attributes
2010-05-12 23:53:09 +02:00
Benjamin Eberlei
150bca0498
Merge branch 'master' of github.com:doctrine/orm-documentation
2010-05-12 23:52:38 +02:00
Jonathan H. Wage
0c60efc03b
Merge remote branch 'shurakai/master'
2010-05-12 09:29:31 -04:00
Christian Heinrich
b857655992
Improved query builder section
...
-> Added a new section about binding params to the query
-> Added a short note on how to use $qb->expr()->in() with string values
2010-05-12 14:43:09 +02:00
Jonathan H. Wage
dd6eafbb6c
Merge branch 'master' of github.com:doctrine/orm-documentation
2010-05-11 11:45:28 -04:00
Roman S. Borschel
0799a5b5e9
Polished docs on DBAL, Transactions and Concurrency.
2010-05-11 15:26:35 +02:00
Matthieu Bontemps
a1079e692c
Fix a few typos in doctrine manual
2010-05-11 11:46:10 +02:00
Christian Heinrich
f9b77f9854
Added strategy cookbook preview
2010-05-10 18:26:32 +02:00
Roman S. Borschel
bc0f853b52
Clarified docs on identifier generation strategies.
2010-05-06 13:08:36 +02:00
Roman S. Borschel
a3feeef88c
Clarified docs on identifier generation strategies.
2010-05-06 13:07:54 +02:00
Roman S. Borschel
c18e23b817
Clarified docs on identifier generation strategies.
2010-05-06 13:02:21 +02:00
Roman S. Borschel
4121c1ca72
Clarified docs on identifier generation strategies.
2010-05-06 12:45:46 +02:00
Roman S. Borschel
7ffdd80bb2
Clarified docs on working with objects.
2010-05-05 11:10:00 +02:00
Roman S. Borschel
51f9fb35c6
Merge commit 'origin/master'
2010-05-05 10:58:49 +02:00
Roman S. Borschel
e155e86517
Clarified docs on persisting new objects.
2010-05-05 10:58:11 +02:00
Benjamin Eberlei
d835372e93
Merge branch 'master' of github.com:doctrine/orm-documentation
2010-05-01 03:38:27 +02:00
Benjamin Eberlei
b4bc4b029d
Fix DDC-560
2010-05-01 03:38:03 +02:00
Benjamin Eberlei
c0dc0112d3
Fix DDC-557
2010-05-01 03:36:40 +02:00
Jonathan H. Wage
e01510953e
[DDC-443] Adding many-to-one unidirectional example
2010-04-30 16:11:35 -04:00
Roman S. Borschel
74ecfca43e
Fixed section about partial objects.
2010-04-29 23:44:25 +02:00
Benjamin Eberlei
6d34b91425
DDC-539 - Fix typo
2010-04-26 21:54:10 +02:00
Jonathan H. Wage
605ee881c5
Misc. fixes and initial entry of PHP Mapping and Metadata Drivers chapters.
2010-04-26 11:55:43 -04:00
Jonathan H. Wage
fc290404e1
Changing note to caution
2010-04-23 12:16:31 -04:00
Benjamin Eberlei
d837a2110b
Updated XML Getting Started Tutorial to comply with current Console API
2010-04-18 19:31:41 +02:00
Benjamin Eberlei
8426a3da11
DDC-510 - Updated docs to reflect that Annotations Metadata Driver is not a default anymore, but required to specifiy
2010-04-12 21:58:21 +02:00
Benjamin Eberlei
2a1f5e121b
DDC-442 - Fix example for timestamp optimistic lock
2010-04-11 14:38:19 +02:00
Benjamin Eberlei
997ef97521
Updated SchemaTool usage docs with mapping paths information example
2010-04-10 12:04:23 +02:00
Benjamin Eberlei
8aed5c72df
Updated ORM Tools Documentation
2010-04-10 11:50:40 +02:00
Guilherme Blanco
d1fbaae91f
[2.0-DOC] Changed manual with new Console implementation
2010-04-09 01:09:14 -03:00
Jonathan H. Wage
ee34c42697
Adding dbal chapter back
2010-04-06 14:43:34 -04:00
Jonathan H. Wage
2adf9378e4
-
2010-04-06 14:37:15 -04:00
Jonathan H. Wage
1e7193134a
-
2010-04-06 14:36:40 -04:00
Jonathan H. Wage
33ff1df4ec
Adding cookbook
2010-04-06 14:30:12 -04:00
Jonathan H. Wage
69158cd4f3
first commit
2010-04-06 14:27:51 -04:00