Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
jose-caballero committed Jan 13, 2025
1 parent 1d9a9ce commit d16bd73
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,16 @@ def _set_project(self, project_str):
self.prompt = f'{self.query.resource_type}/{self.query.project}/> '

def do_select(self, args):
"""
Use a SQL-like nomenclature to get some properties.
It replaces the following commands:
set properties
set project
run
Usage:
select <properties> from <project>
"""

# Split by the keyword " from " first, since it must appear in all valid commands
from_parts = args.split(" from ", 1)
Expand Down

0 comments on commit d16bd73

Please sign in to comment.