mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-12 13:01:09 +03:00
When a vector comparison appears in the WHERE clause and the constraint side
has a COLLATE clause on the first term of the vector, be sure to honor that COLLATE clause. Ticket [135c9da7513e5a97]. FossilOrigin-Name: 978b2d20cf95d0b7143e3104ce1e9d5c85002867b554dc6b21deb528b730bbc7
This commit is contained in:
@@ -661,7 +661,9 @@ void sqlite3TreeViewExpr(TreeView *pView, const Expr *pExpr, u8 moreToFollow){
|
||||
break;
|
||||
}
|
||||
case TK_VECTOR: {
|
||||
sqlite3TreeViewBareExprList(pView, pExpr->x.pList, "VECTOR");
|
||||
char *z = sqlite3_mprintf("VECTOR%s",zFlgs);
|
||||
sqlite3TreeViewBareExprList(pView, pExpr->x.pList, z);
|
||||
sqlite3_free(z);
|
||||
break;
|
||||
}
|
||||
case TK_SELECT_COLUMN: {
|
||||
|
||||
Reference in New Issue
Block a user