You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sb...@apache.org on 2017/12/15 14:10:09 UTC

[39/50] [abbrv] ignite git commit: IGNITE-7172 Minor fix.

IGNITE-7172 Minor fix.


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/802a1668
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/802a1668
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/802a1668

Branch: refs/heads/ignite-zk-ce
Commit: 802a1668b7586048f42a726ba7e69854fb607b2e
Parents: 9ca3c09
Author: Alexey Kuznetsov <ak...@apache.org>
Authored: Thu Dec 14 16:12:03 2017 +0700
Committer: Alexey Kuznetsov <ak...@apache.org>
Committed: Thu Dec 14 16:12:03 2017 +0700

----------------------------------------------------------------------
 .../frontend/app/components/page-queries/template.tpl.pug          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/802a1668/modules/web-console/frontend/app/components/page-queries/template.tpl.pug
----------------------------------------------------------------------
diff --git a/modules/web-console/frontend/app/components/page-queries/template.tpl.pug b/modules/web-console/frontend/app/components/page-queries/template.tpl.pug
index ce5ab73..1574874 100644
--- a/modules/web-console/frontend/app/components/page-queries/template.tpl.pug
+++ b/modules/web-console/frontend/app/components/page-queries/template.tpl.pug
@@ -364,7 +364,7 @@ mixin paragraph-query
         .row(ng-if='notebook' bs-affix style='margin-bottom: 20px;')
             +notebook-rename
 
-        -var example = `CREATE TABLE Person(ID INTEGER PRIMARY KEY, NAME VARCHAR(100));\nINSERT INTO Person(ID, NAME) VALUES (1, "Ed"), (2, "Ann"), (3, "Emma");\nSELECT * FROM Person;`;
+        -var example = `CREATE TABLE Person(ID INTEGER PRIMARY KEY, NAME VARCHAR(100));\nINSERT INTO Person(ID, NAME) VALUES (1, 'Ed'), (2, 'Ann'), (3, 'Emma');\nSELECT * FROM Person;`;
 
         ignite-information(
             data-title='With query notebook you can'