You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-06-17 00:17:42 +02:00
Test data update (Jenkins)
This commit is contained in:
5
docs/en/cli/postgres/AddRecords/bash.txt
vendored
Normal file
5
docs/en/cli/postgres/AddRecords/bash.txt
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
oint postgres AddRecords \
|
||||
--table "testtable" \
|
||||
--rows "[{'bool_field':{'BOOL':true},'oldchar_field':{'OLDCHAR':1},'smallint_field':{'SMALLINT':5},'smallserial_field':{'SMALLSERIAL':6},'int_field':{'INT':100},'serial_field':{'SERIAL':100},'oid_field':{'OID':24576},'bigint_field':{'BIGINT':9999999},'bigserial_field':{'BIGSERIAL':9999999},'real_field':{'REAL':15.2},'dp_field':{'DOUBLE_PRECISION':1.0002},'text_field':{'TEXT':'Some text'},'varchar_field':{'VARCHAR':'Some varchar'},'charn_field':{'CHAR':'AAA'},'char_field':{'CHAR':'A'},'name_field':{'NAME':'Vitaly'},'bytea_field':{'BYTEA':'C:\\Users\\Administrator\\AppData\\Local\\Temp\\4te55yi1wqk.tmp'},'ts_field':{'TIMESTAMP':'2025-02-18T13:13:43.3777941Z'},'tswtz_field':{'TIMESTAMP_WITH_TIME_ZONE':'2025-02-18T13:13:43.3777941+05:00'},'ip_field':{'INET':'127.0.0.1'},'json_field':{'JSON':{'key':'***','value':10}},'jsonb_field':{'JSONB':{'key':'***','value':10}},'date_field':{'DATE':'2025-02-18T13:13:43.3777941Z'},'time_field':{'TIME':'2025-02-18T13:13:43.3777941Z'},'uuid_field':{'UUID':'1d37c633-e61d-480b-b6b8-bebe3413594c'}}]" \
|
||||
--trn true \
|
||||
--dbc "postgresql://bayselonarrend:***@127.0.0.1:5432/"
|
5
docs/en/cli/postgres/AddRecords/bat.txt
vendored
Normal file
5
docs/en/cli/postgres/AddRecords/bat.txt
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
oint postgres AddRecords ^
|
||||
--table "testtable" ^
|
||||
--rows "[{'bool_field':{'BOOL':true},'oldchar_field':{'OLDCHAR':1},'smallint_field':{'SMALLINT':5},'smallserial_field':{'SMALLSERIAL':6},'int_field':{'INT':100},'serial_field':{'SERIAL':100},'oid_field':{'OID':24576},'bigint_field':{'BIGINT':9999999},'bigserial_field':{'BIGSERIAL':9999999},'real_field':{'REAL':15.2},'dp_field':{'DOUBLE_PRECISION':1.0002},'text_field':{'TEXT':'Some text'},'varchar_field':{'VARCHAR':'Some varchar'},'charn_field':{'CHAR':'AAA'},'char_field':{'CHAR':'A'},'name_field':{'NAME':'Vitaly'},'bytea_field':{'BYTEA':'C:\\Users\\Administrator\\AppData\\Local\\Temp\\4te55yi1wqk.tmp'},'ts_field':{'TIMESTAMP':'2025-02-18T13:13:43.3777941Z'},'tswtz_field':{'TIMESTAMP_WITH_TIME_ZONE':'2025-02-18T13:13:43.3777941+05:00'},'ip_field':{'INET':'127.0.0.1'},'json_field':{'JSON':{'key':'***','value':10}},'jsonb_field':{'JSONB':{'key':'***','value':10}},'date_field':{'DATE':'2025-02-18T13:13:43.3777941Z'},'time_field':{'TIME':'2025-02-18T13:13:43.3777941Z'},'uuid_field':{'UUID':'1d37c633-e61d-480b-b6b8-bebe3413594c'}}]" ^
|
||||
--trn true ^
|
||||
--dbc "postgresql://bayselonarrend:***@127.0.0.1:5432/"
|
3
docs/en/cli/postgres/ClearTable/bash.txt
vendored
Normal file
3
docs/en/cli/postgres/ClearTable/bash.txt
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
oint postgres ClearTable \
|
||||
--table "testtable" \
|
||||
--dbc "postgresql://bayselonarrend:***@127.0.0.1:5432/"
|
3
docs/en/cli/postgres/ClearTable/bat.txt
vendored
Normal file
3
docs/en/cli/postgres/ClearTable/bat.txt
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
oint postgres ClearTable ^
|
||||
--table "testtable" ^
|
||||
--dbc "postgresql://bayselonarrend:***@127.0.0.1:5432/"
|
3
docs/en/cli/postgres/CreateDatabase/bash.txt
vendored
Normal file
3
docs/en/cli/postgres/CreateDatabase/bash.txt
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
oint postgres CreateDatabase \
|
||||
--base "testbase1" \
|
||||
--dbc "postgresql://bayselonarrend:***@127.0.0.1:5432/"
|
3
docs/en/cli/postgres/CreateDatabase/bat.txt
vendored
Normal file
3
docs/en/cli/postgres/CreateDatabase/bat.txt
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
oint postgres CreateDatabase ^
|
||||
--base "testbase1" ^
|
||||
--dbc "postgresql://bayselonarrend:***@127.0.0.1:5432/"
|
6
docs/en/cli/postgres/CreateTable/bash.txt
vendored
Normal file
6
docs/en/cli/postgres/CreateTable/bash.txt
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
# JSON data can also be passed as a path to a .json file
|
||||
|
||||
oint postgres CreateTable \
|
||||
--table "testtable" \
|
||||
--cols "{'bool_field':'BOOL','oldchar_field':'\"char\"','smallint_field':'SMALLINT','smallserial_field':'SMALLSERIAL','int_field':'INT','serial_field':'SERIAL','oid_field':'OID','bigint_field':'BIGINT','bigserial_field':'BIGSERIAL','real_field':'REAL','dp_field':'DOUBLE PRECISION','text_field':'TEXT','varchar_field':'VARCHAR','charn_field':'CHAR(3)','char_field':'CHAR','name_field':'NAME','bytea_field':'BYTEA','ts_field':'TIMESTAMP','tswtz_field':'TIMESTAMP WITH TIME ZONE','ip_field':'INET','json_field':'JSON','jsonb_field':'JSONB','date_field':'DATE','time_field':'TIME','uuid_field':'UUID'}" \
|
||||
--dbc "postgresql://bayselonarrend:***@127.0.0.1:5432/"
|
6
docs/en/cli/postgres/CreateTable/bat.txt
vendored
Normal file
6
docs/en/cli/postgres/CreateTable/bat.txt
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
:: JSON data can also be passed as a path to a .json file
|
||||
|
||||
oint postgres CreateTable ^
|
||||
--table "testtable" ^
|
||||
--cols "{'bool_field':'BOOL','oldchar_field':'\"char\"','smallint_field':'SMALLINT','smallserial_field':'SMALLSERIAL','int_field':'INT','serial_field':'SERIAL','oid_field':'OID','bigint_field':'BIGINT','bigserial_field':'BIGSERIAL','real_field':'REAL','dp_field':'DOUBLE PRECISION','text_field':'TEXT','varchar_field':'VARCHAR','charn_field':'CHAR(3)','char_field':'CHAR','name_field':'NAME','bytea_field':'BYTEA','ts_field':'TIMESTAMP','tswtz_field':'TIMESTAMP WITH TIME ZONE','ip_field':'INET','json_field':'JSON','jsonb_field':'JSONB','date_field':'DATE','time_field':'TIME','uuid_field':'UUID'}" ^
|
||||
--dbc "postgresql://bayselonarrend:***@127.0.0.1:5432/"
|
3
docs/en/cli/postgres/DeleteDatabase/bash.txt
vendored
Normal file
3
docs/en/cli/postgres/DeleteDatabase/bash.txt
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
oint postgres DeleteDatabase \
|
||||
--base "testbase1" \
|
||||
--dbc "postgresql://bayselonarrend:***@127.0.0.1:5432/"
|
3
docs/en/cli/postgres/DeleteDatabase/bat.txt
vendored
Normal file
3
docs/en/cli/postgres/DeleteDatabase/bat.txt
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
oint postgres DeleteDatabase ^
|
||||
--base "testbase1" ^
|
||||
--dbc "postgresql://bayselonarrend:***@127.0.0.1:5432/"
|
4
docs/en/cli/postgres/DeleteRecords/bash.txt
vendored
Normal file
4
docs/en/cli/postgres/DeleteRecords/bash.txt
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
oint postgres DeleteRecords \
|
||||
--table "test_data" \
|
||||
--filter "[{'field':'gender','type':'=','value':{'VARCHAR':'Male'},'raw':false,'union':'AND'}]" \
|
||||
--dbc "postgresql://bayselonarrend:***@127.0.0.1:5432/"
|
4
docs/en/cli/postgres/DeleteRecords/bat.txt
vendored
Normal file
4
docs/en/cli/postgres/DeleteRecords/bat.txt
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
oint postgres DeleteRecords ^
|
||||
--table "test_data" ^
|
||||
--filter "[{'field':'gender','type':'=','value':{'VARCHAR':'Male'},'raw':false,'union':'AND'}]" ^
|
||||
--dbc "postgresql://bayselonarrend:***@127.0.0.1:5432/"
|
3
docs/en/cli/postgres/DeleteTable/bash.txt
vendored
Normal file
3
docs/en/cli/postgres/DeleteTable/bash.txt
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
oint postgres DeleteTable \
|
||||
--table "testtable" \
|
||||
--dbc "postgresql://bayselonarrend:***@127.0.0.1:5432/"
|
3
docs/en/cli/postgres/DeleteTable/bat.txt
vendored
Normal file
3
docs/en/cli/postgres/DeleteTable/bat.txt
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
oint postgres DeleteTable ^
|
||||
--table "testtable" ^
|
||||
--dbc "postgresql://bayselonarrend:***@127.0.0.1:5432/"
|
3
docs/en/cli/postgres/DisableAllDatabaseConnections/bash.txt
vendored
Normal file
3
docs/en/cli/postgres/DisableAllDatabaseConnections/bash.txt
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
oint postgres DisableAllDatabaseConnections \
|
||||
--base "testbase1" \
|
||||
--dbc "postgresql://bayselonarrend:***@127.0.0.1:5432/"
|
3
docs/en/cli/postgres/DisableAllDatabaseConnections/bat.txt
vendored
Normal file
3
docs/en/cli/postgres/DisableAllDatabaseConnections/bat.txt
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
oint postgres DisableAllDatabaseConnections ^
|
||||
--base "testbase1" ^
|
||||
--dbc "postgresql://bayselonarrend:***@127.0.0.1:5432/"
|
3
docs/en/cli/postgres/ExecuteSQLQuery/bash.txt
vendored
Normal file
3
docs/en/cli/postgres/ExecuteSQLQuery/bash.txt
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
oint postgres ExecuteSQLQuery \
|
||||
--sql "https://github.com/Bayselonarrend/OpenIntegrations/raw/main/service/test_data/TEST_DATA.sql" \
|
||||
--dbc "postgresql://bayselonarrend:***@127.0.0.1:5432/"
|
3
docs/en/cli/postgres/ExecuteSQLQuery/bat.txt
vendored
Normal file
3
docs/en/cli/postgres/ExecuteSQLQuery/bat.txt
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
oint postgres ExecuteSQLQuery ^
|
||||
--sql "https://github.com/Bayselonarrend/OpenIntegrations/raw/main/service/test_data/TEST_DATA.sql" ^
|
||||
--dbc "postgresql://bayselonarrend:***@127.0.0.1:5432/"
|
5
docs/en/cli/postgres/GenerateConnectionString/bash.txt
vendored
Normal file
5
docs/en/cli/postgres/GenerateConnectionString/bash.txt
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
oint postgres GenerateConnectionString \
|
||||
--addr "127.0.0.1" \
|
||||
--db "postgres" \
|
||||
--login "bayselonarrend" \
|
||||
--pass "***"
|
5
docs/en/cli/postgres/GenerateConnectionString/bat.txt
vendored
Normal file
5
docs/en/cli/postgres/GenerateConnectionString/bat.txt
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
oint postgres GenerateConnectionString ^
|
||||
--addr "127.0.0.1" ^
|
||||
--db "postgres" ^
|
||||
--login "bayselonarrend" ^
|
||||
--pass "***"
|
9
docs/en/cli/postgres/GetRecords/bash.txt
vendored
Normal file
9
docs/en/cli/postgres/GetRecords/bash.txt
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
# JSON data can also be passed as a path to a .json file
|
||||
|
||||
oint postgres GetRecords \
|
||||
--table "test_data" \
|
||||
--fields "['first_name','last_name','email']" \
|
||||
--filter "[{'field':'gender','type':'=','value':'Male','union':'AND','raw':false},{'field':'id','type':'BETWEEN','value':'20 AND 50','raw':true}]" \
|
||||
--order "{'ip_address':'DESC'}" \
|
||||
--limit 5 \
|
||||
--dbc "postgresql://bayselonarrend:***@127.0.0.1:5432/"
|
9
docs/en/cli/postgres/GetRecords/bat.txt
vendored
Normal file
9
docs/en/cli/postgres/GetRecords/bat.txt
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
:: JSON data can also be passed as a path to a .json file
|
||||
|
||||
oint postgres GetRecords ^
|
||||
--table "test_data" ^
|
||||
--fields "['first_name','last_name','email']" ^
|
||||
--filter "[{'field':'gender','type':'=','value':'Male','union':'AND','raw':false},{'field':'id','type':'BETWEEN','value':'20 AND 50','raw':true}]" ^
|
||||
--order "{'ip_address':'DESC'}" ^
|
||||
--limit 5 ^
|
||||
--dbc "postgresql://bayselonarrend:***@127.0.0.1:5432/"
|
2
docs/en/cli/postgres/GetRecordsFilterStrucutre/bash.txt
vendored
Normal file
2
docs/en/cli/postgres/GetRecordsFilterStrucutre/bash.txt
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
oint postgres GetRecordsFilterStrucutre \
|
||||
--empty true
|
2
docs/en/cli/postgres/GetRecordsFilterStrucutre/bat.txt
vendored
Normal file
2
docs/en/cli/postgres/GetRecordsFilterStrucutre/bat.txt
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
oint postgres GetRecordsFilterStrucutre ^
|
||||
--empty true
|
3
docs/en/cli/postgres/GetTableInformation/bash.txt
vendored
Normal file
3
docs/en/cli/postgres/GetTableInformation/bash.txt
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
oint postgres GetTableInformation \
|
||||
--table "heyho" \
|
||||
--dbc "postgresql://bayselonarrend:***@127.0.0.1:5432/"
|
3
docs/en/cli/postgres/GetTableInformation/bat.txt
vendored
Normal file
3
docs/en/cli/postgres/GetTableInformation/bat.txt
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
oint postgres GetTableInformation ^
|
||||
--table "heyho" ^
|
||||
--dbc "postgresql://bayselonarrend:***@127.0.0.1:5432/"
|
7
docs/en/cli/postgres/UpdateRecords/bash.txt
vendored
Normal file
7
docs/en/cli/postgres/UpdateRecords/bash.txt
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
# JSON data can also be passed as a path to a .json file
|
||||
|
||||
oint postgres UpdateRecords \
|
||||
--table "test_data" \
|
||||
--values "{'ip_address':{'VARCHAR':'127.0.0.1'}}" \
|
||||
--filter "[{'field':'gender','type':'=','value':{'VARCHAR':'Male'},'raw':false}]" \
|
||||
--dbc "postgresql://bayselonarrend:***@127.0.0.1:5432/"
|
7
docs/en/cli/postgres/UpdateRecords/bat.txt
vendored
Normal file
7
docs/en/cli/postgres/UpdateRecords/bat.txt
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
:: JSON data can also be passed as a path to a .json file
|
||||
|
||||
oint postgres UpdateRecords ^
|
||||
--table "test_data" ^
|
||||
--values "{'ip_address':{'VARCHAR':'127.0.0.1'}}" ^
|
||||
--filter "[{'field':'gender','type':'=','value':{'VARCHAR':'Male'},'raw':false}]" ^
|
||||
--dbc "postgresql://bayselonarrend:***@127.0.0.1:5432/"
|
Reference in New Issue
Block a user