dzitkowskik / mini-dos

Project for Distributed Operating Systems at Warsaw University of Technology (Mathematics and Computer Science department) Winter 2015
Apache License 2.0
0 stars 0 forks source link

BUG with wrong table name #76

Closed dzitkowskik closed 8 years ago

dzitkowskik commented 8 years ago

There is a bug when we misspell table name, for example if we have table T1 (capital letter):

ddbms> SELECT * FROM t1;
DEBUG (Client.java:54) Command: SELECT * FROM t1;
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index: 0, Size: 0

because we used small t

davidmigloz commented 8 years ago

Fixed