[Groonga-commit] groonga/groonga at 5cbade9 [master] test: follow dump format change

Back to archive index

Kouhei Sutou null+****@clear*****
Fri Apr 3 16:46:53 JST 2015


Kouhei Sutou	2015-04-03 16:46:53 +0900 (Fri, 03 Apr 2015)

  New Revision: 5cbade9a4064bf1d766e6084f94b88382de3ef8f
  https://github.com/groonga/groonga/commit/5cbade9a4064bf1d766e6084f94b88382de3ef8f

  Message:
    test: follow dump format change

  Modified files:
    test/command/suite/column_create/index/source/multi_column/trailing_space.expected
    test/command/suite/column_create/index/source/nonexistent.expected
    test/command/suite/column_create/index/source/pseudo_column/_id.expected
    test/command/suite/column_remove/fix_size/with_index.expected
    test/command/suite/column_remove/index.expected
    test/command/suite/column_remove/variable_size/with_index.expected
    test/command/suite/column_rename/index/fulltext.expected
    test/command/suite/column_rename/index/multiple_columns.expected
    test/command/suite/column_rename/index/tag.expected
    test/command/suite/delete/reference/cross.expected
    test/command/suite/delete/reference/vector_type.expected
    test/command/suite/dump/record/vector_long_key.expected
    test/command/suite/table_create/normalizer/auto/utf8.expected
    test/command/suite/table_create/normalizer/nfkc51/utf8.expected
    test/command/suite/table_create/normalizer/nonexistent.expected
    test/command/suite/table_create/token_filters/empty_between_comma.expected
    test/command/suite/table_create/token_filters/leading_comma.expected
    test/command/suite/table_create/token_filters/leading_spaces.expected
    test/command/suite/table_create/token_filters/multiple.expected
    test/command/suite/table_create/token_filters/one.expected
    test/command/suite/table_create/token_filters/spaces_around_comma.expected
    test/command/suite/table_create/token_filters/trailing_comma.expected
    test/command/suite/table_remove/array/referenced/column_scalar.expected
    test/command/suite/table_remove/array/referenced/column_vector.expected
    test/command/suite/table_remove/array/referenced/table_double_trie_array.expected
    test/command/suite/table_remove/array/referenced/table_hash.expected
    test/command/suite/table_remove/array/referenced/table_patricia_trie.expected
    test/command/suite/table_remove/double_array_trie/referenced/column_scalar.expected
    test/command/suite/table_remove/double_array_trie/referenced/column_vector.expected
    test/command/suite/table_remove/double_array_trie/referenced/table_double_trie_array.expected
    test/command/suite/table_remove/double_array_trie/referenced/table_hash.expected
    test/command/suite/table_remove/double_array_trie/referenced/table_patricia_trie.expected
    test/command/suite/table_remove/hash/referenced/column_scalar.expected
    test/command/suite/table_remove/hash/referenced/column_vector.expected
    test/command/suite/table_remove/hash/referenced/table_double_trie_array.expected
    test/command/suite/table_remove/hash/referenced/table_hash.expected
    test/command/suite/table_remove/hash/referenced/table_patricia_trie.expected
    test/command/suite/table_remove/patricia_trie/referenced/column_scalar.expected
    test/command/suite/table_remove/patricia_trie/referenced/column_vector.expected
    test/command/suite/table_remove/patricia_trie/referenced/table_double_trie_array.expected
    test/command/suite/table_remove/patricia_trie/referenced/table_hash.expected
    test/command/suite/table_remove/patricia_trie/referenced/table_patricia_trie.expected
    test/command/suite/truncate/column/index.expected
    test/command/suite/truncate/column/scalar_fix_size.expected
    test/command/suite/truncate/column/scalar_variable_size.expected
    test/command/suite/truncate/table/plain_array.expected
    test/command/suite/truncate/table/plain_dat.expected
    test/command/suite/truncate/table/plain_hash.expected
    test/command/suite/truncate/table/plain_pat.expected
    test/command/suite/truncate/table/source_multi.expected
    test/command/suite/truncate/table/source_one.expected

  Modified: test/command/suite/column_create/index/source/multi_column/trailing_space.expected (+1 -1)
===================================================================
--- test/command/suite/column_create/index/source/multi_column/trailing_space.expected    2015-04-03 16:45:43 +0900 (d1afcea)
+++ test/command/suite/column_create/index/source/multi_column/trailing_space.expected    2015-04-03 16:46:53 +0900 (ab786ce)
@@ -12,6 +12,6 @@ dump
 table_create Memos TABLE_NO_KEY
 column_create Memos content COLUMN_SCALAR Text
 column_create Memos title COLUMN_SCALAR ShortText
+
 table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram
 column_create Terms memos_index COLUMN_INDEX|WITH_SECTION|WITH_POSITION Memos title,content
-

  Modified: test/command/suite/column_create/index/source/nonexistent.expected (+1 -0)
===================================================================
--- test/command/suite/column_create/index/source/nonexistent.expected    2015-04-03 16:45:43 +0900 (5cb4d89)
+++ test/command/suite/column_create/index/source/nonexistent.expected    2015-04-03 16:46:53 +0900 (64f78b6)
@@ -10,5 +10,6 @@ column_create Terms memos_index COLUMN_INDEX|WITH_POSITION Memos nonexistent
 dump
 table_create Memos TABLE_NO_KEY
 column_create Memos content COLUMN_SCALAR Text
+
 table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram
 

  Modified: test/command/suite/column_create/index/source/pseudo_column/_id.expected (+1 -0)
