1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-25 22:12:29 +02:00

Main build (Jenkins)

This commit is contained in:
Vitaly the Alpaca (bot)
2025-02-12 19:33:53 +03:00
parent 84b15e0264
commit c023622aa3
55 changed files with 8813 additions and 6534 deletions

View File

@@ -28,6 +28,7 @@
RecordStructure.Insert("dp_field" , New Structure("DOUBLE_PRECISION" , 1.0000000000000002)); // or DOUBLE PRECISION
RecordStructure.Insert("text_field" , New Structure("TEXT" , "Some text"));
RecordStructure.Insert("varchar_field" , New Structure("VARCHAR" , "Some varchar"));
RecordStructure.Insert("charn_field" , New Structure("CHAR" , "AAA"));
RecordStructure.Insert("char_field" , New Structure("CHAR" , "A"));
RecordStructure.Insert("name_field" , New Structure("NAME" , "Vitaly"));
RecordStructure.Insert("bytea_field" , New Structure("BYTEA" , Image));

View File

@@ -21,7 +21,8 @@
ColoumnsStruct.Insert("dp_field" , "DOUBLE PRECISION");
ColoumnsStruct.Insert("text_field" , "TEXT");
ColoumnsStruct.Insert("varchar_field" , "VARCHAR");
ColoumnsStruct.Insert("char_field" , "CHAR(1)");
ColoumnsStruct.Insert("charn_field" , "CHAR(3)");
ColoumnsStruct.Insert("char_field" , "CHAR");
ColoumnsStruct.Insert("name_field" , "NAME");
ColoumnsStruct.Insert("bytea_field" , "BYTEA");
ColoumnsStruct.Insert("ts_field" , "TIMESTAMP");

View File

@@ -21,6 +21,7 @@
Fields.Add("dp_field");
Fields.Add("text_field");
Fields.Add("varchar_field");
Fields.Add("charn_field");
Fields.Add("char_field");
Fields.Add("name_field");
Fields.Add("bytea_field");