Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove unsupported OData-style path from test provider
The path /People('{UserName}') uses OData parentheses notation which
is not supported by the OpenAPI path parser. Remove this path and its
resource references since the queryParamPushdown test only needs the
list endpoints.
  • Loading branch information
claude committed Nov 29, 2025
commit 27edef5e433657f98cbdd923b064a786bd3acd5d
Original file line number Diff line number Diff line change
Expand Up @@ -48,28 +48,6 @@ paths:
application/json:
schema:
$ref: '#/components/schemas/PeopleResponse'
/People('{UserName}'):
get:
operationId: people_get
summary: Get a person by username
parameters:
- name: UserName
in: path
required: true
schema:
type: string
- name: $select
in: query
description: Comma-separated list of properties to include
schema:
type: string
responses:
'200':
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/Person'
/Airlines:
get:
operationId: airlines_list
Expand Down Expand Up @@ -265,16 +243,9 @@ components:
mediaType: application/json
openAPIDocKey: '200'
objectKey: $.value[*]
get:
operation:
$ref: '#/paths/~1People(%27%7BUserName%7D%27)/get'
response:
mediaType: application/json
openAPIDocKey: '200'
sqlVerbs:
select:
- $ref: '#/components/x-stackQL-resources/people/methods/list'
- $ref: '#/components/x-stackQL-resources/people/methods/get'
insert: []
update: []
replace: []
Expand Down
Loading