mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 21:12:09 +03:00
23520f67d0
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/3959 GitOrigin-RevId: ea037c9dc4392d1b98ee086f6c87f79ce8ea5c8f
62 lines
3.2 KiB
YAML
62 lines
3.2 KiB
YAML
type: bulk
|
|
args:
|
|
|
|
- type: mssql_run_sql
|
|
args:
|
|
source: mssql
|
|
sql: |
|
|
create schema hge_tests
|
|
|
|
create table hge_tests.test_subscriptions (
|
|
id int primary key,
|
|
field1 varchar(max)
|
|
)
|
|
|
|
- type: mssql_run_sql
|
|
args:
|
|
source: mssql
|
|
sql: |
|
|
INSERT INTO
|
|
hge_tests.test_subscriptions(id, field1)
|
|
VALUES
|
|
(1, '1234567890'),
|
|
(2, '12345678901234567890'),
|
|
(3, '123456789012345678901234567890'),
|
|
(4, '1234567890123456789012345678901234567890'),
|
|
(5, '12345678901234567890123456789012345678901234567890'),
|
|
(6, '123456789012345678901234567890123456789012345678901234567890'),
|
|
(7, '1234567890123456789012345678901234567890123456789012345678901234567890'),
|
|
(8, '12345678901234567890123456789012345678901234567890123456789012345678901234567890'),
|
|
(9, '123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890'),
|
|
(10, '1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890'),
|
|
(11, '1234567890'),
|
|
(12, '12345678901234567890'),
|
|
(13, '123456789012345678901234567890'),
|
|
(14, '1234567890123456789012345678901234567890'),
|
|
(15, '12345678901234567890123456789012345678901234567890'),
|
|
(16, '123456789012345678901234567890123456789012345678901234567890'),
|
|
(17, '1234567890123456789012345678901234567890123456789012345678901234567890'),
|
|
(18, '12345678901234567890123456789012345678901234567890123456789012345678901234567890'),
|
|
(19, '123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890'),
|
|
(20, '1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890'),
|
|
(21, '1234567890'),
|
|
(22, '12345678901234567890'),
|
|
(23, '123456789012345678901234567890'),
|
|
(24, '1234567890123456789012345678901234567890'),
|
|
(25, '12345678901234567890123456789012345678901234567890'),
|
|
(26, '123456789012345678901234567890123456789012345678901234567890'),
|
|
(27, '1234567890123456789012345678901234567890123456789012345678901234567890'),
|
|
(28, '12345678901234567890123456789012345678901234567890123456789012345678901234567890'),
|
|
(29, '123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890'),
|
|
(30, '1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890'),
|
|
(31, '1234567890'),
|
|
(32, '12345678901234567890'),
|
|
(33, '123456789012345678901234567890'),
|
|
(34, '1234567890123456789012345678901234567890'),
|
|
(35, '12345678901234567890123456789012345678901234567890'),
|
|
(36, '123456789012345678901234567890123456789012345678901234567890'),
|
|
(37, '1234567890123456789012345678901234567890123456789012345678901234567890'),
|
|
(38, '12345678901234567890123456789012345678901234567890123456789012345678901234567890'),
|
|
(39, '123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890'),
|
|
(40, '1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890')
|