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 2619b79 commit ab1aecaCopy full SHA for ab1aeca
nix/tests/expected/index_advisor.out
@@ -0,0 +1,16 @@
1
+create schema v;
2
+create table v.book(
3
+ id int primary key,
4
+ title text not null
5
+);
6
+select
7
+ index_statements, errors
8
+from
9
+ index_advisor('select id from v.book where title = $1');
10
+ index_statements | errors
11
+------------------------------------------------+--------
12
+ {"CREATE INDEX ON v.book USING btree (title)"} | {}
13
+(1 row)
14
+
15
+drop schema v cascade;
16
+NOTICE: drop cascades to table v.book
nix/tests/sql/index_advisor.sql
@@ -0,0 +1,13 @@
0 commit comments