File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
python/plugins/processing/algs/gdal Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 26
26
__revision__ = '$Format:%H$'
27
27
28
28
from processing .core .GeoAlgorithmExecutionException import GeoAlgorithmExecutionException
29
- from processing .core .parameters import ParameterVector
29
+ from processing .core .parameters import ParameterTable
30
30
from processing .core .parameters import ParameterString
31
31
from processing .core .parameters import ParameterSelection
32
32
from processing .core .outputs import OutputVector
@@ -51,7 +51,7 @@ def defineCharacteristics(self):
51
51
self .name , self .i18n_name = self .trAlgorithm ('Execute SQL' )
52
52
self .group , self .i18n_group = self .trAlgorithm ('[OGR] Miscellaneous' )
53
53
54
- self .addParameter (ParameterVector (self .INPUT , self .tr ('Input layer' )))
54
+ self .addParameter (ParameterTable (self .INPUT , self .tr ('Input layer or table ' )))
55
55
self .addParameter (ParameterString (self .SQL , self .tr ('SQL' ), '' ))
56
56
57
57
self .addParameter (ParameterSelection (
You can’t perform that action at this time.
0 commit comments