mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 06:46:00 +00:00
feat: use parameterMode instead of isOutputParameter
This commit is contained in:
@@ -13,7 +13,10 @@ SELECT
|
||||
p.max_length AS charMaxLength,
|
||||
p.precision AS precision,
|
||||
p.scale AS scale,
|
||||
p.is_output AS isOutputParameter,
|
||||
CASE
|
||||
WHEN p.is_output = 1 THEN 'OUT'
|
||||
ELSE 'IN'
|
||||
END AS parameterMode,
|
||||
p.parameter_id AS parameterIndex,
|
||||
s.name as schemaName
|
||||
FROM
|
||||
|
||||
@@ -8,7 +8,10 @@ SELECT
|
||||
p.max_length AS charMaxLength,
|
||||
p.precision AS precision,
|
||||
p.scale AS scale,
|
||||
p.is_output AS isOutputParameter,
|
||||
CASE
|
||||
WHEN p.is_output = 1 THEN 'OUT'
|
||||
ELSE 'IN'
|
||||
END AS parameterMode,
|
||||
p.parameter_id AS parameterIndex
|
||||
s.name as schemaName
|
||||
FROM
|
||||
|
||||
Reference in New Issue
Block a user