A set of parameters for Kinetica.createJoinTable. More…
Classes | |
| struct | Options |
| A set of string constants for the parameter CreateJoinTableRequest.options. More… | |
Public Member Functions | |
| CreateJoinTableRequest () | |
| Constructs a CreateJoinTableRequest object with default parameters. | |
| CreateJoinTableRequest (string join_table_name, IList< string > table_names, IList< string > column_names, IList< string > expressions=null, IDictionary< string, string > options=null) | |
| Constructs a CreateJoinTableRequest object with the specified parameters. | |
| CreateJoinTableRequest () | |
| Constructs a CreateJoinTableRequest object with default parameters. | |
| CreateJoinTableRequest (string join_table_name, IList< string > table_names, IList< string > column_names, IList< string > expressions=null, IDictionary< string, string > options=null) | |
| Constructs a CreateJoinTableRequest object with the specified parameters. | |
| Public Member Functions inherited from kinetica.KineticaData | |
| KineticaData (KineticaType type) | |
| Constructor from Kinetica Type. | |
| KineticaData (System.Type type=null) | |
| Default constructor, with optional System.Type. | |
| object | Get (int fieldPos) |
| Retrieve a specific property from this object. | |
| void | Put (int fieldPos, object fieldValue) |
| Write a specific property to this object. | |
| KineticaData (KineticaType type) | |
| Constructor from Kinetica Type. | |
| KineticaData (System.Type type=null) | |
| Default constructor, with optional System.Type. | |
| object | Get (int fieldPos) |
| Retrieve a specific property from this object. | |
| void | Put (int fieldPos, object fieldValue) |
| Write a specific property to this object. | |
Properties | |
| string | join_table_name [get, set] |
| Name of the join table to be created, in [schema_name. | |
| IList< string > | table_names = new List<string>() [get, set] |
| The list of table names composing the join, each in [schema_name. | |
| IList< string > | column_names = new List<string>() [get, set] |
| List of member table columns or column expressions to be included in the join. | |
| IList< string > | expressions = new List<string>() [get, set] |
| An optional list of expressions to combine and filter the joined tables. | |
| IDictionary< string, string > | options = new Dictionary<string, string>() [get, set] |
| Optional parameters. | |
| Properties inherited from kinetica.KineticaData | |
| Schema | Schema [get] |
| Avro Schema for this class. | |
Additional Inherited Members | |
| Static Public Member Functions inherited from kinetica.KineticaData | |
| static ? RecordSchema | SchemaFromType (System.Type t, KineticaType? ktype=null) |
| Create an Avro Schema from a System.Type and a KineticaType. | |
| static ? RecordSchema | SchemaFromType (System.Type t, KineticaType? ktype=null) |
| Create an Avro Schema from a System.Type and a KineticaType. | |
Detailed Description
A set of parameters for Kinetica.createJoinTable.
Creates a table that is the result of a SQL JOIN.
For join details and examples see: Joins. For limitations, see Join Limitations and Cautions.
Definition at line 19 of file CreateJoinTable.cs.
Constructor & Destructor Documentation
◆ CreateJoinTableRequest() [1/4]
| inline |
Constructs a CreateJoinTableRequest object with default parameters.
Definition at line 328 of file CreateJoinTable.cs.
◆ CreateJoinTableRequest() [2/4]
| inline |
Constructs a CreateJoinTableRequest object with the specified parameters.
| join_table_name | Name of the join table to be created, in [schema_name.]table_name format, using standard name resolution rules and meeting table naming criteria. |
| table_names | The list of table names composing the join, each in [schema_name.]table_name format, using standard name resolution rules. Corresponds to a SQL statement FROM clause. |
| column_names | List of member table columns or column expressions to be included in the join. Columns can be prefixed with ‘table_id.column_name’, where ‘table_id’ is the table name or alias. Columns can be aliased via the syntax ‘column_name as alias’. Wild cards '' can be used to include all columns across member tables or ‘table_id.’ for all of a single table’s columns. Columns and column expressions composing the join must be uniquely named or aliased–therefore, the ’*’ wild card cannot be used if column names aren’t unique across all tables. |
| expressions | An optional list of expressions to combine and filter the joined tables. Corresponds to a SQL statement WHERE clause. For details see: expressions. The default value is an empty List. |
| options | Optional parameters.
|
Definition at line 504 of file CreateJoinTable.cs.
◆ CreateJoinTableRequest() [3/4]
| inline |
Constructs a CreateJoinTableRequest object with default parameters.
Definition at line 328 of file CreateJoinTable.cs.
◆ CreateJoinTableRequest() [4/4]
| inline |
Constructs a CreateJoinTableRequest object with the specified parameters.
| join_table_name | Name of the join table to be created, in [schema_name.]table_name format, using standard name resolution rules and meeting table naming criteria. |
| table_names | The list of table names composing the join, each in [schema_name.]table_name format, using standard name resolution rules. Corresponds to a SQL statement FROM clause. |
| column_names | List of member table columns or column expressions to be included in the join. Columns can be prefixed with ‘table_id.column_name’, where ‘table_id’ is the table name or alias. Columns can be aliased via the syntax ‘column_name as alias’. Wild cards '' can be used to include all columns across member tables or ‘table_id.’ for all of a single table’s columns. Columns and column expressions composing the join must be uniquely named or aliased–therefore, the ’*’ wild card cannot be used if column names aren’t unique across all tables. |
| expressions | An optional list of expressions to combine and filter the joined tables. Corresponds to a SQL statement WHERE clause. For details see: expressions. The default value is an empty List. |
| options | Optional parameters.
|
Definition at line 504 of file CreateJoinTable.cs.
Property Documentation
◆ column_names
| getset |
List of member table columns or column expressions to be included in the join.
Columns can be prefixed with ‘table_id.column_name’, where ‘table_id’ is the table name or alias. Columns can be aliased via the syntax ‘column_name as alias’. Wild cards '' can be used to include all columns across member tables or ‘table_id.’ for all of a single table’s columns. Columns and column expressions composing the join must be uniquely named or aliased–therefore, the ’*’ wild card cannot be used if column names aren’t unique across all tables.
Definition at line 167 of file CreateJoinTable.cs.
◆ expressions
| getset |
An optional list of expressions to combine and filter the joined tables.
Corresponds to a SQL statement WHERE clause. For details see: expressions. The default value is an empty List.
Definition at line 175 of file CreateJoinTable.cs.
◆ join_table_name
| getset |
Name of the join table to be created, in [schema_name.
]table_name format, using standard name resolution rules and meeting table naming criteria.
Definition at line 147 of file CreateJoinTable.cs.
◆ options
| getset |
Optional parameters.
- CREATE_TEMP_TABLE: If TRUE, a unique temporary table name will be generated in the sys_temp schema and used in place of CreateJoinTableRequest.join_table_name. This is always allowed even if the caller does not have permission to create tables. The generated name is returned in QUALIFIED_JOIN_TABLE_NAME. Supported values:The default value is FALSE.
- COLLECTION_NAME: [DEPRECATED–please specify the containing schema for the join as part of CreateJoinTableRequest.join_table_name and use Kinetica.createSchema to create the schema if non-existent] Name of a schema for the join. If the schema is non-existent, it will be automatically created. The default value is ”.
- MAX_QUERY_DIMENSIONS: No longer used.
- STRATEGY_DEFINITION: The tier strategy for the table and its columns.
- TTL: Sets the TTL of the join table specified in CreateJoinTableRequest.join_table_name.
- VIEW_ID: View this projection is part of. The default value is ”.
- NO_COUNT: Return a count of 0 for the join table for logging and for Kinetica.showTable; optimization needed for large overlapped equi-join stencils. The default value is ‘false’.
- CHUNK_SIZE: Maximum number of records per joined-chunk for this table. Defaults to the gpudb.conf file chunk size.
- ENABLE_VIRTUAL_CHUNKING: Collect chunks with accumulated size less than chunk_size into a single chunk. The default value is ‘false’.
- MAX_VIRTUAL_CHUNK_SIZE: Maximum number of records per virtual-chunk. When set, enables virtual chunking. Defaults to chunk_size if virtual chunking otherwise enabled.
- MIN_VIRTUAL_CHUNK_SIZE: Minimum number of records per virtual-chunk. When set, enables virtual chunking. Defaults to chunk_size if virtual chunking otherwise enabled.
- ENABLE_SPARSE_VIRTUAL_CHUNKING: Materialize virtual chunks with only non-deleted values. The default value is ‘false’.
- ENABLE_EQUI_JOIN_LAZY_RESULT_STORE: Allow using the lazy result store to cache computation of one side of a multichunk equi-join. Reduces computation but also reduces parallelism to the number of chunks on the other side of the equi-join.
- ENABLE_PREDICATE_EQUI_JOIN_LAZY_RESULT_STORE: Allow using the lazy result store to cache computation of one side of a multichunk predicate-equi-join. Reduces computation but also reduces parallelism to the number of chunks on the other side of the equi-join.
- ENABLE_PK_EQUI_JOIN: Use equi-join to do primary key joins rather than using primary key index.
The default value is an empty Dictionary.
Definition at line 324 of file CreateJoinTable.cs.
◆ table_names
| getset |
The list of table names composing the join, each in [schema_name.
]table_name format, using standard name resolution rules.
Corresponds to a SQL statement FROM clause.
Definition at line 155 of file CreateJoinTable.cs.
The documentation for this class was generated from the following files:
- _build/public-os_ubuntu24.04-arch_amd64-cc_gcc_13.3.0/install/Kinetica/Protocol/CreateJoinTable.cs
- Kinetica/Protocol/CreateJoinTable.cs