We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59bec19 commit a5225e7Copy full SHA for a5225e7
internal/stackql/dependencyplanner/dependencyplanner.go
@@ -586,18 +586,6 @@ func (dp *standardDependencyPlanner) processAcquire(
586
return anTab, dp.tcc, nil
587
}
588
589
-func (dp *standardDependencyPlanner) getScalarParam(param interface{}) (interface{}, bool) {
590
- paramMeta, isParamMeta := param.(parserutil.ParameterMetadata)
591
- if isParamMeta {
592
- val := paramMeta.GetVal()
593
- _, valIsSQLVal := val.(*sqlparser.SQLVal)
594
- if valIsSQLVal {
595
- return val, true
596
- }
597
598
- return nil, false
599
-}
600
-
601
func (dp *standardDependencyPlanner) isVectorParam(param interface{}) bool {
602
paramMeta, isParamMeta := param.(parserutil.ParameterMetadata)
603
if isParamMeta {
0 commit comments