Skip to content
Commit 5d147dab authored by Stefan Bürk's avatar Stefan Bürk
Browse files

[FEATURE] Add new expression methods to ExpressionBuilder

This change adds additional helpful expression methods
to the TYPO3 ExpressionBuilder to allow building more
advanced database queries with cross database vendor
support for supported vendors.

These expression are required for advanced query
building and prepare the future implementation of an
`Common Table Expression` builder API, but can be
helpful in other scopes as well.

This change adds `ExpressionBuilder`

* `->as()` alias a value, field value or
  sub-expression `foo AS identifier`.
* `->concat()` concatenate multiple static
  values or field data into one string.
* `->castVarchar()` allows casting a field or value
   to varchar type with dynamic length.
* `->castInt()` allows casting a field or value to
   integer type.
* `->repeat()` create a string value with x-times
  repeated value.
* `->space()` create a string value with x-times
  of spaces.
* `->left()` create an expression returning a
  sub string of specified length from the left
  side.
* `->right()` create an expression returning a
  sub string of specified length from the right
  side, where sub-expressions can be used for
  length and value.
* `->leftPad()` pad a value or expression to a
  specific length and fill up with specified padding
  value on the left side.
* `->rightPad()` pad a value or expression to
  a specific length and fill up with specified
  padding value on the right side.

The patch covers the implementations with functional
tests.

Resolves: #103309
Releases: main
Change-Id: I65349b286d65d7026611d828f8365247b51d90b6
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/83209


Reviewed-by: default avatarAnja Leichsenring <aleichsenring@ab-softlab.de>
Reviewed-by: default avatarStefan Bürk <stefan@buerk.tech>
Tested-by: default avatarOliver Klee <typo3-coding@oliverklee.de>
Tested-by: default avatarStefan Bürk <stefan@buerk.tech>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Tested-by: default avatarBenni Mack <benni@typo3.org>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Reviewed-by: default avatarBenni Mack <benni@typo3.org>
Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarAnja Leichsenring <aleichsenring@ab-softlab.de>
parent 98680d90
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment