fixed syntax error in scan and select predicates

This commit is contained in:
Jonathan Shook 2022-07-17 03:58:55 -05:00
parent c0cb4c0226
commit 1d19164390

View File

@ -325,7 +325,7 @@ public class CGWorkloadExporter {
private String genScanSyntax(CqlTable table) {
return """
select * from KEYSPACE.TABLE
PREDICATE
where PREDICATE
LIMIT;
"""
.replace("KEYSPACE", table.getKeySpace())
@ -355,7 +355,7 @@ public class CGWorkloadExporter {
private String genSelectSyntax(CqlTable table) {
return """
select * from KEYSPACE.TABLE
PREDICATE
where PREDICATE
LIMIT;
"""
.replace("KEYSPACE", table.getKeySpace())