===================================================================
--- test/command/suite/column_create/index/source/pseudo_column/_id.expected    2015-04-03 16:45:43 +0900 (af62b55)
+++ test/command/suite/column_create/index/source/pseudo_column/_id.expected    2015-04-03 16:46:53 +0900 (a8260f0)
@@ -20,5 +20,6 @@ column_create Terms memos_index COLUMN_INDEX|WITH_POSITION Memos _id
 dump
 table_create Memos TABLE_NO_KEY
 column_create Memos content COLUMN_SCALAR Text
+
 table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram
 

  Modified: test/command/suite/column_remove/fix_size/with_index.expected (+2 -1)
===================================================================
--- test/command/suite/column_remove/fix_size/with_index.expected    2015-04-03 16:45:43 +0900 (03d84aa)
+++ test/command/suite/column_remove/fix_size/with_index.expected    2015-04-03 16:46:53 +0900 (2776088)
@@ -9,12 +9,13 @@ column_create Ages users_age COLUMN_INDEX Users age
 dump
 table_create Users TABLE_PAT_KEY ShortText
 column_create Users age COLUMN_SCALAR UInt8
+
 table_create Ages TABLE_PAT_KEY UInt8
 column_create Ages users_age COLUMN_INDEX Users age
-
 column_remove Users age
 [[0,0.0,0.0],true]
 dump
 table_create Users TABLE_PAT_KEY ShortText
+
 table_create Ages TABLE_PAT_KEY UInt8
 

  Modified: test/command/suite/column_remove/index.expected (+2 -1)
===================================================================
--- test/command/suite/column_remove/index.expected    2015-04-03 16:45:43 +0900 (77f7f39)
+++ test/command/suite/column_remove/index.expected    2015-04-03 16:46:53 +0900 (fa9a422)
@@ -9,13 +9,14 @@ column_create Terms users_name COLUMN_INDEX|WITH_POSITION Users name
 dump
 table_create Users TABLE_PAT_KEY ShortText
 column_create Users name COLUMN_SCALAR ShortText
+
 table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram --normalizer NormalizerAuto
 column_create Terms users_name COLUMN_INDEX|WITH_POSITION Users name
-
 column_remove Terms users_name
 [[0,0.0,0.0],true]
 dump
 table_create Users TABLE_PAT_KEY ShortText
 column_create Users name COLUMN_SCALAR ShortText
+
 table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram --normalizer NormalizerAuto
 

  Modified: test/command/suite/column_remove/variable_size/with_index.expected (+2 -1)
===================================================================
--- test/command/suite/column_remove/variable_size/with_index.expected    2015-04-03 16:45:43 +0900 (b2a988b)
+++ test/command/suite/column_remove/variable_size/with_index.expected    2015-04-03 16:46:53 +0900 (f56743d)
@@ -9,12 +9,13 @@ column_create Terms users_name COLUMN_INDEX|WITH_POSITION Users name
 dump
 table_create Users TABLE_PAT_KEY ShortText
 column_create Users name COLUMN_SCALAR ShortText
+
 table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram --normalizer NormalizerAuto
 column_create Terms users_name COLUMN_INDEX|WITH_POSITION Users name
-
 column_remove Users name
 [[0,0.0,0.0],true]
 dump
 table_create Users TABLE_PAT_KEY ShortText
+
 table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram --normalizer NormalizerAuto
 

  Modified: test/command/suite/column_rename/index/fulltext.expected (+4 -1)
===================================================================
--- test/command/suite/column_rename/index/fulltext.expected    2015-04-03 16:45:43 +0900 (8a7e10a)
+++ test/command/suite/column_rename/index/fulltext.expected    2015-04-03 16:46:53 +0900 (9fd829d)
@@ -16,13 +16,16 @@ column_rename Terms memos_content memos_content_index
 dump
 table_create Memos TABLE_NO_KEY
 column_create Memos content COLUMN_SCALAR Text
+
 table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram --normalizer NormalizerAuto
-column_create Terms memos_content_index COLUMN_INDEX|WITH_POSITION Memos content
+
 load --table Memos
 [
 ["_id","content"],
 [1,"Groonga is fast."]
 ]
