[PR #654] [CLOSED] Ilike #8510

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

📋 Pull Request Information

Original PR: https://github.com/doctrine/orm/pull/654
Author: @lighthart
Created: 4/27/2013
Status: Closed

Base: masterHead: master


📝 Commits (1)

📊 Changes

11 files changed (+259 additions, -8 deletions)

View changed files

lib/Doctrine/ORM/Query/AST/IlikeExpression.php (+74 -0)
📝 lib/Doctrine/ORM/Query/Lexer.php (+1 -0)
📝 lib/Doctrine/ORM/Query/Parser.php (+45 -2)
📝 lib/Doctrine/ORM/Query/SqlWalker.php (+26 -0)
📝 lib/Doctrine/ORM/Query/TreeWalker.php (+9 -0)
📝 lib/Doctrine/ORM/Query/TreeWalkerAdapter.php (+7 -0)
📝 lib/Doctrine/ORM/Query/TreeWalkerChain.php (+7 -0)
📝 tests/Doctrine/Tests/ORM/Query/DeleteSqlGenerationTest.php (+17 -0)
📝 tests/Doctrine/Tests/ORM/Query/ExprTest.php (+12 -2)
📝 tests/Doctrine/Tests/ORM/Query/LanguageRecognitionTest.php (+10 -0)
📝 tests/Doctrine/Tests/ORM/Query/SelectSqlGenerationTest.php (+51 -4)

📄 Description

Ilike (insensitive like) expression added for postgres support


🔄 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/654 **Author:** [@lighthart](https://github.com/lighthart) **Created:** 4/27/2013 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (1) - [`fed09ad`](https://github.com/doctrine/orm/commit/fed09ad39d47ef10d43b51bf946d1d1812d3ca80) Added Ilike ### 📊 Changes **11 files changed** (+259 additions, -8 deletions) <details> <summary>View changed files</summary> ➕ `lib/Doctrine/ORM/Query/AST/IlikeExpression.php` (+74 -0) 📝 `lib/Doctrine/ORM/Query/Lexer.php` (+1 -0) 📝 `lib/Doctrine/ORM/Query/Parser.php` (+45 -2) 📝 `lib/Doctrine/ORM/Query/SqlWalker.php` (+26 -0) 📝 `lib/Doctrine/ORM/Query/TreeWalker.php` (+9 -0) 📝 `lib/Doctrine/ORM/Query/TreeWalkerAdapter.php` (+7 -0) 📝 `lib/Doctrine/ORM/Query/TreeWalkerChain.php` (+7 -0) 📝 `tests/Doctrine/Tests/ORM/Query/DeleteSqlGenerationTest.php` (+17 -0) 📝 `tests/Doctrine/Tests/ORM/Query/ExprTest.php` (+12 -2) 📝 `tests/Doctrine/Tests/ORM/Query/LanguageRecognitionTest.php` (+10 -0) 📝 `tests/Doctrine/Tests/ORM/Query/SelectSqlGenerationTest.php` (+51 -4) </details> ### 📄 Description Ilike (insensitive like) expression added for postgres support --- <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 16:00:15 +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#8510