Skip to content

Commit 9ce6253

Browse files
committed
Merge branch '5.11.x'
Signed-off-by: Maurício Meneghini Fauth <[email protected]>
2 parents 8141cce + 1b70d03 commit 9ce6253

23 files changed

+10807
-6
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@
66
- Move `Misc::getAliases()` into `SelectStatement::getAliases()` (#454)
77
- Drop `USE_UTF_STRINGS` constant (#471)
88

9+
## [5.11.1] - 2025-07-20
10+
11+
### Added
12+
13+
- Add context files for MySQL 9.2, MySQL 9.3 and MariaDB 12.1 (#628)
14+
- Add context files for MariaDB 11.8 and MariaDB 12.0 (#620)
15+
16+
### Fixed
17+
18+
- Fix Window function handling that failed because of "OVER" keyword case-sensitive comparison (#623)
19+
920
## [5.11.0] - 2025-02-22
1021

1122
### Added
@@ -622,6 +633,7 @@ __Breaking changes:__
622633

623634
* First release of this library.
624635

636+
[5.11.1]: https://github.com/phpmyadmin/sql-parser/compare/5.11.0...5.11.1
625637
[5.11.0]: https://github.com/phpmyadmin/sql-parser/compare/5.10.3...5.11.0
626638
[5.10.3]: https://github.com/phpmyadmin/sql-parser/compare/5.10.2...5.10.3
627639
[5.10.2]: https://github.com/phpmyadmin/sql-parser/compare/5.10.1...5.10.2

psalm-baseline.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<files psalm-version="6.10.3@90b5b9f5e7c8e441b191d3c82c58214753d7c7c1">
2+
<files psalm-version="6.13.0@70cdf647255a1362b426bb0f522a85817b8c791c">
33
<file src="src/Components/AlterOperation.php">
44
<PossiblyNullReference>
55
<code><![CDATA[has]]></code>

src/Contexts/ContextMariaDb110700.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1037,9 +1037,9 @@ final class ContextMariaDb110700
10371037
'UPPER' => Token::FLAG_KEYWORD | Token::FLAG_KEYWORD_FUNCTION,
10381038
'USER' => Token::FLAG_KEYWORD | Token::FLAG_KEYWORD_FUNCTION,
10391039
'UUID' => Token::FLAG_KEYWORD | Token::FLAG_KEYWORD_FUNCTION,
1040-
'UUIDV4' => Token::FLAG_KEYWORD | Token::FLAG_KEYWORD_FUNCTION,
1041-
'UUIDV7' => Token::FLAG_KEYWORD | Token::FLAG_KEYWORD_FUNCTION,
10421040
'UUID_SHORT' => Token::FLAG_KEYWORD | Token::FLAG_KEYWORD_FUNCTION,
1041+
'UUID_V4' => Token::FLAG_KEYWORD | Token::FLAG_KEYWORD_FUNCTION,
1042+
'UUID_V7' => Token::FLAG_KEYWORD | Token::FLAG_KEYWORD_FUNCTION,
10431043
'VALIDATE_PASSWORD_STRENGTH' => Token::FLAG_KEYWORD | Token::FLAG_KEYWORD_FUNCTION,
10441044
'VARIANCE' => Token::FLAG_KEYWORD | Token::FLAG_KEYWORD_FUNCTION,
10451045
'VAR_POP' => Token::FLAG_KEYWORD | Token::FLAG_KEYWORD_FUNCTION,

0 commit comments

Comments
 (0)