@@ -477,7 +477,7 @@ private string QuoteSchema(string schema)
477
477
/// <param name="column">The column.</param>
478
478
/// <param name="srid">The srid.</param>
479
479
/// <param name="subtype">The subtype.</param>
480
- /// <param name="dimension">[3DIS] The dimension</param>
480
+ /// <param name="dimension">The dimension. </param>
481
481
/// <param name="isNullable">Whether or not the column is nullable</param>
482
482
/// <returns></returns>
483
483
public string GetSpatialCreateString ( string schema , string table , string column , int srid , string subtype , int dimension , bool isNullable )
@@ -493,8 +493,7 @@ public string GetSpatialCreateString(string schema, string table, string column,
493
493
builder . Append ( this . MultipleQueriesSeparator ) ;
494
494
495
495
builder . AppendFormat ( "SELECT AddGeometryColumn('{0}','{1}','{2}',{3},'{4}',{5})" ,
496
- //this.QuoteSchema(schema), this.QuoteForTableName(table), this.QuoteForColumnName(column), srid, subtype, dimension == 3 ? 3 : 2);
497
- schema , table , column , srid , subtype , dimension == 3 ? 3 : 2 ) ;
496
+ schema , table , column , srid , subtype , dimension ) ;
498
497
499
498
if ( ! isNullable )
500
499
{
0 commit comments