+
+column_create Terms memos_content_index COLUMN_INDEX|WITH_POSITION Memos content
 select Memos --query "content:@groonga"
 [
   [

  Modified: test/command/suite/column_rename/index/multiple_columns.expected (+4 -1)
===================================================================
--- test/command/suite/column_rename/index/multiple_columns.expected    2015-04-03 16:45:43 +0900 (ffbb355)
+++ test/command/suite/column_rename/index/multiple_columns.expected    2015-04-03 16:46:53 +0900 (f1be353)
@@ -19,13 +19,16 @@ dump
 table_create Memos TABLE_NO_KEY
 column_create Memos content COLUMN_SCALAR Text
 column_create Memos title COLUMN_SCALAR ShortText
+
 table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram --normalizer NormalizerAuto
-column_create Terms memos_index COLUMN_INDEX|WITH_SECTION|WITH_POSITION Memos title,content
+
 load --table Memos
 [
 ["_id","content","title"],
 [1,"Groonga is fast.","Groonga"]
 ]
+
+column_create Terms memos_index COLUMN_INDEX|WITH_SECTION|WITH_POSITION Memos title,content
 select Memos --query "content:@groonga"
 [
   [

  Modified: test/command/suite/column_rename/index/tag.expected (+5 -1)
===================================================================
--- test/command/suite/column_rename/index/tag.expected    2015-04-03 16:45:43 +0900 (61564b6)
+++ test/command/suite/column_rename/index/tag.expected    2015-04-03 16:46:53 +0900 (b1dc36d)
@@ -15,14 +15,18 @@ column_rename Tags memos_tag memos_tag_index
 [[0,0.0,0.0],true]
 dump
 table_create Tags TABLE_PAT_KEY ShortText
+
 table_create Memos TABLE_HASH_KEY ShortText
-column_create Tags memos_tag_index COLUMN_INDEX Memos tag
+
 column_create Memos tag COLUMN_SCALAR Tags
+
 load --table Memos
 [
 ["_key","tag"],
 ["Groonga is fast.","groonga"]
 ]
+
+column_create Tags memos_tag_index COLUMN_INDEX Memos tag
 select Memos --query "tag:@groonga"
 [
   [

  Modified: test/command/suite/delete/reference/cross.expected (+6 -1)
===================================================================
--- test/command/suite/delete/reference/cross.expected    2015-04-03 16:45:43 +0900 (4dc6a33)
+++ test/command/suite/delete/reference/cross.expected    2015-04-03 16:46:53 +0900 (76db46a)
@@ -22,18 +22,23 @@ delete URLs --key "http://groonga.org/"
 [[0,0.0,0.0],true]
 dump
 table_create Users TABLE_HASH_KEY ShortText
+
 table_create URLs TABLE_HASH_KEY ShortText
+
 column_create Users bookmarks COLUMN_VECTOR URLs
 column_create URLs author COLUMN_SCALAR Users
-column_create URLs bookmarks_index COLUMN_INDEX Users bookmarks
+
 load --table Users
 [
 ["_key","bookmarks"],
 ["mori",["http://mroonga.org/","http://ranguba.org/"]]
 ]
+
 load --table URLs
 [
 ["_key","author"],
 ["http://mroonga.org/",""],
 ["http://ranguba.org/",""]
 ]
+
+column_create URLs bookmarks_index COLUMN_INDEX Users bookmarks

  Modified: test/command/suite/delete/reference/vector_type.expected (+6 -1)
===================================================================
--- test/command/suite/delete/reference/vector_type.expected    2015-04-03 16:45:43 +0900 (75f4bee)
+++ test/command/suite/delete/reference/vector_type.expected    2015-04-03 16:46:53 +0900 (2a17fbe)
@@ -23,17 +23,22 @@ delete URLs --key "http://groonga.org/"
 dump
 table_create Users TABLE_HASH_KEY ShortText
 column_create Users bookmarks COLUMN_VECTOR ShortText
+
 table_create URLs TABLE_HASH_KEY ShortText
+
 column_create URLs author COLUMN_SCALAR Users
-column_create URLs bookmarks_index COLUMN_INDEX Users bookmarks
+
 load --table Users
 [
 ["_key","bookmarks"],
 ["mori",["http://mroonga.org/","http://groonga.org/","http://ranguba.org/"]]
 ]
+
 load --table URLs
 [
 ["_key","author"],
 ["http://mroonga.org/",""],
 ["http://ranguba.org/",""]
 ]
+
+column_create URLs bookmarks_index COLUMN_INDEX Users bookmarks

  Modified: test/command/suite/dump/record/vector_long_key.expected (+6 -0)
===================================================================
--- test/command/suite/dump/record/vector_long_key.expected    2015-04-03 16:45:43 +0900 (696e007)
+++ test/command/suite/dump/record/vector_long_key.expected    2015-04-03 16:46:53 +0900 (23d02d3)
@@ -16,6 +16,12 @@ table_create Users TABLE_HASH_KEY ShortText
 
 column_create Users tags COLUMN_VECTOR Tags
 
+load --table Tags
+[
+["_key"],
+["long (larger than 24byte)"]
+]
+
 load --table Users
 [
 ["_key","tags"],

  Modified: test/command/suite/table_create/normalizer/auto/utf8.expected (+4 -1)
===================================================================
--- test/command/suite/table_create/normalizer/auto/utf8.expected    2015-04-03 16:45:43 +0900 (1e5aebf)
+++ test/command/suite/table_create/normalizer/auto/utf8.expected    2015-04-03 16:46:53 +0900 (efc9b26)
@@ -43,12 +43,15 @@ select Movies --match_columns name --query seven
 ]
 dump
 table_create Terms TABLE_PAT_KEY ShortText --normalizer NormalizerAuto
+
 table_create Movies TABLE_NO_KEY
 column_create Movies name COLUMN_SCALAR ShortText
-column_create Terms movies_name COLUMN_INDEX Movies name
+
 load --table Movies
 [
 ["_id","name"],
 [1,"Seven Samurai"],
 [2,"The Last Samurai"]
 ]
+
+column_create Terms movies_name COLUMN_INDEX Movies name

  Modified: test/command/suite/table_create/normalizer/nfkc51/utf8.expected (+4 -1)
===================================================================
--- test/command/suite/table_create/normalizer/nfkc51/utf8.expected    2015-04-03 16:45:43 +0900 (5a80e73)
+++ test/command/suite/table_create/normalizer/nfkc51/utf8.expected    2015-04-03 16:46:53 +0900 (68df7f6)
@@ -43,12 +43,15 @@ select Movies --match_columns name --query seven
 ]
 dump
 table_create Terms TABLE_PAT_KEY ShortText --normalizer NormalizerNFKC51
+
 table_create Movies TABLE_NO_KEY
 column_create Movies name COLUMN_SCALAR ShortText
-column_create Terms movies_name COLUMN_INDEX Movies name
+
 load --table Movies
 [
 ["_id","name"],
 [1,"Seven Samurai"],
 [2,"The Last Samurai"]
 ]
+
+column_create Terms movies_name COLUMN_INDEX Movies name

  Modified: test/command/suite/table_create/normalizer/nonexistent.expected (+4 -1)
===================================================================
--- test/command/suite/table_create/normalizer/nonexistent.expected    2015-04-03 16:45:43 +0900 (781ed09)
+++ test/command/suite/table_create/normalizer/nonexistent.expected    2015-04-03 16:46:53 +0900 (15f25c4)
@@ -43,12 +43,15 @@ select Movies --match_columns name --query seven
 [[0,0.0,0.0],[[[0],[["_id","UInt32"],["name","ShortText"]]]]]
 dump
 table_create Terms TABLE_PAT_KEY ShortText
+
 table_create Movies TABLE_NO_KEY
 column_create Movies name COLUMN_SCALAR ShortText
-column_create Terms movies_name COLUMN_INDEX Movies name
+
 load --table Movies
 [
 ["_id","name"],
 [1,"Seven Samurai"],
 [2,"The Last Samurai"]
 ]
+
+column_create Terms movies_name COLUMN_INDEX Movies name

  Modified: test/command/suite/table_create/token_filters/empty_between_comma.expected (+0 -1)
===================================================================
--- test/command/suite/table_create/token_filters/empty_between_comma.expected    2015-04-03 16:45:43 +0900 (195f019)
+++ test/command/suite/table_create/token_filters/empty_between_comma.expected    2015-04-03 16:46:53 +0900 (a0941d9)
@@ -15,6 +15,5 @@ table_create Terms TABLE_PAT_KEY ShortText   --default_tokenizer TokenBigram   -
 #|e| [table][create][token-filter] empty token filter name: <TokenFilterStopWord,| |,TokenFilterStopWord>
 dump
 plugin_register token_filters/stop_word
-
 table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram --normalizer NormalizerAuto
 

  Modified: test/command/suite/table_create/token_filters/leading_comma.expected (+0 -1)
===================================================================
--- test/command/suite/table_create/token_filters/leading_comma.expected    2015-04-03 16:45:43 +0900 (ba06bb8)
+++ test/command/suite/table_create/token_filters/leading_comma.expected    2015-04-03 16:46:53 +0900 (f21311e)
@@ -15,6 +15,5 @@ table_create Terms TABLE_PAT_KEY ShortText   --default_tokenizer TokenBigram   -
 #|e| [table][create][token-filter] empty token filter name: <||,TokenFilterStopWord>
 dump
 plugin_register token_filters/stop_word
-
 table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram --normalizer NormalizerAuto
 

  Modified: test/command/suite/table_create/token_filters/leading_spaces.expected (+0 -1)
===================================================================
--- test/command/suite/table_create/token_filters/leading_spaces.expected    2015-04-03 16:45:43 +0900 (9a23135)
+++ test/command/suite/table_create/token_filters/leading_spaces.expected    2015-04-03 16:46:53 +0900 (0a3f391)
@@ -4,6 +4,5 @@ table_create Terms TABLE_PAT_KEY ShortText   --default_tokenizer TokenBigram   -
 [[0,0.0,0.0],true]
 dump
 plugin_register token_filters/stop_word
-
 table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram --normalizer NormalizerAuto --token_filters TokenFilterStopWord
 

  Modified: test/command/suite/table_create/token_filters/multiple.expected (+0 -1)
===================================================================
--- test/command/suite/table_create/token_filters/multiple.expected    2015-04-03 16:45:43 +0900 (d10f7bd)
+++ test/command/suite/table_create/token_filters/multiple.expected    2015-04-03 16:46:53 +0900 (ec19a71)
@@ -4,6 +4,5 @@ table_create Terms TABLE_PAT_KEY ShortText   --default_tokenizer TokenBigram   -
 [[0,0.0,0.0],true]
 dump
 plugin_register token_filters/stop_word
-
 table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram --normalizer NormalizerAuto --token_filters TokenFilterStopWord,TokenFilterStopWord
 

  Modified: test/command/suite/table_create/token_filters/one.expected (+0 -1)
===================================================================
--- test/command/suite/table_create/token_filters/one.expected    2015-04-03 16:45:43 +0900 (8507a02)
+++ test/command/suite/table_create/token_filters/one.expected    2015-04-03 16:46:53 +0900 (8f4c08d)
@@ -4,6 +4,5 @@ table_create Terms TABLE_PAT_KEY ShortText   --default_tokenizer TokenBigram   -
 [[0,0.0,0.0],true]
 dump
 plugin_register token_filters/stop_word
-
 table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram --normalizer NormalizerAuto --token_filters TokenFilterStopWord
 

  Modified: test/command/suite/table_create/token_filters/spaces_around_comma.expected (+0 -1)
===================================================================
--- test/command/suite/table_create/token_filters/spaces_around_comma.expected    2015-04-03 16:45:43 +0900 (c800fc2)
+++ test/command/suite/table_create/token_filters/spaces_around_comma.expected    2015-04-03 16:46:53 +0900 (cb66883)
@@ -4,6 +4,5 @@ table_create Terms TABLE_PAT_KEY ShortText   --default_tokenizer TokenBigram   -
 [[0,0.0,0.0],true]
 dump
 plugin_register token_filters/stop_word
-
 table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram --normalizer NormalizerAuto --token_filters TokenFilterStopWord,TokenFilterStopWord
 

  Modified: test/command/suite/table_create/token_filters/trailing_comma.expected (+0 -1)
===================================================================
--- test/command/suite/table_create/token_filters/trailing_comma.expected    2015-04-03 16:45:43 +0900 (610f127)
+++ test/command/suite/table_create/token_filters/trailing_comma.expected    2015-04-03 16:46:53 +0900 (6c7127c)
@@ -15,6 +15,5 @@ table_create Terms TABLE_PAT_KEY ShortText   --default_tokenizer TokenBigram   -
 #|e| [table][create][token-filter] empty token filter name: <TokenFilterStopWord,||>
 dump
 plugin_register token_filters/stop_word
-
 table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram --normalizer NormalizerAuto
 

  Modified: test/command/suite/table_remove/array/referenced/column_scalar.expected (+2 -0)
===================================================================
--- test/command/suite/table_remove/array/referenced/column_scalar.expected    2015-04-03 16:45:43 +0900 (8c78303)
+++ test/command/suite/table_remove/array/referenced/column_scalar.expected    2015-04-03 16:46:53 +0900 (e922cd0)
@@ -19,6 +19,8 @@ table_remove Names
 #|e| [table][remove] a column that references the table exists: <Users.name> -> <Names>
 dump
 table_create Names TABLE_NO_KEY
+
 table_create Users TABLE_HASH_KEY ShortText
+
 column_create Users name COLUMN_SCALAR Names
 

  Modified: test/command/suite/table_remove/array/referenced/column_vector.expected (+2 -0)
===================================================================
--- test/command/suite/table_remove/array/referenced/column_vector.expected    2015-04-03 16:45:43 +0900 (1dee92b)
+++ test/command/suite/table_remove/array/referenced/column_vector.expected    2015-04-03 16:46:53 +0900 (47809ad)
@@ -19,6 +19,8 @@ table_remove Names
 #|e| [table][remove] a column that references the table exists: <Users.name> -> <Names>
 dump
 table_create Names TABLE_NO_KEY
+
 table_create Users TABLE_HASH_KEY ShortText
+
 column_create Users name COLUMN_VECTOR Names
 

  Modified: test/command/suite/table_remove/array/referenced/table_double_trie_array.expected (+1 -0)
===================================================================
--- test/command/suite/table_remove/array/referenced/table_double_trie_array.expected    2015-04-03 16:45:43 +0900 (ba3acde)
+++ test/command/suite/table_remove/array/referenced/table_double_trie_array.expected    2015-04-03 16:46:53 +0900 (14ba5fb)
@@ -17,5 +17,6 @@ table_remove Names
 #|e| [table][remove] a table that references the table exists: <Users._key> -> <Names>
 dump
 table_create Names TABLE_NO_KEY
+
 table_create Users TABLE_DAT_KEY Names
 

  Modified: test/command/suite/table_remove/array/referenced/table_hash.expected (+1 -0)
===================================================================
--- test/command/suite/table_remove/array/referenced/table_hash.expected    2015-04-03 16:45:43 +0900 (24c5365)
+++ test/command/suite/table_remove/array/referenced/table_hash.expected    2015-04-03 16:46:53 +0900 (12f42f2)
@@ -17,5 +17,6 @@ table_remove Names
 #|e| [table][remove] a table that references the table exists: <Users._key> -> <Names>
 dump
 table_create Names TABLE_NO_KEY
+
 table_create Users TABLE_HASH_KEY Names
 

  Modified: test/command/suite/table_remove/array/referenced/table_patricia_trie.expected (+1 -0)
===================================================================
--- test/command/suite/table_remove/array/referenced/table_patricia_trie.expected    2015-04-03 16:45:43 +0900 (1e7b1c7)
+++ test/command/suite/table_remove/array/referenced/table_patricia_trie.expected    2015-04-03 16:46:53 +0900 (e26ed39)
@@ -17,5 +17,6 @@ table_remove Names
 #|e| [table][remove] a table that references the table exists: <Users._key> -> <Names>
 dump
 table_create Names TABLE_NO_KEY
+
 table_create Users TABLE_PAT_KEY Names
 

  Modified: test/command/suite/table_remove/double_array_trie/referenced/column_scalar.expected (+2 -0)
===================================================================
--- test/command/suite/table_remove/double_array_trie/referenced/column_scalar.expected    2015-04-03 16:45:43 +0900 (4ae2674)
+++ test/command/suite/table_remove/double_array_trie/referenced/column_scalar.expected    2015-04-03 16:46:53 +0900 (a3d7725)
@@ -19,6 +19,8 @@ table_remove Names
 #|e| [table][remove] a column that references the table exists: <Users.name> -> <Names>
 dump
 table_create Names TABLE_DAT_KEY ShortText
+
 table_create Users TABLE_HASH_KEY ShortText
+
 column_create Users name COLUMN_SCALAR Names
 

  Modified: test/command/suite/table_remove/double_array_trie/referenced/column_vector.expected (+2 -0)
===================================================================
--- test/command/suite/table_remove/double_array_trie/referenced/column_vector.expected    2015-04-03 16:45:43 +0900 (c70d9d9)
+++ test/command/suite/table_remove/double_array_trie/referenced/column_vector.expected    2015-04-03 16:46:53 +0900 (e2a7315)
@@ -19,6 +19,8 @@ table_remove Names
 #|e| [table][remove] a column that references the table exists: <Users.name> -> <Names>
 dump
 table_create Names TABLE_DAT_KEY ShortText
+
 table_create Users TABLE_HASH_KEY ShortText
+
 column_create Users name COLUMN_VECTOR Names
 

  Modified: test/command/suite/table_remove/double_array_trie/referenced/table_double_trie_array.expected (+1 -0)
===================================================================
--- test/command/suite/table_remove/double_array_trie/referenced/table_double_trie_array.expected    2015-04-03 16:45:43 +0900 (a815322)
+++ test/command/suite/table_remove/double_array_trie/referenced/table_double_trie_array.expected    2015-04-03 16:46:53 +0900 (de9f471)
@@ -17,5 +17,6 @@ table_remove Names
 #|e| [table][remove] a table that references the table exists: <Users._key> -> <Names>
 dump
 table_create Names TABLE_DAT_KEY ShortText
+
 table_create Users TABLE_DAT_KEY Names
 

  Modified: test/command/suite/table_remove/double_array_trie/referenced/table_hash.expected (+1 -0)
===================================================================
--- test/command/suite/table_remove/double_array_trie/referenced/table_hash.expected    2015-04-03 16:45:43 +0900 (4484667)
+++ test/command/suite/table_remove/double_array_trie/referenced/table_hash.expected    2015-04-03 16:46:53 +0900 (d6a33e0)
@@ -17,5 +17,6 @@ table_remove Names
 #|e| [table][remove] a table that references the table exists: <Users._key> -> <Names>
 dump
 table_create Names TABLE_DAT_KEY ShortText
+
 table_create Users TABLE_HASH_KEY Names
 

  Modified: test/command/suite/table_remove/double_array_trie/referenced/table_patricia_trie.expected (+1 -0)
===================================================================
--- test/command/suite/table_remove/double_array_trie/referenced/table_patricia_trie.expected    2015-04-03 16:45:43 +0900 (b98ccf1)
+++ test/command/suite/table_remove/double_array_trie/referenced/table_patricia_trie.expected    2015-04-03 16:46:53 +0900 (1ff8c89)
@@ -17,5 +17,6 @@ table_remove Names
 #|e| [table][remove] a table that references the table exists: <Users._key> -> <Names>
 dump
 table_create Names TABLE_DAT_KEY ShortText
+
 table_create Users TABLE_PAT_KEY Names
 

  Modified: test/command/suite/table_remove/hash/referenced/column_scalar.expected (+2 -0)
===================================================================
--- test/command/suite/table_remove/hash/referenced/column_scalar.expected    2015-04-03 16:45:43 +0900 (9231ab7)
+++ test/command/suite/table_remove/hash/referenced/column_scalar.expected    2015-04-03 16:46:53 +0900 (e94b9ab)
@@ -19,6 +19,8 @@ table_remove Names
 #|e| [table][remove] a column that references the table exists: <Users.name> -> <Names>
 dump
 table_create Names TABLE_HASH_KEY ShortText
+
 table_create Users TABLE_HASH_KEY ShortText
+
 column_create Users name COLUMN_SCALAR Names
 

  Modified: test/command/suite/table_remove/hash/referenced/column_vector.expected (+2 -0)
===================================================================
--- test/command/suite/table_remove/hash/referenced/column_vector.expected    2015-04-03 16:45:43 +0900 (02cab2e)
+++ test/command/suite/table_remove/hash/referenced/column_vector.expected    2015-04-03 16:46:53 +0900 (c09320b)
@@ -19,6 +19,8 @@ table_remove Names
 #|e| [table][remove] a column that references the table exists: <Users.name> -> <Names>
 dump
 table_create Names TABLE_HASH_KEY ShortText
+
 table_create Users TABLE_HASH_KEY ShortText
+
 column_create Users name COLUMN_VECTOR Names
 

  Modified: test/command/suite/table_remove/hash/referenced/table_double_trie_array.expected (+1 -0)
===================================================================
--- test/command/suite/table_remove/hash/referenced/table_double_trie_array.expected    2015-04-03 16:45:43 +0900 (4199e52)
+++ test/command/suite/table_remove/hash/referenced/table_double_trie_array.expected    2015-04-03 16:46:53 +0900 (65bcc86)
@@ -17,5 +17,6 @@ table_remove Names
 #|e| [table][remove] a table that references the table exists: <Users._key> -> <Names>
 dump
 table_create Names TABLE_HASH_KEY ShortText
+
 table_create Users TABLE_DAT_KEY Names
 

  Modified: test/command/suite/table_remove/hash/referenced/table_hash.expected (+1 -0)
===================================================================
--- test/command/suite/table_remove/hash/referenced/table_hash.expected    2015-04-03 16:45:43 +0900 (1ba45eb)
+++ test/command/suite/table_remove/hash/referenced/table_hash.expected    2015-04-03 16:46:53 +0900 (01ccf1f)
@@ -17,5 +17,6 @@ table_remove Names
 #|e| [table][remove] a table that references the table exists: <Users._key> -> <Names>
 dump
 table_create Names TABLE_HASH_KEY ShortText
+
 table_create Users TABLE_HASH_KEY Names
 

  Modified: test/command/suite/table_remove/hash/referenced/table_patricia_trie.expected (+1 -0)
===================================================================
--- test/command/suite/table_remove/hash/referenced/table_patricia_trie.expected    2015-04-03 16:45:43 +0900 (2ce2800)
+++ test/command/suite/table_remove/hash/referenced/table_patricia_trie.expected    2015-04-03 16:46:53 +0900 (7d487b1)
@@ -17,5 +17,6 @@ table_remove Names
 #|e| [table][remove] a table that references the table exists: <Users._key> -> <Names>
 dump
 table_create Names TABLE_HASH_KEY ShortText
+
 table_create Users TABLE_PAT_KEY Names
 

  Modified: test/command/suite/table_remove/patricia_trie/referenced/column_scalar.expected (+2 -0)
===================================================================
--- test/command/suite/table_remove/patricia_trie/referenced/column_scalar.expected    2015-04-03 16:45:43 +0900 (fc17f7c)
+++ test/command/suite/table_remove/patricia_trie/referenced/column_scalar.expected    2015-04-03 16:46:53 +0900 (3b3d895)
@@ -19,6 +19,8 @@ table_remove Names
 #|e| [table][remove] a column that references the table exists: <Users.name> -> <Names>
 dump
 table_create Names TABLE_PAT_KEY ShortText
+
 table_create Users TABLE_HASH_KEY ShortText
+
 column_create Users name COLUMN_SCALAR Names
 

  Modified: test/command/suite/table_remove/patricia_trie/referenced/column_vector.expected (+2 -0)
===================================================================
--- test/command/suite/table_remove/patricia_trie/referenced/column_vector.expected    2015-04-03 16:45:43 +0900 (c2e5f1b)
+++ test/command/suite/table_remove/patricia_trie/referenced/column_vector.expected    2015-04-03 16:46:53 +0900 (5f76531)
@@ -19,6 +19,8 @@ table_remove Names
 #|e| [table][remove] a column that references the table exists: <Users.name> -> <Names>
 dump
 table_create Names TABLE_PAT_KEY ShortText
+
 table_create Users TABLE_HASH_KEY ShortText
+
 column_create Users name COLUMN_VECTOR Names
 

  Modified: test/command/suite/table_remove/patricia_trie/referenced/table_double_trie_array.expected (+1 -0)
===================================================================
--- test/command/suite/table_remove/patricia_trie/referenced/table_double_trie_array.expected    2015-04-03 16:45:43 +0900 (c845c5c)
+++ test/command/suite/table_remove/patricia_trie/referenced/table_double_trie_array.expected    2015-04-03 16:46:53 +0900 (44242f1)
@@ -17,5 +17,6 @@ table_remove Names
 #|e| [table][remove] a table that references the table exists: <Users._key> -> <Names>
 dump
 table_create Names TABLE_PAT_KEY ShortText
+
 table_create Users TABLE_DAT_KEY Names
 

  Modified: test/command/suite/table_remove/patricia_trie/referenced/table_hash.expected (+1 -0)
===================================================================
--- test/command/suite/table_remove/patricia_trie/referenced/table_hash.expected    2015-04-03 16:45:43 +0900 (f5ef134)
+++ test/command/suite/table_remove/patricia_trie/referenced/table_hash.expected    2015-04-03 16:46:53 +0900 (29ace40)
@@ -17,5 +17,6 @@ table_remove Names
 #|e| [table][remove] a table that references the table exists: <Users._key> -> <Names>
 dump
 table_create Names TABLE_PAT_KEY ShortText
+
 table_create Users TABLE_HASH_KEY Names
 

  Modified: test/command/suite/table_remove/patricia_trie/referenced/table_patricia_trie.expected (+1 -0)
===================================================================
--- test/command/suite/table_remove/patricia_trie/referenced/table_patricia_trie.expected    2015-04-03 16:45:43 +0900 (43abaa6)
+++ test/command/suite/table_remove/patricia_trie/referenced/table_patricia_trie.expected    2015-04-03 16:46:53 +0900 (2ff942e)
@@ -17,5 +17,6 @@ table_remove Names
 #|e| [table][remove] a table that references the table exists: <Users._key> -> <Names>
 dump
 table_create Names TABLE_PAT_KEY ShortText
+
 table_create Users TABLE_PAT_KEY Names
 

  Modified: test/command/suite/truncate/column/index.expected (+4 -1)
===================================================================
--- test/command/suite/truncate/column/index.expected    2015-04-03 16:45:43 +0900 (aaea7db)
+++ test/command/suite/truncate/column/index.expected    2015-04-03 16:46:53 +0900 (b403fba)
@@ -95,11 +95,14 @@ select Terms
 dump
 table_create Logs TABLE_NO_KEY
 column_create Logs message COLUMN_SCALAR ShortText
+
 table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram --normalizer NormalizerAuto
-column_create Terms logs_message COLUMN_INDEX|WITH_POSITION Logs message
+
 load --table Logs
 [
 ["_id","message"],
 [1,"Hello"],
 [2,"World"]
 ]
+
+column_create Terms logs_message COLUMN_INDEX|WITH_POSITION Logs message

  Modified: test/command/suite/truncate/column/scalar_fix_size.expected (+2 -0)
===================================================================
--- test/command/suite/truncate/column/scalar_fix_size.expected    2015-04-03 16:45:43 +0900 (1af60b9)
+++ test/command/suite/truncate/column/scalar_fix_size.expected    2015-04-03 16:46:53 +0900 (881fd47)
@@ -14,6 +14,7 @@ dump
 table_create Logs TABLE_NO_KEY
 column_create Logs id COLUMN_SCALAR Int32
 column_create Logs message COLUMN_SCALAR ShortText
+
 load --table Logs
 [
 ["_id","id","message"],
@@ -26,6 +27,7 @@ dump
 table_create Logs TABLE_NO_KEY
 column_create Logs id COLUMN_SCALAR Int32
 column_create Logs message COLUMN_SCALAR ShortText
+
 load --table Logs
 [
 ["_id","id","message"],

  Modified: test/command/suite/truncate/column/scalar_variable_size.expected (+2 -0)
===================================================================
--- test/command/suite/truncate/column/scalar_variable_size.expected    2015-04-03 16:45:43 +0900 (7f7ecf3)
+++ test/command/suite/truncate/column/scalar_variable_size.expected    2015-04-03 16:46:53 +0900 (98e8356)
@@ -14,6 +14,7 @@ dump
 table_create Logs TABLE_NO_KEY
 column_create Logs id COLUMN_SCALAR Int32
 column_create Logs message COLUMN_SCALAR ShortText
+
 load --table Logs
 [
 ["_id","id","message"],
@@ -26,6 +27,7 @@ dump
 table_create Logs TABLE_NO_KEY
 column_create Logs id COLUMN_SCALAR Int32
 column_create Logs message COLUMN_SCALAR ShortText
+
 load --table Logs
 [
 ["_id","id","message"],

  Modified: test/command/suite/truncate/table/plain_array.expected (+1 -0)
===================================================================
--- test/command/suite/truncate/table/plain_array.expected    2015-04-03 16:45:43 +0900 (1632bb6)
+++ test/command/suite/truncate/table/plain_array.expected    2015-04-03 16:46:53 +0900 (73ae7b4)
@@ -10,6 +10,7 @@ load --table Diaries
 dump
 table_create Diaries TABLE_NO_KEY
 column_create Diaries content COLUMN_SCALAR Text
+
 load --table Diaries
 [
 ["_id","content"],

  Modified: test/command/suite/truncate/table/plain_dat.expected (+1 -0)
===================================================================
--- test/command/suite/truncate/table/plain_dat.expected    2015-04-03 16:45:43 +0900 (1fa9276)
+++ test/command/suite/truncate/table/plain_dat.expected    2015-04-03 16:46:53 +0900 (3d8f921)
@@ -10,6 +10,7 @@ load --table Diaries
 dump
 table_create Diaries TABLE_DAT_KEY ShortText
 column_create Diaries content COLUMN_SCALAR Text
+
 load --table Diaries
 [
 ["_key","content"],

  Modified: test/command/suite/truncate/table/plain_hash.expected (+1 -0)
===================================================================
--- test/command/suite/truncate/table/plain_hash.expected    2015-04-03 16:45:43 +0900 (ce444db)
+++ test/command/suite/truncate/table/plain_hash.expected    2015-04-03 16:46:53 +0900 (3d7cefd)
@@ -10,6 +10,7 @@ load --table Diaries
 dump
 table_create Diaries TABLE_HASH_KEY ShortText
 column_create Diaries content COLUMN_SCALAR Text
+
 load --table Diaries
 [
 ["_key","content"],

  Modified: test/command/suite/truncate/table/plain_pat.expected (+1 -0)
===================================================================
--- test/command/suite/truncate/table/plain_pat.expected    2015-04-03 16:45:43 +0900 (f5d8a56)
+++ test/command/suite/truncate/table/plain_pat.expected    2015-04-03 16:46:53 +0900 (b0e4876)
@@ -10,6 +10,7 @@ load --table Diaries
 dump
 table_create Diaries TABLE_PAT_KEY ShortText
 column_create Diaries content COLUMN_SCALAR Text
+
 load --table Diaries
 [
 ["_key","content"],

  Modified: test/command/suite/truncate/table/source_multi.expected (+2 -2)
===================================================================
--- test/command/suite/truncate/table/source_multi.expected    2015-04-03 16:45:43 +0900 (91e9321)
+++ test/command/suite/truncate/table/source_multi.expected    2015-04-03 16:46:53 +0900 (becf868)
@@ -12,15 +12,15 @@ dump
 table_create Diaries TABLE_HASH_KEY ShortText
 column_create Diaries content COLUMN_SCALAR Text
 column_create Diaries title COLUMN_SCALAR ShortText
+
 table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram
 column_create Terms diaries_index COLUMN_INDEX|WITH_SECTION|WITH_POSITION Diaries title,content
-
 truncate Diaries
 [[0,0.0,0.0],true]
 dump
 table_create Diaries TABLE_HASH_KEY ShortText
 column_create Diaries content COLUMN_SCALAR Text
 column_create Diaries title COLUMN_SCALAR ShortText
+
 table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram
 column_create Terms diaries_index COLUMN_INDEX|WITH_SECTION|WITH_POSITION Diaries title,content
-

  Modified: test/command/suite/truncate/table/source_one.expected (+2 -2)
===================================================================
--- test/command/suite/truncate/table/source_one.expected    2015-04-03 16:45:43 +0900 (cffb73e)
+++ test/command/suite/truncate/table/source_one.expected    2015-04-03 16:46:53 +0900 (e370a61)
@@ -9,14 +9,14 @@ column_create Terms content_index COLUMN_INDEX|WITH_POSITION Diaries content
 dump
 table_create Diaries TABLE_HASH_KEY ShortText
 column_create Diaries content COLUMN_SCALAR Text
+
 table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram
 column_create Terms content_index COLUMN_INDEX|WITH_POSITION Diaries content
-
 truncate Diaries
 [[0,0.0,0.0],true]
 dump
 table_create Diaries TABLE_HASH_KEY ShortText
 column_create Diaries content COLUMN_SCALAR Text
+
 table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram
 column_create Terms content_index COLUMN_INDEX|WITH_POSITION Diaries content
-
-------------- next part --------------
HTML����������������������������...
Download 



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