-
Notifications
You must be signed in to change notification settings - Fork 289
Closed
Description
Repro Steps
Initializing and adding a stored procedure entity
dab init -c test.json --database-type mssql
dab add Sptest -c test.json --source s001.test --source.type "stored-procedure" --source.params "id:1,name:Abhi" --permissions "anonymous:read"
Output
{
"type": "stored-procedure",
"object": "s001.test",
"parameters": {
"param1": 123,
"param2": "hello",
"param3": true
}
}
updating the source name
dab add Sptest -c test.json --source dbo.sptest
Wrong Output
{
"type": "stored-procedure",
"object": "dbo.sptest",
"key-fields": []
}
Expected Output
{
"type": "stored-procedure",
"object": "dbo.sptest",
"parameters": {
"param1": 123,
"param2": "hello",
"param3": true
},
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
Done