comparison src/luan/modules/lucene/PostgresBackup.java @ 1623:582384548a69

LuanToString takes function
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 01 Aug 2021 18:59:01 -0600
parents 8fbcc4747091
children
comparison
equal deleted inserted replaced
1622:b7f8418fb7ba 1623:582384548a69
80 ); 80 );
81 deleteStmt = con.prepareStatement( 81 deleteStmt = con.prepareStatement(
82 "delete from lucene where id=?" 82 "delete from lucene where id=?"
83 ); 83 );
84 84
85 luanToString = new LuanToString(null,null); 85 luanToString = new LuanToString();
86 luanToString.settingsInit.strict = true; 86 luanToString.settingsInit.strict = true;
87 luanToString.settingsInit.numberTypes = true; 87 luanToString.settingsInit.numberTypes = true;
88 } 88 }
89 89
90 Connection newConnection() throws SQLException { 90 Connection newConnection() throws SQLException {