Skip to content

Commit 8735cae

Browse files
authored
Merge pull request #5 from segovoni/issue4
Removed filter on temporal columns for issue #4
2 parents a907e31 + 1b4fd0b commit 8735cae

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Packages/d103/sqlcmdcli.dproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,8 @@
112112
<VerInfo_Locale>1033</VerInfo_Locale>
113113
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
114114
<VerInfo_AutoIncVersion>true</VerInfo_AutoIncVersion>
115-
<VerInfo_Keys>CompanyName=;FileDescription=Command-line utility for ad hoc, interactive execution of commands on SQL Server;FileVersion=1.0.0.126;InternalName=sqlcmdcli;LegalCopyright=;LegalTrademarks=;OriginalFilename=sqlcmdcli.exe;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=1.0;Comments=https://github.com/segovoni/sqlcmdcli</VerInfo_Keys>
116-
<VerInfo_Build>126</VerInfo_Build>
115+
<VerInfo_Keys>CompanyName=;FileDescription=Command-line utility for ad hoc, interactive execution of commands on SQL Server;FileVersion=1.0.0.127;InternalName=sqlcmdcli;LegalCopyright=;LegalTrademarks=;OriginalFilename=sqlcmdcli.exe;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=1.0;Comments=https://github.com/segovoni/sqlcmdcli</VerInfo_Keys>
116+
<VerInfo_Build>127</VerInfo_Build>
117117
</PropertyGroup>
118118
<ItemGroup>
119119
<DelphiCompile Include="$(MainSource)">

Sources/sqlcmdcli.SchemaExtractor.pas

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ function TSQLDBSchemaExtractor.GetSQLbySchemaType(ASchemaType: TSchemaType;
307307
'(T.type = ''U'') ' +
308308
//'AND (T.is_memory_optimized = 0) ' +
309309
'AND (T.is_ms_shipped = 0) ' +
310-
'AND (T.temporal_type = 0) ' +
310+
//'AND (T.temporal_type = 0) ' +
311311
'AND (T.is_replicated = 0) ' +
312312
'AND (C.is_computed = 0) ' +
313313
'ORDER BY ' +
@@ -334,7 +334,7 @@ function TSQLDBSchemaExtractor.GetSQLbySchemaType(ASchemaType: TSchemaType;
334334
'(T.type = ''U'') ' +
335335
//'AND (T.is_memory_optimized = 0) ' +
336336
'AND (T.is_ms_shipped = 0) ' +
337-
'AND (T.temporal_type = 0) ' +
337+
//'AND (T.temporal_type = 0) ' +
338338
'AND (T.is_replicated = 0) ' +
339339
'AND (C.is_computed = 0) ' +
340340
'AND TYPE_NAME(C.system_type_id) IN ' +

0 commit comments

Comments
 (0)