[Groonga-commit] groonga/groonga at fd112db [master] doc: remove unused files

Back to archive index

Kouhei Sutou null+****@clear*****
Thu Mar 17 16:59:59 JST 2016


Kouhei Sutou	2016-03-17 16:59:59 +0900 (Thu, 17 Mar 2016)

  New Revision: fd112dbbe2b49dfa86c245a4c1aa7fc000c5cc17
  https://github.com/groonga/groonga/commit/fd112dbbe2b49dfa86c245a4c1aa7fc000c5cc17

  Message:
    doc: remove unused files

  Removed files:
    doc/example/reference/alias/existing_name.log
    doc/example/reference/alias/register.log
    doc/example/reference/alias/schema.log
    doc/example/reference/alias/select_age.log
    doc/example/reference/alias/select_age_after_rename.log
    doc/example/reference/alias/select_age_by_alias.log
    doc/example/reference/alias/table_and_column.log

  Deleted: doc/example/reference/alias/existing_name.log (+0 -38) 100644
===================================================================
--- doc/example/reference/alias/existing_name.log    2016-03-17 16:59:37 +0900 (ba6e867)
+++ /dev/null
@@ -1,38 +0,0 @@
-Execution example::
-
-  column_rename Users years years_old
-  # [[0, 1337566253.89858, 0.000355720520019531], true]
-  select Users --filter 'age < 20'
-  # [
-  #   [
-  #     0, 
-  #     1337566253.89858, 
-  #     0.000355720520019531
-  #   ], 
-  #   [
-  #     [
-  #       [
-  #         1
-  #       ], 
-  #       [
-  #         [
-  #           "_id", 
-  #           "UInt32"
-  #         ], 
-  #         [
-  #           "_key", 
-  #           "ShortText"
-  #         ], 
-  #         [
-  #           "years_old", 
-  #           "UInt8"
-  #         ]
-  #       ], 
-  #       [
-  #         1, 
-  #         "alice", 
-  #         14
-  #       ]
-  #     ]
-  #   ]
-  # ]

  Deleted: doc/example/reference/alias/register.log (+0 -4) 100644
===================================================================
--- doc/example/reference/alias/register.log    2016-03-17 16:59:37 +0900 (844ca01)
+++ /dev/null
@@ -1,4 +0,0 @@
-Execution example::
-
-  config_set alias.column Aliases.real_name
-  # [[0, 1337566253.89858, 0.000355720520019531], true]

  Deleted: doc/example/reference/alias/schema.log (+0 -12) 100644
===================================================================
--- doc/example/reference/alias/schema.log    2016-03-17 16:59:37 +0900 (2833867)
+++ /dev/null
@@ -1,12 +0,0 @@
-Execution example::
-
-  table_create Users TABLE_HASH_KEY ShortText
-  # [[0, 1337566253.89858, 0.000355720520019531], true]
-  column_create Users age COLUMN_SCALAR UInt8
-  # [[0, 1337566253.89858, 0.000355720520019531], true]
-  load --table Users
-  [
-  {"_key": "alice", "age": 14},
-  {"_key": "bob",   "age": 29}
-  ]
-  # [[0, 1337566253.89858, 0.000355720520019531], 2]

  Deleted: doc/example/reference/alias/select_age.log (+0 -36) 100644
===================================================================
--- doc/example/reference/alias/select_age.log    2016-03-17 16:59:37 +0900 (d1b6819)
+++ /dev/null
@@ -1,36 +0,0 @@
-Execution example::
-
-  select Users --filter 'age < 20'
-  # [
-  #   [
-  #     0, 
-  #     1337566253.89858, 
-  #     0.000355720520019531
-  #   ], 
-  #   [
-  #     [
-  #       [
-  #         1
-  #       ], 
-  #       [
-  #         [
-  #           "_id", 
-  #           "UInt32"
-  #         ], 
-  #         [
-  #           "_key", 
-  #           "ShortText"
-  #         ], 
-  #         [
-  #           "age", 
-  #           "UInt8"
-  #         ]
-  #       ], 
-  #       [
-  #         1, 
-  #         "alice", 
-  #         14
-  #       ]
-  #     ]
-  #   ]
-  # ]

  Deleted: doc/example/reference/alias/select_age_after_rename.log (+0 -21) 100644
===================================================================
--- doc/example/reference/alias/select_age_after_rename.log    2016-03-17 16:59:37 +0900 (e797f10)
+++ /dev/null
@@ -1,21 +0,0 @@
-Execution example::
-
-  column_rename Users age years
-  # [[0, 1337566253.89858, 0.000355720520019531], true]
-  select Users --filter 'age < 20'
-  # [
-  #   [
-  #     -63, 
-  #     1337566253.89858, 
-  #     0.000355720520019531, 
-  #     "Syntax error: <age| |< 20>", 
-  #     [
-  #       [
-  #         "yy_syntax_error", 
-  #         "grn_ecmascript.lemon", 
-  #         34
-  #       ]
-  #     ]
-  #   ], 
-  #   []
-  # ]

  Deleted: doc/example/reference/alias/select_age_by_alias.log (+0 -41) 100644
===================================================================
--- doc/example/reference/alias/select_age_by_alias.log    2016-03-17 16:59:37 +0900 (f236f77)
+++ /dev/null
@@ -1,41 +0,0 @@
-Execution example::
-
-  load --table Aliases
-  [
-  {"_key": "Users.age", "real_name": "Users.years"}
-  ]
-  # [[0, 1337566253.89858, 0.000355720520019531], 1]
-  select Users --filter 'age < 20'
-  # [
-  #   [
-  #     0, 
-  #     1337566253.89858, 
-  #     0.000355720520019531
-  #   ], 
-  #   [
-  #     [
-  #       [
-  #         1
-  #       ], 
-  #       [
-  #         [
-  #           "_id", 
-  #           "UInt32"
-  #         ], 
-  #         [
-  #           "_key", 
-  #           "ShortText"
-  #         ], 
-  #         [
-  #           "years", 
-  #           "UInt8"
-  #         ]
-  #       ], 
-  #       [
-  #         1, 
-  #         "alice", 
-  #         14
-  #       ]
-  #     ]
-  #   ]
-  # ]

  Deleted: doc/example/reference/alias/table_and_column.log (+0 -6) 100644
===================================================================
--- doc/example/reference/alias/table_and_column.log    2016-03-17 16:59:37 +0900 (37eb973)
+++ /dev/null
@@ -1,6 +0,0 @@
-Execution example::
-
-  table_create Aliases TABLE_HASH_KEY ShortText
-  # [[0, 1337566253.89858, 0.000355720520019531], true]
-  column_create Aliases real_name COLUMN_SCALAR ShortText
-  # [[0, 1337566253.89858, 0.000355720520019531], true]
-------------- next part --------------
HTML����������������������������...
下载 



More information about the Groonga-commit mailing list
Back to archive index