We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ee2834 commit a742f03Copy full SHA for a742f03
ksqlDb.RestApi.Client/KSql/RestApi/Statements/EntityCreationMetadata.cs
@@ -6,6 +6,13 @@ namespace ksqlDB.RestApi.Client.KSql.RestApi.Statements
6
{
7
public record EntityCreationMetadata : CreationMetadata, IEntityCreationProperties
8
9
+ public EntityCreationMetadata(string kafkaTopic, short? partitions = null)
10
+ : this()
11
+ {
12
+ KafkaTopic = kafkaTopic;
13
+ Partitions = partitions;
14
+ }
15
+
16
public EntityCreationMetadata()
17
18
ValueFormat = SerializationFormats.Json;
0 commit comments