Last active
July 18, 2023 09:34
-
-
Save Hosuke/105c55c6e74668a2a0068d440fb2c136 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import re | |
# Get the current directory | |
dir_path = os.getcwd() | |
# Traverse all files and subdirectories in the current directory | |
for root, dirs, files in os.walk(dir_path): | |
for file_name in files: | |
# Skip this file | |
if file_name.endswith('_legacy.sql'): | |
continue | |
with open(os.path.join(root, file_name), 'r') as f: | |
content = f.read() | |
if 'LOWER(' or 'lower(' in content: | |
print(f'Rewriting / " in {file_name}') | |
new_content = re.sub('LOWER\((.*?)\)', ' \\1 ', content) | |
new_content = re.sub('lower\((.*?)\)', ' \\1 ', new_content) | |
with open(os.path.join(root, file_name), 'w') as f: | |
f.write(new_content) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment