Skip to content

Commit 91b5615

Browse files
Jorge Fernandez HernandezJorge Fernandez Hernandez
authored andcommitted
GAIAPCR-1036 C9APP-134 Update narrative to include a reference to table name t1710251325268O
1 parent 8a012d6 commit 91b5615

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

docs/gaia/gaia.rst

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,8 @@ Your schema name will be automatically added to the provided table name::
566566
Job '1539932326689O' created to upload table 'table_test_from_url'.
567567

568568
Now, you can query your table as follows (a full qualified table name must be provided,
569-
i.e.: *user_<your_login_name>.<table_name>*)::
569+
i.e.: *user_<your_login_name>.<table_name>*. Note that if the <table_name> contains capital letters, it must be
570+
surrounded by quotation marks, i.e.: *user_<your_login_name>."<table_name>"*)::
570571

571572
>>> full_qualified_table_name = 'user_<your_login_name>.table_test_from_url'
572573
>>> query = 'select * from ' + full_qualified_table_name
@@ -593,7 +594,8 @@ Your schema name will be automatically added to the provided table name.
593594
Uploaded table 'table_test_from_file'.
594595
595596
Now, you can query your table as follows (a full qualified table name must be provided,
596-
i.e.: *user_<your_login_name>.<table_name>*)::
597+
i.e.: *user_<your_login_name>.<table_name>*. Note that if the <table_name> contains capital letters, it must be
598+
surrounded by quotation marks, i.e.: *user_<your_login_name>."<table_name>"*)::
597599

598600
>>> full_qualified_table_name = 'user_<your_login_name>.table_test_from_file'
599601
>>> query = 'select * from ' + full_qualified_table_name
@@ -620,7 +622,8 @@ Your schema name will be automatically added to the provided table name.
620622
621623
622624
Now, you can query your table as follows (a full qualified table name must be provided,
623-
i.e.: *user_<your_login_name>.<table_name>*)::
625+
i.e.: *user_<your_login_name>.<table_name>*. Note that if the <table_name> contains capital letters, it must be
626+
surrounded by quotation marks, i.e.: *user_<your_login_name>."<table_name>"*)::
624627

625628
>>> full_qualified_table_name = 'user_<your_login_name>.table_test_from_astropy'
626629
>>> query = 'select * from ' + full_qualified_table_name
@@ -643,7 +646,8 @@ table named: user_<your_login_name>.'t'<job_id>::
643646
Created table 't1539932994481O' from job: '1539932994481O'.
644647

645648
Now, you can query your table as follows (a full qualified table name must be provided,
646-
i.e.: *user_<your_login_name>.t<job_id>*)::
649+
i.e.: *user_<your_login_name>."t<job_id>"*. Note that the previous table name must be
650+
surrounded by quotation marks since it contains capital letters.)::
647651

648652
>>> full_qualified_table_name = 'user_<your_login_name>."t1710251325268O"'
649653
>>> query = 'select * from ' + full_qualified_table_name

0 commit comments

Comments
 (0)