Skip to content

Commit 484283c

Browse files
working on ibis section: fixed bug from new ibis version
1 parent a4a893e commit 484283c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/reading.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -676,7 +676,7 @@ canlang_table
676676

677677
Although it looks like we might have obtained the whole data frame from the database, we didn't!
678678
It's a *reference*; the data is still stored only in the SQLite database. The `canlang_table` object
679-
is an `AlchemyTable` (`ibis` is using `sqlalchemy` under the hood!), which, when printed, tells
679+
is a `DatabaseTable`, which, when printed, tells
680680
you which columns are available in the table. But unlike a usual `pandas` data frame,
681681
we do not immediately know how many rows are in the table. In order to find out how many
682682
rows there are, we have to send an SQL *query* (i.e., command) to the data base.

0 commit comments

Comments
 (0)