From f9ba2bd5fad1bbeeeb92b51608cac61bc36c14cd Mon Sep 17 00:00:00 2001 From: Dan Fuchs Date: Wed, 8 Jul 2026 14:12:38 -0500 Subject: [PATCH] Use consistent column names in user table load docs The `create_table` docs create a table with a `count_of` column (because `count` is a Postgres reserved word). The `load_table` docs specify a `count` column though. This chances `count` -> `count_of` in the data in the `load_table` docs. --- docs/dal/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dal/index.rst b/docs/dal/index.rst index 8c008519..b47f229e 100644 --- a/docs/dal/index.rst +++ b/docs/dal/index.rst @@ -442,7 +442,7 @@ tab-separated values (tsv), comma-separated values (cvs) or VOTable (VOTable): .. doctest-skip:: >>> tap_service.load_table(name='test_schema.test_table', - ... source=StringIO('article,count\narticle1,10\narticle2,20\n'), format='csv') + ... source=StringIO('article,count_of\narticle1,10\narticle2,20\n'), format='csv') Users can also create indexes on single columns: .. doctest-skip::