udit19524

Results 3 comments of udit19524

That sounds great, do we have a timeline on it, currently I am handling it on my part but would love to see the package handle it as well

Do we have any update on this issue, comments are not stripped and the query does not split as well when # are encountered

example: import sqlparse sql = """#`comments1` select `id` from test_user; select `id` from test_user2; """ query_list = sqlparse.split(sql) print(query_list) ['#`comments1`\nselect `id`\nfrom test_user;\nselect `id`\nfrom test_user2;'] import sqlparse sql = """# `comments1`...