File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66
77abstract class Common implements DefinitionInterface
88{
9+ public const KBC_METADATA_KEY_BACKEND = 'KBC.datatype.backend ' ;
10+
911 public const KBC_METADATA_KEY_TYPE = 'KBC.datatype.type ' ;
1012 public const KBC_METADATA_KEY_NULLABLE = 'KBC.datatype.nullable ' ;
1113 public const KBC_METADATA_KEY_BASETYPE = 'KBC.datatype.basetype ' ;
Original file line number Diff line number Diff line change 1616 */
1717class Exasol extends Common
1818{
19+ public const METADATA_BACKEND = 'exasol ' ;
1920 /* core types */
2021 public const TYPE_DECIMAL = 'DECIMAL ' ; // DECIMAL(p,s) = s ≤ p ≤ 36
2122 public const TYPE_DOUBLE_PRECISION = 'DOUBLE PRECISION ' ;
Original file line number Diff line number Diff line change 1111
1212class Snowflake extends Common
1313{
14+ public const METADATA_BACKEND = 'snowflake ' ;
1415 public const TYPE_NUMBER = 'NUMBER ' ;
1516 public const TYPE_DECIMAL = 'DECIMAL ' ;
1617 public const TYPE_NUMERIC = 'NUMERIC ' ;
Original file line number Diff line number Diff line change 1818 */
1919class Synapse extends Common
2020{
21+ public const METADATA_BACKEND = 'synapse ' ;
2122 public const TYPE_DECIMAL = 'DECIMAL ' ;
2223 public const TYPE_NUMERIC = 'NUMERIC ' ;
2324 public const TYPE_FLOAT = 'FLOAT ' ;
You can’t perform that action at this time.
0 commit comments