[PR #231] [MERGED] [DDC 1213] bit comparison ( BIT_AND() , BIT_OR() ) #7890

Closed
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/231
Author: @FabioBatSilva
Created: 12/19/2011
Status: Merged
Merged: 12/19/2011
Merged by: @beberlei

Base: masterHead: tmp2


📝 Commits (2)

📊 Changes

6 files changed (+200 additions, -1 deletions)

View changed files

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-dbal (+1 -1)
📝 tests/Doctrine/Tests/ORM/Functional/QueryDqlFunctionTest.php (+48 -0)
📝 tests/Doctrine/Tests/ORM/Query/SelectSqlGenerationTest.php (+23 -0)

📄 Description

Sorry open this again... :(

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/231 **Author:** [@FabioBatSilva](https://github.com/FabioBatSilva) **Created:** 12/19/2011 **Status:** ✅ Merged **Merged:** 12/19/2011 **Merged by:** [@beberlei](https://github.com/beberlei) **Base:** `master` ← **Head:** `tmp2` --- ### 📝 Commits (2) - [`5c89d7f`](https://github.com/doctrine/orm/commit/5c89d7ffcb0e89115ae6e3ad90ceb202f311c80f) support for bit comparison - [`ea5108e`](https://github.com/doctrine/orm/commit/ea5108ea0f35fc0f7ed3a740995a590926045c6e) rebase upstream/master ### 📊 Changes **6 files changed** (+200 additions, -1 deletions) <details> <summary>View changed files</summary> ➕ `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-dbal` (+1 -1) 📝 `tests/Doctrine/Tests/ORM/Functional/QueryDqlFunctionTest.php` (+48 -0) 📝 `tests/Doctrine/Tests/ORM/Query/SelectSqlGenerationTest.php` (+23 -0) </details> ### 📄 Description Sorry open this again... :( 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
admin closed this issue 2026-01-22 15:57:25 +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#7890