[PR #230] [CLOSED] [DDC 1213] bit comparison ( BIT_AND() , BIT_OR() ) #7888

Open
opened 2026-01-22 15:57:24 +01:00 by admin · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/doctrine/orm/pull/230
Author: @FabioBatSilva
Created: 12/19/2011
Status: Closed

Base: masterHead: DDC-1213


📝 Commits (10+)

  • 163a16d support for bit comparison
  • 36f6bbf update dbal
  • 5cf47cb Merge remote-tracking branch 'upstream/master' into DDC-1213
  • b594d23 update dbal
  • 900b82d Merge remote-tracking branch 'upstream/master' into DDC-1213
  • 9eab03e update dbal
  • d468ae9 Merge remote-tracking branch 'upstream/master' into DDC-1213
  • 568698e Add dependency to doctrine-build-common and refactor build.xml and build.properties
  • 5c89d7f support for bit comparison
  • ea5108e rebase upstream/master

📊 Changes

11 files changed (+233 additions, -206 deletions)

View changed files

📝 .gitignore (+0 -1)
📝 .gitmodules (+3 -0)
build.properties (+11 -0)
📝 build.xml (+18 -204)
lib/Doctrine/ORM/Query/AST/Functions/BitAndFunction.php (+63 -0)
lib/Doctrine/ORM/Query/AST/Functions/BitOrFunction.php (+63 -0)
📝 lib/Doctrine/ORM/Query/Parser.php (+2 -0)
lib/vendor/doctrine-build-common (+1 -0)
📝 lib/vendor/doctrine-dbal (+1 -1)
📝 tests/Doctrine/Tests/ORM/Functional/QueryDqlFunctionTest.php (+48 -0)
📝 tests/Doctrine/Tests/ORM/Query/SelectSqlGenerationTest.php (+23 -0)

📄 Description

Hello all

This patch adds support for bit comparison
http://www.doctrine-project.org/jira/browse/DDC-1213

As discussed in the previous PR #212
this patch implement bit comparison & and | with DQL functions


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/doctrine/orm/pull/230 **Author:** [@FabioBatSilva](https://github.com/FabioBatSilva) **Created:** 12/19/2011 **Status:** ❌ Closed **Base:** `master` ← **Head:** `DDC-1213` --- ### 📝 Commits (10+) - [`163a16d`](https://github.com/doctrine/orm/commit/163a16dd9449fc4db12d59189470b2b9cd2f28d6) support for bit comparison - [`36f6bbf`](https://github.com/doctrine/orm/commit/36f6bbf483ac87c0d0a72471bb126f573ef3be09) update dbal - [`5cf47cb`](https://github.com/doctrine/orm/commit/5cf47cbac9a80bdd0c55c6acb8271bd6cae13471) Merge remote-tracking branch 'upstream/master' into DDC-1213 - [`b594d23`](https://github.com/doctrine/orm/commit/b594d232250ecf8c8127959a1106480c2e4cbbf6) update dbal - [`900b82d`](https://github.com/doctrine/orm/commit/900b82d7ee54babb3b072a30e56da5d29956d4a4) Merge remote-tracking branch 'upstream/master' into DDC-1213 - [`9eab03e`](https://github.com/doctrine/orm/commit/9eab03ea89c4e2e6b1e07cd8390186947d87a223) update dbal - [`d468ae9`](https://github.com/doctrine/orm/commit/d468ae99d4fd384fd40340e338fe2091bad02e61) Merge remote-tracking branch 'upstream/master' into DDC-1213 - [`568698e`](https://github.com/doctrine/orm/commit/568698e3215d1e5981c692f8ed045cc2c0b2c1f9) Add dependency to doctrine-build-common and refactor build.xml and build.properties - [`5c89d7f`](https://github.com/doctrine/orm/commit/5c89d7ffcb0e89115ae6e3ad90ceb202f311c80f) support for bit comparison - [`ea5108e`](https://github.com/doctrine/orm/commit/ea5108ea0f35fc0f7ed3a740995a590926045c6e) rebase upstream/master ### 📊 Changes **11 files changed** (+233 additions, -206 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+0 -1) 📝 `.gitmodules` (+3 -0) ➕ `build.properties` (+11 -0) 📝 `build.xml` (+18 -204) ➕ `lib/Doctrine/ORM/Query/AST/Functions/BitAndFunction.php` (+63 -0) ➕ `lib/Doctrine/ORM/Query/AST/Functions/BitOrFunction.php` (+63 -0) 📝 `lib/Doctrine/ORM/Query/Parser.php` (+2 -0) ➕ `lib/vendor/doctrine-build-common` (+1 -0) 📝 `lib/vendor/doctrine-dbal` (+1 -1) 📝 `tests/Doctrine/Tests/ORM/Functional/QueryDqlFunctionTest.php` (+48 -0) 📝 `tests/Doctrine/Tests/ORM/Query/SelectSqlGenerationTest.php` (+23 -0) </details> ### 📄 Description Hello all This patch adds support for bit comparison http://www.doctrine-project.org/jira/browse/DDC-1213 As discussed in the previous PR #212 this patch implement bit comparison `&` and `|` with DQL functions --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
admin added the pull-request label 2026-01-22 15:57:24 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: doctrine/archived-orm#7888