Skip to content

Commit ea50289

Browse files
authored
Added back ticks to create index example (#179)
1 parent 16937ce commit ea50289

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/n1ql/pages/n1ql-language-reference/with-recursive.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ SELECT * FROM similar_items;
257257
====
258258
[source,sqlpp]
259259
----
260-
CREATE INDEX srcdestidx ON travel-sample.inventory.route( sourceairport, destinationairport );
260+
CREATE INDEX srcdestidx ON `travel-sample`.inventory.route( sourceairport, destinationairport );
261261
262262
WITH RECURSIVE recroute AS (
263263
SELECT sourceairport, destinationairport, 0 as depth,
@@ -355,4 +355,4 @@ SELECT * FROM recroute LIMIT 2000;
355355
// ...
356356
]
357357
----
358-
====
358+
====

0 commit comments

Comments
 (0)