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 4af32d1 commit e45961dCopy full SHA for e45961d
enginetest/queries/script_queries.go
@@ -114,6 +114,17 @@ type ScriptTestAssertion struct {
114
// Unlike other engine tests, ScriptTests must be self-contained. No other tables are created outside the definition of
115
// the tests.
116
var ScriptTests = []ScriptTest{
117
+ {
118
+ Name: "keyless reverse index",
119
+ SetUpScript: []string{
120
+ "create table x (x int, key(x));",
121
+ "insert into x values (0),(1)",
122
+ },
123
+ Query: "select * from x order by x desc limit 1",
124
+ Expected: []sql.Row{
125
+ {1},
126
127
128
{
129
Name: "filter pushdown through join uppercase name",
130
SetUpScript: []string{
0 commit comments