Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Detect domain id from the related table automatically
- Loading branch information
Showing
4 changed files
with
46 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| table_create companies_id0123_product TABLE_HASH_KEY ShortText | ||
| table_create companies_id0123_age TABLE_HASH_KEY UInt32 | ||
| table_create companies_id0123_BigramTerms TABLE_PAT_KEY|KEY_NORMALIZE ShortText --default_tokenizer TokenBigram | ||
| table_create companies_id0123 TABLE_HASH_KEY ShortText | ||
| column_create companies_id0123 address COLUMN_SCALAR ShortText | ||
| column_create companies_id0123 age COLUMN_SCALAR UInt32 | ||
| column_create companies_id0123 description COLUMN_SCALAR ShortText | ||
| column_create companies_id0123 email_address COLUMN_SCALAR ShortText | ||
| column_create companies_id0123 name COLUMN_SCALAR ShortText | ||
| column_create companies_id0123 product COLUMN_SCALAR companies_id0123_product | ||
| column_create companies_id0123_BigramTerms companies_name COLUMN_INDEX|WITH_POSITION companies_id0123 name | ||
| column_create companies_id0123_BigramTerms companies_email_address COLUMN_INDEX|WITH_POSITION companies_id0123 email_address | ||
| column_create companies_id0123_BigramTerms companies_description COLUMN_INDEX|WITH_POSITION companies_id0123 description | ||
| column_create companies_id0123_BigramTerms companies_address COLUMN_INDEX|WITH_POSITION companies_id0123 address | ||
| column_create companies_id0123_age companies_age COLUMN_INDEX|WITH_POSITION companies_id0123 age | ||
| column_create companies_id0123_product companies_product COLUMN_INDEX|WITH_POSITION companies_id0123 product |