This commit is contained in:
aaron burtle 2024-06-15 00:08:44 -07:00
Родитель c4fdac04e4
Коммит 9befe95279
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 8C4893BD7A304E21
1 изменённых файлов: 2 добавлений и 5 удалений

7
.github/workflows/ci.yaml поставляемый
Просмотреть файл

@ -121,11 +121,8 @@ jobs:
- name: Execute SPEES for Python
run: sqlcmd -S localhost -U SA -P %dbPassword% -l 5 -Q "
EXEC sp_execute_external_script @language =N'Python',
@script=N'
OutputDataSet = InputDataSet;
',
@input_data_1 =N'SELECT 1 AS hello'
WITH RESULT SETS (([hello] int not null));"
@script=N'OutputDataSet = InputDataSet;',
@input_data_1 =N'SELECT 1 AS hello' WITH RESULT SETS (([hello] int not null));"
- name: Checkout Branch
uses: actions/checkout@v2