Skip to content
Merged
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
2 changes: 1 addition & 1 deletion src/NHibernate.Test/NHibernate.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
<PackageReference Include="NUnit" Version="3.13.2" />
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
<PackageReference Include="FirebirdSql.Data.FirebirdClient" Version="8.5.2" />
<PackageReference Include="FirebirdSql.Data.FirebirdClient" Version="9.1.1" />
<PackageReference Include="Npgsql" Version="6.0.6" />
<PackageReference Include="MySql.Data" Version="8.0.27" />
</ItemGroup>
Expand Down
48 changes: 46 additions & 2 deletions src/NHibernate/Dialect/FirebirdDialect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -276,21 +276,33 @@ public SqlString Render(IList args, ISessionFactoryImplementor factory)
"avg",
"base_name",
"before",
"bit_length",
"blob sub_type 1",
"boolean",
"break",
"cache",
"cascade",
"char_length",
"character_length",
"check_point_length",
"coalesce",
"comment",
"committed",
"computed",
"conditional",
"connection_id",
"containing",
"corr",
"count",
"covar_pop",
"covar_samp",
"cstring",
"current_connection",
"current_transaction",
"database",
"debug",
"decfloat",
"deleting",
"desc",
"descending",
"descriptor",
Expand All @@ -309,6 +321,8 @@ public SqlString Render(IList args, ISessionFactoryImplementor factory)
"inactive",
"index",
"input_type",
"inserting",
"int128",
"isolation",
"key",
"last",
Expand All @@ -318,6 +332,7 @@ public SqlString Render(IList args, ISessionFactoryImplementor factory)
"log_buffer_size",
"logfile",
"long",
"lower",
"manual",
"max",
"maximum_segment",
Expand All @@ -328,29 +343,50 @@ public SqlString Render(IList args, ISessionFactoryImplementor factory)
"nullif",
"nulls",
"num_log_buffers",
"octet_length",
"offset",
"option",
"output_type",
"overflow",
"page",
"page_size",
"page",
"pages",
"password",
"plan",
"position",
"post_event",
"privileges",
"protected",
"publication",
"raw_partitions",
"rdb$db_key",
"rdb$error",
"rdb$get_context",
"rdb$get_transaction_cn",
"rdb$record_version",
"rdb$role_in_use",
"rdb$set_context",
"rdb$system_privilege",
"read",
"record_version",
"recreate",
"regr_avgx",
"regr_avgy",
"regr_count",
"regr_intercept",
"regr_r2",
"regr_slope",
"regr_sxx",
"regr_sxy",
"regr_syy",
"reserv",
"reserving",
"resetting",
"restrict",
"retain",
"returning_values",
"role",
"row_count",
"rows_affected",
"schema",
"segment",
Expand All @@ -366,15 +402,23 @@ public SqlString Render(IList args, ISessionFactoryImplementor factory)
"starting",
"starts",
"statistics",
"stddev_pop",
"stddev_samp",
"sub_type",
"substring",
"sum",
"suspend",
"transaction",
"transaction_id",
"transaction",
"trim",
"type",
"unbounded",
"uncommitted",
"updating",
"upper",
"var_pop",
"var_samp",
"varbinary",
"variable",
"view",
"wait",
Expand Down