Skip to content
This repository was archived by the owner on May 12, 2021. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
INDEX_NAME VARCHAR(128) NOT NULL,
INDEX_TYPE CHAR(32) NOT NULL,
PATH VARCHAR(4096),
COLUMN_NAMES VARCHAR(128) NOT NULL, -- array of column names
COLUMN_NAMES VARCHAR(255) NOT NULL, -- array of column names
DATA_TYPES VARCHAR(128) NOT NULL, -- array of column types
ORDERS VARCHAR(128) NOT NULL, -- array of column orders
NULL_ORDERS VARCHAR(128) NOT NULL, -- array of null orderings
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
INDEX_NAME VARCHAR(128) NOT NULL,
INDEX_TYPE CHAR(32) BINARY NOT NULL,
PATH VARCHAR(4096) NOT NULL,
COLUMN_NAMES VARCHAR(256) NOT NULL, -- array of column names
COLUMN_NAMES VARCHAR(255) NOT NULL, -- array of column names
DATA_TYPES VARCHAR(128) NOT NULL, -- array of column types
ORDERS VARCHAR(128) NOT NULL, -- array of column orders
NULL_ORDERS VARCHAR(128) NOT NULL, -- array of null orderings
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
INDEX_NAME VARCHAR(128) NOT NULL,
INDEX_TYPE CHAR(32) BINARY NOT NULL,
PATH VARCHAR(4096) NOT NULL,
COLUMN_NAMES VARCHAR(256) NOT NULL, -- array of column names
COLUMN_NAMES VARCHAR(255) NOT NULL, -- array of column names
DATA_TYPES VARCHAR(128) NOT NULL, -- array of column types
ORDERS VARCHAR(128) NOT NULL, -- array of column orders
NULL_ORDERS VARCHAR(128) NOT NULL, -- array of null orderings
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@
INDEX_NAME VARCHAR2(128) NOT NULL,
INDEX_TYPE CHAR(32) NOT NULL,
PATH VARCHAR(4096) NOT NULL,
COLUMN_NAMES VARCHAR(256) NOT NULL, -- array of column names
COLUMN_NAMES VARCHAR(255) NOT NULL, -- array of column names
DATA_TYPES VARCHAR(128) NOT NULL, -- array of column types
ORDERS VARCHAR(128) NOT NULL, -- array of column orders
NULL_ORDERS VARCHAR(128) NOT NULL, -- array of null orderings
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ xsi:schemaLocation="http://tajo.apache.org/catalogstore ../DBMSSchemaDefinition.
INDEX_NAME VARCHAR(128) NOT NULL,
INDEX_TYPE CHAR(32) NOT NULL,
PATH VARCHAR(4096) NOT NULL,
COLUMN_NAMES VARCHAR(256) NOT NULL, -- array of column names
COLUMN_NAMES VARCHAR(255) NOT NULL, -- array of column names
DATA_TYPES VARCHAR(128) NOT NULL, -- array of column types
ORDERS VARCHAR(128) NOT NULL, -- array of column orders
NULL_ORDERS VARCHAR(128) NOT NULL, -- array of null orderings
Expand Down