summaryrefslogtreecommitdiff
path: root/sqlparse
diff options
context:
space:
mode:
Diffstat (limited to 'sqlparse')
-rw-r--r--sqlparse/functions.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sqlparse/functions.py b/sqlparse/functions.py
index 25dc005..aaf6fb8 100644
--- a/sqlparse/functions.py
+++ b/sqlparse/functions.py
@@ -11,7 +11,7 @@ from sqlparse.pipeline import Pipeline
from sqlparse.tokens import Keyword, Whitespace
-def GetLimit(stream):
+def getlimit(stream):
"""Function that return the LIMIT of a input SQL """
pipe = Pipeline()
@@ -24,7 +24,7 @@ def GetLimit(stream):
return result
-def GetColumns(stream):
+def getcolumns(stream):
"""Function that return the colums of a SELECT query"""
pipe = Pipeline()