We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3281d09 commit 494ce4fCopy full SHA for 494ce4f
enginetest/queries/script_queries.go
@@ -107,6 +107,17 @@ type ScriptTestAssertion struct {
107
// Unlike other engine tests, ScriptTests must be self-contained. No other tables are created outside the definition of
108
// the tests.
109
var ScriptTests = []ScriptTest{
110
+ {
111
+ Name: "keyless reverse index",
112
+ SetUpScript: []string{
113
+ "create table x (x int, key(x));",
114
+ "insert into x values (0),(1)",
115
+ },
116
+ Query: "select * from x order by x desc limit 1",
117
+ Expected: []sql.Row{
118
+ {1},
119
120
121
{
122
Name: "filter pushdown through join uppercase name",
123
SetUpScript: []string{
0 commit comments